blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
058d80182cc632b8e6841e60e06ec9b8a318140f
f0893f0f5226d42a7aa18b661b9d70bde0b8c495
/Lena/obraz.cpp
7b5d34d48c41952884d139e94f4416017cc93a1d
[]
no_license
MarcinJastrzebski/JP3
89339a485aba8430314c0365dd8861570c22c0b9
e32be808ae4e7a90be58151d23cc8ba77adbe169
refs/heads/master
2021-08-11T17:08:38.539988
2017-11-13T23:50:07
2017-11-13T23:50:07
null
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
2,492
cpp
#include "obraz.h" int obraz::getW() { return m_w; } int obraz::getH() { return m_h; } int obraz::partition(int tablica[], int p, int r) // dzielimy tablice na dwie czesci, w pierwszej wszystkie liczby sa mniejsze badz rowne x, w drugiej wieksze lub rowne od x { //zrodlo http://www.algorytm.org/algorytmy-sortowania/sortowanie-szybkie-quicksort/quick-1-c.html int x = tablica[p]; // obieramy x int i = p, j = r, w; // i, j - indeksy w tabeli while (true) // petla nieskonczona - wychodzimy z niej tylko przez return j { while (tablica[j] > x) // dopoki elementy sa wieksze od x j--; while (tablica[i] < x) // dopoki elementy sa mniejsze od x i++; if (i < j) // zamieniamy miejscami gdy i < j { w = tablica[i]; tablica[i] = tablica[j]; tablica[j] = w; i++; j--; } else // gdy i >= j zwracamy j jako punkt podzialu tablicy return j; } } void obraz::quicksort(int tablica[], int p, int r) // sortowanie szybkie { //zrodlo http://www.algorytm.org/algorytmy-sortowania/sortowanie-szybkie-quicksort/quick-1-c.html int q; if (p < r) { q = partition(tablica, p, r); // dzielimy tablice na dwie czesci; q oznacza punkt podzialu quicksort(tablica, p, q); // wywolujemy rekurencyjnie quicksort dla pierwszej czesci tablicy quicksort(tablica, q + 1, r); // wywolujemy rekurencyjnie quicksort dla drugiej czesci tablicy } } int obraz::getElement(int _i) { return m_colortab[_i]; } obraz::obraz() { m_w = 512; m_h = 512; m_max_value = 255; m_version = "Ala ma kota"; m_colortab = new int[m_w*m_h]; for (int i = 0; i < m_w*m_h; i++) { m_colortab[i] = 0; } } obraz obraz::operator=(const obraz & o) { //Symfonia s.740 //1. sprawdzam, czy to nie kopiowanie samego siebie if (&o == this) return *this; else { //2. usuwam poprzednia zawartosc delete[] m_colortab; m_colortab = NULL; //3. Tworze od nowa this->m_w = o.m_w; this->m_h = o.m_h; this->m_max_value = o.m_max_value; this->m_version = o.m_version; this->m_colortab = new int[m_w*m_h]; for (int i = 0; i < m_w*m_h; i++) { m_colortab[i] = o.m_colortab[i]; } } return *this; } obraz::obraz(const obraz & o) { //wywoływany PRZY inicjalizacji //wiec chyba nie musze nic kasowac wczesniej jak w operatorze =; m_w = o.m_w; m_h = o.m_h; m_max_value = o.m_max_value; m_version = o.m_version; m_colortab = new int [m_w*m_h]; for (int i = 0; i < m_w*m_h; i++) { m_colortab[i] = o.m_colortab[i]; } } obraz::~obraz() { delete[] m_colortab; }
a98a763a5035d3a784b7e05952574b1699955b82
4c5cc603ba5b737aba815efb1ba1783c4e99f057
/Week9/Casino_Royale.cpp
66c1575f4afd069f5580b3fedd6ea671f1986974
[]
no_license
EllenArlt/Algolab-HS2020
8c6f06047e173f92200f7cb6512f5c85894f2dad
ad39b09113aed4f98481204960cdde6aaaf06b66
refs/heads/main
2023-07-06T11:38:35.140710
2021-07-30T17:22:54
2021-07-30T17:22:54
390,770,639
0
0
null
null
null
null
UTF-8
C++
false
false
4,478
cpp
// Includes // ======== #include <iostream> // BGL includes #include <boost/graph/adjacency_list.hpp> #include <boost/graph/cycle_canceling.hpp> #include <boost/graph/push_relabel_max_flow.hpp> #include <boost/graph/successive_shortest_path_nonnegative_weights.hpp> #include <boost/graph/find_flow_cost.hpp> // Graph Type with nested interior edge properties for Cost Flow Algorithms typedef boost::adjacency_list_traits<boost::vecS, boost::vecS, boost::directedS> traits; typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::property<boost::edge_capacity_t, long, boost::property<boost::edge_residual_capacity_t, long, boost::property<boost::edge_reverse_t, traits::edge_descriptor, boost::property <boost::edge_weight_t, long> > > > > graph; typedef boost::graph_traits<graph>::edge_descriptor edge_desc; typedef boost::graph_traits<graph>::out_edge_iterator out_edge_it; // Iterator // Custom edge adder class class edge_adder { graph &G; public: explicit edge_adder(graph &G) : G(G) {} void add_edge(int from, int to, long capacity, long cost) { auto c_map = boost::get(boost::edge_capacity, G); auto r_map = boost::get(boost::edge_reverse, G); auto w_map = boost::get(boost::edge_weight, G); // new! const edge_desc e = boost::add_edge(from, to, G).first; const edge_desc rev_e = boost::add_edge(to, from, G).first; c_map[e] = capacity; c_map[rev_e] = 0; // reverse edge has no capacity! r_map[e] = rev_e; r_map[rev_e] = e; w_map[e] = cost; // new assign cost w_map[rev_e] = -cost; // new negative cost } }; /*Instead of seeing this problem from the perspective of the agents, we need to see it from the perspective of the train. One can say this train has l empty seats usable by the agents, and at any station for every we can eitherfill it or leave it empty. Leaving it empty results in a flow to the next stop. Filling it with an assigned agent makes it flow directly to that agent's destination and there join the "empty seat" path again. In summary, we have a straight path from stop to stop representing the seat is assignable from there and any deviation/other connection between vertices represents taking a mission. To ensure positive payments, we pay maxp, the maximum priority, to each empty journey between two stops and maxp times the jouneys between two adjacent stops it takes for the mission minus its priority. That is, all in all, we pay maxp for each flow, for each unordered pair of adjacent stops minus the sum of all priorities of missions carried out*/ void testcase() { int n; //number of train stops int m; //number of missions int l; //maximum number of agents that can be on the train between any two consecutive stops std::cin >> n >> m >> l; long maxp = pow(2L,8L); //maximum priority (used to ensure positive costs when minimizing the negative sum of priorities) // Create graph, edge adder class and propery maps graph G(n+1); edge_adder adder(G); const int v_source = n; //maximum capacity from the source is the number of usable seats adder.add_edge(v_source, 0, l, 0); for (int i = 0; i < m; ++i){ int x, y; //start and destination int q; //mission priority std::cin >> x >> y >> q; //pay maxp for each journey between stops along the mission and deduct the priority adder.add_edge(x, y, 1, (y-x)*maxp - q); } for (int i = 0; i < n-1; ++i){ //pay maxp when the train travels to the next stop with a free seat (can have at most l free seats) adder.add_edge(i, i+1, l, maxp); } // Min Cost Max Flow with successive_shortest_path_nonnegative_weights boost::successive_shortest_path_nonnegative_weights(G, v_source, n-1); long cost2 = boost::find_flow_cost(G); //you pay maxp for each of l seats for each of n-1 connections between stops and deducted q for each mission carried out => positive sum of priorities is: std::cout << l*(n-1)*maxp - cost2 << "\n"; } int main(){ std::ios_base::sync_with_stdio(false); int t; std::cin >> t; // Read the number of test cases for (int i = 0; i < t; ++i){ testcase(); // Solve a particular test case } return 0; }
36e6a61bf5b366376995893f07c9757d729b87f5
fbe68d84e97262d6d26dd65c704a7b50af2b3943
/third_party/virtualbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserItemGroup.h
925cb9af6985c125b2892c873e6a30b8a633c6be
[ "GPL-2.0-only", "LicenseRef-scancode-unknown-license-reference", "CDDL-1.0", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "LGPL-2.1-or-later", "GPL-2.0-or-later", "MPL-1.0", "LicenseRef-scancode-generic-exception", "Apache-2.0", "OpenSSL", "MIT" ]
permissive
thalium/icebox
c4e6573f2b4f0973b6c7bb0bf068fe9e795fdcfb
6f78952d58da52ea4f0e55b2ab297f28e80c1160
refs/heads/master
2022-08-14T00:19:36.984579
2022-02-22T13:10:31
2022-02-22T13:10:31
190,019,914
585
109
MIT
2022-01-13T20:58:15
2019-06-03T14:18:12
C++
UTF-8
C++
false
false
7,963
h
/* $Id: UIGChooserItemGroup.h $ */ /** @file * VBox Qt GUI - UIGChooserItemGroup class declaration. */ /* * Copyright (C) 2012-2017 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. */ #ifndef __UIGChooserItemGroup_h__ #define __UIGChooserItemGroup_h__ /* Qt includes: */ #include <QWidget> #include <QPixmap> /* GUI includes: */ #include "UIGChooserItem.h" /* Forward declarations: */ class QGraphicsScene; class QGraphicsProxyWidget; class QLineEdit; class UIGraphicsButton; class UIGraphicsRotatorButton; class UIGroupRenameEditor; /* Graphics group-item * for graphics selector model/view architecture: */ class UIGChooserItemGroup : public UIGChooserItem { Q_OBJECT; Q_PROPERTY(int additionalHeight READ additionalHeight WRITE setAdditionalHeight); signals: /* Notifiers: Toggle stuff: */ void sigToggleStarted(); void sigToggleFinished(); public: /* Class-name used for drag&drop mime-data format: */ static QString className(); /* Graphics-item type: */ enum { Type = UIGChooserItemType_Group }; int type() const { return Type; } /* Constructor (main-root-item): */ UIGChooserItemGroup(QGraphicsScene *pScene); /* Constructor (temporary main-root-item/root-item copy): */ UIGChooserItemGroup(QGraphicsScene *pScene, UIGChooserItemGroup *pCopyFrom, bool fMainRoot); /* Constructor (new non-root-item): */ UIGChooserItemGroup(UIGChooserItem *pParent, const QString &strName, bool fOpened = false, int iPosition = -1); /* Constructor (new non-root-item copy): */ UIGChooserItemGroup(UIGChooserItem *pParent, UIGChooserItemGroup *pCopyFrom, int iPosition = -1); /* Destructor: */ ~UIGChooserItemGroup(); /* API: Basic stuff: */ QString name() const; QString description() const; QString fullName() const; QString definition() const; void setName(const QString &strName); bool isClosed() const; bool isOpened() const; void close(bool fAnimated = true); void open(bool fAnimated = true); /* API: Children stuff: */ bool isContainsMachine(const QString &strId) const; bool isContainsLockedMachine(); private slots: /* Handler: Name editing stuff: */ void sltNameEditingFinished(); /* Handler: Toggle stuff: */ void sltGroupToggleStart(); void sltGroupToggleFinish(bool fToggled); /* Handlers: Indent root stuff: */ void sltIndentRoot(); void sltUnindentRoot(); private: /* Data enumerator: */ enum GroupItemData { /* Layout hints: */ GroupItemData_HorizonalMargin, GroupItemData_VerticalMargin, GroupItemData_MajorSpacing, GroupItemData_MinorSpacing, GroupItemData_RootIndent, }; /* Data provider: */ QVariant data(int iKey) const; /* Helpers: Prepare stuff: */ void prepare(); static void copyContent(UIGChooserItemGroup *pFrom, UIGChooserItemGroup *pTo); /* Helpers: Update stuff: */ void handleRootStatusChange(); void updateVisibleName(); void updateItemCountInfo(); void updateMinimumHeaderSize(); void updateToolTip(); void updateToggleButtonToolTip(); /* Helper: Translate stuff: */ void retranslateUi(); /* Helpers: Basic stuff: */ void show(); void hide(); void startEditing(); bool isMainRoot() const { return m_fMainRoot; } /* Helpers: Children stuff: */ void addItem(UIGChooserItem *pItem, int iPosition); void removeItem(UIGChooserItem *pItem); void setItems(const QList<UIGChooserItem*> &items, UIGChooserItemType type); QList<UIGChooserItem*> items(UIGChooserItemType type = UIGChooserItemType_Any) const; bool hasItems(UIGChooserItemType type = UIGChooserItemType_Any) const; void clearItems(UIGChooserItemType type = UIGChooserItemType_Any); void updateAll(const QString &strId); void removeAll(const QString &strId); UIGChooserItem* searchForItem(const QString &strSearchTag, int iItemSearchFlags); UIGChooserItemMachine* firstMachineItem(); void sortItems(); /* Helpers: Layout stuff: */ void updateLayout(); int minimumWidthHint(bool fOpenedGroup) const; int minimumHeightHint(bool fOpenedGroup) const; int minimumWidthHint() const; int minimumHeightHint() const; #ifdef VBOX_WS_MAC # pragma clang diagnostic push # pragma clang diagnostic ignored "-Woverloaded-virtual" #endif QSizeF minimumSizeHint(bool fOpenedGroup) const; #ifdef VBOX_WS_MAC # pragma clang diagnostic pop #endif QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const; /* Helpers: Drag&drop stuff: */ QPixmap toPixmap(); bool isDropAllowed(QGraphicsSceneDragDropEvent *pEvent, DragToken where) const; void processDrop(QGraphicsSceneDragDropEvent *pEvent, UIGChooserItem *pFromWho, DragToken where); void resetDragToken(); QMimeData* createMimeData(); /* Handler: Resize handling stuff: */ void resizeEvent(QGraphicsSceneResizeEvent *pEvent); /* Handlers: Hover handling stuff: */ void hoverMoveEvent(QGraphicsSceneHoverEvent *pEvent); void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent); /* Helpers: Paint stuff: */ void paint(QPainter *pPainter, const QStyleOptionGraphicsItem *pOption, QWidget *pWidget = 0); void paintBackground(QPainter *pPainter, const QRect &rect); void paintHeader(QPainter *pPainter, const QRect &rect); /* Helpers: Animation stuff: */ void updateAnimationParameters(); void setAdditionalHeight(int iAdditionalHeight); int additionalHeight() const; /* Helper: Color stuff: */ int blackoutDarkness() const { return m_iBlackoutDarkness; } /* Variables: */ bool m_fClosed; UIGraphicsRotatorButton *m_pToggleButton; UIGraphicsButton *m_pEnterButton; UIGraphicsButton *m_pExitButton; UIGroupRenameEditor *m_pNameEditorWidget; QGraphicsProxyWidget *m_pNameEditor; QList<UIGChooserItem*> m_groupItems; QList<UIGChooserItem*> m_machineItems; int m_iAdditionalHeight; int m_iCornerRadius; bool m_fMainRoot; int m_iBlackoutDarkness; /* Cached values: */ QString m_strName; QString m_strDescription; QString m_strVisibleName; QString m_strInfoGroups; QString m_strInfoMachines; QSize m_visibleNameSize; QSize m_infoSizeGroups; QSize m_infoSizeMachines; QSize m_pixmapSizeGroups; QSize m_pixmapSizeMachines; QSize m_minimumHeaderSize; QSize m_toggleButtonSize; QSize m_enterButtonSize; QSize m_exitButtonSize; QFont m_nameFont; QFont m_infoFont; QPixmap m_groupsPixmap; QPixmap m_machinesPixmap; }; class UIGroupRenameEditor : public QWidget { Q_OBJECT; signals: /* Notifier: Editing stuff: */ void sigEditingFinished(); public: /* Constructor: */ UIGroupRenameEditor(const QString &strName, UIGChooserItem *pParent); /* API: Text stuff: */ QString text() const; void setText(const QString &strText); /* API: Font stuff: */ void setFont(const QFont &font); public slots: /* API/Handler: Focus stuff: */ void setFocus(); private: /* Handler: Event-filter: */ bool eventFilter(QObject *pWatched, QEvent *pEvent); /* Helper: Context-menu stuff: */ void handleContextMenuEvent(QContextMenuEvent *pContextMenuEvent); /* Variables: */ UIGChooserItem *m_pParent; QLineEdit *m_pLineEdit; QMenu *m_pTemporaryMenu; }; #endif /* __UIGChooserItemGroup_h__ */
bb590b7dcabd5b9d29caa2a3ae2ca2af7371fef4
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/Calorimeter/CaloClusterCorrection/src/CaloTopoEMLongWeights.h
cf7742d23fa78649b5a2d2a1c0a7c095c9d2e293
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
C++
false
false
2,615
h
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ #ifndef CALOCLUSTERCORRECTION_CALOTOPOEMLONGWEIGHTS_H #define CALOCLUSTERCORRECTION_CALOTOPOEMLONGWEIGHTS_H /******************************************************************** NAME: CaloTopoEMLongWeights.h PACKAGE: offline/Calorimeter/CaloClusterCorrection AUTHORS: N.Kerschen CREATED: Nov 8, 2006 PURPOSE: Longitudinal weight corrections applied to topoEM ********************************************************************/ #include "CaloClusterCorrection/CaloClusterCorrectionCommon.h" #include "CaloConditions/Array.h" class CaloTopoEMLongWeights : public CaloClusterCorrectionCommon { public: // constructor CaloTopoEMLongWeights (const std::string& type, const std::string& name, const IInterface* parent); /** * @brief Virtual function for the correction-specific code. * @param ctx The event context. * @param cluster The cluster to correct. * It is updated in place. * @param elt The detector description element corresponding * to the cluster location. * @param eta The @f$\eta@f$ coordinate of the cluster, in this sampling. * @param adj_eta The @f$\eta@f$ adjusted for * any shift between the actual and nominal coordinates. * (This is shifted back to the nominal coordinate system.) * @param phi The @f$\phi@f$ coordinate of the cluster, in this sampling. * @param adj_phi The @f$\phi@f$ adjusted for * any shift between the actual and nominal coordinates. * (This is shifted back to the nominal coordinate system.) * @param samp The calorimeter sampling we're examining. * This is a sampling code as defined by * @c CaloSampling::CaloSample; i.e., it has both * the calorimeter region and sampling encoded. */ virtual void makeTheCorrection (const EventContext& ctx, xAOD::CaloCluster* cluster, const CaloDetDescrElement* elt, float eta, float adj_eta, float phi, float adj_phi, CaloSampling::CaloSample samp) const; private: CaloRec::Array<2> m_correction; float m_eta_start_crack; float m_eta_end_crack; float m_etamax; int m_degree; bool m_use_raw_eta; }; #endif
3bcff8d62e95d3fffbab69ad43fb064a1261fc83
8fe9c1400b466082079918b96312d1a57184b025
/Cloth_Library/include/freecloth/geom/geMatrix4.inline.h
502177818a96724ba16d64a85bc4ffbf2ecbfb1d
[]
no_license
NavneethRaj/Thesis
941ce43faf506476b3a7c65842621d15f97ae80b
19086d10b8f1f95d0c43a0f4c113c23207bb021f
refs/heads/master
2020-07-03T19:21:09.631512
2016-08-22T14:36:25
2016-08-22T14:36:25
66,280,414
2
1
null
null
null
null
UTF-8
C++
false
false
9,016
h
#ifndef freecloth_geom_geMatrix4_inline_h #define freecloth_geom_geMatrix4_inline_h #ifndef freecloth_geom_geVector_h #include <freecloth/geom/geVector.h> #endif #ifndef freecloth_geom_gePoint_h #include <freecloth/geom/gePoint.h> #endif #ifndef freecloth_geom_geMatrix3_h #include <freecloth/geom/geMatrix3.h> #endif #ifndef freecloth_base_baMath_h #include <freecloth/base/baMath.h> #endif FREECLOTH_NAMESPACE_START //////////////////////////////////////////////////////////////////////////////// // CLASS GeMatrix4 //------------------------------------------------------------------------------ inline GeMatrix4::GeMatrix4() {} //------------------------------------------------------------------------------ inline GeMatrix4::GeMatrix4( Float d00, Float d01, Float d02, Float d03, Float d10, Float d11, Float d12, Float d13, Float d20, Float d21, Float d22, Float d23, Float d30, Float d31, Float d32, Float d33 ) { _data[ 0 ] = d00; _data[ 4 ] = d01; _data[ 8 ] = d02; _data[ 12 ] = d03; _data[ 1 ] = d10; _data[ 5 ] = d11; _data[ 9 ] = d12; _data[ 13 ] = d13; _data[ 2 ] = d20; _data[ 6 ] = d21; _data[ 10 ] = d22; _data[ 14 ] = d23; _data[ 3 ] = d30; _data[ 7 ] = d31; _data[ 11 ] = d32; _data[ 15 ] = d33; } //------------------------------------------------------------------------------ inline GeMatrix4::GeMatrix4( const Float data[ 16 ] ) { std::copy( data, data + 16, _data ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::colMajor( const Float data[ 16 ] ) { return GeMatrix4( data ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::rowMajor( const Float data[ 16 ] ) { return GeMatrix4( data[ 0 ], data[ 4 ], data[ 8 ], data[ 12 ], data[ 1 ], data[ 5 ], data[ 9 ], data[ 13 ], data[ 2 ], data[ 6 ], data[ 10 ],data[ 14 ], data[ 3 ], data[ 7 ], data[ 11 ],data[ 15 ] ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::rotation( const GeMatrix3& m3 ) { return GeMatrix4( m3(0,0), m3(0,1), m3(0,2), 0, m3(1,0), m3(1,1), m3(1,2), 0, m3(2,0), m3(2,1), m3(2,2), 0, 0, 0, 0, 1 ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::rotation( const GeVector& axis, Float theta ) { return rotation( GeMatrix3::rotation( axis, theta ) ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::translation( const GeVector& v ) { return GeMatrix4( 1, 0, 0, v._x, 0, 1, 0, v._y, 0, 0, 1, v._z, 0, 0, 0, 1 ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::scaling( Float sx, Float sy, Float sz ) { return GeMatrix4( sx, 0, 0, 0, 0, sy, 0, 0, 0, 0, sz, 0, 0, 0, 0, 1 ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::outerProduct( const GeVector& a, const GeVector& b ) { return GeMatrix4( a._x * b._x, a._x * b._y, a._x * b._z, 0, a._y * b._x, a._y * b._y, a._y * b._z, 0, a._z * b._x, a._z * b._y, a._z * b._z, 0, 0, 0, 0, 1 ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::from3x3( const GeMatrix3& m3 ) { return GeMatrix4( m3( 0, 0 ), m3( 0, 1 ), m3( 0, 2 ), 0, m3( 1, 0 ), m3( 1, 1 ), m3( 1, 2 ), 0, m3( 2, 0 ), m3( 2, 1 ), m3( 2, 2 ), 0, 0, 0, 0, 1 ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::identity() { static const Float entries[] = { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }; return GeMatrix4( entries ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::zero() { static const Float entries[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; return GeMatrix4( entries ); } //------------------------------------------------------------------------------ inline Float& GeMatrix4::operator()( UInt32 row, UInt32 col ) { DGFX_ASSERT( row < 4 && col < 4 ); return _data[ col * 4 + row ]; } //------------------------------------------------------------------------------ inline Float GeMatrix4::operator()( UInt32 row, UInt32 col ) const { DGFX_ASSERT( row < 4 && col < 4 ); return _data[ col * 4 + row ]; } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::operator-() const { return GeMatrix4( -_data[0], -_data[1], -_data[2], -_data[3], -_data[4], -_data[5], -_data[6], -_data[7], -_data[8], -_data[9], -_data[10],-_data[11], -_data[12],-_data[13],-_data[14],-_data[15] ); } //------------------------------------------------------------------------------ inline bool GeMatrix4::operator==( const GeMatrix4& rhs ) const { bool result = true; for( UInt32 i = 0; i < 16; ++i ) { result = result && BaMath::isEqual( _data[ i ], rhs._data[ i ] ); } return result; } //------------------------------------------------------------------------------ inline bool GeMatrix4::operator!=( const GeMatrix4& rhs ) const { return !operator==( rhs ); } //------------------------------------------------------------------------------ inline GeMatrix4& GeMatrix4::operator*=( const GeMatrix4& rhs ) { return operator=( operator*( rhs ) ); } //------------------------------------------------------------------------------ inline GeMatrix4& GeMatrix4::operator*=( Float rhs ) { for( UInt32 i = 0; i < 16; ++i ) { _data[ i ] *= rhs; } return *this; } //------------------------------------------------------------------------------ inline GeMatrix4& GeMatrix4::operator+=( const GeMatrix4& rhs ) { for( UInt32 i = 0; i < 16; ++i ) { _data[ i ] += rhs._data[ i ]; } return *this; } //------------------------------------------------------------------------------ inline GeMatrix4& GeMatrix4::operator-=( const GeMatrix4& rhs ) { for( UInt32 i = 0; i < 16; ++i ) { _data[ i ] -= rhs._data[ i ]; } return *this; } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::operator*( Float rhs ) const { GeMatrix4 temp( *this ); temp *= rhs; return temp; } //------------------------------------------------------------------------------ inline GeVector GeMatrix4::operator*( const GeVector& rhs ) const { // _data[ c*4+r ] return GeVector( _data[ 0*4+0 ]*rhs._x + _data[ 1*4+0 ]*rhs._y + _data[ 2*4+0 ]*rhs._z, _data[ 0*4+1 ]*rhs._x + _data[ 1*4+1 ]*rhs._y + _data[ 2*4+1 ]*rhs._z, _data[ 0*4+2 ]*rhs._x + _data[ 1*4+2 ]*rhs._y + _data[ 2*4+2 ]*rhs._z ); } //------------------------------------------------------------------------------ inline GePoint GeMatrix4::operator*( const GePoint& rhs ) const { // _data[ c*4+r ] return GePoint( _data[ 0*4+0 ]*rhs._x + _data[ 1*4+0 ]*rhs._y + _data[ 2*4+0 ]*rhs._z + _data[ 3*4+0 ], _data[ 0*4+1 ]*rhs._x + _data[ 1*4+1 ]*rhs._y + _data[ 2*4+1 ]*rhs._z + _data[ 3*4+1 ], _data[ 0*4+2 ]*rhs._x + _data[ 1*4+2 ]*rhs._y + _data[ 2*4+2 ]*rhs._z + _data[ 3*4+2 ] ); } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::operator+( const GeMatrix4& rhs ) const { GeMatrix4 temp( *this ); temp += rhs; return temp; } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::operator-( const GeMatrix4& rhs ) const { GeMatrix4 temp( *this ); temp -= rhs; return temp; } //------------------------------------------------------------------------------ inline Float GeMatrix4::getTrace() const { return _data[ 0 ] + _data[ 5 ] + _data[ 10 ] + _data[ 15 ]; } //------------------------------------------------------------------------------ inline GeMatrix4 GeMatrix4::getTranspose() const { return GeMatrix4::rowMajor( _data ); } //------------------------------------------------------------------------------ inline const Float* GeMatrix4::asColMajor() const { return _data; } //////////////////////////////////////////////////////////////////////////////// // GLOBAL FUNCTIONS // //------------------------------------------------------------------------------ inline GeMatrix4 operator*( Float lhs, const GeMatrix4& rhs ) { return rhs * lhs; } FREECLOTH_NAMESPACE_END #endif
bb371807033e21f7d51b9aca6b32a7ec18d6388d
0abf26b0a8d9568d78a1561e8c5ad1f265451091
/winrt/lib/effects/generated/DistantDiffuseEffect.cpp
9b0662b3ae763eb2d51679d5d924b4329cd32da7
[ "MIT" ]
permissive
LanceMcCarthy/Win2D
3be56bda766e8f04ef930d8db746bcf6952a0fe2
1205ec5e4944c81881213e050c2b50570e72b047
refs/heads/master
2021-01-18T07:19:25.941142
2015-09-08T19:06:25
2015-09-08T19:06:25
41,958,155
0
0
null
2015-09-05T11:12:00
2015-09-05T11:11:59
null
UTF-8
C++
false
false
3,749
cpp
// Copyright (c) Microsoft Corporation. All rights reserved. // // Licensed under the MIT License. See LICENSE.txt in the project root for license information. // This file was automatically generated. Please do not edit it manually. #include "pch.h" #include "DistantDiffuseEffect.h" namespace ABI { namespace Microsoft { namespace Graphics { namespace Canvas { namespace Effects { DistantDiffuseEffect::DistantDiffuseEffect() : CanvasEffect(CLSID_D2D1DistantDiffuse, 7, 1, true) { // Set default values SetBoxedProperty<float>(D2D1_DISTANTDIFFUSE_PROP_AZIMUTH, 0.0f); SetBoxedProperty<float>(D2D1_DISTANTDIFFUSE_PROP_ELEVATION, 0.0f); SetBoxedProperty<float>(D2D1_DISTANTDIFFUSE_PROP_DIFFUSE_CONSTANT, 1.0f); SetBoxedProperty<float>(D2D1_DISTANTDIFFUSE_PROP_SURFACE_SCALE, 1.0f); SetBoxedProperty<float[3]>(D2D1_DISTANTDIFFUSE_PROP_COLOR, Color{ 255, 255, 255, 255 }); SetBoxedProperty<float[2]>(D2D1_DISTANTDIFFUSE_PROP_KERNEL_UNIT_LENGTH, Numerics::Vector2{ 1.0f, 1.0f }); SetBoxedProperty<uint32_t>(D2D1_DISTANTDIFFUSE_PROP_SCALE_MODE, D2D1_DISTANTDIFFUSE_SCALE_MODE_LINEAR); } IMPLEMENT_EFFECT_PROPERTY(DistantDiffuseEffect, Azimuth, ConvertRadiansToDegrees, float, D2D1_DISTANTDIFFUSE_PROP_AZIMUTH) IMPLEMENT_EFFECT_PROPERTY(DistantDiffuseEffect, Elevation, ConvertRadiansToDegrees, float, D2D1_DISTANTDIFFUSE_PROP_ELEVATION) IMPLEMENT_EFFECT_PROPERTY_WITH_VALIDATION(DistantDiffuseEffect, DiffuseAmount, float, float, D2D1_DISTANTDIFFUSE_PROP_DIFFUSE_CONSTANT, (value >= 0.0f) && (value <= 10000.0f)) IMPLEMENT_EFFECT_PROPERTY_WITH_VALIDATION(DistantDiffuseEffect, HeightMapScale, float, float, D2D1_DISTANTDIFFUSE_PROP_SURFACE_SCALE, (value >= -10000.0f) && (value <= 10000.0f)) IMPLEMENT_EFFECT_PROPERTY(DistantDiffuseEffect, LightColor, float[3], Color, D2D1_DISTANTDIFFUSE_PROP_COLOR) IMPLEMENT_EFFECT_PROPERTY_WITH_VALIDATION(DistantDiffuseEffect, HeightMapKernelSize, float[2], Numerics::Vector2, D2D1_DISTANTDIFFUSE_PROP_KERNEL_UNIT_LENGTH, (value.X >= 0.01f) && (value.Y >= 0.01f) && (value.X <= 100.0f) && (value.Y <= 100.0f)) IMPLEMENT_EFFECT_PROPERTY(DistantDiffuseEffect, HeightMapInterpolationMode, uint32_t, CanvasImageInterpolation, D2D1_DISTANTDIFFUSE_PROP_SCALE_MODE) IMPLEMENT_EFFECT_SOURCE_PROPERTY(DistantDiffuseEffect, Source, 0) IMPLEMENT_EFFECT_PROPERTY_MAPPING(DistantDiffuseEffect, { L"Azimuth", D2D1_DISTANTDIFFUSE_PROP_AZIMUTH, GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES }, { L"Elevation", D2D1_DISTANTDIFFUSE_PROP_ELEVATION, GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES }, { L"DiffuseAmount", D2D1_DISTANTDIFFUSE_PROP_DIFFUSE_CONSTANT, GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT }, { L"HeightMapScale", D2D1_DISTANTDIFFUSE_PROP_SURFACE_SCALE, GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT }, { L"LightColor", D2D1_DISTANTDIFFUSE_PROP_COLOR, GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR3 }, { L"HeightMapKernelSize", D2D1_DISTANTDIFFUSE_PROP_KERNEL_UNIT_LENGTH, GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT }, { L"HeightMapInterpolationMode", D2D1_DISTANTDIFFUSE_PROP_SCALE_MODE, GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT }) ActivatableClass(DistantDiffuseEffect); }}}}}
030ac2e4a779f60424f5f1aafc3fe2c1596f2f7a
b35874f190a380a9d0680ff08ed2dd6c138085e3
/shaka/src/js/events/event_names.h
d7244677b7a28c9219353bb650e82877ce327305
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
yuta-n-play/shaka-player-embedded
6ad9a6db14547b9c8e0a7f90a2275b95906335e8
c285eae959307ead60e2d40afb4c628b3f2de976
refs/heads/master
2020-12-21T14:25:01.471250
2020-01-22T21:31:30
2020-01-24T21:05:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,507
h
// Copyright 2017 Google LLC // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef SHAKA_EMBEDDED_JS_EVENTS_EVENT_NAMES_H_ #define SHAKA_EMBEDDED_JS_EVENTS_EVENT_NAMES_H_ #include "src/util/macros.h" namespace shaka { namespace js { #define DEFINE_EVENTS_(DEFINE_EVENT) \ DEFINE_EVENT(Abort, "abort") \ DEFINE_EVENT(Error, "error") \ DEFINE_EVENT(ReadyStateChange, "readystatechange") \ /** Media events */ \ DEFINE_EVENT(CanPlay, "canplay") \ DEFINE_EVENT(CanPlayThrough, "canplaythrough") \ DEFINE_EVENT(LoadedMetaData, "loadedmetadata") \ DEFINE_EVENT(LoadedData, "loadeddata") \ DEFINE_EVENT(Waiting, "waiting") \ DEFINE_EVENT(Emptied, "emptied") \ DEFINE_EVENT(Play, "play") \ DEFINE_EVENT(Playing, "playing") \ DEFINE_EVENT(Pause, "pause") \ DEFINE_EVENT(Seeked, "seeked") \ DEFINE_EVENT(Seeking, "seeking") \ DEFINE_EVENT(Ended, "ended") \ DEFINE_EVENT(CueChange, "cuechange") \ /* EME events. */ \ DEFINE_EVENT(KeyStatusesChange, "keystatuseschange") \ DEFINE_EVENT(Message, "message") \ DEFINE_EVENT(WaitingForKey, "waitingforkey") \ DEFINE_EVENT(Encrypted, "encrypted") \ /* Progress tracking */ \ DEFINE_EVENT(Load, "load") \ DEFINE_EVENT(LoadStart, "loadstart") \ DEFINE_EVENT(LoadEnd, "loadend") \ DEFINE_EVENT(Progress, "progress") \ DEFINE_EVENT(Update, "update") \ DEFINE_EVENT(UpdateStart, "updatestart") \ DEFINE_EVENT(UpdateEnd, "updateend") \ /* XMLHttpRequest */ \ DEFINE_EVENT(Timeout, "timeout") \ /* MSE */ \ DEFINE_EVENT(SourceOpen, "sourceopen") \ DEFINE_EVENT(SourceEnded, "sourceended") \ DEFINE_EVENT(SourceClose, "sourceclose") \ DEFINE_EVENT(AddSourceBuffer, "addsourcebuffer") \ DEFINE_EVENT(RemoveSourceBuffer, "removesourcebuffer") \ /* IndexedDB */ \ DEFINE_EVENT(Complete, "complete") \ DEFINE_EVENT(Success, "success") \ DEFINE_EVENT(UpgradeNeeded, "upgradeneeded") \ DEFINE_EVENT(VersionChange, "versionchange") DEFINE_ENUM_AND_TO_STRING_2(EventType, DEFINE_EVENTS_); #undef DEFINE_EVENTS_ } // namespace js } // namespace shaka #endif // SHAKA_EMBEDDED_JS_EVENTS_EVENT_NAMES_H_
103e3a8085ca4aeb1c068066ff5c0fedc242dfe3
c9e32374ecc46eac59437a068d424e6eb28ca849
/hcp/test/inline_function/main.cc
7a036ffd85ad728a0116af538a9694bbe04cd6ad
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
urnest/urnest
261884b2ee71d64748c9e2afe7e78c9df61d91e7
6ec484080222f27a33070fa3b65593645f94a575
refs/heads/master
2023-07-13T06:16:41.566253
2023-07-06T11:04:34
2023-07-06T11:04:34
6,716,252
1
1
MIT
2023-06-11T03:06:14
2012-11-16T04:12:22
C++
UTF-8
C++
false
false
139
cc
#include "x.hh" #include <xju/assert.hh> int main(int argc, char* argv[]) { A::B b; xju::assert_equal(get(b),b.get()); return 0; }
743b9cc5b44529820dfbaa87edecf8612df553aa
718e9af63e4b462123bb1432f50a5952bee69efa
/phase3/tmroundedrectangle.h
3891f3391075ceeaebcdd3b489e76b61b3cbfdb2
[]
no_license
rahulchoudhary1999/Digital-Educational-Tool
e1735fc1933894ef3f5cf2b0ec1d2c5fe96f6465
443ecf644f86a813f3c488402a6b985b6baf4a81
refs/heads/main
2023-03-30T20:50:46.282833
2021-04-05T16:18:04
2021-04-05T16:18:04
354,871,363
0
0
null
null
null
null
UTF-8
C++
false
false
1,001
h
#ifndef TMROUNDEDRECTANGLE_H #define TMROUNDEDRECTANGLE_H #include <DrawableComponent.h> class TMRoundedRectangle:public DrawableComponent { int x; int y; int width; int height; QString borderColor; QString fillColor; bool isFilled; int xRadius; int yRadius; public: TMRoundedRectangle(); void draw(QPainter *event) override; int getX() const; void setX(int value); int getY() const; void setY(int value); int getWidth() const; void setWidth(int value); int getHeight() const; void setHeight(int value); QString getBorderColor() const; void setBorderColor(const QString &value); QString getFillColor() const; void setFillColor(const QString &value); bool getIsFilled() const; void setIsFilled(bool value); int getXRadius() const; void setXRadius(int value); int getYRadius() const; void setYRadius(int value); }; #endif // TMROUNDEDRECTANGLE_H
162f2a747b5f872d0c1cbe9b71b6ece793077cdd
416a81798662b73f7cba5cc8bdc62806d01944fe
/Actions/AddGate.h
66a61220cc4e4eea8aa081ff52fee2202eea3f2c
[]
no_license
aabdosobhy/GatesSimulation
b2b3bd8b8dd49c35004bb5b16afc488055921fdd
1f0f4ddb4a1a99471c5fb889515be11d772a0d02
refs/heads/main
2023-03-27T07:28:10.810401
2021-03-22T02:59:51
2021-03-22T02:59:51
350,170,234
0
0
null
null
null
null
UTF-8
C++
false
false
397
h
#pragma once #include"Action.h" #include"..\ApplicationManager.h" #include"..\GUI\Input.h" #include"..\GUI\Output.h" class AddGate : public Action { public: AddGate(ApplicationManager *pApp); virtual ~AddGate(); virtual void ReadActionParameters(); //Execute action (code depends on action type) virtual void Execute(); virtual void Undo(); virtual void Redo(); };
b86d361be747864ab650a18751d90d38e8b45389
c8fe2cd765ff3b89f2bc27636b46a0a7961a2c92
/Problems 1to25/Level_1.h
88e7e67f87e8fe0aae95f11f992f1c610cd9975c
[]
no_license
cdslug/ProjectEuler
74f9490c4a28e28dbd4f4a5527979f7abdc40181
8ad92ad6a581437a64fab5facfb9aa9a5631081f
refs/heads/master
2021-01-10T13:28:22.986275
2016-03-16T20:00:23
2016-03-16T20:00:23
54,062,032
0
0
null
null
null
null
UTF-8
C++
false
false
1,299
h
/* * Levels_1-25.h * Level 1 * * Created by Ryan Mercer on 6/13/11. * Copyright 2011 __MyCompanyName__. All rights reserved. * */ # include <iostream> # include <string> # include <stdio.h> # include <stdlib.h> using namespace std; int min(int x, int y); long problem_1(const int & numMax); long problem_1_extra_odd(const int& num,const int& numMax, int & multiples, int & top); long problem_2(const int & numMax); long problem_3(const long & numMax); int problem_4(); long long problem_5(const int &numMax); bool problem_5_helper(int primes[3][8], const int& index, int &iChg); long problem_6(const int& numMax); /*The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ten natural numbers is, (1 + 2 + ... + 10)^2 = 55^2 = 3025 Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 - 385 = 2640. Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum. */ long problem_8(const string& numString); long problem_9(const int& numMax); long problem_11(char * numCString); int problem_12(const int& numDivisors); //NEED TO FINISH long long problem_13(const string numString);
ae8f1881bbeebd20d7bd32caa874ec7acf5f5528
5a179ff8660eae283bc968d089821688dd9fdf26
/228.cpp
203421ce4057960bb42d60c184b38d544280c650
[]
no_license
EnriquelTM/CC-verano
55dbfaa0e5b22f96323ce2a16f19f74cce7c616b
1947465d45e34239014748aaf6a47489538c6ec7
refs/heads/master
2023-02-15T20:04:48.988786
2021-01-13T19:09:52
2021-01-13T19:09:52
328,769,506
0
0
null
null
null
null
UTF-8
C++
false
false
535
cpp
#include <iostream> using namespace std; int main() { int num = 0, divisor = 1, primer = 0, temp = 0 , tercer = 0, temp2=0, segundo = 0, temp3 = 0, cuarto = 0; cout << "Escriba un numero de 4 digitos: "; cin >> num; divisor = divisor *1000; primer = num/divisor; temp = num % divisor ; segundo = temp / 100 ; temp2 = temp % 100; tercer = temp2 / 10; temp3 = temp2 % 10; cuarto = temp3 / 1; cout <<cuarto<<" "<< tercer<<" "<< segundo<<" "<< primer<< endl; return 0; }
ab03a018575e2de16e492161779e0fac8fd7c32d
979d7feb7dcea5d325dbff4e70cab08f21b32a30
/CSCI 241/Assign2/ProviderDB.h
cec581be488aaa63c23dea3b0b9b9cc52bfc347d
[]
no_license
tkchen17/College-Degree
b8e6a706b4e647e1d2894577a8cb71c240605788
f76511a031fa2c5de91db9051c9541b27fb3d23c
refs/heads/master
2023-03-16T13:20:56.438989
2020-10-07T15:02:45
2020-10-07T15:02:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
854
h
#ifndef PROVIDERDB_H #define PROVIDERDB_H #include "Provider.h" //***************************************************************** // FILE: ProviderDB.h // AUTHOR: Joe Meyer // LOGON ID: z1788150 // DUE DATE: 09/26/17 // // PURPOSE: Declaration for the Provider class, which represents // information about a health care provider. //***************************************************************** class ProviderDB { // Data members and method prototypes for the Provider class go here //Private Data Memebers for the assingment Provider StoredObj[40]; int AmountStored = 0; public: //Method Prototypes for the assignment ProviderDB(const char*); ProviderDB(); void print() const; void sortByProviderNumber(); void sortBySpeciality(); void sortByName(); //int*, int }; #endif
e11e9ad250bf809f596cd3b41ca8f1474efe1ac1
4ebcab201c71e009d958a0d7fee6332028f97994
/inl/bankkonton/bank.cpp
1e49434f5457ecfd4f7c6c47cd9843ee05454b82
[]
no_license
nllptr/EDAF30
db73159e6aa5afb7fb2f980a6d2917877b7b028d
18556e6731f703f6467da7a2e76c723e3cc31d7a
refs/heads/master
2020-12-24T17:07:53.212874
2015-01-06T16:21:56
2015-01-06T16:21:56
24,002,594
0
0
null
2014-12-16T20:44:52
2014-09-13T18:47:01
C++
UTF-8
C++
false
false
6,257
cpp
#include "bank.h" #include <iostream> #include <fstream> #include <sstream> #include <cstdio> #include "account.h" Bank::Bank(const char *data_file) { this->data_file = data_file; std::ifstream infile(data_file, std::ios::in); if(infile) { // If a data file exists, start with reading next_account_number. // This is always found on the first line of a datafile and is used when creating new accounts. infile >> Account::next_account_number; Account acc; while(infile >> acc) { // Read an account. If it is active, allocate memory for it and add the pointer to // both of the data structures. if(acc.is_active()) { Account* acc_ptr = new Account(acc.get_number(), acc.is_active(), acc.get_type(), acc.get_owner(), acc.get_balance()); accounts_by_number.insert(std::pair<int, Account*>(acc.get_number(), acc_ptr)); accounts_by_owner.insert(std::pair<std::string, Account*>(acc.get_owner(), acc_ptr)); } } infile.close(); } else { // If no data file is found, assume that we are starting fresh. In this case next_account_number // is set to 1000000 (which is "the first" account number), and save it to the first line of a new file. Account::next_account_number = 1000000; std::ofstream outfile(data_file, std::ios::out); if(outfile) { outfile << Account::next_account_number << std::endl; outfile.close(); } } } Bank::~Bank() { // Frees the dynamically allocated memory. for(std::map<int, Account*>::iterator it = accounts_by_number.begin(); it != accounts_by_number.end(); ++it) { delete it->second; } } int Bank::openAccount(account_t type, std::string owner) { // Allocate memory for a new account, and add its pointer to both data structures. // Write the new account to file. Account* account = new Account(type, owner); accounts_by_number.insert(std::pair<int, Account*>(account->get_number(), account)); accounts_by_owner.insert(std::pair<std::string, Account*>(account->get_owner(), account)); storeAccount(account); return account->get_number(); } bool Bank::closeAccount(int account) { Account* acc = findAccountByNumber(account); if(acc == NULL) return false; accounts_by_number.erase(account); // Since a person can have multiple accounts we have to: // 1) get the owner ID from the account // 2) get all accounts for that owner ID // 3) iterate over all of the found accounts // a) when the account is found, remove that account from the data structure and exit loop // When the account is removed from both data structures, it is simply a matter of setting the // account as inactive and storing that change. std::string owner = acc->get_owner(); std::pair<std::multimap<std::string, Account*>::iterator, std::multimap<std::string, Account*>::iterator> ret; ret = accounts_by_owner.equal_range(owner); for(std::multimap<std::string, Account*>::iterator it = ret.first; it != ret.second; ++it) { if(it->second->get_number() == account) { accounts_by_owner.erase(it); break; } } acc->set_active(false); storeAccount(acc); return true; } std::vector<Account*> Bank::getAllAccounts() { std::vector<Account*> output; for(auto m : accounts_by_number) { output.push_back(m.second); } return output; } Account* Bank::findAccountByNumber(int account) { std::map<int, Account*>::iterator it = accounts_by_number.find(account); return it != accounts_by_number.end() ? it->second : NULL; } std::vector<Account*> Bank::findAccountsByOwner(std::string owner) { // Create a vector of all accounts for the specified owner std::pair<std::multimap<std::string, Account*>::iterator, std::multimap<std::string, Account*>::iterator> ret; ret = accounts_by_owner.equal_range(owner); std::vector<Account*> output; for(std::multimap<std::string, Account*>::iterator it = ret.first; it != ret.second; ++it) output.push_back(it->second); return output; } void Bank::storeAccount(Account* account) { std::string temp_file = std::string(data_file) + "~"; std::ifstream if1(data_file, std::ios::in); std::ofstream of1(temp_file, std::ios::out); if1.ignore(20, '\n'); // Skip first line of1 << Account::next_account_number << std::endl; // Write contents of data file to temporary file. // If the account to be stored is encountered, it is updated. Account temp_account; bool found = false; while(if1 >> temp_account) { if(temp_account.get_number() == account->get_number()) { found = true; of1 << *account; } else of1 << temp_account; } // The account was not found, append it to the end. if(!found) of1 << *account; if1.close(); of1.close(); // Write the temporary file back to the original file. std::ifstream if2(temp_file, std::ios::in); std::ofstream of2(data_file, std::ios::out); of2 << if2.rdbuf(); if2.close(); of2.close(); std::remove(temp_file.c_str()); } bool Bank::deposit(int account, double amount) { Account* acc = findAccountByNumber(account); if(acc == NULL) return false; else if(!acc->deposit(amount)) return false; else { storeAccount(acc); return true; } } bool Bank::withdraw(int account, double amount) { Account* acc = findAccountByNumber(account); if(acc == NULL) return false; else if(!acc->withdraw(amount)) return false; else { storeAccount(acc); return true; } } bool Bank::modifyAccountType(int account, account_t type) { Account* acc = findAccountByNumber(account); if(acc == NULL) return false; else { acc->set_type(type); storeAccount(acc); return true; } } bool Bank::modifyAccountOwner(int account, std::string owner) { Account* acc = findAccountByNumber(account); if(acc == NULL) return false; else { acc->set_owner(owner); storeAccount(acc); return true; } }
da743e5b4023d54f4890d8761a80504ffb650bea
48080b9ed0d2996288be00634130ac539b55683c
/AutomaticVoltmeter/AutomaticVoltmeter.ino
36e788caf40a0aef7a86a4f42df21b76457bc827
[]
no_license
RazorFink/arduino-sandbox
87105dd8aeb66a5a85cc6b9ffd0199b76143aa8e
87f3b98b6f81b75df9f7cb8dbd332abba97ab15e
refs/heads/master
2020-05-04T21:44:20.102974
2013-04-04T19:14:35
2013-04-04T19:14:35
8,728,624
1
0
null
null
null
null
UTF-8
C++
false
false
1,018
ino
// Internal Temp // Test the internal thermometer ADC in the arduino #define SAMPLES 256 void setup() { Serial.begin(9600); Serial.println("Arduino: Automatic Voltmeter"); ADMUX = 1<<REFS0; // select ADC0 (A0), AREF=AVCC (5.0V) ADCSRA = 1<<ADEN | 1<<ADSC | 1<<ADATE | 1<<ADIE | 1<<ADPS2 | 1<<ADPS1 | 1<<ADPS0; ADCSRB = 0; // free running mode bitSet(DIDR0, ADC0D); // disable digital input on ADC0 } void loop() { } ISR(ADC_vect) { static unsigned int i = 0; // sample counter static unsigned long voltage = 0; // voltage reading accumulator voltage += ADC; // accumulate voltage readings i++; // increment sample counter ADMUX = 1<<REFS0; // re-select ADC0 (A0), AREF=AVCC (5.0V) if(i >= SAMPLES) { Serial.print((((voltage * 5.0) / 1024) / SAMPLES), 4); //report Serial.println("V"); // label units of measure voltage = 0; // reset voltage readings i = 0; // reset sample counter } }
82df41bc97cc19a984d81bdc92f019cb8572bb18
f6a0e170fea9363f2d521f5b1da2c1d3be51b969
/Class_Lab/HowManyWaysToSAve/main.cpp
299ecfcff78582235eba69161f03d6b46c5a042b
[]
no_license
GuillermoReyes/ReyesGuillermo_CSC5_40717
665b2141ac5287d9f5e68db1d119fcf0dd92167b
704bacdb8d8e444423dda4da83eecf651048ebb7
refs/heads/master
2016-09-06T20:03:58.018789
2015-02-13T10:01:50
2015-02-13T10:01:50
28,885,371
0
0
null
null
null
null
UTF-8
C++
false
false
1,471
cpp
/* * File: main.cpp * Author: rcc * * Created on January 21, 2015, 10:31 AM */ #include <iostream> #include <iostream> #include <cmath> using namespace std; //Function Prototypes //FV= future Value //PV= present value //i = interest rate per year //n= number of compounding periods in years //FV PV i n float save1(float p,float i,int n){ return p*pow(1+i,n); } float save2(float p,float i,int n){ return p*exp(n*log(1+i)); } float save3(float p,float i,int n){ for(int year=1;year<=n;year++){ p*=(1+i); } return p; } float save4(float p,float i,int n){ if(n<=0) return p; return save4(p,i,n-1)*(1+i); } int main(int argc, char** argv) { //Declare and initialize values float prsVal= 100.0f; //$100 float intRate= 6;// Interest rate per year int nCompnd= 72/intRate;//By the rule of 72 //Convert interest to a fraction intRate/=100; //output the results cout<<"Present Value = $"<<prsVal<<endl; cout<<"Interest Rate = "<<intRate*100<<"%"<<endl; cout<<"Number of compounding periods = "<<nCompnd<<"(years)"<<endl; //Output the Future Value cout<<"Our savings = $"<<save1(prsVal,intRate,nCompnd)<<endl; cout<<"Our savings = $"<<save2(prsVal,intRate,nCompnd)<<endl; cout<<"Our savings = $"<<save3(prsVal,intRate,nCompnd)<<endl; cout<<"Our savings = $"<<save4(prsVal,intRate,nCompnd)<<endl; //Exit stage right! return false; }
29d999f4b062e3e2c74fcb0f7215597e9f5a16ae
a1146115ebc4d0788bc911bd794eb984215b96b6
/Flight.h
bf4312cf2dcdeea3598649f070d60af09e5f5879
[]
no_license
fhammoud/flight_booking
aa70c305b379f5f1012215f391e58454e0184643
09e7642bdb8ed1d789d7f7bae394b154b343aec1
refs/heads/master
2020-04-10T20:42:26.123591
2018-12-11T22:46:32
2018-12-11T22:46:32
161,276,167
0
1
null
null
null
null
UTF-8
C++
false
false
877
h
#pragma once #include <string> #include "Hub.h" class Hub; class Flight { public: std::string number; double price; Hub* source; Hub* destination; Date* departure; int duration; std::string company; double baggageFees; Flight(std::string n, double p, Hub* f, Hub* t, std::string de, int d, std::string c); virtual void setBaggageFees(int n); void toString(); ~Flight(); }; class USAirways :public Flight { public: USAirways(std::string n, double p, Hub* f, Hub* t, std::string de, int d, std::string c); void setBaggageFees(int n); }; class Delta :public Flight { public: Delta(std::string n, double p, Hub* f, Hub* t, std::string de, int d, std::string c); void setBaggageFees(int n); }; class SouthWest :public Flight { public: SouthWest(std::string n, double p, Hub* f, Hub* t, std::string de, int d, std::string c); void setBaggageFees(int n); };
98de54c381decd218d2169f8fc9e58477e4cea01
d0beff90189f90ba0b9ff28812b338a70f7b1dd1
/nn++/source/loss/MeanSquaredErrorLoss.inl
640fe59c167d9959a03cb935e956c0bca214a283
[ "MIT" ]
permissive
MatthewATaylor/nn-plus-plus
6c2e5ba05aadbfd3f18d70b8d1dc7562b6fca7fa
7076a56875bdace2792404abb96e52b8d7409caa
refs/heads/master
2022-12-28T14:27:27.815003
2020-10-17T20:31:50
2020-10-17T20:31:50
296,881,757
1
0
null
null
null
null
UTF-8
C++
false
false
796
inl
#pragma once inline float MeanSquaredErrorLoss::func( const Mat<float> &actual, const Mat<float> &prediction ) const { float squaredErrorSum = 0.0f; for (size_t i = 0; i < actual.rows; ++i) { for (size_t j = 0; j < actual.cols; ++j) { squaredErrorSum += (actual(i, j) - prediction(i, j)) * (actual(i, j) - prediction(i, j)); } } return squaredErrorSum / actual.rows / actual.cols; } inline Mat<float> MeanSquaredErrorLoss::derivative( const Mat<float> &actual, const Mat<float> &prediction ) const { Mat<float> derivatives(actual.rows, actual.cols); for (size_t i = 0; i < actual.rows; ++i) { for (size_t j = 0; j < actual.cols; ++j) { derivatives(i, j) = (2.0f / actual.rows / actual.cols) * (prediction(i, j) - actual(i, j)); } } return derivatives; }
1795547ddc2779fde3489feea845cba0af412d6f
64037166a9e8d5eedca15eba23df34cae4ca5250
/cliente/entradas/EntradaJuego.h
598f9e85f9dd733fcc7df88337f792035a342d0e
[ "MIT" ]
permissive
seblaz/Final-Fight
9d7bc63625973077b68dceb7d00fb6596e54d416
b79677191a4d4239e8793fa0b6e8a8b69870a14d
refs/heads/master
2020-07-10T07:23:13.467302
2020-01-24T21:55:01
2020-01-24T21:55:01
204,200,804
1
1
MIT
2020-03-06T09:47:19
2019-08-24T19:07:15
C++
UTF-8
C++
false
false
282
h
// // Created by sebas on 6/11/19. // #ifndef FINAL_FIGHT_ENTRADAJUEGO_H #define FINAL_FIGHT_ENTRADAJUEGO_H #include "EntradaUsuario.h" class EntradaJuego : public EntradaUsuario { public: Accion *getAccion(SDL_Event *e) override; }; #endif //FINAL_FIGHT_ENTRADAJUEGO_H
d9585692a56b08578f0401c66d67570188d20806
d6d225186da3d8c8c834c336777db7b4c6a8f221
/topic-based/next_permutation.cpp
be880ce8de517840fa446ef48aa1faf7565ab661
[]
no_license
ishantsharma29/Competitive-Programming
40bc8bbeb157e3b0b3ef234851c0dc617afc6b19
1978b21dae8a7cc27b482e11ff094d0b787846b0
refs/heads/master
2022-05-27T15:33:24.924740
2020-05-01T17:52:46
2020-05-01T17:52:46
260,514,111
0
0
null
null
null
null
UTF-8
C++
false
false
544
cpp
#include<bits/stdc++.h> using namespace std; #define M 1000005 int a[M];//b[M]; int main() { int t,n,i; scanf("%d",&t); while(t--) { string s; cin>>s; int n=s.length(); if(next_permutation(s.begin(),s.end()) ) cout<<s<<endl; else printf("-1"); while(next_permutation(s.begin(),s.end()) ) { cout<<s<<endl; } printf("\n"); } return 0; } // Similarly can be used in array next_permutation(a,a +n) like in JNEXT question on SPOJ http://www.cplusplus.com/reference/algorithm/next_permutation/
d6b8afe90b4d659eb9fc6abc2725b36c108b6384
22a33ace49e7df15ca79f2ffa20cfbbfeb2a88da
/DMS/dmsui/mythread.cpp
59d9fc3e993d51517268b03fc886ef82abf3519b
[]
no_license
hanzhaohui/university--DMS
5902cae091edc0a505fe834cfac705cca6324338
d4c6cde6b08737e6f12aa46d0c63ae0bca8f1f09
refs/heads/master
2021-05-29T17:03:29.834517
2015-06-10T05:57:48
2015-06-10T05:57:48
37,177,400
1
1
null
null
null
null
UTF-8
C++
false
false
401
cpp
#include"mythread.h" void MyThread::run(){ /*在这里实现线程的功能*/ qDebug("sned data to server"); /*通知界面发送了那些数据*/ emit mySig("send data to server");//发送一条数据就发射一个信号 sleep(1); qDebug("send data to server" ); emit mySig("send data to server"); sleep(1); qDebug("send data to server" ); emit mySig("send data to server"); sleep(1); }
4f0772d63555a87aa459e4c27256b31e52fd7d6f
cd8c9cca6bced75989881387e170e6dbb6033853
/Segundo Parcial/Sudoku/include/Ingreso.h
1dbccf11695642906b3ae001cde47483fa382727
[]
no_license
FranciscoDavidMunozArmas/Respositorio_Grupal
de86f718e66ada2768dbf1f1fcd0cb6b6c7985c3
6e7482cb1d60eecb952f3f1677035f0fe5454ff9
refs/heads/master
2022-12-15T21:15:33.961425
2020-09-14T21:27:35
2020-09-14T21:27:35
269,201,581
0
0
null
null
null
null
UTF-8
C++
false
false
253
h
#ifndef INGRESO_H #define INGRESO_H #include <iostream> #include "Validar.h" using namespace std; class Ingreso { public: Ingreso(); string leer(string,int); protected: private: }; #endif // INGRESO_H
705ccdd7a1b6d7177d9781fee5ed795dae25fc61
58ec94f60bc67cd8c595fda7d2d1bd71efea4dfc
/src/qt/peertablemodel.cpp
3d4b23f083a3d8c0f685bea521ec4588d72e3f54
[ "MIT" ]
permissive
Betxoin/Betxoin
e761162276866d8ac1c24cd1593c6b1f03f21009
85844b3e9b0b02b4d6575aec46527f72ae8f919d
refs/heads/master
2021-06-10T01:26:01.453525
2021-05-08T16:24:32
2021-05-08T16:24:32
172,921,490
0
0
null
null
null
null
UTF-8
C++
false
false
6,308
cpp
// Copyright (c) 2009-2018 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "peertablemodel.h" #include "clientmodel.h" #include "guiconstants.h" #include "guiutil.h" #include "net.h" #include "sync.h" #include <QDebug> #include <QList> #include <QTimer> bool NodeLessThan::operator()(const CNodeCombinedStats& left, const CNodeCombinedStats& right) const { const CNodeStats* pLeft = &(left.nodeStats); const CNodeStats* pRight = &(right.nodeStats); if (order == Qt::DescendingOrder) std::swap(pLeft, pRight); switch (column) { case PeerTableModel::Address: return pLeft->addrName.compare(pRight->addrName) < 0; case PeerTableModel::Subversion: return pLeft->cleanSubVer.compare(pRight->cleanSubVer) < 0; case PeerTableModel::Ping: return pLeft->dPingTime < pRight->dPingTime; } return false; } // private implementation class PeerTablePriv { public: /** Local cache of peer information */ QList<CNodeCombinedStats> cachedNodeStats; /** Column to sort nodes by */ int sortColumn; /** Order (ascending or descending) to sort nodes by */ Qt::SortOrder sortOrder; /** Index of rows by node ID */ std::map<NodeId, int> mapNodeRows; /** Pull a full list of peers from vNodes into our cache */ void refreshPeers() { { TRY_LOCK(cs_vNodes, lockNodes); if (!lockNodes) { // skip the refresh if we can't immediately get the lock return; } cachedNodeStats.clear(); #if QT_VERSION >= 0x040700 cachedNodeStats.reserve(vNodes.size()); #endif BOOST_FOREACH (CNode* pnode, vNodes) { CNodeCombinedStats stats; stats.nodeStateStats.nMisbehavior = 0; stats.nodeStateStats.nSyncHeight = -1; stats.fNodeStateStatsAvailable = false; pnode->copyStats(stats.nodeStats); cachedNodeStats.append(stats); } } // Try to retrieve the CNodeStateStats for each node. { TRY_LOCK(cs_main, lockMain); if (lockMain) { BOOST_FOREACH (CNodeCombinedStats& stats, cachedNodeStats) stats.fNodeStateStatsAvailable = GetNodeStateStats(stats.nodeStats.nodeid, stats.nodeStateStats); } } if (sortColumn >= 0) // sort cacheNodeStats (use stable sort to prevent rows jumping around unneceesarily) qStableSort(cachedNodeStats.begin(), cachedNodeStats.end(), NodeLessThan(sortColumn, sortOrder)); // build index map mapNodeRows.clear(); int row = 0; BOOST_FOREACH (CNodeCombinedStats& stats, cachedNodeStats) mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++)); } int size() { return cachedNodeStats.size(); } CNodeCombinedStats* index(int idx) { if (idx >= 0 && idx < cachedNodeStats.size()) { return &cachedNodeStats[idx]; } else { return 0; } } }; PeerTableModel::PeerTableModel(ClientModel* parent) : QAbstractTableModel(parent), clientModel(parent), timer(0) { columns << tr("Address/Hostname") << tr("Version") << tr("Ping Time"); priv = new PeerTablePriv(); // default to unsorted priv->sortColumn = -1; // set up timer for auto refresh timer = new QTimer(); connect(timer, SIGNAL(timeout()), SLOT(refresh())); timer->setInterval(MODEL_UPDATE_DELAY); // load initial data refresh(); } void PeerTableModel::startAutoRefresh() { timer->start(); } void PeerTableModel::stopAutoRefresh() { timer->stop(); } int PeerTableModel::rowCount(const QModelIndex& parent) const { Q_UNUSED(parent); return priv->size(); } int PeerTableModel::columnCount(const QModelIndex& parent) const { Q_UNUSED(parent); return columns.length(); ; } QVariant PeerTableModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) return QVariant(); CNodeCombinedStats* rec = static_cast<CNodeCombinedStats*>(index.internalPointer()); if (role == Qt::DisplayRole) { switch (index.column()) { case Address: return QString::fromStdString(rec->nodeStats.addrName); case Subversion: return QString::fromStdString(rec->nodeStats.cleanSubVer); case Ping: return GUIUtil::formatPingTime(rec->nodeStats.dPingTime); } } else if (role == Qt::TextAlignmentRole) { if (index.column() == Ping) return (int)(Qt::AlignRight | Qt::AlignVCenter); } return QVariant(); } QVariant PeerTableModel::headerData(int section, Qt::Orientation orientation, int role) const { if (orientation == Qt::Horizontal) { if (role == Qt::DisplayRole && section < columns.size()) { return columns[section]; } } return QVariant(); } Qt::ItemFlags PeerTableModel::flags(const QModelIndex& index) const { if (!index.isValid()) return 0; Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled; return retval; } QModelIndex PeerTableModel::index(int row, int column, const QModelIndex& parent) const { Q_UNUSED(parent); CNodeCombinedStats* data = priv->index(row); if (data) { return createIndex(row, column, data); } else { return QModelIndex(); } } const CNodeCombinedStats* PeerTableModel::getNodeStats(int idx) { return priv->index(idx); } void PeerTableModel::refresh() { emit layoutAboutToBeChanged(); priv->refreshPeers(); emit layoutChanged(); } int PeerTableModel::getRowByNodeId(NodeId nodeid) { std::map<NodeId, int>::iterator it = priv->mapNodeRows.find(nodeid); if (it == priv->mapNodeRows.end()) return -1; return it->second; } void PeerTableModel::sort(int column, Qt::SortOrder order) { priv->sortColumn = column; priv->sortOrder = order; refresh(); }
ae37a3c5aef0f6b2465bb7dcd0712555bcb29ec4
448a9b500cea5296afeaaaf6e6b068ff0204f482
/examples/serialBasic/serialBasic.ino
f2b8113e3e9a460c91431d055c1137f962aa5a4f
[]
no_license
Paulware/serialBasic
fc469dba1d7ed52c71525f7fdcf33919933da97a
a8769e41c384ec756f0794d67826b575af44614c
refs/heads/master
2021-01-22T10:09:04.147396
2012-11-20T04:21:47
2012-11-20T04:21:47
6,168,786
1
1
null
null
null
null
UTF-8
C++
false
false
1,719
ino
#include <ArduinoBASIC.h> #include <EEPROM.h> ArduinoBASIC arduinoBASIC = ArduinoBASIC (); DebugUtilities debugUtils; #define NUMBER_OF_STEPS 15 PSTRStrings eProgram = PSTRStrings(NUMBER_OF_STEPS); bool paused; void callback (int value) { Serial.print ( "From callback value:" ); Serial.println ( value ); } unsigned long runTimeout; void setup() { Serial.begin (115200); debugUtils.printPSTR ( PSTR ( "Arduino BASIC...enter ? to display keywords\nTo use the Arduino IDE\n select 'Carriage return' rather than 'no line ending' in the Serial Monitor\n" )); arduinoBASIC.init(); arduinoBASIC.eepromProgram.callback = callback; eProgram.addString ( PSTR ( "setA=0" )); eProgram.addString ( PSTR ( "ifA")); eProgram.addString ( PSTR ( "ifA")); eProgram.addString ( PSTR ( "echooops A is set")); eProgram.addString ( PSTR ( "callback1")); eProgram.addString ( PSTR ( "endif")); eProgram.addString ( PSTR ( "else")); eProgram.addString ( PSTR ( "ifA=0")); eProgram.addString ( PSTR ( "echoA is not set")); eProgram.addString ( PSTR ( "endif")); eProgram.addString ( PSTR ( "endif")); eProgram.addString ( PSTR ( "echoAll done!")); runTimeout = millis() + 10000; Serial.println ( "Program will run in 10 seconds unless a key is pressed" ); paused = true; } void loop() { static unsigned long runTimeout; if (runTimeout) { if (millis() > runTimeout) { arduinoBASIC.eepromProgram.run(); runTimeout = 0; paused = false; } } if (!paused) arduinoBASIC.eepromProgram.continueTest(); if (Serial.available()) { runTimeout = 0; paused = false; arduinoBASIC.handleChar(eProgram, Serial.read()); } }
a134c2041c6a035470c0ca3b942b5d7e940770ca
260e5dec446d12a7dd3f32e331c1fde8157e5cea
/Indi/SDK/Indi_Townie_04_Var6_functions.cpp
19b8b24959c7eaed5bb0cb9cd34266a9d07e336f
[]
no_license
jfmherokiller/TheOuterWorldsSdkDump
6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0
18a8c6b1f5d87bb1ad4334be4a9f22c52897f640
refs/heads/main
2023-08-30T09:27:17.723265
2021-09-17T00:24:52
2021-09-17T00:24:52
407,437,218
0
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
// TheOuterWorlds SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "Indi_Townie_04_Var6_parameters.hpp" namespace SDK { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- } #ifdef _MSC_VER #pragma pack(pop) #endif
3e6936f63a6e9943650f6bcbf14d821440ffe8fa
163f133ba94cb06b5a34405aa5566f2131d9cb3b
/LhcTrackAnalyzer/plugins/SeaModules.cc
cab65e5812dc63e51d68c2fab24b995c55aac72c
[]
no_license
yanyangao/usercode
05762e492c011055aa722f4be2808eeed2adcdb9
3c55c155e82bc8de3998de6d438085a4c265c988
refs/heads/master
2021-01-23T15:03:42.302072
2013-07-24T12:40:10
2013-07-24T12:40:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
181
cc
#include "FWCore/Framework/interface/MakerMacros.h" #include "UserCode/LhcTrackAnalyzer/interface/LhcTrackAnalyzer.h" // DEFINE_SEAL_MODULE(); DEFINE_FWK_MODULE(LhcTrackAnalyzer);
[ "" ]
cc6e4b2efe5c97a95002c0327eb689559b2aefe6
e208b0dbe653bccf4684586954d2a2e5c67d7a66
/tree/avl.tree.cc
98498a6068ef6a683c3ee02b4bea50c711d3cfc3
[]
no_license
jing4seven/algorithm
fe398ddb8bca7b2471b058a045badac52ad9f8c2
a07bfbc650a28268bfb5c7a9ee540bcc88ba440b
refs/heads/master
2021-01-01T19:29:21.059971
2014-08-14T06:43:39
2014-08-14T06:43:39
19,517,860
2
0
null
null
null
null
UTF-8
C++
false
false
11,618
cc
#include <iostream> #include <cctype> #include "avl.tree.h" #include "printTree.h" using namespace std; // 构造函数 AvlTree::AvlTree():root(NULL) {} AvlTree::AvlTree(const AvlTree & tree) { *this = tree; } AvlTree::~AvlTree() { makeEmpty(); } //////////////////////////////////////////////////////////////////////////////// // Public functions int AvlTree::findMin() const { AvlNode * node = findMin((AvlNode *)root); return node->elm; } int AvlTree::findMax() const { AvlNode * node = findMax((AvlNode *)root); return node->elm; } bool AvlTree::contains(const int d) const { return contains((const AvlNode *&)root, d); } void AvlTree::makeEmpty() { if (isEmpty() == false) { makeEmpty(root); } } bool AvlTree::isEmpty() const { return getHeight((const AvlNode*&)root) == 0 ? true : false; } void AvlTree::traversal(ostringstream & out) const { traversal((const AvlNode *&)root, out); } void AvlTree::insert(int d) { insert(root, NULL, d); } void AvlTree::remove(int d) { remove(root, d); } AvlTree & AvlTree::operator=(const AvlTree & tree) { if (this != &tree) { makeEmpty(); root = clone((const AvlNode *&)tree.root, (AvlNode *)NULL); } return *this; } //////////////////////////////////////////////////////////////////////////////// // Private functions AvlNode * AvlTree::findMin(AvlNode * node) const { if (node->left) return findMin((AvlNode * )node->left); else return node; } AvlNode * AvlTree::findMax(AvlNode * node) const { if (node->right) return findMax((AvlNode * )node->right); else return node; } bool AvlTree::contains(const AvlNode * &node, const int data) const { if (!node) return false; else { if (data < node->elm) { return contains((const AvlNode *&)node->left, data); } else if (data > node->elm) { return contains((const AvlNode *&)node->right, data); } else { return true; } } } /* * Solution comes from here: * http://pages.cs.wisc.edu/~paton/readings/liblitVersion/AVL-Tree-Rotations.pdf * * Psuedo code: * * If tree is right heavy * If tree's right subtree is left heavy * Perform rightLeftRotate * else * Perform leftRotate * Else if tree is left heavy * If tree's left subtree is right heavy * Perform leftRightRotate * else * Perform rightRotate * * 首先找到不平衡的位置 * 然后再做平衡 */ void AvlTree::insert(AvlNode * &node, AvlNode * pnode, int d) { if (node == NULL) { node = new AvlNode(d, NULL, NULL, pnode); } else if (d<node->elm) { insert((AvlNode*&)node->left,node, d); // 检查并修复平衡性 if (getHeight((const AvlNode *&)node->left) - getHeight((const AvlNode *&)node->right) == 2) { AvlNode * tmpNode = (AvlNode *)node->left; if (getHeight((const AvlNode *&)tmpNode->right) > getHeight((const AvlNode *&)tmpNode->left)) { leftRightRotate(node); } else { rightRotate(node); } } } else if (d>node->elm) { insert((AvlNode*&)node->right,node, d); // 检查并修复平衡性 if (getHeight((const AvlNode *&)node->right) - getHeight((const AvlNode *&)node->left) == 2) { AvlNode * tmpNode = (AvlNode *)node->right; if (getHeight((const AvlNode *&)tmpNode->left) > getHeight((const AvlNode *&)tmpNode->right)) { rightLeftRotate(node); } else { leftRotate(node); } } } else ; // 如果d(要插入)的数已经存在,不作处理 // 为了可以得到更新后的节点高度,这里需要对node更新高度 node->height = max(getHeight((const AvlNode *&)node->left), getHeight((const AvlNode *&)node->right)) + 1; } void AvlTree::remove(AvlNode * &node, int d) { if (node == NULL) return; if (node->elm < d) { remove((AvlNode *&)node->right, d); } else if (node->elm > d){ remove((AvlNode *&)node->left, d); } else { AvlNode * tagNode, // 记录平衡可能被打破的节点 * dNode = node; // 记录即将被删除的节点 if (node->right != NULL && node->left != NULL) { // 首先找到右节点中最小值节点 AvlNode * tmpNode = findMin((AvlNode *)(node->right)); // 如果最小节点就是node的右节点 // 直接用node的右节点代替node if (tmpNode == node->right) { tmpNode->left = node->left; //  记录平衡可能被打破的节点 tagNode = tmpNode; } else { // 否则,先用tmpNode代替node, 再将tmpNode的子节点 // (右节点)并入到tmpNode原先的父节的左子节点上 // tmpNode将代替node,那么它的右子节点(如果有 // 子节点的话,只能是右子节点)作为tmpNode父节 // 点得左子节点. tmpNode->parent->left = tmpNode->right; // 将tmpNode替代node之前,将node的子节点赋予给 // tmpNode,因为transplant不处理子节点的转移。 tmpNode->left = node->left; tmpNode->right= node->right; //  记录平衡可能被打破的节点 tagNode = tmpNode->parent; } if (node->left) ((AvlNode *)node->left)->parent = tmpNode; if (node->right) ((AvlNode *)node->right)->parent = tmpNode; transplant(node, tmpNode); } else { // 此时直接删除即可 // 首先需要计算子节点 AvlNode * tmpNode = node->left != NULL ? (AvlNode *)node->left : (AvlNode *)node->right; // 记录平衡可能被打破的节点 tagNode = node->parent; // transplant包含tmpNode为NULL的情况 transplant(node, tmpNode); } delete dNode; dNode = NULL; updateHeight(root); if (tagNode == NULL) return; // 检查并修复平衡性 int lH(0), rH(0); if (tagNode->left) lH = getHeight((const AvlNode *&)tagNode->left); if (tagNode->right) rH = getHeight((const AvlNode *&)tagNode->right); if ( lH - rH == 2) { AvlNode * subNode = (AvlNode *)tagNode->left; if ( getHeight((const AvlNode *&)subNode->right) > getHeight((const AvlNode *&)subNode->left)) { leftRightRotate(tagNode); } else { rightRotate(tagNode); } } else if ( rH - lH == 2) { AvlNode * subNode = (AvlNode *)tagNode->right; if ( getHeight((const AvlNode *&)subNode->left) > getHeight((const AvlNode *&)subNode->right)) { rightLeftRotate(tagNode); } else { leftRotate(tagNode); } } } } void AvlTree::makeEmpty(AvlNode * &node) { if (node!=NULL) { makeEmpty((AvlNode *&)node->left); makeEmpty((AvlNode *&)node->right); delete node; node = NULL; } } void AvlTree::traversal(const AvlNode *& node, ostringstream & out) const { if (!node) return; if (node->left) { traversal((const AvlNode *&)node->left, out); } if (node) { out << node->elm << ","; } if (node->right) { traversal((const AvlNode *&)node->right, out); } } AvlNode * AvlTree::clone(const AvlNode * &node, AvlNode * pNode){ AvlNode * tmpNode = new AvlNode(node->elm, NULL, NULL, (AvlNode *)pNode); if (node->left) tmpNode->left = clone((const AvlNode *&)node->left, tmpNode); if (node->right) tmpNode->right = clone((const AvlNode *&)node->right, tmpNode); return tmpNode; } // 更新node(含)下所有节点的高度 void AvlTree::updateHeight(AvlNode * &node) { if (node == NULL) { return; } int lH(0), rH(0); if (node->left) { updateHeight((AvlNode *&)node->left); lH = ((AvlNode *&)node->left)->height; } if (node->right) { updateHeight((AvlNode *&)node->right); rH = ((AvlNode *&)node->right)->height; } node->height = (lH > rH ? lH : rH) + 1; } // Replace node1 with node 2 void AvlTree::transplant(AvlNode *&node1, AvlNode *&node2){ if (node1 == node2) { return; } AvlNode * tmpNode = node1; if (node1->parent == NULL) { root = node2; } else { if (node1->parent->left == node1) { node1->parent->left = node2; } else node1->parent->right = node2; } if (node2) node2->parent = tmpNode->parent; } int AvlTree::getHeight(const AvlNode *&node) const { return node!=NULL ? node->height : 0; } void AvlTree::leftRotate(AvlNode * &node){ AvlNode * subNode = (AvlNode *)node->right; AvlNode * tmpNode = node; if (subNode) { tmpNode->right = subNode->left; if (subNode->left) ((AvlNode *)subNode->left)->parent = tmpNode; if (tmpNode->parent==NULL) { root = subNode; } else if (((AvlNode *)tmpNode->parent)->left == tmpNode) { ((AvlNode *)tmpNode->parent)->left= subNode; } else { ((AvlNode *)tmpNode->parent)->right= subNode; } subNode->parent = tmpNode ->parent; subNode->left = tmpNode; tmpNode->parent = subNode; // 更新节点高度 tmpNode->height = max(getHeight((const AvlNode *&)tmpNode->left), getHeight((const AvlNode *&)tmpNode->right))+1; subNode->height = max(getHeight((const AvlNode *&)subNode->right), getHeight((const AvlNode *&)tmpNode)) + 1; tmpNode = subNode; } } void AvlTree::rightRotate(AvlNode * &node){ AvlNode * subNode = (AvlNode *)node->left; AvlNode * tmpNode = node; if (subNode) { tmpNode->left = subNode->right; if (subNode->right) ((AvlNode *)subNode->right)->parent = tmpNode; if (tmpNode->parent==NULL) { root = subNode; } else if (((AvlNode *)tmpNode->parent)->left == tmpNode) { ((AvlNode *)tmpNode->parent)->left= subNode; } else { ((AvlNode *)tmpNode->parent)->right= subNode; } subNode->parent = tmpNode->parent; subNode->right = tmpNode; tmpNode->parent = subNode; // 更新节点高度 tmpNode->height = max(getHeight((const AvlNode *&)tmpNode->left), getHeight((const AvlNode *&)tmpNode->right))+1; subNode->height = max(getHeight((const AvlNode *&)subNode->left), getHeight((const AvlNode *&)tmpNode)) + 1; tmpNode = subNode; } } void AvlTree::rightLeftRotate(AvlNode * &node){ rightRotate((AvlNode *&)node->right); leftRotate(node); } void AvlTree::leftRightRotate(AvlNode * &node){ leftRotate((AvlNode *&)node->left); rightRotate(node); }
96ecab70a55b388dfeafaf705d85f2fe8db4c7ae
9e94ad5cdd1e137669e4d6da52387798aedb5614
/src/package/ALISuperviseLearner_GPType.h
e5482f7d14c74ab096c4cf98681d56d7bc1ebd68
[ "Apache-2.0" ]
permissive
jxt1234/Abstract_Learning
332807b6e8b9c4420ad39663cb0f0e3f4759948a
202c19c17dcb83cb8e93d8d23fb0d7ae83c56385
refs/heads/master
2020-08-05T16:11:23.947670
2016-11-19T12:15:03
2016-11-19T12:15:03
67,514,053
2
2
null
null
null
null
UTF-8
C++
false
false
654
h
#ifndef SRC_PACKAGE_ALISUPERVISELEARNER_GPTYPE_H #define SRC_PACKAGE_ALISUPERVISELEARNER_GPTYPE_H class ALISuperviseLearner_GPType:public IStatusType { public: ALISuperviseLearner_GPType():IStatusType("ALISuperviseLearner"){} virtual void* vLoad(GPStream* input) const { return NULL; } virtual void vSave(void* contents, GPWStream* output) const { } virtual void vFree(void* contents) const { ALISuperviseLearner* c = (ALISuperviseLearner*)contents; c->decRef(); } virtual int vMap(void** content, double* value) const { int mapnumber=0; if (NULL == value || NULL == content) { return mapnumber; } if (NULL == *content) { } return mapnumber; } }; #endif
24ec509d9197bcedd5f0f8a8e0a3eb3bdc87cb7b
5688b67fbd8b12dc6ec637ef8d9825acd7b02df9
/AmebaD/Coffin_Dance/AmebaD_Blackman_Coffin_Dance_OLED_Github.ino
577a98045d0ea78077f192fde067e856a566f5ab
[]
no_license
xidameng/Realetk_Ameba
3cabed7bee409bff381bbcd7f4b7d6794b465432
3f59484f0e2fd32cdc902aab5a5ee725b9535796
refs/heads/master
2022-11-06T04:56:01.203383
2020-06-18T14:04:54
2020-06-18T14:04:54
267,783,474
1
0
null
null
null
null
UTF-8
C++
false
false
11,446
ino
/************************************************************************** Title: Ameba RTL8722DM Coffin Dance Items: * Ameba RTL8722DM x1 * SSD1306 OLED display x1 * Buzzer x1 This example uses a 128x64 pixel display(Monochrome OLEDs based on SSD1306 drivers) using SPI to communicate, 4 pins are required to interface. Adafruit OLED library is used, thus credit to adafruit too. (library can be downloaded using Arduino IDE's library manager) Created by: Simon Xi Date: 03/06/2020 **************************************************************************/ #include <SPI.h> #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define NOTE_B0 31 #define NOTE_C1 33 #define NOTE_CS1 35 #define NOTE_D1 37 #define NOTE_DS1 39 #define NOTE_E1 41 #define NOTE_F1 44 #define NOTE_FS1 46 #define NOTE_G1 49 #define NOTE_GS1 52 #define NOTE_A1 55 #define NOTE_AS1 58 #define NOTE_B1 62 #define NOTE_C2 65 #define NOTE_CS2 69 #define NOTE_D2 73 #define NOTE_DS2 78 #define NOTE_E2 82 #define NOTE_F2 87 #define NOTE_FS2 93 #define NOTE_G2 98 #define NOTE_GS2 104 #define NOTE_A2 110 #define NOTE_AS2 117 #define NOTE_B2 123 #define NOTE_C3 131 #define NOTE_CS3 139 #define NOTE_D3 147 #define NOTE_DS3 156 #define NOTE_E3 165 #define NOTE_F3 175 #define NOTE_FS3 185 #define NOTE_G3 196 #define NOTE_GS3 208 #define NOTE_A3 220 #define NOTE_AS3 233 #define NOTE_B3 247 #define NOTE_C4 262 #define NOTE_CS4 277 #define NOTE_D4 294 #define NOTE_DS4 311 #define NOTE_E4 330 #define NOTE_F4 349 #define NOTE_FS4 370 #define NOTE_G4 392 #define NOTE_GS4 415 #define NOTE_A4 440 #define NOTE_AS4 466 #define NOTE_B4 494 #define NOTE_C5 523 #define NOTE_CS5 554 #define NOTE_D5 587 #define NOTE_DS5 622 #define NOTE_E5 659 #define NOTE_F5 698 #define NOTE_FS5 740 #define NOTE_G5 784 #define NOTE_GS5 831 #define NOTE_A5 880 #define NOTE_AS5 932 #define NOTE_B5 988 #define NOTE_C6 1047 #define NOTE_CS6 1109 #define NOTE_D6 1175 #define NOTE_DS6 1245 #define NOTE_E6 1319 #define NOTE_F6 1397 #define NOTE_FS6 1480 #define NOTE_G6 1568 #define NOTE_GS6 1661 #define NOTE_A6 1760 #define NOTE_AS6 1865 #define NOTE_B6 1976 #define NOTE_C7 2093 #define NOTE_CS7 2217 #define NOTE_D7 2349 #define NOTE_DS7 2489 #define NOTE_E7 2637 #define NOTE_F7 2794 #define NOTE_FS7 2960 #define NOTE_G7 3136 #define NOTE_GS7 3322 #define NOTE_A7 3520 #define NOTE_AS7 3729 #define NOTE_B7 3951 #define NOTE_C8 4186 #define NOTE_CS8 4435 #define NOTE_D8 4699 #define NOTE_DS8 4978 static uint16_t melody[] = { NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_AS4, NOTE_D5, NOTE_D5, NOTE_D5, NOTE_D5, NOTE_C5, NOTE_C5, NOTE_C5, NOTE_C5, NOTE_F5, NOTE_F5, NOTE_F5, NOTE_F5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_G5, NOTE_C5, NOTE_AS4, NOTE_A4, NOTE_F4, NOTE_G4, NOTE_G4, NOTE_G4, NOTE_D5, NOTE_C5, NOTE_C5, NOTE_AS4, NOTE_AS4, NOTE_A4, NOTE_A4, NOTE_A4, NOTE_A4, NOTE_C5, NOTE_C5, NOTE_AS4, NOTE_A4, NOTE_G4,NOTE_G4, NOTE_G4, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_G4,NOTE_G4, NOTE_G4, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_G4, NOTE_G4, NOTE_G4, NOTE_D5, NOTE_C5, NOTE_C5, NOTE_AS4, NOTE_AS4, NOTE_A4, NOTE_A4, NOTE_A4, NOTE_A4, NOTE_C5, NOTE_C5, NOTE_AS4, NOTE_A4, NOTE_G4,NOTE_G4, NOTE_G4, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_G4,NOTE_G4, NOTE_G4, NOTE_AS5, NOTE_A5, NOTE_AS5, NOTE_A5, NOTE_AS5 }; // note durations: 4 = quarter note, 8 = eighth note, etc.: static uint8_t noteDurations[] = { 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4,4,4, }; //SSD1306 OLED display setup #define SCREEN_WIDTH 128 // OLED display width, in pixels #define SCREEN_HEIGHT 64 // OLED display height, in pixels // Only 4 pins are needed #define OLED_RESET 10 //(RES) #define OLED_MOSI 11 //(SDA) #define OLED_DC 12 //(DC) #define OLED_CLK 13 //(SCL) #define OLED_CS 17 //(Not Connected) Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, OLED_MOSI, OLED_CLK, OLED_DC, OLED_RESET, OLED_CS); #define LOGO_HEIGHT 64 #define LOGO_WIDTH 64 char title[] = " Coffin "; char spacer[] = " Dance "; static const unsigned char PROGMEM logo_bmp[] = { B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, B00000000,B01110000,B01110000,B00000000,B00000000,B00000111,B00000111,B00000000, B00000000,B01110000,B01110000,B00000000,B00000000,B00000111,B00000111,B00000000, B00000000,B01110000,B01110000,B00000000,B00000000,B00000111,B00000111,B00000000, B00000000,B01111001,B11110000,B00000000,B00000000,B00000111,B11001111,B00000000, B00000000,B01111001,B11110000,B00000000,B00000000,B00000111,B11001111,B00000000, B00000000,B01111101,B11110000,B00000000,B00000000,B00000111,B11011111,B00000000, B00000000,B01111111,B11110000,B00000000,B00000000,B00000111,B11111111,B00000000, B00000000,B01111111,B11110000,B00000000,B00000000,B00000111,B11111111,B00000000, B00000000,B01111111,B11110000,B00000000,B00000000,B00000111,B11111111,B00000000, B00000000,B00001111,B10000000,B00000000,B00000000,B00000000,B11111000,B00000000, B00000000,B00001111,B10000000,B00000000,B00000000,B00000000,B11111000,B00000000, B00000000,B00001111,B10000000,B00000000,B00000000,B00000000,B11111000,B00000000, B00000000,B00001111,B10000000,B00000000,B00000000,B00000000,B11111000,B00000000, B00000000,B00001111,B10000000,B00111100,B00011110,B00000000,B11111000,B00000000, B00000000,B00001111,B11000000,B00111100,B00011110,B00000001,B11111000,B00000000, B00000000,B00001111,B11100000,B00111100,B00011110,B00000011,B11111000,B00000000, B00000000,B00001111,B11110000,B00111100,B00011110,B00000111,B11111000,B00000000, B00000000,B00000111,B11111000,B00011000,B00001100,B00001111,B11110000,B00000000, B00000000,B00000011,B11111100,B00001000,B00001100,B00011111,B11100000,B00000000, B00000000,B00000001,B11111110,B00001000,B00001100,B00111111,B11000000,B00000000, B00000000,B00000000,B11111110,B00001000,B00001100,B00111111,B10000000,B00000000, B00000000,B00000000,B01111110,B00001000,B00001100,B00111111,B00000000,B00000000, B00000000,B00000000,B01111110,B00001111,B11111100,B00111111,B00000000,B00000000, B00000000,B00000000,B01111110,B00000000,B00000000,B00111111,B00000000,B00000000, B00000000,B00000000,B01111110,B00000000,B00000000,B00111111,B00000000,B00000000, B00000000,B00000000,B01111110,B00000000,B00000000,B00111111,B00000000,B00000000, B00000000,B00000000,B01111111,B11110000,B00000111,B11111100,B00000000,B00000000, B00000000,B00000000,B00111111,B11111000,B00001111,B11111100,B00000000,B00000000, B00000000,B11111111,B10111111,B11111100,B00011111,B11111101,B11111111,B00000000, B00000001,B11000000,B00111111,B11111110,B00111111,B11111100,B00000011,B00000000, B00000001,B10000000,B00111111,B11111111,B00111111,B11111000,B00000001,B10000000, B00000011,B00011111,B10110000,B11111111,B11111110,B00000001,B11111000,B11000000, B00000110,B00111111,B00111111,B11111111,B11111110,B00000001,B11111100,B01100000, B00000110,B01110000,B00111111,B11111111,B11111110,B00000000,B00001110,B01100000, B00000100,B11100000,B00111111,B11111011,B11101110,B00000000,B00000110,B00100000, B00000100,B11000111,B10111011,B11111001,B11001110,B00000001,B11110011,B00100000, B00000100,B10001111,B00110001,B11111000,B10001110,B00000000,B11110011,B00100000, B00000100,B10011000,B00110001,B11111000,B00001110,B00000000,B00011001,B00100000, B00000100,B10010001,B10110001,B11111000,B00001110,B00000001,B10001101,B00100000, B00000100,B10010011,B10110000,B11111000,B00001111,B00000001,B11001101,B00100000, B00000000,B10010010,B00110000,B11111000,B00001111,B11111000,B01001101,B00000000, B00000000,B10010010,B00110000,B11111000,B00001111,B11111000,B01001101,B00000000, B00000000,B00010010,B00000000,B00000000,B00000000,B00000000,B01001100,B00000000, B00000000,B00010010,B00000000,B00000000,B00000000,B00000000,B01001100,B00000000, B00000000,B00000010,B00000000,B00000000,B00000000,B00000000,B01000000,B00000000, B00000000,B00000010,B00000000,B00000000,B00000000,B00000000,B01000000,B00000000, B00000000,B00000010,B00000000,B00000000,B00000000,B00000000,B01000000,B00000000, B00111111,B10000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, B00111001,B11000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, B00111000,B11000111,B11100000,B10000001,B10000111,B11110011,B11100011,B00001000, B00011000,B11100110,B00000000,B11000001,B10000001,B11000011,B00000011,B00010000, B00011000,B11000110,B00000001,B11000001,B10000000,B11000011,B00000011,B00100000, B00011001,B11000110,B00000001,B11000001,B10000000,B11000011,B00000011,B01000000, B00011111,B00000110,B00000000,B01100001,B10000000,B11000011,B00000011,B01000000, B00011011,B00000111,B11000010,B01100001,B10000000,B11000011,B11100011,B11000000, B00011011,B10000110,B00000010,B01110001,B10000000,B11000011,B00000011,B11100000, B00011001,B11000110,B00000110,B00110001,B10000000,B11000011,B00000011,B01100000, B00111001,B11000110,B00000100,B00110001,B10000000,B11000011,B00000011,B00110000, B00111000,B11100110,B00001000,B00011001,B10000000,B11000011,B00000011,B00111000, B00011000,B01100111,B11101000,B00011001,B11111000,B10000011,B11100011,B00011000, B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000 }; void setup() { Serial.begin(9600); Wire.begin(); pinMode(9,INPUT); // push button on pin 9 // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally if(!display.begin(SSD1306_SWITCHCAPVCC)) { Serial.println(F("SSD1306 allocation failed")); for(;;); // Don't proceed, loop forever } drawbitmap(); // Draw a small bitmap image delay(3000); interface(); } void loop() { for (int thisNote = 0; thisNote < 104; thisNote++) { int noteDuration = 750 / noteDurations[thisNote]; tone(8, melody[thisNote], noteDuration); int pauseBetweenNotes = noteDuration * 1.30; delay(pauseBetweenNotes); noTone(8); } } void interface(void) { display.clearDisplay(); display.setTextSize(2); // Normal 1:1 pixel scale display.setTextColor(SSD1306_WHITE); display.setCursor(0,0); // Start at top-left corner display.println(); display.println(title); display.println(spacer); display.println(); display.display(); } void drawbitmap(void) { display.clearDisplay(); display.drawBitmap( (display.width() - LOGO_WIDTH ) / 2, (display.height() - LOGO_HEIGHT) / 2, logo_bmp, LOGO_WIDTH, LOGO_HEIGHT, 1); display.display(); }
3f8e2ade66a8f413c31dfbd03b7ff28d0fd20d02
9ba893a7dba9dd91b53a00c70c21796b881997bc
/overlay/atlas_msgs/gazebo_ros_camera.h
2993c7e5254700f43b4bc298c4bdffa5fa980c53
[]
no_license
pal-robotics-graveyard/reemc_standalone
351e675f3be5520929dd20f80c2d2b1a4fe3bde7
91518ade0dd8c9fc05663aba18606dd77478ffec
refs/heads/master
2020-05-17T02:56:33.456434
2013-11-20T11:55:04
2013-11-20T11:55:04
13,446,979
1
0
null
null
null
null
UTF-8
C++
false
false
1,518
h
/* * Copyright 2012 Open Source Robotics 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. * */ #ifndef GAZEBO_ROS_CAMERA_HH #define GAZEBO_ROS_CAMERA_HH #include <string> // library for processing camera data for gazebo / ros conversions #include <gazebo/plugins/CameraPlugin.hh> #include "gazebo_ros_camera_utils.h" namespace gazebo { class GazeboRosCamera : public CameraPlugin, GazeboRosCameraUtils { /// \brief Constructor /// \param parent The parent entity, must be a Model or a Sensor public: GazeboRosCamera(); /// \brief Destructor public: ~GazeboRosCamera(); /// \brief Load the plugin /// \param take in SDF root element public: void Load(sensors::SensorPtr _parent, sdf::ElementPtr _sdf); /// \brief Update the controller protected: virtual void OnNewFrame(const unsigned char *_image, unsigned int _width, unsigned int _height, unsigned int _depth, const std::string &_format); }; } #endif
efd82f5f5269d9f308dde3c5f25dca0c4d095e8b
bf8e96b9e15bf862e05a5f9cd0f36b5e790bfe78
/CPE553-2020s/553Assignment03/001.cpp
c1c1ca5912fdfadd41c0cbb71cee3f6e9662b972
[]
no_license
fengliu1227/Cpp-code
6503f7357ee5a13bdeedf37f1cdd5f833fe5e668
c7498fcd93f92ffff686e411164a4447ad62fb89
refs/heads/master
2023-03-09T06:09:00.450318
2021-02-22T07:59:49
2021-02-22T07:59:49
259,941,648
0
0
null
null
null
null
UTF-8
C++
false
false
1,759
cpp
#include <string> #include <iostream> #include <fstream> using namespace std; #include <iostream> #include <fstream> using namespace std; double Max(double a[], int len) { // change the array already ~ careful ! double temp = 0; for (int i = 0; i < len - 1; i ++) { // mind the length ! if (a[i] > a[i + 1]) { a[i + 1] = a[i]; temp = a[i + 1]; } else { temp = a[i + 1]; } } return temp; } double Min(double a[], int len) { // change the array already~ careful ! double temp = 0; for (int i = 0; i < len - 1; i ++) { // mind the length ! if (a[i + 1] > a[i]) { a[i + 1] = a[i]; temp = a[i + 1]; } else { temp = a[i + 1]; } } return temp; } double Var(double a[], int len, double mean) { double sum = 0.0; for (int i = 0; i < len; i ++) { sum = sum + (a[i] - mean) * (a[i] - mean); } return sum / len; } int main() { double a [100]; double b [100]; double c [100]; double sum = 0.0; double mean; int steps = 0; ifstream f("test.dat"); if (f.is_open()) { int i = 0; while (!f.eof()) { // 文件不为空 f >> a[i]; b[i] = a[i]; c[i] = a[i]; sum = sum + a[i]; steps++; cout << "steps = " << steps << " i = " << i << " a[i] = "<< a[i] << endl; i = i + 1; } mean = sum / i; cout << "Elements = " << i << endl; cout << "Max = " << Max(a, i) << endl; cout << "Min = " << Min(c, i) << endl; cout << "Mean = " << mean << endl; cout << "Var = " << Var(b, i, mean) << endl; } f.close(); }
cce5b3767d135822b2b40f4e922b136e074d7589
4da55187c399730f13c5705686f4b9af5d957a3f
/src/webots/nodes/WbPhysics.cpp
74383ae2131507d4641b164ba6df7d3976a01e1b
[ "Apache-2.0" ]
permissive
Ewenwan/webots
7111c5587100cf35a9993ab923b39b9e364e680a
6b7b773d20359a4bcf29ad07384c5cf4698d86d3
refs/heads/master
2020-04-17T00:23:54.404153
2019-01-16T13:58:12
2019-01-16T13:58:12
166,048,591
2
0
Apache-2.0
2019-01-16T13:53:50
2019-01-16T13:53:50
null
UTF-8
C++
false
false
8,358
cpp
// Copyright 1996-2018 Cyberbotics Ltd. // // 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 "WbPhysics.hpp" #include "WbDamping.hpp" #include "WbFieldChecker.hpp" #include "WbMFVector3.hpp" #include "WbSFNode.hpp" #include <ode/ode.h> #include <cassert> void WbPhysics::init() { mDensity = findSFDouble("density"); mMass = findSFDouble("mass"); mCenterOfMass = findMFVector3("centerOfMass"); mInertiaMatrix = findMFVector3("inertiaMatrix"); mDamping = findSFNode("damping"); mSkipUpdate = false; mHasAvalidInertiaMatrix = true; mMode = INVALID; } WbPhysics::WbPhysics(WbTokenizer *tokenizer) : WbBaseNode("Physics", tokenizer) { init(); } WbPhysics::WbPhysics(const WbPhysics &other) : WbBaseNode(other) { init(); } WbPhysics::WbPhysics(const WbNode &other) : WbBaseNode(other) { init(); } WbPhysics::~WbPhysics() { } void WbPhysics::preFinalize() { WbBaseNode::preFinalize(); if (damping()) damping()->preFinalize(); checkDensity(); checkMass(); checkMassAndDensity(); int size = mInertiaMatrix->size(); if (size == 1) { mInertiaMatrix->insertDefaultItem(1); warn(tr("'inertiaMatrix' must have exactly 0 or 2 lines. Second line inserted.")); } else if (size > 2) { do { mInertiaMatrix->removeItem(2); } while (mInertiaMatrix->size() > 2); warn(tr("'inertiaMatrix' must have exactly 0 or 2 lines. Extra lines skipped.")); } size = mCenterOfMass->size(); if (size > 1) { do { mCenterOfMass->removeItem(1); } while (mCenterOfMass->size() > 1); warn(tr("'centerOfMass' must have exactly 0 or 1 line. Extra lines skipped.")); } checkInertiaMatrix(true); updateMode(); updateDamping(); } void WbPhysics::postFinalize() { WbBaseNode::postFinalize(); if (damping()) damping()->postFinalize(); connect(mDensity, &WbSFDouble::changed, this, &WbPhysics::updateDensity); connect(mMass, &WbSFDouble::changed, this, &WbPhysics::updateMass); connect(mCenterOfMass, &WbMFVector3::changed, this, &WbPhysics::updateCenterOfMass); connect(mInertiaMatrix, &WbMFVector3::changed, this, &WbPhysics::updateInertiaMatrix); connect(mDamping, &WbSFNode::changed, this, &WbPhysics::updateDamping); } void WbPhysics::reset() { WbBaseNode::reset(); WbNode *const d = mDamping->value(); if (d) d->reset(); } void WbPhysics::checkMass() { if (mDensity->value() <= 0.0) WbFieldChecker::checkDoubleIsPositive(this, mMass, 1); WbFieldChecker::checkDoubleIsPositiveOrDisabled(this, mMass, -1, -1); } void WbPhysics::checkDensity() { if (mMass->value() <= 0.0) WbFieldChecker::checkDoubleIsPositive(this, mDensity, 1000); WbFieldChecker::checkDoubleIsPositiveOrDisabled(this, mDensity, 1000, -1); } void WbPhysics::checkMassAndDensity() const { const double m = mMass->value(); const double d = mDensity->value(); if (m == -1.0 && d == -1.0) { warn(tr("Either the 'mass' or the 'density' must be specified.")); return; } if (m > 0.0 && d > 0.0) { warn(tr("Both 'density' and 'mass' specified: the 'density' will be ignored.")); return; } } void WbPhysics::checkCenterOfMass() const { const bool validCom = mCenterOfMass->size() == 1; const int size = mInertiaMatrix->size(); if (!validCom && size == 2) info(tr("The center of mass must also be specified when using a custom inertia matrix.")); // else if (validCom && size == 0) // info(tr("The inertia matrix must also be specified when using a center of mass.")); } void WbPhysics::checkInertiaMatrix(bool showInfo) { mHasAvalidInertiaMatrix = true; const int size = mInertiaMatrix->size(); if (size != 2) { mHasAvalidInertiaMatrix = false; // if (showInfo && size == 0 && mCenterOfMass->size() == 1) // warn(tr("Remove 'centerOfMass' to use bounding object based inertial properties, or insert a new 'inertiaMatrix'.")); return; } if (size == 2) { if (showInfo && mCenterOfMass->size() == 0) info(tr("You must also specify the 'centerOfMass' when specifying the 'inertiaMatrix'")); if (showInfo && mMass->value() <= 0.0) info(tr("You must also set the 'mass' to a positive value when specifying the 'inertiaMatrix'.")); // The principal moment of inertia must be positive // to avoid assertion failure with debug version of ODE const WbVector3 &v0 = mInertiaMatrix->item(0); if (v0[0] <= 0.0 || v0[1] <= 0.0 || v0[2] <= 0.0) { mHasAvalidInertiaMatrix = false; if (showInfo) warn(tr("The first line of 'inertiaMatrix' (principal moments of inertia) must have only positive values.")); } const WbVector3 &v1 = mInertiaMatrix->item(1); const dReal I[12] = {v0[0], v1[0], v1[1], 0.0, v1[0], v0[1], v1[2], 0.0, v1[1], v1[2], v0[2], 0.0}; if (!dIsPositiveDefinite(I, 3)) { mHasAvalidInertiaMatrix = false; if (showInfo) warn(tr("'inertiaMatrix' must be positive definite.")); } else if (mCenterOfMass->size() == 0 && showInfo) warn(tr("'centerOfmass' must also be specified when using an inertia matrix.")); else if (mMass->value() < 0.0 && showInfo) warn(tr("'mass' must be positive when using an inertia matrix.")); } } WbDamping *WbPhysics::damping() const { return static_cast<WbDamping *>(mDamping->value()); } void WbPhysics::updateMode() { const bool massIsPositive = mMass->value() > 0.0; const int comSize = mCenterOfMass->size(); checkInertiaMatrix(false); if (massIsPositive && comSize == 1 && mHasAvalidInertiaMatrix) mMode = CUSTOM_INERTIA_MATRIX; else if ((massIsPositive || mDensity->value() > 0.0) && mInertiaMatrix->size() == 0) mMode = BOUNDING_OBJECT_BASED; else mMode = INVALID; } void WbPhysics::updateDensity() { if (mSkipUpdate) return; checkDensity(); updateMode(); if (mMode == BOUNDING_OBJECT_BASED) emit massOrDensityChanged(); } void WbPhysics::updateMass() { if (mSkipUpdate) return; checkMass(); updateMode(); if (mMode == CUSTOM_INERTIA_MATRIX) emit inertialPropertiesChanged(); else if (mMode == BOUNDING_OBJECT_BASED) emit massOrDensityChanged(); } void WbPhysics::updateCenterOfMass() { assert(mCenterOfMass->size() <= 1); if (mSkipUpdate) return; checkCenterOfMass(); updateMode(); if (mMode == CUSTOM_INERTIA_MATRIX) emit inertialPropertiesChanged(); else if (mMode == BOUNDING_OBJECT_BASED) emit centerOfMassChanged(); } void WbPhysics::updateInertiaMatrix() { if (mSkipUpdate) return; checkInertiaMatrix(true); updateMode(); if (mMode == CUSTOM_INERTIA_MATRIX) emit inertialPropertiesChanged(); else if (mMode == BOUNDING_OBJECT_BASED) emit modeSwitched(); } void WbPhysics::updateDamping() { if (mSkipUpdate) return; if (damping()) connect(damping(), &WbDamping::changed, this, &WbPhysics::dampingChanged, Qt::UniqueConnection); emit dampingChanged(); } void WbPhysics::setMass(double mass, bool skipUpdate) { mSkipUpdate = skipUpdate; mMass->setValue(mass); mSkipUpdate = false; } void WbPhysics::setDensity(double density, bool skipUpdate) { mSkipUpdate = skipUpdate; mDensity->setValue(density); mSkipUpdate = false; } void WbPhysics::setCenterOfMass(double x, double y, double z, bool skipUpdate) { assert(mCenterOfMass->size() <= 1); mSkipUpdate = skipUpdate; const WbVector3 v(x, y, z); if (mCenterOfMass->size() == 0) mCenterOfMass->insertItem(0, v); else mCenterOfMass->setItem(0, v); mSkipUpdate = false; } void WbPhysics::setInertiaMatrix(double v0x, double v0y, double v0z, double v1x, double v1y, double v1z, bool skipUpdate) { assert(mInertiaMatrix->size() == 0); mSkipUpdate = skipUpdate; mInertiaMatrix->insertItem(0, WbVector3(v0x, v0y, v0z)); mInertiaMatrix->insertItem(1, WbVector3(v1x, v1y, v1z)); mSkipUpdate = false; }
4d6551d173e29c7e98e26a8c6012ab133af9e651
bd5588cc1b56ba0c6cda67076315363cb4127a28
/Algorithms/fft.cpp
b1a80bcc557a65d7d37344d30724cfcd400c0abe
[]
no_license
bhavy-jain/Algorithms
7f6dac33accde6ccb8c4b656c2e341f10a2c16df
7a1fc55b781c102c5be6f84bec3c1cf81b268f5a
refs/heads/master
2020-03-21T20:54:31.162115
2018-06-28T15:51:56
2018-06-28T15:51:56
139,035,774
1
0
null
null
null
null
UTF-8
C++
false
false
1,422
cpp
#include<bits/stdc++.h> using namespace std; void fft(vector<complex<long double>> &a,bool invert) { int n=(int)a.size(); for(int i=0;i<n;i++) { int reverse=0; for(int j=1;j<n;j<<=1) { if(i&j) reverse+=((n>>1)/j); } if(i<reverse) swap(a[i],a[reverse]); } for(int l=2;l<=n;l<<=1) { long double angle=(2*acos(-1)*(invert?-1:1))/l; complex<long double>w(cos(angle),sin(angle)); for(int i=0;i<n;i+=l) { complex<long double>wi(1); for(int j=0;j<l/2;j++) { complex<long double>p=a[i+j],q=a[i+j+l/2]*wi; a[i+j]=p+q; a[i+j+l/2]=p-q; wi*=w; } } } if(invert) { for(int i=0;i<n;i++) a[i]/=n; } } void multiply(vector<int> &a,vector<int> &b,vector<int> &c) { int n=1; while(n<max((int)a.size(),(int)b.size())) n<<=1; n<<=1; vector<complex<long double>>aa(a.begin(),a.end()),bb(b.begin(),b.end()); aa.resize(n); bb.resize(n); fft(aa,0); fft(bb,0); for(int i=0;i<n;i++) aa[i]*=bb[i]; fft(aa,1); c.resize(n); for(int i=0;i<n;i++) c[i]=(int)(aa[i].real()+0.5); } int main() { vector<int>a={1,2,1},b={1,1,0},c; multiply(a,b,c); for(auto i:c) cout<<i<<" "; }
89c37ad65e732c9756672265b49ebf5c02c200a8
8dee139b732fd1ac1f7299211d89508d9485c962
/Lab3/3b/3b.cpp
92f37fba545e9e264050fa32af129632ac4b357b
[]
no_license
DylanNelson99/Algorithim-Computation4thYear
95a0cc137c44c14e05daf627eb5de9e0ff2c669a
d6f3ec70c0a409474458c7b9d667679bd53647b4
refs/heads/master
2023-05-08T18:24:05.161416
2021-06-02T21:15:24
2021-06-02T21:15:24
350,771,228
0
1
null
null
null
null
UTF-8
C++
false
false
2,384
cpp
//used link in labsheet for help - https://www.techiedelight.com/hybrid-quicksort/ //Dylan Nelson - X00144862 #include <iostream> #include <ctime> #include <cstdlib> #include <chrono> #include <algorithm> using namespace std; /** Swap function to swap two elements **/ void swap(int& a, int& b) { int t = a; a = b; b = t; } void quickSort(int* theArray, int size) { if (size > 0) { /** Pivot index split **/ int pi = quickSortDivide(theArray, size); /** Sort the left side of the pivot **/ quickSort(theArray, pi - 1); /** Sort the ride side of the pivot **/ quickSort(&theArray[pi], size - pi); } } int quickSortDivide(int *theArray, int size) { /** Index of smaller element **/ int i = - 1; /** Initializing the pivot **/ int p = theArray[size - 1]; for (int j = 0; j <= size - 1; j++) { /** If the current element is smaller than the pivot **/ if (theArray[j] < p) { /** Increment index of smaller element **/ i++; swap(theArray[i], theArray[j]); } } swap(theArray[i + 1], theArray[size - 1]); return (i + 1); } /** I'm getting a problem with the stack overflow section but my code is below: **/ int main() { int* randArray = new int[200000]; clock_t clock1, clock2; int n = 200000; /** Filling the array with random numbers **/ for (int i = 0; i < n; i++) randArray[i] = rand() % 200000; /** Starting time **/ clock1 = clock(); auto t_start = chrono::high_resolution_clock::now(); quickSort(randArray, n); /** End time **/ clock2 = clock(); auto t_end = chrono::high_resolution_clock::now(); cout << "Quick sort CPU time: " << (float)(clock2 - clock1) / CLOCKS_PER_SEC << " seconds" << endl; cout << "Quick sort Wall time: " << chrono::duration<double, std::milli>(t_end - t_start).count() << " seconds"<< endl; delete[] randArray; int* sortedArray = new int[100000]; int n_sorted = 100000; /** Fill in array **/ for (int i = 0; i < n_sorted; i++) sortedArray[i] = (i + 1); /** Starting time **/ clock1 = clock(); quickSort(sortedArray, n_sorted); /** End time **/ clock2 = clock(); cout << "Quick sort CPU time for sorted array: " << (float)(clock2 - clock1) / CLOCKS_PER_SEC << " seconds" << endl; cout << "Quick sort Wall time for sorted array:: " << chrono::duration<double, std::milli>(t_end - t_start).count() << " seconds" << endl; delete[] sortedArray; return 0; }
7d06ca9c8e9c161c3be4f5827de99c0c08390b18
aa745e58b7052cd740b999495d827e875688f2d4
/OOP_lab_4-5/Recruiter.h
7c6ba09f281a57d84ca46dfee9490c491013b5c5
[]
no_license
ArturShylin/oop
764ce5313faf24e85b5d63cb1e2abd24b6ab502a
4bdfbd0f7bc1748bb63130fa959ef48bef3b11d6
refs/heads/main
2023-05-14T19:46:29.519686
2021-06-07T09:31:21
2021-06-07T09:31:21
374,323,062
0
0
null
null
null
null
UTF-8
C++
false
false
421
h
// // Created by olehh on 08-Mar-21. // #ifndef OOP_LAB_4_RECRUITER_H #define OOP_LAB_4_RECRUITER_H #include "Employee.h" class Recruiter: public Employee { public: Recruiter(); Recruiter(const std::string &name, const std::string &surname, int age); void introduce() override; void work() override; void work(std::string ocupation); }; #endif //OOP_LAB_4_RECRUITER_H
16d828e3de5b0f2e155515c865e30c00cc7f5c69
d327e106285776f28ef1d6c8a7f561b7f05763a6
/SDL/Plane1/Classes/Level.cpp
954ad286d07810003597384ffcad1c552d5b3572
[]
no_license
sky94520/old-code
a4bb7b6826906ffa02f57151af2dc21471cf2106
6b37cc7a9338d283a330b4afae2c7fbd8aa63683
refs/heads/master
2020-05-03T12:37:48.443045
2019-07-23T00:38:16
2019-07-23T00:38:16
178,631,201
0
0
null
null
null
null
UTF-8
C++
false
false
286
cpp
#include "Level.h" Level::Level() { } void Level::render() { for(unsigned int i = 0;i < m_layers.size();i++) { m_layers[i]->render(); } } void Level::update() { for(unsigned int i = 0;i < m_layers.size();i++) { m_layers[i]->update(this); } }
9b7012e6b5a89493b24a981a8913381c5b360da4
49930b95038b173a6e5a2f43141d3db9f30d888c
/Temp/StagingArea/Data/il2cppOutput/Bulk_Generics_0.cpp
58fc729b5eb77d187e9468ef405b1ea28b3b2aa3
[]
no_license
emmanuelcharon/YaPlusDeSaisonUnity
a6b2c44b97ae151a9824acd764bb47d9ba3b2123
080d6cab238baf59a18e3167e13ff053a819650e
refs/heads/master
2020-03-20T18:39:02.275302
2018-06-17T13:18:56
2018-06-17T13:18:56
137,598,329
0
0
null
null
null
null
UTF-8
C++
false
false
1,812,582
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 T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2> struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct GenericVirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct GenericVirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2> struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2> struct GenericVirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct InterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1> struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct GenericInterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2> struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2> struct GenericInterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; // System.Action`1<System.Boolean> struct Action_1_t269755560; // System.IAsyncResult struct IAsyncResult_t767004451; // System.AsyncCallback struct AsyncCallback_t3962456242; // System.Action`1<System.Object> struct Action_1_t3252573759; // System.Action`3<System.Boolean,System.Boolean,System.Int32> struct Action_3_t3050575418; // System.Action`3<System.Object,System.Object,System.Object> struct Action_3_t3632554945; // System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object> struct U3CGetEnumeratorU3Ec__Iterator0_t4107749331; // System.NotSupportedException struct NotSupportedException_t1314879016; // System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument> struct U3CGetEnumeratorU3Ec__Iterator0_t1315508877; // System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument> struct U3CGetEnumeratorU3Ec__Iterator0_t3750793324; // System.Array/ArrayReadOnlyList`1<System.Object> struct ArrayReadOnlyList_1_t4270623997; // System.Object[] struct ObjectU5BU5D_t2843939325; // System.Collections.IEnumerator struct IEnumerator_t1853284238; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t777629997; // System.String struct String_t; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t3512676632; // System.Exception struct Exception_t; // System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument> struct ArrayReadOnlyList_1_t1478383543; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_t3710464795; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct IEnumerator_1_t720436178; // System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument> struct ArrayReadOnlyList_1_t3913667990; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t1465843424; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct IEnumerator_1_t3155720625; // System.InvalidOperationException struct InvalidOperationException_t56020091; // System.Collections.Generic.Comparer`1/DefaultComparer<Global/FruitType> struct DefaultComparer_t132580836; // System.ArgumentException struct ArgumentException_t132251570; // System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTime> struct DefaultComparer_t1591133118; // System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTimeOffset> struct DefaultComparer_t1081890840; // System.Collections.Generic.Comparer`1/DefaultComparer<System.Guid> struct DefaultComparer_t1046136220; // System.Collections.Generic.Comparer`1/DefaultComparer<System.Int32> struct DefaultComparer_t803549086; // System.Collections.Generic.Comparer`1/DefaultComparer<System.Object> struct DefaultComparer_t932709497; // System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument> struct DefaultComparer_t2435436339; // System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument> struct DefaultComparer_t575753490; // System.Collections.Generic.Comparer`1/DefaultComparer<System.TimeSpan> struct DefaultComparer_t3028729878; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.BeforeRenderHelper/OrderBlock> struct DefaultComparer_t3733548460; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Color32> struct DefaultComparer_t453104625; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.EventSystems.RaycastResult> struct DefaultComparer_t1212910182; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UICharInfo> struct DefaultComparer_t2223071735; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UILineInfo> struct DefaultComparer_t2047870143; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UIVertex> struct DefaultComparer_t1910100938; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector2> struct DefaultComparer_t8832856; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector3> struct DefaultComparer_t1574916797; // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector4> struct DefaultComparer_t1171632270; // System.Collections.Generic.Comparer`1<Global/FruitType> struct Comparer_1_t3779732385; // System.Type struct Type_t; // System.Collections.Generic.Comparer`1<System.DateTime> struct Comparer_1_t943317371; // System.Collections.Generic.Comparer`1<System.DateTimeOffset> struct Comparer_1_t434075093; // System.Collections.Generic.Comparer`1<System.Guid> struct Comparer_1_t398320473; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t155733339; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t284893750; // System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument> struct Comparer_1_t1787620592; // System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument> struct Comparer_1_t4222905039; // System.Collections.Generic.Comparer`1<System.TimeSpan> struct Comparer_1_t2380914131; // System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct Comparer_1_t3085732713; // System.Collections.Generic.Comparer`1<UnityEngine.Color32> struct Comparer_1_t4100256174; // System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult> struct Comparer_1_t565094435; // System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo> struct Comparer_1_t1575255988; // System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo> struct Comparer_1_t1400054396; // System.Collections.Generic.Comparer`1<UnityEngine.UIVertex> struct Comparer_1_t1262285191; // System.Collections.Generic.Comparer`1<UnityEngine.Vector2> struct Comparer_1_t3655984405; // System.Collections.Generic.Comparer`1<UnityEngine.Vector3> struct Comparer_1_t927101050; // System.Collections.Generic.Comparer`1<UnityEngine.Vector4> struct Comparer_1_t523816523; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t1968819495; // System.ObjectDisposedException struct ObjectDisposedException_t21392786; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t1444694249; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t3384741; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t132545152; // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object> struct ShimEnumerator_t1965540292; // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean> struct ShimEnumerator_t1441415046; // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32> struct ShimEnumerator_t105538; // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object> struct ShimEnumerator_t129265949; // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry> struct Transform_1_t2448278169; // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct Transform_1_t3690794193; // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object> struct Transform_1_t2404408695; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean> struct Transform_1_t1235930838; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry> struct Transform_1_t4262618511; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct Transform_1_t686041993; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry> struct Transform_1_t1750446691; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct Transform_1_t1027527961; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32> struct Transform_1_t1577416806; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry> struct Transform_1_t4209139644; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct Transform_1_t3615381325; // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object> struct Transform_1_t4165270170; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_t3684863813; // System.ArgumentNullException struct ArgumentNullException_t1615371798; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t3160738567; // System.Collections.Generic.IEnumerator`1<System.Boolean> struct IEnumerator_1_t529858433; // System.Boolean[] struct BooleanU5BU5D_t2897418192; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_t1719429059; // System.Collections.Generic.IEnumerator`1<System.Int32> struct IEnumerator_1_t3383516221; // System.Int32[] struct Int32U5BU5D_t385246372; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t1848589470; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t763310475; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t950877179; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[] struct KeyValuePair_2U5BU5D_t2652375035; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct IEnumerator_1_t504094834; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t1693217257; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_t2292407383; // System.Collections.Generic.Link[] struct LinkU5BU5D_t964245573; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t892470886; // System.Collections.Hashtable struct Hashtable_t1853889766; // System.Collections.ArrayList struct ArrayList_t2718874744; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t2171992254; // System.IntPtr[] struct IntPtrU5BU5D_t4013366056; // System.Collections.IDictionary struct IDictionary_t1363984059; // System.Char[] struct CharU5BU5D_t3528271667; // UnityEngine.Events.UnityAction struct UnityAction_t3245792599; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t386037858; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t2750080073; // System.Threading.ManualResetEvent struct ManualResetEvent_t451242010; // UnityEngine.GameObject struct GameObject_t1113636619; // UnityEngine.Camera struct Camera_t4157153871; // System.Byte struct Byte_t1134296376; // System.Double struct Double_t594665363; // System.UInt16 struct UInt16_t2177724958; // System.Void struct Void_t1185182177; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.DelegateData struct DelegateData_t1677132599; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_t4150874583; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] struct PlayerLoopSystemU5BU5D_t1150299252; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction struct UpdateFunction_t377278577; // System.String[] struct StringU5BU5D_t1281789340; // System.Byte[] struct ByteU5BU5D_t4116647657; // System.IO.Stream struct Stream_t1273022909; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_t829358056; // UnityEngine.Object struct Object_t631007953; // System.Type[] struct TypeU5BU5D_t3940880105; // System.Reflection.MemberFilter struct MemberFilter_t426314064; extern RuntimeClass* Boolean_t97287965_il2cpp_TypeInfo_var; extern const uint32_t Action_1_BeginInvoke_m1817882028_MetadataUsageId; extern RuntimeClass* Int32_t2950945753_il2cpp_TypeInfo_var; extern const uint32_t Action_3_BeginInvoke_m2540562525_MetadataUsageId; extern RuntimeClass* NotSupportedException_t1314879016_il2cpp_TypeInfo_var; extern const RuntimeMethod* U3CGetEnumeratorU3Ec__Iterator0_Reset_m3837913694_RuntimeMethod_var; extern const uint32_t U3CGetEnumeratorU3Ec__Iterator0_Reset_m3837913694_MetadataUsageId; extern const RuntimeMethod* U3CGetEnumeratorU3Ec__Iterator0_Reset_m2500457056_RuntimeMethod_var; extern const uint32_t U3CGetEnumeratorU3Ec__Iterator0_Reset_m2500457056_MetadataUsageId; extern const RuntimeMethod* U3CGetEnumeratorU3Ec__Iterator0_Reset_m1192421843_RuntimeMethod_var; extern const uint32_t U3CGetEnumeratorU3Ec__Iterator0_Reset_m1192421843_MetadataUsageId; extern RuntimeClass* ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var; extern const RuntimeMethod* ArrayReadOnlyList_1_get_Item_m2988101436_RuntimeMethod_var; extern String_t* _stringLiteral797640427; extern const uint32_t ArrayReadOnlyList_1_get_Item_m2988101436_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_set_Item_m2916695038_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_set_Item_m2916695038_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Add_m899240452_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Add_m899240452_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Clear_m2564101847_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Clear_m2564101847_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Insert_m1827843425_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Insert_m1827843425_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Remove_m1724926862_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Remove_m1724926862_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_RemoveAt_m2104218585_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_RemoveAt_m2104218585_MetadataUsageId; extern String_t* _stringLiteral3853944826; extern const uint32_t ArrayReadOnlyList_1_ReadOnlyError_m1047641207_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_get_Item_m1974867852_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_get_Item_m1974867852_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_set_Item_m1428008044_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_set_Item_m1428008044_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Add_m3112646016_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Add_m3112646016_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Clear_m638462730_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Clear_m638462730_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Insert_m587555490_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Insert_m587555490_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Remove_m439579722_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Remove_m439579722_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_RemoveAt_m3226254084_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_RemoveAt_m3226254084_MetadataUsageId; extern const uint32_t ArrayReadOnlyList_1_ReadOnlyError_m3555240367_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_get_Item_m4135188594_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_get_Item_m4135188594_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_set_Item_m3769996290_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_set_Item_m3769996290_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Add_m302584359_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Add_m302584359_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Clear_m337906083_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Clear_m337906083_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Insert_m2929789526_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Insert_m2929789526_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_Remove_m1443718646_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_Remove_m1443718646_MetadataUsageId; extern const RuntimeMethod* ArrayReadOnlyList_1_RemoveAt_m791018368_RuntimeMethod_var; extern const uint32_t ArrayReadOnlyList_1_RemoveAt_m791018368_MetadataUsageId; extern const uint32_t ArrayReadOnlyList_1_ReadOnlyError_m865416608_MetadataUsageId; extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m153299075_RuntimeMethod_var; extern String_t* _stringLiteral2287514662; extern String_t* _stringLiteral3056411131; extern const uint32_t InternalEnumerator_1_get_Current_m153299075_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m4245242303_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m4245242303_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1708547365_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1708547365_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2100201398_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2100201398_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3073360606_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3073360606_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1945804797_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1945804797_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1920303382_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1920303382_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1845246162_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1845246162_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m4241643334_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m4241643334_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m476140818_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m476140818_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3081223448_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3081223448_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m923139215_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m923139215_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2223614542_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2223614542_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3008260692_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3008260692_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2832154098_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2832154098_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3225386639_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3225386639_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2128158355_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2128158355_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2894466703_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2894466703_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2723520268_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2723520268_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3500427238_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3500427238_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m685192625_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m685192625_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3900374024_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3900374024_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3839250771_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3839250771_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3354878040_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3354878040_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3653231044_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3653231044_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2698009637_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2698009637_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2680116177_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2680116177_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m165106323_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m165106323_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2174066122_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2174066122_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2316281569_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2316281569_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m356936020_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m356936020_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m144365666_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m144365666_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3191242573_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3191242573_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3911557813_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3911557813_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1408339225_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1408339225_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2389908135_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2389908135_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2612852447_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2612852447_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1909182215_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1909182215_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1698047500_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1698047500_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m784835552_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m784835552_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1897120917_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1897120917_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1588647567_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1588647567_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1007906068_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1007906068_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2112392701_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2112392701_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3720421287_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3720421287_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1232221964_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1232221964_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2315302778_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2315302778_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m254780543_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m254780543_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1506120701_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1506120701_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2907722321_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2907722321_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2446410893_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2446410893_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m114240259_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m114240259_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1655128652_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1655128652_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3941815949_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3941815949_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m4124877207_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m4124877207_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2350635577_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2350635577_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3792939945_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3792939945_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1070921822_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1070921822_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1534474313_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1534474313_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2297647799_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2297647799_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m3331252162_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m3331252162_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m1477715453_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m1477715453_MetadataUsageId; extern const RuntimeMethod* InternalEnumerator_1_get_Current_m2356858238_RuntimeMethod_var; extern const uint32_t InternalEnumerator_1_get_Current_m2356858238_MetadataUsageId; extern RuntimeClass* IComparable_t36111218_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var; extern const RuntimeMethod* DefaultComparer_Compare_m3867922432_RuntimeMethod_var; extern String_t* _stringLiteral4135314742; extern const uint32_t DefaultComparer_Compare_m3867922432_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m732589824_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m732589824_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m655397166_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m655397166_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m3591589106_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m3591589106_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m1297750557_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m1297750557_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m4042058291_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m4042058291_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m982533255_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m982533255_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m947823904_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m947823904_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m3967426329_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m3967426329_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m2875223111_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m2875223111_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m3278268937_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m3278268937_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m1920986590_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m1920986590_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m3931992727_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m3931992727_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m1916473435_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m1916473435_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m1932373082_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m1932373082_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m3648806637_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m3648806637_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m1369122336_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m1369122336_MetadataUsageId; extern const RuntimeMethod* DefaultComparer_Compare_m297694671_RuntimeMethod_var; extern const uint32_t DefaultComparer_Compare_m297694671_MetadataUsageId; extern const RuntimeType* GenericComparer_1_t3581574675_0_0_0_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern RuntimeClass* TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var; extern const uint32_t Comparer_1__cctor_m1738205000_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m1080883721_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m1080883721_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m1018589532_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m4280289861_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m4280289861_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m3761458313_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m2537217645_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m2537217645_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m1360765445_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m3331561281_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m3331561281_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m1333080997_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m3319128700_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m3319128700_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m3891417387_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m3873488533_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m3873488533_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m3074762297_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m4179495191_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m4179495191_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m3726381774_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m2314014408_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m2314014408_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m2471218188_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m664132038_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m664132038_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m298632577_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m2018996185_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m2018996185_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m257787468_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m3846404545_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m3846404545_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m3918410391_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m2674146735_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m2674146735_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m951016718_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m85666262_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m85666262_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m3470905005_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m1313384821_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m1313384821_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m1190408572_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m1716300968_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m1716300968_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m4224664544_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m1649952021_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m1649952021_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m2284995539_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m1050967453_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m1050967453_MetadataUsageId; extern const uint32_t Comparer_1__cctor_m2282308543_MetadataUsageId; extern const RuntimeMethod* Comparer_1_System_Collections_IComparer_Compare_m2016223770_RuntimeMethod_var; extern const uint32_t Comparer_1_System_Collections_IComparer_Compare_m2016223770_MetadataUsageId; extern RuntimeClass* ObjectDisposedException_t21392786_il2cpp_TypeInfo_var; extern const RuntimeMethod* Enumerator_VerifyState_m194137655_RuntimeMethod_var; extern String_t* _stringLiteral559985012; extern const uint32_t Enumerator_VerifyState_m194137655_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyCurrent_m2197239943_RuntimeMethod_var; extern String_t* _stringLiteral3837798263; extern const uint32_t Enumerator_VerifyCurrent_m2197239943_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyState_m4003066746_RuntimeMethod_var; extern const uint32_t Enumerator_VerifyState_m4003066746_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyCurrent_m829026141_RuntimeMethod_var; extern const uint32_t Enumerator_VerifyCurrent_m829026141_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyState_m1203790900_RuntimeMethod_var; extern const uint32_t Enumerator_VerifyState_m1203790900_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyCurrent_m3071620407_RuntimeMethod_var; extern const uint32_t Enumerator_VerifyCurrent_m3071620407_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyState_m2651392036_RuntimeMethod_var; extern const uint32_t Enumerator_VerifyState_m2651392036_MetadataUsageId; extern const RuntimeMethod* Enumerator_VerifyCurrent_m93918543_RuntimeMethod_var; extern const uint32_t Enumerator_VerifyCurrent_m93918543_MetadataUsageId; extern RuntimeClass* IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var; extern const uint32_t ShimEnumerator_get_Entry_m537093886_MetadataUsageId; extern RuntimeClass* DictionaryEntry_t3123975638_il2cpp_TypeInfo_var; extern const uint32_t ShimEnumerator_get_Current_m467786447_MetadataUsageId; extern const uint32_t ShimEnumerator_get_Entry_m1811677795_MetadataUsageId; extern const uint32_t ShimEnumerator_get_Current_m3504536618_MetadataUsageId; extern const uint32_t ShimEnumerator_get_Entry_m2018664724_MetadataUsageId; extern const uint32_t ShimEnumerator_get_Current_m3395837292_MetadataUsageId; extern const uint32_t ShimEnumerator_get_Entry_m979380979_MetadataUsageId; extern const uint32_t ShimEnumerator_get_Current_m2901126692_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m1757796657_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m2888556735_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m490223026_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m2643675321_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m2300688636_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m669197031_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m410735052_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m3802763823_MetadataUsageId; extern const uint32_t Transform_1_BeginInvoke_m2849783396_MetadataUsageId; extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var; extern const RuntimeMethod* ValueCollection__ctor_m278735622_RuntimeMethod_var; extern String_t* _stringLiteral2957729587; extern const uint32_t ValueCollection__ctor_m278735622_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3298059628_RuntimeMethod_var; extern String_t* _stringLiteral1364654004; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3298059628_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m442731484_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m442731484_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2980345068_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2980345068_MetadataUsageId; extern RuntimeClass* ICollection_t3904884886_il2cpp_TypeInfo_var; extern const uint32_t ValueCollection_System_Collections_ICollection_get_SyncRoot_m4058779411_MetadataUsageId; extern const RuntimeMethod* ValueCollection__ctor_m3001501704_RuntimeMethod_var; extern const uint32_t ValueCollection__ctor_m3001501704_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2448180692_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2448180692_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m283414414_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m283414414_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1748672125_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1748672125_MetadataUsageId; extern const uint32_t ValueCollection_System_Collections_ICollection_get_SyncRoot_m1114275063_MetadataUsageId; extern const RuntimeMethod* ValueCollection__ctor_m2584527071_RuntimeMethod_var; extern const uint32_t ValueCollection__ctor_m2584527071_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3538092350_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3538092350_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3566470663_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3566470663_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2815410150_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2815410150_MetadataUsageId; extern const uint32_t ValueCollection_System_Collections_ICollection_get_SyncRoot_m3020187163_MetadataUsageId; extern const RuntimeMethod* ValueCollection__ctor_m2244993774_RuntimeMethod_var; extern const uint32_t ValueCollection__ctor_m2244993774_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1396030577_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1396030577_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m626686600_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m626686600_MetadataUsageId; extern const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m659601308_RuntimeMethod_var; extern const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m659601308_MetadataUsageId; extern const uint32_t ValueCollection_System_Collections_ICollection_get_SyncRoot_m1849311106_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Remove_m1909892810_RuntimeMethod_var; extern String_t* _stringLiteral2600271970; extern const uint32_t Dictionary_2_System_Collections_IDictionary_Remove_m1909892810_MetadataUsageId; extern RuntimeClass* DictionaryEntryU5BU5D_t4217117203_il2cpp_TypeInfo_var; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m3143696177_MetadataUsageId; extern RuntimeClass* KeyNotFoundException_t2292407383_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2_get_Item_m193757924_RuntimeMethod_var; extern const uint32_t Dictionary_2_get_Item_m193757924_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_set_Item_m3327106492_RuntimeMethod_var; extern const uint32_t Dictionary_2_set_Item_m3327106492_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_Init_m15475088_RuntimeMethod_var; extern String_t* _stringLiteral3623012086; extern const uint32_t Dictionary_2_Init_m15475088_MetadataUsageId; extern RuntimeClass* Int32U5BU5D_t385246372_il2cpp_TypeInfo_var; extern RuntimeClass* LinkU5BU5D_t964245573_il2cpp_TypeInfo_var; extern const uint32_t Dictionary_2_InitArrays_m1664917084_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_CopyToCheck_m45332585_RuntimeMethod_var; extern String_t* _stringLiteral4007973390; extern String_t* _stringLiteral2973413626; extern String_t* _stringLiteral751398076; extern const uint32_t Dictionary_2_CopyToCheck_m45332585_MetadataUsageId; extern RuntimeClass* Hashtable_t1853889766_il2cpp_TypeInfo_var; extern const uint32_t Dictionary_2_Resize_m1156965638_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_Add_m2059424751_RuntimeMethod_var; extern String_t* _stringLiteral3189027530; extern const uint32_t Dictionary_2_Add_m2059424751_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_ContainsKey_m2585338612_RuntimeMethod_var; extern const uint32_t Dictionary_2_ContainsKey_m2585338612_MetadataUsageId; extern String_t* _stringLiteral1902402919; extern String_t* _stringLiteral892943380; extern String_t* _stringLiteral953796230; extern String_t* _stringLiteral2947573650; extern const uint32_t Dictionary_2_OnDeserialization_m4209543208_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_Remove_m4193450060_RuntimeMethod_var; extern const uint32_t Dictionary_2_Remove_m4193450060_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_TryGetValue_m3411363121_RuntimeMethod_var; extern const uint32_t Dictionary_2_TryGetValue_m3411363121_MetadataUsageId; extern RuntimeClass* String_t_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2_ToTKey_m224697230_RuntimeMethod_var; extern String_t* _stringLiteral4183622140; extern const uint32_t Dictionary_2_ToTKey_m224697230_MetadataUsageId; extern const RuntimeMethod* Dictionary_2_ToTValue_m692436965_RuntimeMethod_var; extern String_t* _stringLiteral3493618073; extern const uint32_t Dictionary_2_ToTValue_m692436965_MetadataUsageId; struct PlayerLoopSystem_t105772105_marshaled_pinvoke; struct PlayerLoopSystem_t105772105_marshaled_com; struct Object_t631007953_marshaled_com; struct ObjectU5BU5D_t2843939325; struct CustomAttributeNamedArgumentU5BU5D_t3710464795; struct CustomAttributeTypedArgumentU5BU5D_t1465843424; struct TypeU5BU5D_t3940880105; struct LinkU5BU5D_t964245573; struct Int32U5BU5D_t385246372; struct BooleanU5BU5D_t2897418192; struct KeyValuePair_2U5BU5D_t2652375035; struct DictionaryEntryU5BU5D_t4217117203; #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 COMPARER_1_T4222905039_H #define COMPARER_1_T4222905039_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument> struct Comparer_1_t4222905039 : public RuntimeObject { public: public: }; struct Comparer_1_t4222905039_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t4222905039 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t4222905039_StaticFields, ____default_0)); } inline Comparer_1_t4222905039 * get__default_0() const { return ____default_0; } inline Comparer_1_t4222905039 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t4222905039 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T4222905039_H #ifndef EQUALITYCOMPARER_1_T1120718089_H #define EQUALITYCOMPARER_1_T1120718089_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.Int32> struct EqualityComparer_1_t1120718089 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1120718089_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1::_default EqualityComparer_1_t1120718089 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1120718089_StaticFields, ____default_0)); } inline EqualityComparer_1_t1120718089 * get__default_0() const { return ____default_0; } inline EqualityComparer_1_t1120718089 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(EqualityComparer_1_t1120718089 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1120718089_H #ifndef COMPARER_1_T1787620592_H #define COMPARER_1_T1787620592_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument> struct Comparer_1_t1787620592 : public RuntimeObject { public: public: }; struct Comparer_1_t1787620592_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t1787620592 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1787620592_StaticFields, ____default_0)); } inline Comparer_1_t1787620592 * get__default_0() const { return ____default_0; } inline Comparer_1_t1787620592 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t1787620592 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T1787620592_H #ifndef COMPARER_1_T284893750_H #define COMPARER_1_T284893750_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t284893750 : public RuntimeObject { public: public: }; struct Comparer_1_t284893750_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t284893750 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t284893750_StaticFields, ____default_0)); } inline Comparer_1_t284893750 * get__default_0() const { return ____default_0; } inline Comparer_1_t284893750 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t284893750 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T284893750_H #ifndef COMPARER_1_T155733339_H #define COMPARER_1_T155733339_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t155733339 : public RuntimeObject { public: public: }; struct Comparer_1_t155733339_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t155733339 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t155733339_StaticFields, ____default_0)); } inline Comparer_1_t155733339 * get__default_0() const { return ____default_0; } inline Comparer_1_t155733339 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t155733339 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T155733339_H #ifndef COMPARER_1_T398320473_H #define COMPARER_1_T398320473_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.Guid> struct Comparer_1_t398320473 : public RuntimeObject { public: public: }; struct Comparer_1_t398320473_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t398320473 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t398320473_StaticFields, ____default_0)); } inline Comparer_1_t398320473 * get__default_0() const { return ____default_0; } inline Comparer_1_t398320473 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t398320473 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T398320473_H #ifndef COMPARER_1_T523816523_H #define COMPARER_1_T523816523_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.Vector4> struct Comparer_1_t523816523 : public RuntimeObject { public: public: }; struct Comparer_1_t523816523_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t523816523 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t523816523_StaticFields, ____default_0)); } inline Comparer_1_t523816523 * get__default_0() const { return ____default_0; } inline Comparer_1_t523816523 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t523816523 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T523816523_H #ifndef COMPARER_1_T434075093_H #define COMPARER_1_T434075093_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.DateTimeOffset> struct Comparer_1_t434075093 : public RuntimeObject { public: public: }; struct Comparer_1_t434075093_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t434075093 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t434075093_StaticFields, ____default_0)); } inline Comparer_1_t434075093 * get__default_0() const { return ____default_0; } inline Comparer_1_t434075093 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t434075093 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T434075093_H #ifndef COMPARER_1_T943317371_H #define COMPARER_1_T943317371_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.DateTime> struct Comparer_1_t943317371 : public RuntimeObject { public: public: }; struct Comparer_1_t943317371_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t943317371 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t943317371_StaticFields, ____default_0)); } inline Comparer_1_t943317371 * get__default_0() const { return ____default_0; } inline Comparer_1_t943317371 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t943317371 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T943317371_H #ifndef COMPARER_1_T3779732385_H #define COMPARER_1_T3779732385_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<Global/FruitType> struct Comparer_1_t3779732385 : public RuntimeObject { public: public: }; struct Comparer_1_t3779732385_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t3779732385 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3779732385_StaticFields, ____default_0)); } inline Comparer_1_t3779732385 * get__default_0() const { return ____default_0; } inline Comparer_1_t3779732385 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t3779732385 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T3779732385_H #ifndef COLLECTIONDEBUGGERVIEW_2_T720968023_H #define COLLECTIONDEBUGGERVIEW_2_T720968023_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.CollectionDebuggerView`2<System.Object,System.Object> struct CollectionDebuggerView_2_t720968023 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLLECTIONDEBUGGERVIEW_2_T720968023_H #ifndef DICTIONARY_2_T1968819495_H #define DICTIONARY_2_T1968819495_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t1968819495 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t385246372* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t964245573* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots Int32U5BU5D_t385246372* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots ObjectU5BU5D_t2843939325* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t950877179 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___table_4)); } inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t385246372* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___linkSlots_5)); } inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t964245573* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___keySlots_6)); } inline Int32U5BU5D_t385246372* get_keySlots_6() const { return ___keySlots_6; } inline Int32U5BU5D_t385246372** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(Int32U5BU5D_t385246372* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___valueSlots_7)); } inline ObjectU5BU5D_t2843939325* get_valueSlots_7() const { return ___valueSlots_7; } inline ObjectU5BU5D_t2843939325** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(ObjectU5BU5D_t2843939325* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___serialization_info_13)); } inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t950877179 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t1968819495_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t2448278169 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t1968819495_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t2448278169 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t2448278169 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t2448278169 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T1968819495_H #ifndef DICTIONARY_2_T1444694249_H #define DICTIONARY_2_T1444694249_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t1444694249 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t385246372* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t964245573* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots ObjectU5BU5D_t2843939325* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots BooleanU5BU5D_t2897418192* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t950877179 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___table_4)); } inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t385246372* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___linkSlots_5)); } inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t964245573* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___keySlots_6)); } inline ObjectU5BU5D_t2843939325* get_keySlots_6() const { return ___keySlots_6; } inline ObjectU5BU5D_t2843939325** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(ObjectU5BU5D_t2843939325* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___valueSlots_7)); } inline BooleanU5BU5D_t2897418192* get_valueSlots_7() const { return ___valueSlots_7; } inline BooleanU5BU5D_t2897418192** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(BooleanU5BU5D_t2897418192* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___serialization_info_13)); } inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t950877179 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t1444694249_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t4262618511 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t1444694249_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t4262618511 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t4262618511 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t4262618511 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T1444694249_H #ifndef DICTIONARY_2_T3384741_H #define DICTIONARY_2_T3384741_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t3384741 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t385246372* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t964245573* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots ObjectU5BU5D_t2843939325* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots Int32U5BU5D_t385246372* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t950877179 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___table_4)); } inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t385246372* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___linkSlots_5)); } inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t964245573* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___keySlots_6)); } inline ObjectU5BU5D_t2843939325* get_keySlots_6() const { return ___keySlots_6; } inline ObjectU5BU5D_t2843939325** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(ObjectU5BU5D_t2843939325* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___valueSlots_7)); } inline Int32U5BU5D_t385246372* get_valueSlots_7() const { return ___valueSlots_7; } inline Int32U5BU5D_t385246372** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(Int32U5BU5D_t385246372* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___serialization_info_13)); } inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t950877179 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t3384741_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t1750446691 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t3384741_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t1750446691 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t1750446691 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t1750446691 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T3384741_H #ifndef DICTIONARY_2_T132545152_H #define DICTIONARY_2_T132545152_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t132545152 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t385246372* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t964245573* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots ObjectU5BU5D_t2843939325* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots ObjectU5BU5D_t2843939325* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t950877179 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___table_4)); } inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t385246372* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___linkSlots_5)); } inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t964245573* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___keySlots_6)); } inline ObjectU5BU5D_t2843939325* get_keySlots_6() const { return ___keySlots_6; } inline ObjectU5BU5D_t2843939325** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(ObjectU5BU5D_t2843939325* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___valueSlots_7)); } inline ObjectU5BU5D_t2843939325* get_valueSlots_7() const { return ___valueSlots_7; } inline ObjectU5BU5D_t2843939325** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(ObjectU5BU5D_t2843939325* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___serialization_info_13)); } inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t950877179 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t132545152_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t4209139644 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t132545152_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t4209139644 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t4209139644 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t4209139644 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T132545152_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.Collections.Hashtable System.Runtime.Serialization.SerializationInfo::serialized Hashtable_t1853889766 * ___serialized_0; // System.Collections.ArrayList System.Runtime.Serialization.SerializationInfo::values ArrayList_t2718874744 * ___values_1; // System.String System.Runtime.Serialization.SerializationInfo::assemblyName String_t* ___assemblyName_2; // System.String System.Runtime.Serialization.SerializationInfo::fullTypeName String_t* ___fullTypeName_3; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::converter RuntimeObject* ___converter_4; public: inline static int32_t get_offset_of_serialized_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___serialized_0)); } inline Hashtable_t1853889766 * get_serialized_0() const { return ___serialized_0; } inline Hashtable_t1853889766 ** get_address_of_serialized_0() { return &___serialized_0; } inline void set_serialized_0(Hashtable_t1853889766 * value) { ___serialized_0 = value; Il2CppCodeGenWriteBarrier((&___serialized_0), value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___values_1)); } inline ArrayList_t2718874744 * get_values_1() const { return ___values_1; } inline ArrayList_t2718874744 ** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ArrayList_t2718874744 * value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((&___values_1), value); } inline static int32_t get_offset_of_assemblyName_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___assemblyName_2)); } inline String_t* get_assemblyName_2() const { return ___assemblyName_2; } inline String_t** get_address_of_assemblyName_2() { return &___assemblyName_2; } inline void set_assemblyName_2(String_t* value) { ___assemblyName_2 = value; Il2CppCodeGenWriteBarrier((&___assemblyName_2), value); } inline static int32_t get_offset_of_fullTypeName_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___fullTypeName_3)); } inline String_t* get_fullTypeName_3() const { return ___fullTypeName_3; } inline String_t** get_address_of_fullTypeName_3() { return &___fullTypeName_3; } inline void set_fullTypeName_3(String_t* value) { ___fullTypeName_3 = value; Il2CppCodeGenWriteBarrier((&___fullTypeName_3), value); } inline static int32_t get_offset_of_converter_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___converter_4)); } inline RuntimeObject* get_converter_4() const { return ___converter_4; } inline RuntimeObject** get_address_of_converter_4() { return &___converter_4; } inline void set_converter_4(RuntimeObject* value) { ___converter_4 = value; Il2CppCodeGenWriteBarrier((&___converter_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFO_T950877179_H #ifndef VALUECOLLECTION_T1848589470_H #define VALUECOLLECTION_T1848589470_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t1848589470 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t132545152 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t1848589470, ___dictionary_0)); } inline Dictionary_2_t132545152 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t132545152 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t132545152 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T1848589470_H #ifndef VALUECOLLECTION_T3684863813_H #define VALUECOLLECTION_T3684863813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_t3684863813 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t1968819495 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t3684863813, ___dictionary_0)); } inline Dictionary_2_t1968819495 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1968819495 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1968819495 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T3684863813_H #ifndef VALUECOLLECTION_T1719429059_H #define VALUECOLLECTION_T1719429059_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_t1719429059 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t3384741 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t1719429059, ___dictionary_0)); } inline Dictionary_2_t3384741 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3384741 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3384741 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T1719429059_H #ifndef VALUECOLLECTION_T3160738567_H #define VALUECOLLECTION_T3160738567_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t3160738567 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t1444694249 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t3160738567, ___dictionary_0)); } inline Dictionary_2_t1444694249 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1444694249 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1444694249 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T3160738567_H #ifndef COMPARER_1_T927101050_H #define COMPARER_1_T927101050_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.Vector3> struct Comparer_1_t927101050 : public RuntimeObject { public: public: }; struct Comparer_1_t927101050_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t927101050 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t927101050_StaticFields, ____default_0)); } inline Comparer_1_t927101050 * get__default_0() const { return ____default_0; } inline Comparer_1_t927101050 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t927101050 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T927101050_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> System.Collections.Generic.EqualityComparer`1::_default EqualityComparer_1_t1249878500 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1249878500_StaticFields, ____default_0)); } inline EqualityComparer_1_t1249878500 * get__default_0() const { return ____default_0; } inline EqualityComparer_1_t1249878500 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(EqualityComparer_1_t1249878500 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1249878500_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 COLLECTIONDEBUGGERVIEW_1_T1274252988_H #define COLLECTIONDEBUGGERVIEW_1_T1274252988_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.CollectionDebuggerView`1<System.Object> struct CollectionDebuggerView_1_t1274252988 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLLECTIONDEBUGGERVIEW_1_T1274252988_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.IntPtr[] System.Exception::trace_ips IntPtrU5BU5D_t4013366056* ___trace_ips_0; // System.Exception System.Exception::inner_exception Exception_t * ___inner_exception_1; // System.String System.Exception::message String_t* ___message_2; // System.String System.Exception::help_link String_t* ___help_link_3; // System.String System.Exception::class_name String_t* ___class_name_4; // System.String System.Exception::stack_trace String_t* ___stack_trace_5; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_6; // System.Int32 System.Exception::remote_stack_index int32_t ___remote_stack_index_7; // System.Int32 System.Exception::hresult int32_t ___hresult_8; // System.String System.Exception::source String_t* ___source_9; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_10; public: inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); } inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; } inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; } inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value) { ___trace_ips_0 = value; Il2CppCodeGenWriteBarrier((&___trace_ips_0), value); } inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); } inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; } inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; } inline void set_inner_exception_1(Exception_t * value) { ___inner_exception_1 = value; Il2CppCodeGenWriteBarrier((&___inner_exception_1), value); } inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); } inline String_t* get_message_2() const { return ___message_2; } inline String_t** get_address_of_message_2() { return &___message_2; } inline void set_message_2(String_t* value) { ___message_2 = value; Il2CppCodeGenWriteBarrier((&___message_2), value); } inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); } inline String_t* get_help_link_3() const { return ___help_link_3; } inline String_t** get_address_of_help_link_3() { return &___help_link_3; } inline void set_help_link_3(String_t* value) { ___help_link_3 = value; Il2CppCodeGenWriteBarrier((&___help_link_3), value); } inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); } inline String_t* get_class_name_4() const { return ___class_name_4; } inline String_t** get_address_of_class_name_4() { return &___class_name_4; } inline void set_class_name_4(String_t* value) { ___class_name_4 = value; Il2CppCodeGenWriteBarrier((&___class_name_4), value); } inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); } inline String_t* get_stack_trace_5() const { return ___stack_trace_5; } inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; } inline void set_stack_trace_5(String_t* value) { ___stack_trace_5 = value; Il2CppCodeGenWriteBarrier((&___stack_trace_5), value); } inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); } inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; } inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; } inline void set__remoteStackTraceString_6(String_t* value) { ____remoteStackTraceString_6 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value); } inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); } inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; } inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; } inline void set_remote_stack_index_7(int32_t value) { ___remote_stack_index_7 = value; } inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); } inline int32_t get_hresult_8() const { return ___hresult_8; } inline int32_t* get_address_of_hresult_8() { return &___hresult_8; } inline void set_hresult_8(int32_t value) { ___hresult_8 = value; } inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); } inline String_t* get_source_9() const { return ___source_9; } inline String_t** get_address_of_source_9() { return &___source_9; } inline void set_source_9(String_t* value) { ___source_9 = value; Il2CppCodeGenWriteBarrier((&___source_9), value); } inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); } inline RuntimeObject* get__data_10() const { return ____data_10; } inline RuntimeObject** get_address_of__data_10() { return &____data_10; } inline void set__data_10(RuntimeObject* value) { ____data_10 = value; Il2CppCodeGenWriteBarrier((&____data_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXCEPTION_T_H #ifndef COMPARER_1_T2380914131_H #define COMPARER_1_T2380914131_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<System.TimeSpan> struct Comparer_1_t2380914131 : public RuntimeObject { public: public: }; struct Comparer_1_t2380914131_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t2380914131 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t2380914131_StaticFields, ____default_0)); } inline Comparer_1_t2380914131 * get__default_0() const { return ____default_0; } inline Comparer_1_t2380914131 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t2380914131 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T2380914131_H #ifndef U3CGETENUMERATORU3EC__ITERATOR0_T4107749331_H #define U3CGETENUMERATORU3EC__ITERATOR0_T4107749331_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object> struct U3CGetEnumeratorU3Ec__Iterator0_t4107749331 : public RuntimeObject { public: // System.Int32 System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::<i>__0 int32_t ___U3CiU3E__0_0; // System.Int32 System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::$PC int32_t ___U24PC_1; // T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::$current RuntimeObject * ___U24current_2; // System.Array/ArrayReadOnlyList`1<T> System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::<>f__this ArrayReadOnlyList_1_t4270623997 * ___U3CU3Ef__this_3; public: inline static int32_t get_offset_of_U3CiU3E__0_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t4107749331, ___U3CiU3E__0_0)); } inline int32_t get_U3CiU3E__0_0() const { return ___U3CiU3E__0_0; } inline int32_t* get_address_of_U3CiU3E__0_0() { return &___U3CiU3E__0_0; } inline void set_U3CiU3E__0_0(int32_t value) { ___U3CiU3E__0_0 = value; } inline static int32_t get_offset_of_U24PC_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t4107749331, ___U24PC_1)); } inline int32_t get_U24PC_1() const { return ___U24PC_1; } inline int32_t* get_address_of_U24PC_1() { return &___U24PC_1; } inline void set_U24PC_1(int32_t value) { ___U24PC_1 = value; } inline static int32_t get_offset_of_U24current_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t4107749331, ___U24current_2)); } inline RuntimeObject * get_U24current_2() const { return ___U24current_2; } inline RuntimeObject ** get_address_of_U24current_2() { return &___U24current_2; } inline void set_U24current_2(RuntimeObject * value) { ___U24current_2 = value; Il2CppCodeGenWriteBarrier((&___U24current_2), value); } inline static int32_t get_offset_of_U3CU3Ef__this_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t4107749331, ___U3CU3Ef__this_3)); } inline ArrayReadOnlyList_1_t4270623997 * get_U3CU3Ef__this_3() const { return ___U3CU3Ef__this_3; } inline ArrayReadOnlyList_1_t4270623997 ** get_address_of_U3CU3Ef__this_3() { return &___U3CU3Ef__this_3; } inline void set_U3CU3Ef__this_3(ArrayReadOnlyList_1_t4270623997 * value) { ___U3CU3Ef__this_3 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__this_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CGETENUMERATORU3EC__ITERATOR0_T4107749331_H #ifndef COMPARER_1_T1400054396_H #define COMPARER_1_T1400054396_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo> struct Comparer_1_t1400054396 : public RuntimeObject { public: public: }; struct Comparer_1_t1400054396_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t1400054396 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1400054396_StaticFields, ____default_0)); } inline Comparer_1_t1400054396 * get__default_0() const { return ____default_0; } inline Comparer_1_t1400054396 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t1400054396 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T1400054396_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 COMPARER_1_T1262285191_H #define COMPARER_1_T1262285191_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.UIVertex> struct Comparer_1_t1262285191 : public RuntimeObject { public: public: }; struct Comparer_1_t1262285191_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t1262285191 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1262285191_StaticFields, ____default_0)); } inline Comparer_1_t1262285191 * get__default_0() const { return ____default_0; } inline Comparer_1_t1262285191 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t1262285191 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T1262285191_H #ifndef COMPARER_1_T1575255988_H #define COMPARER_1_T1575255988_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo> struct Comparer_1_t1575255988 : public RuntimeObject { public: public: }; struct Comparer_1_t1575255988_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t1575255988 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1575255988_StaticFields, ____default_0)); } inline Comparer_1_t1575255988 * get__default_0() const { return ____default_0; } inline Comparer_1_t1575255988 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t1575255988 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T1575255988_H #ifndef COMPARER_1_T565094435_H #define COMPARER_1_T565094435_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult> struct Comparer_1_t565094435 : public RuntimeObject { public: public: }; struct Comparer_1_t565094435_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t565094435 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t565094435_StaticFields, ____default_0)); } inline Comparer_1_t565094435 * get__default_0() const { return ____default_0; } inline Comparer_1_t565094435 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t565094435 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T565094435_H #ifndef COMPARER_1_T4100256174_H #define COMPARER_1_T4100256174_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.Color32> struct Comparer_1_t4100256174 : public RuntimeObject { public: public: }; struct Comparer_1_t4100256174_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t4100256174 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t4100256174_StaticFields, ____default_0)); } inline Comparer_1_t4100256174 * get__default_0() const { return ____default_0; } inline Comparer_1_t4100256174 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t4100256174 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T4100256174_H #ifndef ARRAYREADONLYLIST_1_T1478383543_H #define ARRAYREADONLYLIST_1_T1478383543_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument> struct ArrayReadOnlyList_1_t1478383543 : public RuntimeObject { public: // T[] System.Array/ArrayReadOnlyList`1::array CustomAttributeNamedArgumentU5BU5D_t3710464795* ___array_0; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(ArrayReadOnlyList_1_t1478383543, ___array_0)); } inline CustomAttributeNamedArgumentU5BU5D_t3710464795* get_array_0() const { return ___array_0; } inline CustomAttributeNamedArgumentU5BU5D_t3710464795** get_address_of_array_0() { return &___array_0; } inline void set_array_0(CustomAttributeNamedArgumentU5BU5D_t3710464795* value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYREADONLYLIST_1_T1478383543_H #ifndef ARRAYREADONLYLIST_1_T4270623997_H #define ARRAYREADONLYLIST_1_T4270623997_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/ArrayReadOnlyList`1<System.Object> struct ArrayReadOnlyList_1_t4270623997 : public RuntimeObject { public: // T[] System.Array/ArrayReadOnlyList`1::array ObjectU5BU5D_t2843939325* ___array_0; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(ArrayReadOnlyList_1_t4270623997, ___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); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYREADONLYLIST_1_T4270623997_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::length int32_t ___length_0; // System.Char System.String::start_char Il2CppChar ___start_char_1; public: inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); } inline Il2CppChar get_start_char_1() const { return ___start_char_1; } inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; } inline void set_start_char_1(Il2CppChar value) { ___start_char_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_2; // System.Char[] System.String::WhiteChars CharU5BU5D_t3528271667* ___WhiteChars_3; public: inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); } inline String_t* get_Empty_2() const { return ___Empty_2; } inline String_t** get_address_of_Empty_2() { return &___Empty_2; } inline void set_Empty_2(String_t* value) { ___Empty_2 = value; Il2CppCodeGenWriteBarrier((&___Empty_2), value); } inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); } inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; } inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; } inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value) { ___WhiteChars_3 = value; Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef COMPARER_1_T3655984405_H #define COMPARER_1_T3655984405_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.Vector2> struct Comparer_1_t3655984405 : public RuntimeObject { public: public: }; struct Comparer_1_t3655984405_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t3655984405 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3655984405_StaticFields, ____default_0)); } inline Comparer_1_t3655984405 * get__default_0() const { return ____default_0; } inline Comparer_1_t3655984405 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t3655984405 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T3655984405_H #ifndef COMPARER_1_T3085732713_H #define COMPARER_1_T3085732713_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct Comparer_1_t3085732713 : public RuntimeObject { public: public: }; struct Comparer_1_t3085732713_StaticFields { public: // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1::_default Comparer_1_t3085732713 * ____default_0; public: inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3085732713_StaticFields, ____default_0)); } inline Comparer_1_t3085732713 * get__default_0() const { return ____default_0; } inline Comparer_1_t3085732713 ** get_address_of__default_0() { return &____default_0; } inline void set__default_0(Comparer_1_t3085732713 * value) { ____default_0 = value; Il2CppCodeGenWriteBarrier((&____default_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARER_1_T3085732713_H #ifndef ARRAYREADONLYLIST_1_T3913667990_H #define ARRAYREADONLYLIST_1_T3913667990_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument> struct ArrayReadOnlyList_1_t3913667990 : public RuntimeObject { public: // T[] System.Array/ArrayReadOnlyList`1::array CustomAttributeTypedArgumentU5BU5D_t1465843424* ___array_0; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(ArrayReadOnlyList_1_t3913667990, ___array_0)); } inline CustomAttributeTypedArgumentU5BU5D_t1465843424* get_array_0() const { return ___array_0; } inline CustomAttributeTypedArgumentU5BU5D_t1465843424** get_address_of_array_0() { return &___array_0; } inline void set_array_0(CustomAttributeTypedArgumentU5BU5D_t1465843424* value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYREADONLYLIST_1_T3913667990_H #ifndef INTERNALENUMERATOR_1_T3186646106_H #define INTERNALENUMERATOR_1_T3186646106_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D> struct InternalEnumerator_1_t3186646106 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3186646106, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3186646106, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3186646106_H #ifndef INTERNALENUMERATOR_1_T3467126095_H #define INTERNALENUMERATOR_1_T3467126095_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.UInt32> struct InternalEnumerator_1_t3467126095 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3467126095, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3467126095, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3467126095_H #ifndef INTERNALENUMERATOR_1_T746136913_H #define INTERNALENUMERATOR_1_T746136913_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.UInt64> struct InternalEnumerator_1_t746136913 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t746136913, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t746136913, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T746136913_H #ifndef INTERNALENUMERATOR_1_T1963066083_H #define INTERNALENUMERATOR_1_T1963066083_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.RaycastHit> struct InternalEnumerator_1_t1963066083 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1963066083, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1963066083, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1963066083_H #ifndef DEFAULTCOMPARER_T2047870143_H #define DEFAULTCOMPARER_T2047870143_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UILineInfo> struct DefaultComparer_t2047870143 : public Comparer_1_t1400054396 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T2047870143_H #ifndef INTERNALENUMERATOR_1_T1261324826_H #define INTERNALENUMERATOR_1_T1261324826_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding> struct InternalEnumerator_1_t1261324826 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1261324826, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1261324826, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1261324826_H #ifndef KEYFRAME_T4206410242_H #define KEYFRAME_T4206410242_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Keyframe struct Keyframe_t4206410242 { public: // System.Single UnityEngine.Keyframe::m_Time float ___m_Time_0; // System.Single UnityEngine.Keyframe::m_Value float ___m_Value_1; // System.Single UnityEngine.Keyframe::m_InTangent float ___m_InTangent_2; // System.Single UnityEngine.Keyframe::m_OutTangent float ___m_OutTangent_3; // System.Int32 UnityEngine.Keyframe::m_WeightedMode int32_t ___m_WeightedMode_4; // System.Single UnityEngine.Keyframe::m_InWeight float ___m_InWeight_5; // System.Single UnityEngine.Keyframe::m_OutWeight float ___m_OutWeight_6; public: inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_Time_0)); } inline float get_m_Time_0() const { return ___m_Time_0; } inline float* get_address_of_m_Time_0() { return &___m_Time_0; } inline void set_m_Time_0(float value) { ___m_Time_0 = value; } inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_Value_1)); } inline float get_m_Value_1() const { return ___m_Value_1; } inline float* get_address_of_m_Value_1() { return &___m_Value_1; } inline void set_m_Value_1(float value) { ___m_Value_1 = value; } inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_InTangent_2)); } inline float get_m_InTangent_2() const { return ___m_InTangent_2; } inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; } inline void set_m_InTangent_2(float value) { ___m_InTangent_2 = value; } inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_OutTangent_3)); } inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; } inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; } inline void set_m_OutTangent_3(float value) { ___m_OutTangent_3 = value; } inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_WeightedMode_4)); } inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; } inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; } inline void set_m_WeightedMode_4(int32_t value) { ___m_WeightedMode_4 = value; } inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_InWeight_5)); } inline float get_m_InWeight_5() const { return ___m_InWeight_5; } inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; } inline void set_m_InWeight_5(float value) { ___m_InWeight_5 = value; } inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_OutWeight_6)); } inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; } inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; } inline void set_m_OutWeight_6(float value) { ___m_OutWeight_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYFRAME_T4206410242_H #ifndef INTERNALENUMERATOR_1_T818507063_H #define INTERNALENUMERATOR_1_T818507063_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Keyframe> struct InternalEnumerator_1_t818507063 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t818507063, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t818507063, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T818507063_H #ifndef INTERNALENUMERATOR_1_T1012836222_H #define INTERNALENUMERATOR_1_T1012836222_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem> struct InternalEnumerator_1_t1012836222 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1012836222, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1012836222, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1012836222_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 DEFAULTCOMPARER_T1910100938_H #define DEFAULTCOMPARER_T1910100938_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UIVertex> struct DefaultComparer_t1910100938 : public Comparer_1_t1262285191 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1910100938_H #ifndef INTERNALENUMERATOR_1_T2493041948_H #define INTERNALENUMERATOR_1_T2493041948_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct InternalEnumerator_1_t2493041948 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2493041948, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2493041948, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2493041948_H #ifndef URISCHEME_T722425697_H #define URISCHEME_T722425697_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Uri/UriScheme struct UriScheme_t722425697 { public: // System.String System.Uri/UriScheme::scheme String_t* ___scheme_0; // System.String System.Uri/UriScheme::delimiter String_t* ___delimiter_1; // System.Int32 System.Uri/UriScheme::defaultPort int32_t ___defaultPort_2; public: inline static int32_t get_offset_of_scheme_0() { return static_cast<int32_t>(offsetof(UriScheme_t722425697, ___scheme_0)); } inline String_t* get_scheme_0() const { return ___scheme_0; } inline String_t** get_address_of_scheme_0() { return &___scheme_0; } inline void set_scheme_0(String_t* value) { ___scheme_0 = value; Il2CppCodeGenWriteBarrier((&___scheme_0), value); } inline static int32_t get_offset_of_delimiter_1() { return static_cast<int32_t>(offsetof(UriScheme_t722425697, ___delimiter_1)); } inline String_t* get_delimiter_1() const { return ___delimiter_1; } inline String_t** get_address_of_delimiter_1() { return &___delimiter_1; } inline void set_delimiter_1(String_t* value) { ___delimiter_1 = value; Il2CppCodeGenWriteBarrier((&___delimiter_1), value); } inline static int32_t get_offset_of_defaultPort_2() { return static_cast<int32_t>(offsetof(UriScheme_t722425697, ___defaultPort_2)); } inline int32_t get_defaultPort_2() const { return ___defaultPort_2; } inline int32_t* get_address_of_defaultPort_2() { return &___defaultPort_2; } inline void set_defaultPort_2(int32_t value) { ___defaultPort_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Uri/UriScheme struct UriScheme_t722425697_marshaled_pinvoke { char* ___scheme_0; char* ___delimiter_1; int32_t ___defaultPort_2; }; // Native definition for COM marshalling of System.Uri/UriScheme struct UriScheme_t722425697_marshaled_com { Il2CppChar* ___scheme_0; Il2CppChar* ___delimiter_1; int32_t ___defaultPort_2; }; #endif // URISCHEME_T722425697_H #ifndef INTERNALENUMERATOR_1_T370852074_H #define INTERNALENUMERATOR_1_T370852074_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.ContactPoint> struct InternalEnumerator_1_t370852074 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t370852074, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t370852074, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T370852074_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 INTERNALENUMERATOR_1_T3507565409_H #define INTERNALENUMERATOR_1_T3507565409_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Color32> struct InternalEnumerator_1_t3507565409 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3507565409, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3507565409, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3507565409_H #ifndef DEFAULTCOMPARER_T1574916797_H #define DEFAULTCOMPARER_T1574916797_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector3> struct DefaultComparer_t1574916797 : public Comparer_1_t927101050 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1574916797_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 INTERNALENUMERATOR_1_T3462750441_H #define INTERNALENUMERATOR_1_T3462750441_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Color> struct InternalEnumerator_1_t3462750441 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3462750441, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3462750441, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3462750441_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 DEFAULTCOMPARER_T8832856_H #define DEFAULTCOMPARER_T8832856_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector2> struct DefaultComparer_t8832856 : public Comparer_1_t3655984405 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T8832856_H #ifndef INTERNALENUMERATOR_1_T1629489814_H #define INTERNALENUMERATOR_1_T1629489814_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Uri/UriScheme> struct InternalEnumerator_1_t1629489814 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1629489814, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1629489814, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1629489814_H #ifndef INTERNALENUMERATOR_1_T4267370966_H #define INTERNALENUMERATOR_1_T4267370966_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult> struct InternalEnumerator_1_t4267370966 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4267370966, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4267370966, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4267370966_H #ifndef INTERNALENUMERATOR_1_T3267543976_H #define INTERNALENUMERATOR_1_T3267543976_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Rect> struct InternalEnumerator_1_t3267543976 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3267543976, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3267543976, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3267543976_H #ifndef INTERNALENUMERATOR_1_T982565223_H #define INTERNALENUMERATOR_1_T982565223_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UICharInfo> struct InternalEnumerator_1_t982565223 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t982565223, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t982565223, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T982565223_H #ifndef INTERNALENUMERATOR_1_T4136673857_H #define INTERNALENUMERATOR_1_T4136673857_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo> struct InternalEnumerator_1_t4136673857 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4136673857, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4136673857, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4136673857_H #ifndef DEFAULTCOMPARER_T3028729878_H #define DEFAULTCOMPARER_T3028729878_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.TimeSpan> struct DefaultComparer_t3028729878 : public Comparer_1_t2380914131 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T3028729878_H #ifndef DEFAULTCOMPARER_T3733548460_H #define DEFAULTCOMPARER_T3733548460_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.BeforeRenderHelper/OrderBlock> struct DefaultComparer_t3733548460 : public Comparer_1_t3085732713 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T3733548460_H #ifndef DEFAULTCOMPARER_T575753490_H #define DEFAULTCOMPARER_T575753490_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument> struct DefaultComparer_t575753490 : public Comparer_1_t4222905039 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T575753490_H #ifndef DEFAULTCOMPARER_T2435436339_H #define DEFAULTCOMPARER_T2435436339_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument> struct DefaultComparer_t2435436339 : public Comparer_1_t1787620592 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T2435436339_H #ifndef DEFAULTCOMPARER_T932709497_H #define DEFAULTCOMPARER_T932709497_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.Object> struct DefaultComparer_t932709497 : public Comparer_1_t284893750 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T932709497_H #ifndef DEFAULTCOMPARER_T453104625_H #define DEFAULTCOMPARER_T453104625_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Color32> struct DefaultComparer_t453104625 : public Comparer_1_t4100256174 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T453104625_H #ifndef DEFAULTCOMPARER_T803549086_H #define DEFAULTCOMPARER_T803549086_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.Int32> struct DefaultComparer_t803549086 : public Comparer_1_t155733339 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T803549086_H #ifndef GUID_T_H #define GUID_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_0; // System.Int16 System.Guid::_b int16_t ____b_1; // System.Int16 System.Guid::_c int16_t ____c_2; // System.Byte System.Guid::_d uint8_t ____d_3; // System.Byte System.Guid::_e uint8_t ____e_4; // System.Byte System.Guid::_f uint8_t ____f_5; // System.Byte System.Guid::_g uint8_t ____g_6; // System.Byte System.Guid::_h uint8_t ____h_7; // System.Byte System.Guid::_i uint8_t ____i_8; // System.Byte System.Guid::_j uint8_t ____j_9; // System.Byte System.Guid::_k uint8_t ____k_10; public: inline static int32_t get_offset_of__a_0() { return static_cast<int32_t>(offsetof(Guid_t, ____a_0)); } inline int32_t get__a_0() const { return ____a_0; } inline int32_t* get_address_of__a_0() { return &____a_0; } inline void set__a_0(int32_t value) { ____a_0 = value; } inline static int32_t get_offset_of__b_1() { return static_cast<int32_t>(offsetof(Guid_t, ____b_1)); } inline int16_t get__b_1() const { return ____b_1; } inline int16_t* get_address_of__b_1() { return &____b_1; } inline void set__b_1(int16_t value) { ____b_1 = value; } inline static int32_t get_offset_of__c_2() { return static_cast<int32_t>(offsetof(Guid_t, ____c_2)); } inline int16_t get__c_2() const { return ____c_2; } inline int16_t* get_address_of__c_2() { return &____c_2; } inline void set__c_2(int16_t value) { ____c_2 = value; } inline static int32_t get_offset_of__d_3() { return static_cast<int32_t>(offsetof(Guid_t, ____d_3)); } inline uint8_t get__d_3() const { return ____d_3; } inline uint8_t* get_address_of__d_3() { return &____d_3; } inline void set__d_3(uint8_t value) { ____d_3 = value; } inline static int32_t get_offset_of__e_4() { return static_cast<int32_t>(offsetof(Guid_t, ____e_4)); } inline uint8_t get__e_4() const { return ____e_4; } inline uint8_t* get_address_of__e_4() { return &____e_4; } inline void set__e_4(uint8_t value) { ____e_4 = value; } inline static int32_t get_offset_of__f_5() { return static_cast<int32_t>(offsetof(Guid_t, ____f_5)); } inline uint8_t get__f_5() const { return ____f_5; } inline uint8_t* get_address_of__f_5() { return &____f_5; } inline void set__f_5(uint8_t value) { ____f_5 = value; } inline static int32_t get_offset_of__g_6() { return static_cast<int32_t>(offsetof(Guid_t, ____g_6)); } inline uint8_t get__g_6() const { return ____g_6; } inline uint8_t* get_address_of__g_6() { return &____g_6; } inline void set__g_6(uint8_t value) { ____g_6 = value; } inline static int32_t get_offset_of__h_7() { return static_cast<int32_t>(offsetof(Guid_t, ____h_7)); } inline uint8_t get__h_7() const { return ____h_7; } inline uint8_t* get_address_of__h_7() { return &____h_7; } inline void set__h_7(uint8_t value) { ____h_7 = value; } inline static int32_t get_offset_of__i_8() { return static_cast<int32_t>(offsetof(Guid_t, ____i_8)); } inline uint8_t get__i_8() const { return ____i_8; } inline uint8_t* get_address_of__i_8() { return &____i_8; } inline void set__i_8(uint8_t value) { ____i_8 = value; } inline static int32_t get_offset_of__j_9() { return static_cast<int32_t>(offsetof(Guid_t, ____j_9)); } inline uint8_t get__j_9() const { return ____j_9; } inline uint8_t* get_address_of__j_9() { return &____j_9; } inline void set__j_9(uint8_t value) { ____j_9 = value; } inline static int32_t get_offset_of__k_10() { return static_cast<int32_t>(offsetof(Guid_t, ____k_10)); } inline uint8_t get__k_10() const { return ____k_10; } inline uint8_t* get_address_of__k_10() { return &____k_10; } inline void set__k_10(uint8_t value) { ____k_10 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_11; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t386037858 * ____rng_13; public: inline static int32_t get_offset_of_Empty_11() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_11)); } inline Guid_t get_Empty_11() const { return ___Empty_11; } inline Guid_t * get_address_of_Empty_11() { return &___Empty_11; } inline void set_Empty_11(Guid_t value) { ___Empty_11 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((&____rngAccess_12), value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t386037858 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t386037858 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t386037858 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((&____rng_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GUID_T_H #ifndef DEFAULTCOMPARER_T1046136220_H #define DEFAULTCOMPARER_T1046136220_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.Guid> struct DefaultComparer_t1046136220 : public Comparer_1_t398320473 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1046136220_H #ifndef DEFAULTCOMPARER_T1212910182_H #define DEFAULTCOMPARER_T1212910182_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.EventSystems.RaycastResult> struct DefaultComparer_t1212910182 : public Comparer_1_t565094435 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1212910182_H #ifndef DEFAULTCOMPARER_T1081890840_H #define DEFAULTCOMPARER_T1081890840_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTimeOffset> struct DefaultComparer_t1081890840 : public Comparer_1_t434075093 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1081890840_H #ifndef DEFAULTCOMPARER_T1591133118_H #define DEFAULTCOMPARER_T1591133118_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTime> struct DefaultComparer_t1591133118 : public Comparer_1_t943317371 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1591133118_H #ifndef DEFAULTCOMPARER_T132580836_H #define DEFAULTCOMPARER_T132580836_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<Global/FruitType> struct DefaultComparer_t132580836 : public Comparer_1_t3779732385 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T132580836_H #ifndef RECT_T2360479859_H #define RECT_T2360479859_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Rect struct Rect_t2360479859 { public: // System.Single UnityEngine.Rect::m_XMin float ___m_XMin_0; // System.Single UnityEngine.Rect::m_YMin float ___m_YMin_1; // System.Single UnityEngine.Rect::m_Width float ___m_Width_2; // System.Single UnityEngine.Rect::m_Height float ___m_Height_3; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_XMin_0)); } inline float get_m_XMin_0() const { return ___m_XMin_0; } inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(float value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_YMin_1)); } inline float get_m_YMin_1() const { return ___m_YMin_1; } inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(float value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_Width_2)); } inline float get_m_Width_2() const { return ___m_Width_2; } inline float* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(float value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_Height_3)); } inline float get_m_Height_3() const { return ___m_Height_3; } inline float* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(float value) { ___m_Height_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RECT_T2360479859_H #ifndef DEFAULTCOMPARER_T2223071735_H #define DEFAULTCOMPARER_T2223071735_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UICharInfo> struct DefaultComparer_t2223071735 : public Comparer_1_t1575255988 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T2223071735_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 INTERNALENUMERATOR_1_T4226093054_H #define INTERNALENUMERATOR_1_T4226093054_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Vector4> struct InternalEnumerator_1_t4226093054 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4226093054, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4226093054, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4226093054_H #ifndef VECTOR3_T3722313464_H #define VECTOR3_T3722313464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector3 struct Vector3_t3722313464 { public: // System.Single UnityEngine.Vector3::x float ___x_1; // System.Single UnityEngine.Vector3::y float ___y_2; // System.Single UnityEngine.Vector3::z float ___z_3; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } }; struct Vector3_t3722313464_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t3722313464 ___zeroVector_4; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t3722313464 ___oneVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t3722313464 ___upVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t3722313464 ___downVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t3722313464 ___leftVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t3722313464 ___rightVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t3722313464 ___forwardVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t3722313464 ___backVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t3722313464 ___positiveInfinityVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t3722313464 ___negativeInfinityVector_13; public: inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_4)); } inline Vector3_t3722313464 get_zeroVector_4() const { return ___zeroVector_4; } inline Vector3_t3722313464 * get_address_of_zeroVector_4() { return &___zeroVector_4; } inline void set_zeroVector_4(Vector3_t3722313464 value) { ___zeroVector_4 = value; } inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_5)); } inline Vector3_t3722313464 get_oneVector_5() const { return ___oneVector_5; } inline Vector3_t3722313464 * get_address_of_oneVector_5() { return &___oneVector_5; } inline void set_oneVector_5(Vector3_t3722313464 value) { ___oneVector_5 = value; } inline static int32_t get_offset_of_upVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_6)); } inline Vector3_t3722313464 get_upVector_6() const { return ___upVector_6; } inline Vector3_t3722313464 * get_address_of_upVector_6() { return &___upVector_6; } inline void set_upVector_6(Vector3_t3722313464 value) { ___upVector_6 = value; } inline static int32_t get_offset_of_downVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_7)); } inline Vector3_t3722313464 get_downVector_7() const { return ___downVector_7; } inline Vector3_t3722313464 * get_address_of_downVector_7() { return &___downVector_7; } inline void set_downVector_7(Vector3_t3722313464 value) { ___downVector_7 = value; } inline static int32_t get_offset_of_leftVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_8)); } inline Vector3_t3722313464 get_leftVector_8() const { return ___leftVector_8; } inline Vector3_t3722313464 * get_address_of_leftVector_8() { return &___leftVector_8; } inline void set_leftVector_8(Vector3_t3722313464 value) { ___leftVector_8 = value; } inline static int32_t get_offset_of_rightVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_9)); } inline Vector3_t3722313464 get_rightVector_9() const { return ___rightVector_9; } inline Vector3_t3722313464 * get_address_of_rightVector_9() { return &___rightVector_9; } inline void set_rightVector_9(Vector3_t3722313464 value) { ___rightVector_9 = value; } inline static int32_t get_offset_of_forwardVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_10)); } inline Vector3_t3722313464 get_forwardVector_10() const { return ___forwardVector_10; } inline Vector3_t3722313464 * get_address_of_forwardVector_10() { return &___forwardVector_10; } inline void set_forwardVector_10(Vector3_t3722313464 value) { ___forwardVector_10 = value; } inline static int32_t get_offset_of_backVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_11)); } inline Vector3_t3722313464 get_backVector_11() const { return ___backVector_11; } inline Vector3_t3722313464 * get_address_of_backVector_11() { return &___backVector_11; } inline void set_backVector_11(Vector3_t3722313464 value) { ___backVector_11 = value; } inline static int32_t get_offset_of_positiveInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_12)); } inline Vector3_t3722313464 get_positiveInfinityVector_12() const { return ___positiveInfinityVector_12; } inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_12() { return &___positiveInfinityVector_12; } inline void set_positiveInfinityVector_12(Vector3_t3722313464 value) { ___positiveInfinityVector_12 = value; } inline static int32_t get_offset_of_negativeInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_13)); } inline Vector3_t3722313464 get_negativeInfinityVector_13() const { return ___negativeInfinityVector_13; } inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_13() { return &___negativeInfinityVector_13; } inline void set_negativeInfinityVector_13(Vector3_t3722313464 value) { ___negativeInfinityVector_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR3_T3722313464_H #ifndef INTERNALENUMERATOR_1_T334410285_H #define INTERNALENUMERATOR_1_T334410285_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Vector3> struct InternalEnumerator_1_t334410285 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t334410285, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t334410285, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T334410285_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 INTERNALENUMERATOR_1_T3063293640_H #define INTERNALENUMERATOR_1_T3063293640_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Vector2> struct InternalEnumerator_1_t3063293640 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3063293640, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3063293640, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3063293640_H #ifndef WORKREQUEST_T1354518612_H #define WORKREQUEST_T1354518612_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t1354518612 { public: // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback SendOrPostCallback_t2750080073 * ___m_DelagateCallback_0; // System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState RuntimeObject * ___m_DelagateState_1; // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle ManualResetEvent_t451242010 * ___m_WaitHandle_2; public: inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateCallback_0)); } inline SendOrPostCallback_t2750080073 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; } inline SendOrPostCallback_t2750080073 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; } inline void set_m_DelagateCallback_0(SendOrPostCallback_t2750080073 * value) { ___m_DelagateCallback_0 = value; Il2CppCodeGenWriteBarrier((&___m_DelagateCallback_0), value); } inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateState_1)); } inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; } inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; } inline void set_m_DelagateState_1(RuntimeObject * value) { ___m_DelagateState_1 = value; Il2CppCodeGenWriteBarrier((&___m_DelagateState_1), value); } inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_WaitHandle_2)); } inline ManualResetEvent_t451242010 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; } inline ManualResetEvent_t451242010 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; } inline void set_m_WaitHandle_2(ManualResetEvent_t451242010 * value) { ___m_WaitHandle_2 = value; Il2CppCodeGenWriteBarrier((&___m_WaitHandle_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t1354518612_marshaled_pinvoke { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_t451242010 * ___m_WaitHandle_2; }; // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t1354518612_marshaled_com { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_t451242010 * ___m_WaitHandle_2; }; #endif // WORKREQUEST_T1354518612_H #ifndef INTERNALENUMERATOR_1_T2261582729_H #define INTERNALENUMERATOR_1_T2261582729_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest> struct InternalEnumerator_1_t2261582729 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2261582729, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2261582729, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2261582729_H #ifndef INTERNALENUMERATOR_1_T669594426_H #define INTERNALENUMERATOR_1_T669594426_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UIVertex> struct InternalEnumerator_1_t669594426 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t669594426, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t669594426, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T669594426_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 INTERNALENUMERATOR_1_T807363631_H #define INTERNALENUMERATOR_1_T807363631_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UILineInfo> struct InternalEnumerator_1_t807363631 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t807363631, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t807363631, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T807363631_H #ifndef INTERNALENUMERATOR_1_T2694367513_H #define INTERNALENUMERATOR_1_T2694367513_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType> struct InternalEnumerator_1_t2694367513 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2694367513, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2694367513, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2694367513_H #ifndef HITINFO_T3229609740_H #define HITINFO_T3229609740_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3229609740 { public: // UnityEngine.GameObject UnityEngine.SendMouseEvents/HitInfo::target GameObject_t1113636619 * ___target_0; // UnityEngine.Camera UnityEngine.SendMouseEvents/HitInfo::camera Camera_t4157153871 * ___camera_1; public: inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t3229609740, ___target_0)); } inline GameObject_t1113636619 * get_target_0() const { return ___target_0; } inline GameObject_t1113636619 ** get_address_of_target_0() { return &___target_0; } inline void set_target_0(GameObject_t1113636619 * value) { ___target_0 = value; Il2CppCodeGenWriteBarrier((&___target_0), value); } inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t3229609740, ___camera_1)); } inline Camera_t4157153871 * get_camera_1() const { return ___camera_1; } inline Camera_t4157153871 ** get_address_of_camera_1() { return &___camera_1; } inline void set_camera_1(Camera_t4157153871 * value) { ___camera_1 = value; Il2CppCodeGenWriteBarrier((&___camera_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3229609740_marshaled_pinvoke { GameObject_t1113636619 * ___target_0; Camera_t4157153871 * ___camera_1; }; // Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3229609740_marshaled_com { GameObject_t1113636619 * ___target_0; Camera_t4157153871 * ___camera_1; }; #endif // HITINFO_T3229609740_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_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(UInt16_t2177724958, ___m_value_2)); } inline uint16_t get_m_value_2() const { return ___m_value_2; } inline uint16_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(uint16_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16_T2177724958_H #ifndef INTERNALENUMERATOR_1_T3084789075_H #define INTERNALENUMERATOR_1_T3084789075_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.UInt16> struct InternalEnumerator_1_t3084789075 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3084789075, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3084789075, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3084789075_H #ifndef INTERNALENUMERATOR_1_T2304330891_H #define INTERNALENUMERATOR_1_T2304330891_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Single> struct InternalEnumerator_1_t2304330891 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2304330891, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2304330891, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2304330891_H #ifndef INTERNALENUMERATOR_1_T1788223366_H #define INTERNALENUMERATOR_1_T1788223366_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.TimeSpan> struct InternalEnumerator_1_t1788223366 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1788223366, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1788223366, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1788223366_H #ifndef LINK_T3209266973_H #define LINK_T3209266973_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.HashSet`1/Link<System.Object> struct Link_t3209266973 { public: // System.Int32 System.Collections.Generic.HashSet`1/Link::HashCode int32_t ___HashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Link::Next int32_t ___Next_1; public: inline static int32_t get_offset_of_HashCode_0() { return static_cast<int32_t>(offsetof(Link_t3209266973, ___HashCode_0)); } inline int32_t get_HashCode_0() const { return ___HashCode_0; } inline int32_t* get_address_of_HashCode_0() { return &___HashCode_0; } inline void set_HashCode_0(int32_t value) { ___HashCode_0 = value; } inline static int32_t get_offset_of_Next_1() { return static_cast<int32_t>(offsetof(Link_t3209266973, ___Next_1)); } inline int32_t get_Next_1() const { return ___Next_1; } inline int32_t* get_address_of_Next_1() { return &___Next_1; } inline void set_Next_1(int32_t value) { ___Next_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINK_T3209266973_H #ifndef INTERNALENUMERATOR_1_T978588483_H #define INTERNALENUMERATOR_1_T978588483_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct InternalEnumerator_1_t978588483 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t978588483, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t978588483, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T978588483_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 INTERNALENUMERATOR_1_T454463237_H #define INTERNALENUMERATOR_1_T454463237_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct InternalEnumerator_1_t454463237 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t454463237, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t454463237, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T454463237_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 INTERNALENUMERATOR_1_T3308121025_H #define INTERNALENUMERATOR_1_T3308121025_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct InternalEnumerator_1_t3308121025 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3308121025, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3308121025, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3308121025_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 INTERNALENUMERATOR_1_T3437281436_H #define INTERNALENUMERATOR_1_T3437281436_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct InternalEnumerator_1_t3437281436 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3437281436, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3437281436, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3437281436_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 INTERNALENUMERATOR_1_T1451382081_H #define INTERNALENUMERATOR_1_T1451382081_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Link> struct InternalEnumerator_1_t1451382081 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1451382081, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1451382081, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1451382081_H #ifndef LINK_T544317964_H #define LINK_T544317964_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Link struct Link_t544317964 { public: // System.Int32 System.Collections.Generic.Link::HashCode int32_t ___HashCode_0; // System.Int32 System.Collections.Generic.Link::Next int32_t ___Next_1; public: inline static int32_t get_offset_of_HashCode_0() { return static_cast<int32_t>(offsetof(Link_t544317964, ___HashCode_0)); } inline int32_t get_HashCode_0() const { return ___HashCode_0; } inline int32_t* get_address_of_HashCode_0() { return &___HashCode_0; } inline void set_HashCode_0(int32_t value) { ___HashCode_0 = value; } inline static int32_t get_offset_of_Next_1() { return static_cast<int32_t>(offsetof(Link_t544317964, ___Next_1)); } inline int32_t get_Next_1() const { return ___Next_1; } inline int32_t* get_address_of_Next_1() { return &___Next_1; } inline void set_Next_1(int32_t value) { ___Next_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINK_T544317964_H #ifndef INTERNALENUMERATOR_1_T587985571_H #define INTERNALENUMERATOR_1_T587985571_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot> struct InternalEnumerator_1_t587985571 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t587985571, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t587985571, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T587985571_H #ifndef SLOT_T3975888750_H #define SLOT_T3975888750_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Hashtable/Slot struct Slot_t3975888750 { public: // System.Object System.Collections.Hashtable/Slot::key RuntimeObject * ___key_0; // System.Object System.Collections.Hashtable/Slot::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Slot_t3975888750, ___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(Slot_t3975888750, ___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.Hashtable/Slot struct Slot_t3975888750_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Collections.Hashtable/Slot struct Slot_t3975888750_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; #endif // SLOT_T3975888750_H #ifndef TIMESPAN_T881159249_H #define TIMESPAN_T881159249_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_t881159249 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_t881159249_StaticFields { public: // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t881159249 ___MaxValue_0; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t881159249 ___MinValue_1; // System.TimeSpan System.TimeSpan::Zero TimeSpan_t881159249 ___Zero_2; public: inline static int32_t get_offset_of_MaxValue_0() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_0)); } inline TimeSpan_t881159249 get_MaxValue_0() const { return ___MaxValue_0; } inline TimeSpan_t881159249 * get_address_of_MaxValue_0() { return &___MaxValue_0; } inline void set_MaxValue_0(TimeSpan_t881159249 value) { ___MaxValue_0 = value; } inline static int32_t get_offset_of_MinValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_1)); } inline TimeSpan_t881159249 get_MinValue_1() const { return ___MinValue_1; } inline TimeSpan_t881159249 * get_address_of_MinValue_1() { return &___MinValue_1; } inline void set_MinValue_1(TimeSpan_t881159249 value) { ___MinValue_1 = value; } inline static int32_t get_offset_of_Zero_2() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_2)); } inline TimeSpan_t881159249 get_Zero_2() const { return ___Zero_2; } inline TimeSpan_t881159249 * get_address_of_Zero_2() { return &___Zero_2; } inline void set_Zero_2(TimeSpan_t881159249 value) { ___Zero_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_T881159249_H #ifndef SLOT_T384495010_H #define SLOT_T384495010_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.SortedList/Slot struct Slot_t384495010 { public: // System.Object System.Collections.SortedList/Slot::key RuntimeObject * ___key_0; // System.Object System.Collections.SortedList/Slot::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Slot_t384495010, ___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(Slot_t384495010, ___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.SortedList/Slot struct Slot_t384495010_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Collections.SortedList/Slot struct Slot_t384495010_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; #endif // SLOT_T384495010_H #ifndef INTERNALENUMERATOR_1_T4116331090_H #define INTERNALENUMERATOR_1_T4116331090_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>> struct InternalEnumerator_1_t4116331090 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4116331090, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4116331090, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4116331090_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 INTERNALENUMERATOR_1_T4031039755_H #define INTERNALENUMERATOR_1_T4031039755_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry> struct InternalEnumerator_1_t4031039755 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4031039755, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4031039755, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4031039755_H #ifndef CHAR_T3634460470_H #define CHAR_T3634460470_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_t3634460470 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_2)); } inline Il2CppChar get_m_value_2() const { return ___m_value_2; } inline Il2CppChar* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(Il2CppChar value) { ___m_value_2 = value; } }; struct Char_t3634460470_StaticFields { public: // System.Byte* System.Char::category_data uint8_t* ___category_data_3; // System.Byte* System.Char::numeric_data uint8_t* ___numeric_data_4; // System.Double* System.Char::numeric_data_values double* ___numeric_data_values_5; // System.UInt16* System.Char::to_lower_data_low uint16_t* ___to_lower_data_low_6; // System.UInt16* System.Char::to_lower_data_high uint16_t* ___to_lower_data_high_7; // System.UInt16* System.Char::to_upper_data_low uint16_t* ___to_upper_data_low_8; // System.UInt16* System.Char::to_upper_data_high uint16_t* ___to_upper_data_high_9; public: inline static int32_t get_offset_of_category_data_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___category_data_3)); } inline uint8_t* get_category_data_3() const { return ___category_data_3; } inline uint8_t** get_address_of_category_data_3() { return &___category_data_3; } inline void set_category_data_3(uint8_t* value) { ___category_data_3 = value; } inline static int32_t get_offset_of_numeric_data_4() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_4)); } inline uint8_t* get_numeric_data_4() const { return ___numeric_data_4; } inline uint8_t** get_address_of_numeric_data_4() { return &___numeric_data_4; } inline void set_numeric_data_4(uint8_t* value) { ___numeric_data_4 = value; } inline static int32_t get_offset_of_numeric_data_values_5() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_values_5)); } inline double* get_numeric_data_values_5() const { return ___numeric_data_values_5; } inline double** get_address_of_numeric_data_values_5() { return &___numeric_data_values_5; } inline void set_numeric_data_values_5(double* value) { ___numeric_data_values_5 = value; } inline static int32_t get_offset_of_to_lower_data_low_6() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_low_6)); } inline uint16_t* get_to_lower_data_low_6() const { return ___to_lower_data_low_6; } inline uint16_t** get_address_of_to_lower_data_low_6() { return &___to_lower_data_low_6; } inline void set_to_lower_data_low_6(uint16_t* value) { ___to_lower_data_low_6 = value; } inline static int32_t get_offset_of_to_lower_data_high_7() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_high_7)); } inline uint16_t* get_to_lower_data_high_7() const { return ___to_lower_data_high_7; } inline uint16_t** get_address_of_to_lower_data_high_7() { return &___to_lower_data_high_7; } inline void set_to_lower_data_high_7(uint16_t* value) { ___to_lower_data_high_7 = value; } inline static int32_t get_offset_of_to_upper_data_low_8() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_low_8)); } inline uint16_t* get_to_upper_data_low_8() const { return ___to_upper_data_low_8; } inline uint16_t** get_address_of_to_upper_data_low_8() { return &___to_upper_data_low_8; } inline void set_to_upper_data_low_8(uint16_t* value) { ___to_upper_data_low_8 = value; } inline static int32_t get_offset_of_to_upper_data_high_9() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_high_9)); } inline uint16_t* get_to_upper_data_high_9() const { return ___to_upper_data_high_9; } inline uint16_t** get_address_of_to_upper_data_high_9() { return &___to_upper_data_high_9; } inline void set_to_upper_data_high_9(uint16_t* value) { ___to_upper_data_high_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_T3634460470_H #ifndef 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 VOID_T1185182177_H #define VOID_T1185182177_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t1185182177 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T1185182177_H #ifndef BOOLEAN_T97287965_H #define BOOLEAN_T97287965_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_t97287965 { public: // System.Boolean System.Boolean::m_value bool ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); } inline bool get_m_value_2() const { return ___m_value_2; } inline bool* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(bool value) { ___m_value_2 = value; } }; struct Boolean_t97287965_StaticFields { public: // System.String System.Boolean::FalseString String_t* ___FalseString_0; // System.String System.Boolean::TrueString String_t* ___TrueString_1; public: inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); } inline String_t* get_FalseString_0() const { return ___FalseString_0; } inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; } inline void set_FalseString_0(String_t* value) { ___FalseString_0 = value; Il2CppCodeGenWriteBarrier((&___FalseString_0), value); } inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); } inline String_t* get_TrueString_1() const { return ___TrueString_1; } inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; } inline void set_TrueString_1(String_t* value) { ___TrueString_1 = value; Il2CppCodeGenWriteBarrier((&___TrueString_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_T97287965_H #ifndef INT32_T2950945753_H #define INT32_T2950945753_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t2950945753 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); } inline int32_t get_m_value_2() const { return ___m_value_2; } inline int32_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(int32_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T2950945753_H #ifndef 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 ENUM_T4135868527_H #define ENUM_T4135868527_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t4135868527 : public ValueType_t3640485471 { public: public: }; struct Enum_t4135868527_StaticFields { public: // System.Char[] System.Enum::split_char CharU5BU5D_t3528271667* ___split_char_0; public: inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); } inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; } inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; } inline void set_split_char_0(CharU5BU5D_t3528271667* value) { ___split_char_0 = value; Il2CppCodeGenWriteBarrier((&___split_char_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t4135868527_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t4135868527_marshaled_com { }; #endif // ENUM_T4135868527_H #ifndef CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H #define CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t2723150157 { public: // System.Type System.Reflection.CustomAttributeTypedArgument::argumentType Type_t * ___argumentType_0; // System.Object System.Reflection.CustomAttributeTypedArgument::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___argumentType_0)); } inline Type_t * get_argumentType_0() const { return ___argumentType_0; } inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; } inline void set_argumentType_0(Type_t * value) { ___argumentType_0 = value; Il2CppCodeGenWriteBarrier((&___argumentType_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___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.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t2723150157_marshaled_com { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; #endif // CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H #ifndef INTERNALENUMERATOR_1_T350626606_H #define INTERNALENUMERATOR_1_T350626606_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.DateTime> struct InternalEnumerator_1_t350626606 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t350626606, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t350626606, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T350626606_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 INTERNALENUMERATOR_1_T4239932009_H #define INTERNALENUMERATOR_1_T4239932009_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange> struct InternalEnumerator_1_t4239932009 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4239932009, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4239932009, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4239932009_H #ifndef TABLERANGE_T3332867892_H #define TABLERANGE_T3332867892_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Globalization.Unicode.CodePointIndexer/TableRange struct TableRange_t3332867892 { public: // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Start int32_t ___Start_0; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::End int32_t ___End_1; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Count int32_t ___Count_2; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexStart int32_t ___IndexStart_3; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexEnd int32_t ___IndexEnd_4; public: inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___Start_0)); } inline int32_t get_Start_0() const { return ___Start_0; } inline int32_t* get_address_of_Start_0() { return &___Start_0; } inline void set_Start_0(int32_t value) { ___Start_0 = value; } inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___End_1)); } inline int32_t get_End_1() const { return ___End_1; } inline int32_t* get_address_of_End_1() { return &___End_1; } inline void set_End_1(int32_t value) { ___End_1 = value; } inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___Count_2)); } inline int32_t get_Count_2() const { return ___Count_2; } inline int32_t* get_address_of_Count_2() { return &___Count_2; } inline void set_Count_2(int32_t value) { ___Count_2 = value; } inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___IndexStart_3)); } inline int32_t get_IndexStart_3() const { return ___IndexStart_3; } inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; } inline void set_IndexStart_3(int32_t value) { ___IndexStart_3 = value; } inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___IndexEnd_4)); } inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; } inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; } inline void set_IndexEnd_4(int32_t value) { ___IndexEnd_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TABLERANGE_T3332867892_H #ifndef INTERNALENUMERATOR_1_T1911769025_H #define INTERNALENUMERATOR_1_T1911769025_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType> struct InternalEnumerator_1_t1911769025 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1911769025, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1911769025, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1911769025_H #ifndef INTERNALENUMERATOR_1_T1004352082_H #define INTERNALENUMERATOR_1_T1004352082_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Boolean> struct InternalEnumerator_1_t1004352082 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1004352082, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1004352082, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1004352082_H #ifndef INTERNALENUMERATOR_1_T2041360493_H #define INTERNALENUMERATOR_1_T2041360493_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Byte> struct InternalEnumerator_1_t2041360493 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2041360493, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2041360493, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2041360493_H #ifndef BYTE_T1134296376_H #define BYTE_T1134296376_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_t1134296376 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_2)); } inline uint8_t get_m_value_2() const { return ___m_value_2; } inline uint8_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(uint8_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_T1134296376_H #ifndef INTERNALENUMERATOR_1_T246557291_H #define INTERNALENUMERATOR_1_T246557291_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Char> struct InternalEnumerator_1_t246557291 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t246557291, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t246557291, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T246557291_H #ifndef INTERNALENUMERATOR_1_T3187041620_H #define INTERNALENUMERATOR_1_T3187041620_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Global/FruitType> struct InternalEnumerator_1_t3187041620 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3187041620, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3187041620, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3187041620_H #ifndef INTERNALENUMERATOR_1_T3855323497_H #define INTERNALENUMERATOR_1_T3855323497_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Decimal> struct InternalEnumerator_1_t3855323497 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3855323497, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3855323497, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3855323497_H #ifndef INTERNALENUMERATOR_1_T1291559127_H #define INTERNALENUMERATOR_1_T1291559127_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot> struct InternalEnumerator_1_t1291559127 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1291559127, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1291559127, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1291559127_H #ifndef INTERNALENUMERATOR_1_T715526830_H #define INTERNALENUMERATOR_1_T715526830_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource> struct InternalEnumerator_1_t715526830 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t715526830, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t715526830, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T715526830_H #ifndef ILTOKENINFO_T2325775114_H #define ILTOKENINFO_T2325775114_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILTokenInfo struct ILTokenInfo_t2325775114 { public: // System.Reflection.MemberInfo System.Reflection.Emit.ILTokenInfo::member MemberInfo_t * ___member_0; // System.Int32 System.Reflection.Emit.ILTokenInfo::code_pos int32_t ___code_pos_1; public: inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___member_0)); } inline MemberInfo_t * get_member_0() const { return ___member_0; } inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; } inline void set_member_0(MemberInfo_t * value) { ___member_0 = value; Il2CppCodeGenWriteBarrier((&___member_0), value); } inline static int32_t get_offset_of_code_pos_1() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___code_pos_1)); } inline int32_t get_code_pos_1() const { return ___code_pos_1; } inline int32_t* get_address_of_code_pos_1() { return &___code_pos_1; } inline void set_code_pos_1(int32_t value) { ___code_pos_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.ILTokenInfo struct ILTokenInfo_t2325775114_marshaled_pinvoke { MemberInfo_t * ___member_0; int32_t ___code_pos_1; }; // Native definition for COM marshalling of System.Reflection.Emit.ILTokenInfo struct ILTokenInfo_t2325775114_marshaled_com { MemberInfo_t * ___member_0; int32_t ___code_pos_1; }; #endif // ILTOKENINFO_T2325775114_H #ifndef INTERNALENUMERATOR_1_T1391455104_H #define INTERNALENUMERATOR_1_T1391455104_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet> struct InternalEnumerator_1_t1391455104 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1391455104, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1391455104, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1391455104_H #ifndef INTERNALENUMERATOR_1_T2368758583_H #define INTERNALENUMERATOR_1_T2368758583_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier> struct InternalEnumerator_1_t2368758583 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2368758583, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2368758583, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2368758583_H #ifndef PARAMETERMODIFIER_T1461694466_H #define PARAMETERMODIFIER_T1461694466_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterModifier struct ParameterModifier_t1461694466 { public: // System.Boolean[] System.Reflection.ParameterModifier::_byref BooleanU5BU5D_t2897418192* ____byref_0; public: inline static int32_t get_offset_of__byref_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t1461694466, ____byref_0)); } inline BooleanU5BU5D_t2897418192* get__byref_0() const { return ____byref_0; } inline BooleanU5BU5D_t2897418192** get_address_of__byref_0() { return &____byref_0; } inline void set__byref_0(BooleanU5BU5D_t2897418192* value) { ____byref_0 = value; Il2CppCodeGenWriteBarrier((&____byref_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t1461694466_marshaled_pinvoke { int32_t* ____byref_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t1461694466_marshaled_com { int32_t* ____byref_0; }; #endif // PARAMETERMODIFIER_T1461694466_H #ifndef INTERNALENUMERATOR_1_T958356908_H #define INTERNALENUMERATOR_1_T958356908_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem> struct InternalEnumerator_1_t958356908 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t958356908, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t958356908, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T958356908_H #ifndef RESOURCECACHEITEM_T51292791_H #define RESOURCECACHEITEM_T51292791_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Resources.ResourceReader/ResourceCacheItem struct ResourceCacheItem_t51292791 { public: // System.String System.Resources.ResourceReader/ResourceCacheItem::ResourceName String_t* ___ResourceName_0; // System.Object System.Resources.ResourceReader/ResourceCacheItem::ResourceValue RuntimeObject * ___ResourceValue_1; public: inline static int32_t get_offset_of_ResourceName_0() { return static_cast<int32_t>(offsetof(ResourceCacheItem_t51292791, ___ResourceName_0)); } inline String_t* get_ResourceName_0() const { return ___ResourceName_0; } inline String_t** get_address_of_ResourceName_0() { return &___ResourceName_0; } inline void set_ResourceName_0(String_t* value) { ___ResourceName_0 = value; Il2CppCodeGenWriteBarrier((&___ResourceName_0), value); } inline static int32_t get_offset_of_ResourceValue_1() { return static_cast<int32_t>(offsetof(ResourceCacheItem_t51292791, ___ResourceValue_1)); } inline RuntimeObject * get_ResourceValue_1() const { return ___ResourceValue_1; } inline RuntimeObject ** get_address_of_ResourceValue_1() { return &___ResourceValue_1; } inline void set_ResourceValue_1(RuntimeObject * value) { ___ResourceValue_1 = value; Il2CppCodeGenWriteBarrier((&___ResourceValue_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Resources.ResourceReader/ResourceCacheItem struct ResourceCacheItem_t51292791_marshaled_pinvoke { char* ___ResourceName_0; Il2CppIUnknown* ___ResourceValue_1; }; // Native definition for COM marshalling of System.Resources.ResourceReader/ResourceCacheItem struct ResourceCacheItem_t51292791_marshaled_com { Il2CppChar* ___ResourceName_0; Il2CppIUnknown* ___ResourceValue_1; }; #endif // RESOURCECACHEITEM_T51292791_H #ifndef INTERNALENUMERATOR_1_T3780029419_H #define INTERNALENUMERATOR_1_T3780029419_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo> struct InternalEnumerator_1_t3780029419 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3780029419, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3780029419, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3780029419_H #ifndef RESOURCEINFO_T2872965302_H #define RESOURCEINFO_T2872965302_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Resources.ResourceReader/ResourceInfo struct ResourceInfo_t2872965302 { public: // System.Int64 System.Resources.ResourceReader/ResourceInfo::ValuePosition int64_t ___ValuePosition_0; // System.String System.Resources.ResourceReader/ResourceInfo::ResourceName String_t* ___ResourceName_1; // System.Int32 System.Resources.ResourceReader/ResourceInfo::TypeIndex int32_t ___TypeIndex_2; public: inline static int32_t get_offset_of_ValuePosition_0() { return static_cast<int32_t>(offsetof(ResourceInfo_t2872965302, ___ValuePosition_0)); } inline int64_t get_ValuePosition_0() const { return ___ValuePosition_0; } inline int64_t* get_address_of_ValuePosition_0() { return &___ValuePosition_0; } inline void set_ValuePosition_0(int64_t value) { ___ValuePosition_0 = value; } inline static int32_t get_offset_of_ResourceName_1() { return static_cast<int32_t>(offsetof(ResourceInfo_t2872965302, ___ResourceName_1)); } inline String_t* get_ResourceName_1() const { return ___ResourceName_1; } inline String_t** get_address_of_ResourceName_1() { return &___ResourceName_1; } inline void set_ResourceName_1(String_t* value) { ___ResourceName_1 = value; Il2CppCodeGenWriteBarrier((&___ResourceName_1), value); } inline static int32_t get_offset_of_TypeIndex_2() { return static_cast<int32_t>(offsetof(ResourceInfo_t2872965302, ___TypeIndex_2)); } inline int32_t get_TypeIndex_2() const { return ___TypeIndex_2; } inline int32_t* get_address_of_TypeIndex_2() { return &___TypeIndex_2; } inline void set_TypeIndex_2(int32_t value) { ___TypeIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Resources.ResourceReader/ResourceInfo struct ResourceInfo_t2872965302_marshaled_pinvoke { int64_t ___ValuePosition_0; char* ___ResourceName_1; int32_t ___TypeIndex_2; }; // Native definition for COM marshalling of System.Resources.ResourceReader/ResourceInfo struct ResourceInfo_t2872965302_marshaled_com { int64_t ___ValuePosition_0; Il2CppChar* ___ResourceName_1; int32_t ___TypeIndex_2; }; #endif // RESOURCEINFO_T2872965302_H #ifndef INTERNALENUMERATOR_1_T153918522_H #define INTERNALENUMERATOR_1_T153918522_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag> struct InternalEnumerator_1_t153918522 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t153918522, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t153918522, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T153918522_H #ifndef INTERNALENUMERATOR_1_T2576641779_H #define INTERNALENUMERATOR_1_T2576641779_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.SByte> struct InternalEnumerator_1_t2576641779 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2576641779, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2576641779, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2576641779_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 INTERNALENUMERATOR_1_T1040666831_H #define INTERNALENUMERATOR_1_T1040666831_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus> struct InternalEnumerator_1_t1040666831 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1040666831, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1040666831, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1040666831_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_7; public: inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); } inline float get_m_value_7() const { return ___m_value_7; } inline float* get_address_of_m_value_7() { return &___m_value_7; } inline void set_m_value_7(float value) { ___m_value_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_T1397266774_H #ifndef INTERNALENUMERATOR_1_T83702344_H #define INTERNALENUMERATOR_1_T83702344_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark> struct InternalEnumerator_1_t83702344 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t83702344, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t83702344, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T83702344_H #ifndef MARK_T3471605523_H #define MARK_T3471605523_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.Mark struct Mark_t3471605523 { public: // System.Int32 System.Text.RegularExpressions.Mark::Start int32_t ___Start_0; // System.Int32 System.Text.RegularExpressions.Mark::End int32_t ___End_1; // System.Int32 System.Text.RegularExpressions.Mark::Previous int32_t ___Previous_2; public: inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(Mark_t3471605523, ___Start_0)); } inline int32_t get_Start_0() const { return ___Start_0; } inline int32_t* get_address_of_Start_0() { return &___Start_0; } inline void set_Start_0(int32_t value) { ___Start_0 = value; } inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(Mark_t3471605523, ___End_1)); } inline int32_t get_End_1() const { return ___End_1; } inline int32_t* get_address_of_End_1() { return &___End_1; } inline void set_End_1(int32_t value) { ___End_1 = value; } inline static int32_t get_offset_of_Previous_2() { return static_cast<int32_t>(offsetof(Mark_t3471605523, ___Previous_2)); } inline int32_t get_Previous_2() const { return ___Previous_2; } inline int32_t* get_address_of_Previous_2() { return &___Previous_2; } inline void set_Previous_2(int32_t value) { ___Previous_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MARK_T3471605523_H #ifndef INTERNALENUMERATOR_1_T3232839231_H #define INTERNALENUMERATOR_1_T3232839231_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo> struct InternalEnumerator_1_t3232839231 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3232839231, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3232839231, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3232839231_H #ifndef LABELFIXUP_T858502054_H #define LABELFIXUP_T858502054_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILGenerator/LabelFixup struct LabelFixup_t858502054 { public: // System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::offset int32_t ___offset_0; // System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::pos int32_t ___pos_1; // System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::label_idx int32_t ___label_idx_2; public: inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___offset_0)); } inline int32_t get_offset_0() const { return ___offset_0; } inline int32_t* get_address_of_offset_0() { return &___offset_0; } inline void set_offset_0(int32_t value) { ___offset_0 = value; } inline static int32_t get_offset_of_pos_1() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___pos_1)); } inline int32_t get_pos_1() const { return ___pos_1; } inline int32_t* get_address_of_pos_1() { return &___pos_1; } inline void set_pos_1(int32_t value) { ___pos_1 = value; } inline static int32_t get_offset_of_label_idx_2() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___label_idx_2)); } inline int32_t get_label_idx_2() const { return ___label_idx_2; } inline int32_t* get_address_of_label_idx_2() { return &___label_idx_2; } inline void set_label_idx_2(int32_t value) { ___label_idx_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LABELFIXUP_T858502054_H #ifndef DEFAULTCOMPARER_T1171632270_H #define DEFAULTCOMPARER_T1171632270_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector4> struct DefaultComparer_t1171632270 : public Comparer_1_t523816523 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DEFAULTCOMPARER_T1171632270_H #ifndef LABELDATA_T360167391_H #define LABELDATA_T360167391_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILGenerator/LabelData struct LabelData_t360167391 { public: // System.Int32 System.Reflection.Emit.ILGenerator/LabelData::addr int32_t ___addr_0; // System.Int32 System.Reflection.Emit.ILGenerator/LabelData::maxStack int32_t ___maxStack_1; public: inline static int32_t get_offset_of_addr_0() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___addr_0)); } inline int32_t get_addr_0() const { return ___addr_0; } inline int32_t* get_address_of_addr_0() { return &___addr_0; } inline void set_addr_0(int32_t value) { ___addr_0 = value; } inline static int32_t get_offset_of_maxStack_1() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___maxStack_1)); } inline int32_t get_maxStack_1() const { return ___maxStack_1; } inline int32_t* get_address_of_maxStack_1() { return &___maxStack_1; } inline void set_maxStack_1(int32_t value) { ___maxStack_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LABELDATA_T360167391_H #ifndef INTERNALENUMERATOR_1_T1765566171_H #define INTERNALENUMERATOR_1_T1765566171_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup> struct InternalEnumerator_1_t1765566171 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1765566171, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1765566171, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1765566171_H #ifndef INTERNALENUMERATOR_1_T3858009870_H #define INTERNALENUMERATOR_1_T3858009870_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Int32> struct InternalEnumerator_1_t3858009870 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3858009870, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3858009870, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3858009870_H #ifndef INTERNALENUMERATOR_1_T348664125_H #define INTERNALENUMERATOR_1_T348664125_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Int64> struct InternalEnumerator_1_t348664125 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t348664125, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t348664125, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T348664125_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 INTERNALENUMERATOR_1_T1747214298_H #define INTERNALENUMERATOR_1_T1747214298_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.IntPtr> struct InternalEnumerator_1_t1747214298 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1747214298, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1747214298, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1747214298_H #ifndef INTERNALENUMERATOR_1_T3459884504_H #define INTERNALENUMERATOR_1_T3459884504_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Int16> struct InternalEnumerator_1_t3459884504 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3459884504, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3459884504, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3459884504_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_13; public: inline static int32_t get_offset_of_m_value_13() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_13)); } inline double get_m_value_13() const { return ___m_value_13; } inline double* get_address_of_m_value_13() { return &___m_value_13; } inline void set_m_value_13(double value) { ___m_value_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T594665363_H #ifndef INTERNALENUMERATOR_1_T1194929827_H #define INTERNALENUMERATOR_1_T1194929827_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct InternalEnumerator_1_t1194929827 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1194929827, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1194929827, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1194929827_H #ifndef INTERNALENUMERATOR_1_T3630214274_H #define INTERNALENUMERATOR_1_T3630214274_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct InternalEnumerator_1_t3630214274 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3630214274, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3630214274, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3630214274_H #ifndef INTERNALENUMERATOR_1_T1501729480_H #define INTERNALENUMERATOR_1_T1501729480_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Double> struct InternalEnumerator_1_t1501729480 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1501729480, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1501729480, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1501729480_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.UInt32 System.Decimal::flags uint32_t ___flags_5; // System.UInt32 System.Decimal::hi uint32_t ___hi_6; // System.UInt32 System.Decimal::lo uint32_t ___lo_7; // System.UInt32 System.Decimal::mid uint32_t ___mid_8; public: inline static int32_t get_offset_of_flags_5() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_5)); } inline uint32_t get_flags_5() const { return ___flags_5; } inline uint32_t* get_address_of_flags_5() { return &___flags_5; } inline void set_flags_5(uint32_t value) { ___flags_5 = value; } inline static int32_t get_offset_of_hi_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_6)); } inline uint32_t get_hi_6() const { return ___hi_6; } inline uint32_t* get_address_of_hi_6() { return &___hi_6; } inline void set_hi_6(uint32_t value) { ___hi_6 = value; } inline static int32_t get_offset_of_lo_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_7)); } inline uint32_t get_lo_7() const { return ___lo_7; } inline uint32_t* get_address_of_lo_7() { return &___lo_7; } inline void set_lo_7(uint32_t value) { ___lo_7 = value; } inline static int32_t get_offset_of_mid_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_8)); } inline uint32_t get_mid_8() const { return ___mid_8; } inline uint32_t* get_address_of_mid_8() { return &___mid_8; } inline void set_mid_8(uint32_t value) { ___mid_8 = value; } }; struct Decimal_t2948259380_StaticFields { public: // System.Decimal System.Decimal::MinValue Decimal_t2948259380 ___MinValue_0; // System.Decimal System.Decimal::MaxValue Decimal_t2948259380 ___MaxValue_1; // System.Decimal System.Decimal::MinusOne Decimal_t2948259380 ___MinusOne_2; // System.Decimal System.Decimal::One Decimal_t2948259380 ___One_3; // System.Decimal System.Decimal::MaxValueDiv10 Decimal_t2948259380 ___MaxValueDiv10_4; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_0)); } inline Decimal_t2948259380 get_MinValue_0() const { return ___MinValue_0; } inline Decimal_t2948259380 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(Decimal_t2948259380 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_1)); } inline Decimal_t2948259380 get_MaxValue_1() const { return ___MaxValue_1; } inline Decimal_t2948259380 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(Decimal_t2948259380 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinusOne_2() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_2)); } inline Decimal_t2948259380 get_MinusOne_2() const { return ___MinusOne_2; } inline Decimal_t2948259380 * get_address_of_MinusOne_2() { return &___MinusOne_2; } inline void set_MinusOne_2(Decimal_t2948259380 value) { ___MinusOne_2 = value; } inline static int32_t get_offset_of_One_3() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_3)); } inline Decimal_t2948259380 get_One_3() const { return ___One_3; } inline Decimal_t2948259380 * get_address_of_One_3() { return &___One_3; } inline void set_One_3(Decimal_t2948259380 value) { ___One_3 = value; } inline static int32_t get_offset_of_MaxValueDiv10_4() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValueDiv10_4)); } inline Decimal_t2948259380 get_MaxValueDiv10_4() const { return ___MaxValueDiv10_4; } inline Decimal_t2948259380 * get_address_of_MaxValueDiv10_4() { return &___MaxValueDiv10_4; } inline void set_MaxValueDiv10_4(Decimal_t2948259380 value) { ___MaxValueDiv10_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T2948259380_H #ifndef INTERNALENUMERATOR_1_T1267231508_H #define INTERNALENUMERATOR_1_T1267231508_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData> struct InternalEnumerator_1_t1267231508 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1267231508, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1267231508, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1267231508_H #ifndef INTERNALENUMERATOR_1_T3987170281_H #define INTERNALENUMERATOR_1_T3987170281_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Object> struct InternalEnumerator_1_t3987170281 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3987170281, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3987170281, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3987170281_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 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___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___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 // BINDINGFLAGS_T2721792723_H #ifndef OBJECT_T631007953_H #define OBJECT_T631007953_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Object struct Object_t631007953 : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_t631007953_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_t631007953_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_t631007953_marshaled_com { intptr_t ___m_CachedPtr_0; }; #endif // OBJECT_T631007953_H #ifndef DATASTREAMTYPE_T4132467813_H #define DATASTREAMTYPE_T4132467813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Playables.DataStreamType struct DataStreamType_t4132467813 { public: // System.Int32 UnityEngine.Playables.DataStreamType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DataStreamType_t4132467813, ___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 // DATASTREAMTYPE_T4132467813_H #ifndef ENUMERATOR_T3398877024_H #define ENUMERATOR_T3398877024_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean> struct Enumerator_t3398877024 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t1444694249 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::next int32_t ___next_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::stamp int32_t ___stamp_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t3842366416 ___current_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3398877024, ___dictionary_0)); } inline Dictionary_2_t1444694249 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1444694249 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1444694249 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t3398877024, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_stamp_2() { return static_cast<int32_t>(offsetof(Enumerator_t3398877024, ___stamp_2)); } inline int32_t get_stamp_2() const { return ___stamp_2; } inline int32_t* get_address_of_stamp_2() { return &___stamp_2; } inline void set_stamp_2(int32_t value) { ___stamp_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3398877024, ___current_3)); } inline KeyValuePair_2_t3842366416 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t3842366416 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t3842366416 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3398877024_H #ifndef SECURITYACTION_T569814076_H #define SECURITYACTION_T569814076_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Permissions.SecurityAction struct SecurityAction_t569814076 { public: // System.Int32 System.Security.Permissions.SecurityAction::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SecurityAction_t569814076, ___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 // SECURITYACTION_T569814076_H #ifndef RESOURCEATTRIBUTES_T3997964906_H #define RESOURCEATTRIBUTES_T3997964906_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ResourceAttributes struct ResourceAttributes_t3997964906 { public: // System.Int32 System.Reflection.ResourceAttributes::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ResourceAttributes_t3997964906, ___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 // RESOURCEATTRIBUTES_T3997964906_H #ifndef DATETIMEKIND_T3468814247_H #define DATETIMEKIND_T3468814247_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeKind struct DateTimeKind_t3468814247 { public: // System.Int32 System.DateTimeKind::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DateTimeKind_t3468814247, ___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 // DATETIMEKIND_T3468814247_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 ENUMERATOR_T3923002270_H #define ENUMERATOR_T3923002270_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object> struct Enumerator_t3923002270 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t1968819495 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::next int32_t ___next_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::stamp int32_t ___stamp_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t71524366 ___current_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3923002270, ___dictionary_0)); } inline Dictionary_2_t1968819495 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1968819495 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1968819495 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t3923002270, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_stamp_2() { return static_cast<int32_t>(offsetof(Enumerator_t3923002270, ___stamp_2)); } inline int32_t get_stamp_2() const { return ___stamp_2; } inline int32_t* get_address_of_stamp_2() { return &___stamp_2; } inline void set_stamp_2(int32_t value) { ___stamp_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3923002270, ___current_3)); } inline KeyValuePair_2_t71524366 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t71524366 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t71524366 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3923002270_H #ifndef ENUMERATOR_T1957567516_H #define ENUMERATOR_T1957567516_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32> struct Enumerator_t1957567516 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t3384741 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::next int32_t ___next_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::stamp int32_t ___stamp_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t2401056908 ___current_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1957567516, ___dictionary_0)); } inline Dictionary_2_t3384741 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3384741 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3384741 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t1957567516, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_stamp_2() { return static_cast<int32_t>(offsetof(Enumerator_t1957567516, ___stamp_2)); } inline int32_t get_stamp_2() const { return ___stamp_2; } inline int32_t* get_address_of_stamp_2() { return &___stamp_2; } inline void set_stamp_2(int32_t value) { ___stamp_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1957567516, ___current_3)); } inline KeyValuePair_2_t2401056908 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t2401056908 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t2401056908 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1957567516_H #ifndef ENUMERATOR_T2086727927_H #define ENUMERATOR_T2086727927_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object> struct Enumerator_t2086727927 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t132545152 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::next int32_t ___next_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::stamp int32_t ___stamp_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t2530217319 ___current_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t2086727927, ___dictionary_0)); } inline Dictionary_2_t132545152 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t132545152 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t132545152 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t2086727927, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_stamp_2() { return static_cast<int32_t>(offsetof(Enumerator_t2086727927, ___stamp_2)); } inline int32_t get_stamp_2() const { return ___stamp_2; } inline int32_t* get_address_of_stamp_2() { return &___stamp_2; } inline void set_stamp_2(int32_t value) { ___stamp_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2086727927, ___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_T2086727927_H #ifndef X509CHAINSTATUSFLAGS_T1026973125_H #define X509CHAINSTATUSFLAGS_T1026973125_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509ChainStatusFlags struct X509ChainStatusFlags_t1026973125 { public: // System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(X509ChainStatusFlags_t1026973125, ___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 // X509CHAINSTATUSFLAGS_T1026973125_H #ifndef KEYNOTFOUNDEXCEPTION_T2292407383_H #define KEYNOTFOUNDEXCEPTION_T2292407383_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_t2292407383 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYNOTFOUNDEXCEPTION_T2292407383_H #ifndef DELEGATE_T1188392813_H #define DELEGATE_T1188392813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t1188392813 : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_5; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_6; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_7; // System.DelegateData System.Delegate::data DelegateData_t1677132599 * ___data_8; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); } inline intptr_t get_method_code_5() const { return ___method_code_5; } inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; } inline void set_method_code_5(intptr_t value) { ___method_code_5 = value; } inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); } inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; } inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; } inline void set_method_info_6(MethodInfo_t * value) { ___method_info_6 = value; Il2CppCodeGenWriteBarrier((&___method_info_6), value); } inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); } inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; } inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; } inline void set_original_method_info_7(MethodInfo_t * value) { ___original_method_info_7 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_7), value); } inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); } inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; } inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; } inline void set_data_8(DelegateData_t1677132599 * value) { ___data_8 = value; Il2CppCodeGenWriteBarrier((&___data_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DELEGATE_T1188392813_H #ifndef 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::param_name String_t* ___param_name_12; public: inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___param_name_12)); } inline String_t* get_param_name_12() const { return ___param_name_12; } inline String_t** get_address_of_param_name_12() { return &___param_name_12; } inline void set_param_name_12(String_t* value) { ___param_name_12 = value; Il2CppCodeGenWriteBarrier((&___param_name_12), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_T132251570_H #ifndef CLIENTCERTIFICATETYPE_T1004704908_H #define CLIENTCERTIFICATETYPE_T1004704908_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Security.Protocol.Tls.Handshake.ClientCertificateType struct ClientCertificateType_t1004704908 { public: // System.Int32 Mono.Security.Protocol.Tls.Handshake.ClientCertificateType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ClientCertificateType_t1004704908, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CLIENTCERTIFICATETYPE_T1004704908_H #ifndef 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 FRUITTYPE_T2279977503_H #define FRUITTYPE_T2279977503_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Global/FruitType struct FruitType_t2279977503 { public: // System.Int32 Global/FruitType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(FruitType_t2279977503, ___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 // FRUITTYPE_T2279977503_H #ifndef U3CGETENUMERATORU3EC__ITERATOR0_T3750793324_H #define U3CGETENUMERATORU3EC__ITERATOR0_T3750793324_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument> struct U3CGetEnumeratorU3Ec__Iterator0_t3750793324 : public RuntimeObject { public: // System.Int32 System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::<i>__0 int32_t ___U3CiU3E__0_0; // System.Int32 System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::$PC int32_t ___U24PC_1; // T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::$current CustomAttributeTypedArgument_t2723150157 ___U24current_2; // System.Array/ArrayReadOnlyList`1<T> System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::<>f__this ArrayReadOnlyList_1_t3913667990 * ___U3CU3Ef__this_3; public: inline static int32_t get_offset_of_U3CiU3E__0_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t3750793324, ___U3CiU3E__0_0)); } inline int32_t get_U3CiU3E__0_0() const { return ___U3CiU3E__0_0; } inline int32_t* get_address_of_U3CiU3E__0_0() { return &___U3CiU3E__0_0; } inline void set_U3CiU3E__0_0(int32_t value) { ___U3CiU3E__0_0 = value; } inline static int32_t get_offset_of_U24PC_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t3750793324, ___U24PC_1)); } inline int32_t get_U24PC_1() const { return ___U24PC_1; } inline int32_t* get_address_of_U24PC_1() { return &___U24PC_1; } inline void set_U24PC_1(int32_t value) { ___U24PC_1 = value; } inline static int32_t get_offset_of_U24current_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t3750793324, ___U24current_2)); } inline CustomAttributeTypedArgument_t2723150157 get_U24current_2() const { return ___U24current_2; } inline CustomAttributeTypedArgument_t2723150157 * get_address_of_U24current_2() { return &___U24current_2; } inline void set_U24current_2(CustomAttributeTypedArgument_t2723150157 value) { ___U24current_2 = value; } inline static int32_t get_offset_of_U3CU3Ef__this_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t3750793324, ___U3CU3Ef__this_3)); } inline ArrayReadOnlyList_1_t3913667990 * get_U3CU3Ef__this_3() const { return ___U3CU3Ef__this_3; } inline ArrayReadOnlyList_1_t3913667990 ** get_address_of_U3CU3Ef__this_3() { return &___U3CU3Ef__this_3; } inline void set_U3CU3Ef__this_3(ArrayReadOnlyList_1_t3913667990 * value) { ___U3CU3Ef__this_3 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__this_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CGETENUMERATORU3EC__ITERATOR0_T3750793324_H #ifndef CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H #define CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t287865710 { public: // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument CustomAttributeTypedArgument_t2723150157 ___typedArgument_0; // System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo MemberInfo_t * ___memberInfo_1; public: inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___typedArgument_0)); } inline CustomAttributeTypedArgument_t2723150157 get_typedArgument_0() const { return ___typedArgument_0; } inline CustomAttributeTypedArgument_t2723150157 * get_address_of_typedArgument_0() { return &___typedArgument_0; } inline void set_typedArgument_0(CustomAttributeTypedArgument_t2723150157 value) { ___typedArgument_0 = value; } inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___memberInfo_1)); } inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; } inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; } inline void set_memberInfo_1(MemberInfo_t * value) { ___memberInfo_1 = value; Il2CppCodeGenWriteBarrier((&___memberInfo_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t287865710_marshaled_pinvoke { CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t287865710_marshaled_com { CustomAttributeTypedArgument_t2723150157_marshaled_com ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; #endif // CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_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 TYPETAG_T3541821701_H #define TYPETAG_T3541821701_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.Formatters.Binary.TypeTag struct TypeTag_t3541821701 { public: // System.Byte System.Runtime.Serialization.Formatters.Binary.TypeTag::value__ uint8_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(TypeTag_t3541821701, ___value___1)); } inline uint8_t get_value___1() const { return ___value___1; } inline uint8_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(uint8_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPETAG_T3541821701_H #ifndef PLAYERLOOPSYSTEM_T105772105_H #define PLAYERLOOPSYSTEM_T105772105_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t105772105 { public: // System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type Type_t * ___type_0; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList PlayerLoopSystemU5BU5D_t1150299252* ___subSystemList_1; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate UpdateFunction_t377278577 * ___updateDelegate_2; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction intptr_t ___updateFunction_3; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction intptr_t ___loopConditionFunction_4; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((&___type_0), value); } inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___subSystemList_1)); } inline PlayerLoopSystemU5BU5D_t1150299252* get_subSystemList_1() const { return ___subSystemList_1; } inline PlayerLoopSystemU5BU5D_t1150299252** get_address_of_subSystemList_1() { return &___subSystemList_1; } inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t1150299252* value) { ___subSystemList_1 = value; Il2CppCodeGenWriteBarrier((&___subSystemList_1), value); } inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___updateDelegate_2)); } inline UpdateFunction_t377278577 * get_updateDelegate_2() const { return ___updateDelegate_2; } inline UpdateFunction_t377278577 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; } inline void set_updateDelegate_2(UpdateFunction_t377278577 * value) { ___updateDelegate_2 = value; Il2CppCodeGenWriteBarrier((&___updateDelegate_2), value); } inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___updateFunction_3)); } inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; } inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; } inline void set_updateFunction_3(intptr_t value) { ___updateFunction_3 = value; } inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___loopConditionFunction_4)); } inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; } inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; } inline void set_loopConditionFunction_4(intptr_t value) { ___loopConditionFunction_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t105772105_marshaled_pinvoke { Type_t * ___type_0; PlayerLoopSystem_t105772105_marshaled_pinvoke* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; // Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t105772105_marshaled_com { Type_t * ___type_0; PlayerLoopSystem_t105772105_marshaled_com* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; #endif // PLAYERLOOPSYSTEM_T105772105_H #ifndef RAYCASTHIT_T1056001966_H #define RAYCASTHIT_T1056001966_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.RaycastHit struct RaycastHit_t1056001966 { public: // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point Vector3_t3722313464 ___m_Point_0; // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal Vector3_t3722313464 ___m_Normal_1; // System.Int32 UnityEngine.RaycastHit::m_FaceID int32_t ___m_FaceID_2; // System.Single UnityEngine.RaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV Vector2_t2156229523 ___m_UV_4; // System.Int32 UnityEngine.RaycastHit::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Point_0)); } inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t3722313464 value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Normal_1)); } inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t3722313464 value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_FaceID_2)); } inline int32_t get_m_FaceID_2() const { return ___m_FaceID_2; } inline int32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; } inline void set_m_FaceID_2(int32_t value) { ___m_FaceID_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_UV_4)); } inline Vector2_t2156229523 get_m_UV_4() const { return ___m_UV_4; } inline Vector2_t2156229523 * get_address_of_m_UV_4() { return &___m_UV_4; } inline void set_m_UV_4(Vector2_t2156229523 value) { ___m_UV_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RAYCASTHIT_T1056001966_H #ifndef RAYCASTHIT2D_T2279581989_H #define RAYCASTHIT2D_T2279581989_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.RaycastHit2D struct RaycastHit2D_t2279581989 { public: // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid Vector2_t2156229523 ___m_Centroid_0; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point Vector2_t2156229523 ___m_Point_1; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal Vector2_t2156229523 ___m_Normal_2; // System.Single UnityEngine.RaycastHit2D::m_Distance float ___m_Distance_3; // System.Single UnityEngine.RaycastHit2D::m_Fraction float ___m_Fraction_4; // System.Int32 UnityEngine.RaycastHit2D::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Centroid_0)); } inline Vector2_t2156229523 get_m_Centroid_0() const { return ___m_Centroid_0; } inline Vector2_t2156229523 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; } inline void set_m_Centroid_0(Vector2_t2156229523 value) { ___m_Centroid_0 = value; } inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Point_1)); } inline Vector2_t2156229523 get_m_Point_1() const { return ___m_Point_1; } inline Vector2_t2156229523 * get_address_of_m_Point_1() { return &___m_Point_1; } inline void set_m_Point_1(Vector2_t2156229523 value) { ___m_Point_1 = value; } inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Normal_2)); } inline Vector2_t2156229523 get_m_Normal_2() const { return ___m_Normal_2; } inline Vector2_t2156229523 * get_address_of_m_Normal_2() { return &___m_Normal_2; } inline void set_m_Normal_2(Vector2_t2156229523 value) { ___m_Normal_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Fraction_4)); } inline float get_m_Fraction_4() const { return ___m_Fraction_4; } inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; } inline void set_m_Fraction_4(float value) { ___m_Fraction_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RAYCASTHIT2D_T2279581989_H #ifndef CONTENTTYPE_T1787303396_H #define CONTENTTYPE_T1787303396_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.InputField/ContentType struct ContentType_t1787303396 { public: // System.Int32 UnityEngine.UI.InputField/ContentType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ContentType_t1787303396, ___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 // CONTENTTYPE_T1787303396_H #ifndef CONTACTPOINT_T3758755253_H #define CONTACTPOINT_T3758755253_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.ContactPoint struct ContactPoint_t3758755253 { public: // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point Vector3_t3722313464 ___m_Point_0; // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal Vector3_t3722313464 ___m_Normal_1; // System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID int32_t ___m_ThisColliderInstanceID_2; // System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID int32_t ___m_OtherColliderInstanceID_3; // System.Single UnityEngine.ContactPoint::m_Separation float ___m_Separation_4; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Point_0)); } inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t3722313464 value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Normal_1)); } inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t3722313464 value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_ThisColliderInstanceID_2)); } inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; } inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; } inline void set_m_ThisColliderInstanceID_2(int32_t value) { ___m_ThisColliderInstanceID_2 = value; } inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_OtherColliderInstanceID_3)); } inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; } inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; } inline void set_m_OtherColliderInstanceID_3(int32_t value) { ___m_OtherColliderInstanceID_3 = value; } inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Separation_4)); } inline float get_m_Separation_4() const { return ___m_Separation_4; } inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; } inline void set_m_Separation_4(float value) { ___m_Separation_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTACTPOINT_T3758755253_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 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 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___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StreamingContextStates_t3580100459, ___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 // STREAMINGCONTEXTSTATES_T3580100459_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 X509CHAINSTATUS_T133602714_H #define X509CHAINSTATUS_T133602714_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t133602714 { public: // System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainStatus::status int32_t ___status_0; // System.String System.Security.Cryptography.X509Certificates.X509ChainStatus::info String_t* ___info_1; public: inline static int32_t get_offset_of_status_0() { return static_cast<int32_t>(offsetof(X509ChainStatus_t133602714, ___status_0)); } inline int32_t get_status_0() const { return ___status_0; } inline int32_t* get_address_of_status_0() { return &___status_0; } inline void set_status_0(int32_t value) { ___status_0 = value; } inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(X509ChainStatus_t133602714, ___info_1)); } inline String_t* get_info_1() const { return ___info_1; } inline String_t** get_address_of_info_1() { return &___info_1; } inline void set_info_1(String_t* value) { ___info_1 = value; Il2CppCodeGenWriteBarrier((&___info_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t133602714_marshaled_pinvoke { int32_t ___status_0; char* ___info_1; }; // Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t133602714_marshaled_com { int32_t ___status_0; Il2CppChar* ___info_1; }; #endif // X509CHAINSTATUS_T133602714_H #ifndef REFEMITPERMISSIONSET_T484390987_H #define REFEMITPERMISSIONSET_T484390987_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.RefEmitPermissionSet struct RefEmitPermissionSet_t484390987 { public: // System.Security.Permissions.SecurityAction System.Reflection.Emit.RefEmitPermissionSet::action int32_t ___action_0; // System.String System.Reflection.Emit.RefEmitPermissionSet::pset String_t* ___pset_1; public: inline static int32_t get_offset_of_action_0() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___action_0)); } inline int32_t get_action_0() const { return ___action_0; } inline int32_t* get_address_of_action_0() { return &___action_0; } inline void set_action_0(int32_t value) { ___action_0 = value; } inline static int32_t get_offset_of_pset_1() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___pset_1)); } inline String_t* get_pset_1() const { return ___pset_1; } inline String_t** get_address_of_pset_1() { return &___pset_1; } inline void set_pset_1(String_t* value) { ___pset_1 = value; Il2CppCodeGenWriteBarrier((&___pset_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.RefEmitPermissionSet struct RefEmitPermissionSet_t484390987_marshaled_pinvoke { int32_t ___action_0; char* ___pset_1; }; // Native definition for COM marshalling of System.Reflection.Emit.RefEmitPermissionSet struct RefEmitPermissionSet_t484390987_marshaled_com { int32_t ___action_0; Il2CppChar* ___pset_1; }; #endif // REFEMITPERMISSIONSET_T484390987_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::actual_value RuntimeObject * ___actual_value_13; public: inline static int32_t get_offset_of_actual_value_13() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997, ___actual_value_13)); } inline RuntimeObject * get_actual_value_13() const { return ___actual_value_13; } inline RuntimeObject ** get_address_of_actual_value_13() { return &___actual_value_13; } inline void set_actual_value_13(RuntimeObject * value) { ___actual_value_13 = value; Il2CppCodeGenWriteBarrier((&___actual_value_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTOUTOFRANGEEXCEPTION_T777629997_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.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::state int32_t ___state_0; // System.Object System.Runtime.Serialization.StreamingContext::additional RuntimeObject * ___additional_1; public: inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___state_0)); } inline int32_t get_state_0() const { return ___state_0; } inline int32_t* get_address_of_state_0() { return &___state_0; } inline void set_state_0(int32_t value) { ___state_0 = value; } inline static int32_t get_offset_of_additional_1() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___additional_1)); } inline RuntimeObject * get_additional_1() const { return ___additional_1; } inline RuntimeObject ** get_address_of_additional_1() { return &___additional_1; } inline void set_additional_1(RuntimeObject * value) { ___additional_1 = value; Il2CppCodeGenWriteBarrier((&___additional_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 { int32_t ___state_0; Il2CppIUnknown* ___additional_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237_marshaled_com { int32_t ___state_0; Il2CppIUnknown* ___additional_1; }; #endif // STREAMINGCONTEXT_T3711869237_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.TimeSpan System.DateTime::ticks TimeSpan_t881159249 ___ticks_0; // System.DateTimeKind System.DateTime::kind int32_t ___kind_1; public: inline static int32_t get_offset_of_ticks_0() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___ticks_0)); } inline TimeSpan_t881159249 get_ticks_0() const { return ___ticks_0; } inline TimeSpan_t881159249 * get_address_of_ticks_0() { return &___ticks_0; } inline void set_ticks_0(TimeSpan_t881159249 value) { ___ticks_0 = value; } inline static int32_t get_offset_of_kind_1() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___kind_1)); } inline int32_t get_kind_1() const { return ___kind_1; } inline int32_t* get_address_of_kind_1() { return &___kind_1; } inline void set_kind_1(int32_t value) { ___kind_1 = value; } }; struct DateTime_t3738529785_StaticFields { public: // System.DateTime System.DateTime::MaxValue DateTime_t3738529785 ___MaxValue_2; // System.DateTime System.DateTime::MinValue DateTime_t3738529785 ___MinValue_3; // System.String[] System.DateTime::ParseTimeFormats StringU5BU5D_t1281789340* ___ParseTimeFormats_4; // System.String[] System.DateTime::ParseYearDayMonthFormats StringU5BU5D_t1281789340* ___ParseYearDayMonthFormats_5; // System.String[] System.DateTime::ParseYearMonthDayFormats StringU5BU5D_t1281789340* ___ParseYearMonthDayFormats_6; // System.String[] System.DateTime::ParseDayMonthYearFormats StringU5BU5D_t1281789340* ___ParseDayMonthYearFormats_7; // System.String[] System.DateTime::ParseMonthDayYearFormats StringU5BU5D_t1281789340* ___ParseMonthDayYearFormats_8; // System.String[] System.DateTime::MonthDayShortFormats StringU5BU5D_t1281789340* ___MonthDayShortFormats_9; // System.String[] System.DateTime::DayMonthShortFormats StringU5BU5D_t1281789340* ___DayMonthShortFormats_10; // System.Int32[] System.DateTime::daysmonth Int32U5BU5D_t385246372* ___daysmonth_11; // System.Int32[] System.DateTime::daysmonthleap Int32U5BU5D_t385246372* ___daysmonthleap_12; // System.Object System.DateTime::to_local_time_span_object RuntimeObject * ___to_local_time_span_object_13; // System.Int64 System.DateTime::last_now int64_t ___last_now_14; public: inline static int32_t get_offset_of_MaxValue_2() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_2)); } inline DateTime_t3738529785 get_MaxValue_2() const { return ___MaxValue_2; } inline DateTime_t3738529785 * get_address_of_MaxValue_2() { return &___MaxValue_2; } inline void set_MaxValue_2(DateTime_t3738529785 value) { ___MaxValue_2 = value; } inline static int32_t get_offset_of_MinValue_3() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_3)); } inline DateTime_t3738529785 get_MinValue_3() const { return ___MinValue_3; } inline DateTime_t3738529785 * get_address_of_MinValue_3() { return &___MinValue_3; } inline void set_MinValue_3(DateTime_t3738529785 value) { ___MinValue_3 = value; } inline static int32_t get_offset_of_ParseTimeFormats_4() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseTimeFormats_4)); } inline StringU5BU5D_t1281789340* get_ParseTimeFormats_4() const { return ___ParseTimeFormats_4; } inline StringU5BU5D_t1281789340** get_address_of_ParseTimeFormats_4() { return &___ParseTimeFormats_4; } inline void set_ParseTimeFormats_4(StringU5BU5D_t1281789340* value) { ___ParseTimeFormats_4 = value; Il2CppCodeGenWriteBarrier((&___ParseTimeFormats_4), value); } inline static int32_t get_offset_of_ParseYearDayMonthFormats_5() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseYearDayMonthFormats_5)); } inline StringU5BU5D_t1281789340* get_ParseYearDayMonthFormats_5() const { return ___ParseYearDayMonthFormats_5; } inline StringU5BU5D_t1281789340** get_address_of_ParseYearDayMonthFormats_5() { return &___ParseYearDayMonthFormats_5; } inline void set_ParseYearDayMonthFormats_5(StringU5BU5D_t1281789340* value) { ___ParseYearDayMonthFormats_5 = value; Il2CppCodeGenWriteBarrier((&___ParseYearDayMonthFormats_5), value); } inline static int32_t get_offset_of_ParseYearMonthDayFormats_6() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseYearMonthDayFormats_6)); } inline StringU5BU5D_t1281789340* get_ParseYearMonthDayFormats_6() const { return ___ParseYearMonthDayFormats_6; } inline StringU5BU5D_t1281789340** get_address_of_ParseYearMonthDayFormats_6() { return &___ParseYearMonthDayFormats_6; } inline void set_ParseYearMonthDayFormats_6(StringU5BU5D_t1281789340* value) { ___ParseYearMonthDayFormats_6 = value; Il2CppCodeGenWriteBarrier((&___ParseYearMonthDayFormats_6), value); } inline static int32_t get_offset_of_ParseDayMonthYearFormats_7() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseDayMonthYearFormats_7)); } inline StringU5BU5D_t1281789340* get_ParseDayMonthYearFormats_7() const { return ___ParseDayMonthYearFormats_7; } inline StringU5BU5D_t1281789340** get_address_of_ParseDayMonthYearFormats_7() { return &___ParseDayMonthYearFormats_7; } inline void set_ParseDayMonthYearFormats_7(StringU5BU5D_t1281789340* value) { ___ParseDayMonthYearFormats_7 = value; Il2CppCodeGenWriteBarrier((&___ParseDayMonthYearFormats_7), value); } inline static int32_t get_offset_of_ParseMonthDayYearFormats_8() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseMonthDayYearFormats_8)); } inline StringU5BU5D_t1281789340* get_ParseMonthDayYearFormats_8() const { return ___ParseMonthDayYearFormats_8; } inline StringU5BU5D_t1281789340** get_address_of_ParseMonthDayYearFormats_8() { return &___ParseMonthDayYearFormats_8; } inline void set_ParseMonthDayYearFormats_8(StringU5BU5D_t1281789340* value) { ___ParseMonthDayYearFormats_8 = value; Il2CppCodeGenWriteBarrier((&___ParseMonthDayYearFormats_8), value); } inline static int32_t get_offset_of_MonthDayShortFormats_9() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MonthDayShortFormats_9)); } inline StringU5BU5D_t1281789340* get_MonthDayShortFormats_9() const { return ___MonthDayShortFormats_9; } inline StringU5BU5D_t1281789340** get_address_of_MonthDayShortFormats_9() { return &___MonthDayShortFormats_9; } inline void set_MonthDayShortFormats_9(StringU5BU5D_t1281789340* value) { ___MonthDayShortFormats_9 = value; Il2CppCodeGenWriteBarrier((&___MonthDayShortFormats_9), value); } inline static int32_t get_offset_of_DayMonthShortFormats_10() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DayMonthShortFormats_10)); } inline StringU5BU5D_t1281789340* get_DayMonthShortFormats_10() const { return ___DayMonthShortFormats_10; } inline StringU5BU5D_t1281789340** get_address_of_DayMonthShortFormats_10() { return &___DayMonthShortFormats_10; } inline void set_DayMonthShortFormats_10(StringU5BU5D_t1281789340* value) { ___DayMonthShortFormats_10 = value; Il2CppCodeGenWriteBarrier((&___DayMonthShortFormats_10), value); } inline static int32_t get_offset_of_daysmonth_11() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___daysmonth_11)); } inline Int32U5BU5D_t385246372* get_daysmonth_11() const { return ___daysmonth_11; } inline Int32U5BU5D_t385246372** get_address_of_daysmonth_11() { return &___daysmonth_11; } inline void set_daysmonth_11(Int32U5BU5D_t385246372* value) { ___daysmonth_11 = value; Il2CppCodeGenWriteBarrier((&___daysmonth_11), value); } inline static int32_t get_offset_of_daysmonthleap_12() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___daysmonthleap_12)); } inline Int32U5BU5D_t385246372* get_daysmonthleap_12() const { return ___daysmonthleap_12; } inline Int32U5BU5D_t385246372** get_address_of_daysmonthleap_12() { return &___daysmonthleap_12; } inline void set_daysmonthleap_12(Int32U5BU5D_t385246372* value) { ___daysmonthleap_12 = value; Il2CppCodeGenWriteBarrier((&___daysmonthleap_12), value); } inline static int32_t get_offset_of_to_local_time_span_object_13() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___to_local_time_span_object_13)); } inline RuntimeObject * get_to_local_time_span_object_13() const { return ___to_local_time_span_object_13; } inline RuntimeObject ** get_address_of_to_local_time_span_object_13() { return &___to_local_time_span_object_13; } inline void set_to_local_time_span_object_13(RuntimeObject * value) { ___to_local_time_span_object_13 = value; Il2CppCodeGenWriteBarrier((&___to_local_time_span_object_13), value); } inline static int32_t get_offset_of_last_now_14() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___last_now_14)); } inline int64_t get_last_now_14() const { return ___last_now_14; } inline int64_t* get_address_of_last_now_14() { return &___last_now_14; } inline void set_last_now_14(int64_t value) { ___last_now_14 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T3738529785_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t1188392813 { public: // System.MulticastDelegate System.MulticastDelegate::prev MulticastDelegate_t * ___prev_9; // System.MulticastDelegate System.MulticastDelegate::kpm_next MulticastDelegate_t * ___kpm_next_10; public: inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); } inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; } inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; } inline void set_prev_9(MulticastDelegate_t * value) { ___prev_9 = value; Il2CppCodeGenWriteBarrier((&___prev_9), value); } inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); } inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; } inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; } inline void set_kpm_next_10(MulticastDelegate_t * value) { ___kpm_next_10 = value; Il2CppCodeGenWriteBarrier((&___kpm_next_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MULTICASTDELEGATE_T_H #ifndef ENUMERATOR_T701438809_H #define ENUMERATOR_T701438809_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object> struct Enumerator_t701438809 { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::host_enumerator Enumerator_t2086727927 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t701438809, ___host_enumerator_0)); } inline Enumerator_t2086727927 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t2086727927 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t2086727927 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T701438809_H #ifndef U3CGETENUMERATORU3EC__ITERATOR0_T1315508877_H #define U3CGETENUMERATORU3EC__ITERATOR0_T1315508877_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument> struct U3CGetEnumeratorU3Ec__Iterator0_t1315508877 : public RuntimeObject { public: // System.Int32 System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::<i>__0 int32_t ___U3CiU3E__0_0; // System.Int32 System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::$PC int32_t ___U24PC_1; // T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::$current CustomAttributeNamedArgument_t287865710 ___U24current_2; // System.Array/ArrayReadOnlyList`1<T> System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0::<>f__this ArrayReadOnlyList_1_t1478383543 * ___U3CU3Ef__this_3; public: inline static int32_t get_offset_of_U3CiU3E__0_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t1315508877, ___U3CiU3E__0_0)); } inline int32_t get_U3CiU3E__0_0() const { return ___U3CiU3E__0_0; } inline int32_t* get_address_of_U3CiU3E__0_0() { return &___U3CiU3E__0_0; } inline void set_U3CiU3E__0_0(int32_t value) { ___U3CiU3E__0_0 = value; } inline static int32_t get_offset_of_U24PC_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t1315508877, ___U24PC_1)); } inline int32_t get_U24PC_1() const { return ___U24PC_1; } inline int32_t* get_address_of_U24PC_1() { return &___U24PC_1; } inline void set_U24PC_1(int32_t value) { ___U24PC_1 = value; } inline static int32_t get_offset_of_U24current_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t1315508877, ___U24current_2)); } inline CustomAttributeNamedArgument_t287865710 get_U24current_2() const { return ___U24current_2; } inline CustomAttributeNamedArgument_t287865710 * get_address_of_U24current_2() { return &___U24current_2; } inline void set_U24current_2(CustomAttributeNamedArgument_t287865710 value) { ___U24current_2 = value; } inline static int32_t get_offset_of_U3CU3Ef__this_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ec__Iterator0_t1315508877, ___U3CU3Ef__this_3)); } inline ArrayReadOnlyList_1_t1478383543 * get_U3CU3Ef__this_3() const { return ___U3CU3Ef__this_3; } inline ArrayReadOnlyList_1_t1478383543 ** get_address_of_U3CU3Ef__this_3() { return &___U3CU3Ef__this_3; } inline void set_U3CU3Ef__this_3(ArrayReadOnlyList_1_t1478383543 * value) { ___U3CU3Ef__this_3 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__this_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CGETENUMERATORU3EC__ITERATOR0_T1315508877_H #ifndef MONORESOURCE_T4103430009_H #define MONORESOURCE_T4103430009_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.MonoResource struct MonoResource_t4103430009 { public: // System.Byte[] System.Reflection.Emit.MonoResource::data ByteU5BU5D_t4116647657* ___data_0; // System.String System.Reflection.Emit.MonoResource::name String_t* ___name_1; // System.String System.Reflection.Emit.MonoResource::filename String_t* ___filename_2; // System.Reflection.ResourceAttributes System.Reflection.Emit.MonoResource::attrs int32_t ___attrs_3; // System.Int32 System.Reflection.Emit.MonoResource::offset int32_t ___offset_4; // System.IO.Stream System.Reflection.Emit.MonoResource::stream Stream_t1273022909 * ___stream_5; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___data_0)); } inline ByteU5BU5D_t4116647657* get_data_0() const { return ___data_0; } inline ByteU5BU5D_t4116647657** get_address_of_data_0() { return &___data_0; } inline void set_data_0(ByteU5BU5D_t4116647657* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((&___data_0), value); } inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((&___name_1), value); } inline static int32_t get_offset_of_filename_2() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___filename_2)); } inline String_t* get_filename_2() const { return ___filename_2; } inline String_t** get_address_of_filename_2() { return &___filename_2; } inline void set_filename_2(String_t* value) { ___filename_2 = value; Il2CppCodeGenWriteBarrier((&___filename_2), value); } inline static int32_t get_offset_of_attrs_3() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___attrs_3)); } inline int32_t get_attrs_3() const { return ___attrs_3; } inline int32_t* get_address_of_attrs_3() { return &___attrs_3; } inline void set_attrs_3(int32_t value) { ___attrs_3 = value; } inline static int32_t get_offset_of_offset_4() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___offset_4)); } inline int32_t get_offset_4() const { return ___offset_4; } inline int32_t* get_address_of_offset_4() { return &___offset_4; } inline void set_offset_4(int32_t value) { ___offset_4 = value; } inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___stream_5)); } inline Stream_t1273022909 * get_stream_5() const { return ___stream_5; } inline Stream_t1273022909 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_t1273022909 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((&___stream_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoResource struct MonoResource_t4103430009_marshaled_pinvoke { uint8_t* ___data_0; char* ___name_1; char* ___filename_2; int32_t ___attrs_3; int32_t ___offset_4; Stream_t1273022909 * ___stream_5; }; // Native definition for COM marshalling of System.Reflection.Emit.MonoResource struct MonoResource_t4103430009_marshaled_com { uint8_t* ___data_0; Il2CppChar* ___name_1; Il2CppChar* ___filename_2; int32_t ___attrs_3; int32_t ___offset_4; Stream_t1273022909 * ___stream_5; }; #endif // MONORESOURCE_T4103430009_H #ifndef ENUMERATOR_T572278398_H #define ENUMERATOR_T572278398_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32> struct Enumerator_t572278398 { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::host_enumerator Enumerator_t1957567516 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t572278398, ___host_enumerator_0)); } inline Enumerator_t1957567516 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t1957567516 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t1957567516 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T572278398_H #ifndef ENUMERATOR_T2537713152_H #define ENUMERATOR_T2537713152_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object> struct Enumerator_t2537713152 { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::host_enumerator Enumerator_t3923002270 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t2537713152, ___host_enumerator_0)); } inline Enumerator_t3923002270 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t3923002270 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t3923002270 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2537713152_H #ifndef PLAYABLEBINDING_T354260709_H #define PLAYABLEBINDING_T354260709_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Playables.PlayableBinding struct PlayableBinding_t354260709 { public: // System.String UnityEngine.Playables.PlayableBinding::<streamName>k__BackingField String_t* ___U3CstreamNameU3Ek__BackingField_2; // UnityEngine.Playables.DataStreamType UnityEngine.Playables.PlayableBinding::<streamType>k__BackingField int32_t ___U3CstreamTypeU3Ek__BackingField_3; // UnityEngine.Object UnityEngine.Playables.PlayableBinding::<sourceObject>k__BackingField Object_t631007953 * ___U3CsourceObjectU3Ek__BackingField_4; // System.Type UnityEngine.Playables.PlayableBinding::<sourceBindingType>k__BackingField Type_t * ___U3CsourceBindingTypeU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CstreamNameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___U3CstreamNameU3Ek__BackingField_2)); } inline String_t* get_U3CstreamNameU3Ek__BackingField_2() const { return ___U3CstreamNameU3Ek__BackingField_2; } inline String_t** get_address_of_U3CstreamNameU3Ek__BackingField_2() { return &___U3CstreamNameU3Ek__BackingField_2; } inline void set_U3CstreamNameU3Ek__BackingField_2(String_t* value) { ___U3CstreamNameU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((&___U3CstreamNameU3Ek__BackingField_2), value); } inline static int32_t get_offset_of_U3CstreamTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___U3CstreamTypeU3Ek__BackingField_3)); } inline int32_t get_U3CstreamTypeU3Ek__BackingField_3() const { return ___U3CstreamTypeU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CstreamTypeU3Ek__BackingField_3() { return &___U3CstreamTypeU3Ek__BackingField_3; } inline void set_U3CstreamTypeU3Ek__BackingField_3(int32_t value) { ___U3CstreamTypeU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CsourceObjectU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___U3CsourceObjectU3Ek__BackingField_4)); } inline Object_t631007953 * get_U3CsourceObjectU3Ek__BackingField_4() const { return ___U3CsourceObjectU3Ek__BackingField_4; } inline Object_t631007953 ** get_address_of_U3CsourceObjectU3Ek__BackingField_4() { return &___U3CsourceObjectU3Ek__BackingField_4; } inline void set_U3CsourceObjectU3Ek__BackingField_4(Object_t631007953 * value) { ___U3CsourceObjectU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((&___U3CsourceObjectU3Ek__BackingField_4), value); } inline static int32_t get_offset_of_U3CsourceBindingTypeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___U3CsourceBindingTypeU3Ek__BackingField_5)); } inline Type_t * get_U3CsourceBindingTypeU3Ek__BackingField_5() const { return ___U3CsourceBindingTypeU3Ek__BackingField_5; } inline Type_t ** get_address_of_U3CsourceBindingTypeU3Ek__BackingField_5() { return &___U3CsourceBindingTypeU3Ek__BackingField_5; } inline void set_U3CsourceBindingTypeU3Ek__BackingField_5(Type_t * value) { ___U3CsourceBindingTypeU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((&___U3CsourceBindingTypeU3Ek__BackingField_5), value); } }; struct PlayableBinding_t354260709_StaticFields { public: // UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None PlayableBindingU5BU5D_t829358056* ___None_0; // System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration double ___DefaultDuration_1; public: inline static int32_t get_offset_of_None_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___None_0)); } inline PlayableBindingU5BU5D_t829358056* get_None_0() const { return ___None_0; } inline PlayableBindingU5BU5D_t829358056** get_address_of_None_0() { return &___None_0; } inline void set_None_0(PlayableBindingU5BU5D_t829358056* value) { ___None_0 = value; Il2CppCodeGenWriteBarrier((&___None_0), value); } inline static int32_t get_offset_of_DefaultDuration_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___DefaultDuration_1)); } inline double get_DefaultDuration_1() const { return ___DefaultDuration_1; } inline double* get_address_of_DefaultDuration_1() { return &___DefaultDuration_1; } inline void set_DefaultDuration_1(double value) { ___DefaultDuration_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t354260709_marshaled_pinvoke { char* ___U3CstreamNameU3Ek__BackingField_2; int32_t ___U3CstreamTypeU3Ek__BackingField_3; Object_t631007953_marshaled_pinvoke ___U3CsourceObjectU3Ek__BackingField_4; Type_t * ___U3CsourceBindingTypeU3Ek__BackingField_5; }; // Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t354260709_marshaled_com { Il2CppChar* ___U3CstreamNameU3Ek__BackingField_2; int32_t ___U3CstreamTypeU3Ek__BackingField_3; Object_t631007953_marshaled_com* ___U3CsourceObjectU3Ek__BackingField_4; Type_t * ___U3CsourceBindingTypeU3Ek__BackingField_5; }; #endif // PLAYABLEBINDING_T354260709_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_1; public: inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); } inline RuntimeTypeHandle_t3027515415 get__impl_1() const { return ____impl_1; } inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_1() { return &____impl_1; } inline void set__impl_1(RuntimeTypeHandle_t3027515415 value) { ____impl_1 = value; } }; struct Type_t_StaticFields { public: // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_2; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t3940880105* ___EmptyTypes_3; // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t426314064 * ___FilterAttribute_4; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t426314064 * ___FilterName_5; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t426314064 * ___FilterNameIgnoreCase_6; // System.Object System.Type::Missing RuntimeObject * ___Missing_7; public: inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); } inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; } inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; } inline void set_Delimiter_2(Il2CppChar value) { ___Delimiter_2 = value; } inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); } inline TypeU5BU5D_t3940880105* get_EmptyTypes_3() const { return ___EmptyTypes_3; } inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; } inline void set_EmptyTypes_3(TypeU5BU5D_t3940880105* value) { ___EmptyTypes_3 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value); } inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); } inline MemberFilter_t426314064 * get_FilterAttribute_4() const { return ___FilterAttribute_4; } inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; } inline void set_FilterAttribute_4(MemberFilter_t426314064 * value) { ___FilterAttribute_4 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value); } inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); } inline MemberFilter_t426314064 * get_FilterName_5() const { return ___FilterName_5; } inline MemberFilter_t426314064 ** get_address_of_FilterName_5() { return &___FilterName_5; } inline void set_FilterName_5(MemberFilter_t426314064 * value) { ___FilterName_5 = value; Il2CppCodeGenWriteBarrier((&___FilterName_5), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); } inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; } inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; } inline void set_FilterNameIgnoreCase_6(MemberFilter_t426314064 * value) { ___FilterNameIgnoreCase_6 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value); } inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); } inline RuntimeObject * get_Missing_7() const { return ___Missing_7; } inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; } inline void set_Missing_7(RuntimeObject * value) { ___Missing_7 = value; Il2CppCodeGenWriteBarrier((&___Missing_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef OBJECTDISPOSEDEXCEPTION_T21392786_H #define OBJECTDISPOSEDEXCEPTION_T21392786_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ObjectDisposedException struct ObjectDisposedException_t21392786 : public InvalidOperationException_t56020091 { public: // System.String System.ObjectDisposedException::obj_name String_t* ___obj_name_12; // System.String System.ObjectDisposedException::msg String_t* ___msg_13; public: inline static int32_t get_offset_of_obj_name_12() { return static_cast<int32_t>(offsetof(ObjectDisposedException_t21392786, ___obj_name_12)); } inline String_t* get_obj_name_12() const { return ___obj_name_12; } inline String_t** get_address_of_obj_name_12() { return &___obj_name_12; } inline void set_obj_name_12(String_t* value) { ___obj_name_12 = value; Il2CppCodeGenWriteBarrier((&___obj_name_12), value); } inline static int32_t get_offset_of_msg_13() { return static_cast<int32_t>(offsetof(ObjectDisposedException_t21392786, ___msg_13)); } inline String_t* get_msg_13() const { return ___msg_13; } inline String_t** get_address_of_msg_13() { return &___msg_13; } inline void set_msg_13(String_t* value) { ___msg_13 = value; Il2CppCodeGenWriteBarrier((&___msg_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTDISPOSEDEXCEPTION_T21392786_H #ifndef SHIMENUMERATOR_T1965540292_H #define SHIMENUMERATOR_T1965540292_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object> struct ShimEnumerator_t1965540292 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ShimEnumerator::host_enumerator Enumerator_t3923002270 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(ShimEnumerator_t1965540292, ___host_enumerator_0)); } inline Enumerator_t3923002270 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t3923002270 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t3923002270 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SHIMENUMERATOR_T1965540292_H #ifndef SHIMENUMERATOR_T1441415046_H #define SHIMENUMERATOR_T1441415046_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean> struct ShimEnumerator_t1441415046 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ShimEnumerator::host_enumerator Enumerator_t3398877024 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(ShimEnumerator_t1441415046, ___host_enumerator_0)); } inline Enumerator_t3398877024 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t3398877024 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t3398877024 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SHIMENUMERATOR_T1441415046_H #ifndef SHIMENUMERATOR_T105538_H #define SHIMENUMERATOR_T105538_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32> struct ShimEnumerator_t105538 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ShimEnumerator::host_enumerator Enumerator_t1957567516 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(ShimEnumerator_t105538, ___host_enumerator_0)); } inline Enumerator_t1957567516 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t1957567516 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t1957567516 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SHIMENUMERATOR_T105538_H #ifndef SHIMENUMERATOR_T129265949_H #define SHIMENUMERATOR_T129265949_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object> struct ShimEnumerator_t129265949 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ShimEnumerator::host_enumerator Enumerator_t2086727927 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(ShimEnumerator_t129265949, ___host_enumerator_0)); } inline Enumerator_t2086727927 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t2086727927 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t2086727927 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SHIMENUMERATOR_T129265949_H #ifndef ENUMERATOR_T2013587906_H #define ENUMERATOR_T2013587906_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean> struct Enumerator_t2013587906 { public: // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::host_enumerator Enumerator_t3398877024 ___host_enumerator_0; public: inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t2013587906, ___host_enumerator_0)); } inline Enumerator_t3398877024 get_host_enumerator_0() const { return ___host_enumerator_0; } inline Enumerator_t3398877024 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; } inline void set_host_enumerator_0(Enumerator_t3398877024 value) { ___host_enumerator_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2013587906_H #ifndef ACTION_1_T269755560_H #define ACTION_1_T269755560_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`1<System.Boolean> struct Action_1_t269755560 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_1_T269755560_H #ifndef ASYNCCALLBACK_T3962456242_H #define ASYNCCALLBACK_T3962456242_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.AsyncCallback struct AsyncCallback_t3962456242 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASYNCCALLBACK_T3962456242_H #ifndef ACTION_1_T3252573759_H #define ACTION_1_T3252573759_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`1<System.Object> struct Action_1_t3252573759 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_1_T3252573759_H #ifndef ACTION_3_T3050575418_H #define ACTION_3_T3050575418_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`3<System.Boolean,System.Boolean,System.Int32> struct Action_3_t3050575418 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_3_T3050575418_H #ifndef ACTION_3_T3632554945_H #define ACTION_3_T3632554945_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`3<System.Object,System.Object,System.Object> struct Action_3_t3632554945 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_3_T3632554945_H #ifndef TRANSFORM_1_T2448278169_H #define TRANSFORM_1_T2448278169_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry> struct Transform_1_t2448278169 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T2448278169_H #ifndef TRANSFORM_1_T2404408695_H #define TRANSFORM_1_T2404408695_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object> struct Transform_1_t2404408695 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T2404408695_H #ifndef TRANSFORM_1_T1235930838_H #define TRANSFORM_1_T1235930838_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean> struct Transform_1_t1235930838 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T1235930838_H #ifndef TRANSFORM_1_T4262618511_H #define TRANSFORM_1_T4262618511_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry> struct Transform_1_t4262618511 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T4262618511_H #ifndef TRANSFORM_1_T686041993_H #define TRANSFORM_1_T686041993_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct Transform_1_t686041993 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T686041993_H #ifndef TRANSFORM_1_T1750446691_H #define TRANSFORM_1_T1750446691_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry> struct Transform_1_t1750446691 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T1750446691_H #ifndef TRANSFORM_1_T1027527961_H #define TRANSFORM_1_T1027527961_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct Transform_1_t1027527961 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T1027527961_H #ifndef TRANSFORM_1_T1577416806_H #define TRANSFORM_1_T1577416806_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32> struct Transform_1_t1577416806 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T1577416806_H #ifndef TRANSFORM_1_T4209139644_H #define TRANSFORM_1_T4209139644_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry> struct Transform_1_t4209139644 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T4209139644_H #ifndef TRANSFORM_1_T3615381325_H #define TRANSFORM_1_T3615381325_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct Transform_1_t3615381325 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T3615381325_H #ifndef TRANSFORM_1_T4165270170_H #define TRANSFORM_1_T4165270170_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object> struct Transform_1_t4165270170 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T4165270170_H #ifndef TRANSFORM_1_T3690794193_H #define TRANSFORM_1_T3690794193_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct Transform_1_t3690794193 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSFORM_1_T3690794193_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::dt DateTime_t3738529785 ___dt_2; // System.TimeSpan System.DateTimeOffset::utc_offset TimeSpan_t881159249 ___utc_offset_3; public: inline static int32_t get_offset_of_dt_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___dt_2)); } inline DateTime_t3738529785 get_dt_2() const { return ___dt_2; } inline DateTime_t3738529785 * get_address_of_dt_2() { return &___dt_2; } inline void set_dt_2(DateTime_t3738529785 value) { ___dt_2 = value; } inline static int32_t get_offset_of_utc_offset_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___utc_offset_3)); } inline TimeSpan_t881159249 get_utc_offset_3() const { return ___utc_offset_3; } inline TimeSpan_t881159249 * get_address_of_utc_offset_3() { return &___utc_offset_3; } inline void set_utc_offset_3(TimeSpan_t881159249 value) { ___utc_offset_3 = value; } }; struct DateTimeOffset_t3229287507_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t3229287507 ___MaxValue_0; // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t3229287507 ___MinValue_1; public: inline static int32_t get_offset_of_MaxValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MaxValue_0)); } inline DateTimeOffset_t3229287507 get_MaxValue_0() const { return ___MaxValue_0; } inline DateTimeOffset_t3229287507 * get_address_of_MaxValue_0() { return &___MaxValue_0; } inline void set_MaxValue_0(DateTimeOffset_t3229287507 value) { ___MaxValue_0 = value; } inline static int32_t get_offset_of_MinValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MinValue_1)); } inline DateTimeOffset_t3229287507 get_MinValue_1() const { return ___MinValue_1; } inline DateTimeOffset_t3229287507 * get_address_of_MinValue_1() { return &___MinValue_1; } inline void set_MinValue_1(DateTimeOffset_t3229287507 value) { ___MinValue_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEOFFSET_T3229287507_H // System.Object[] struct ObjectU5BU5D_t2843939325 : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_t3710464795 : public RuntimeArray { public: ALIGN_FIELD (8) CustomAttributeNamedArgument_t287865710 m_Items[1]; public: inline CustomAttributeNamedArgument_t287865710 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CustomAttributeNamedArgument_t287865710 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CustomAttributeNamedArgument_t287865710 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline CustomAttributeNamedArgument_t287865710 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CustomAttributeNamedArgument_t287865710 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t287865710 value) { m_Items[index] = value; } }; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t1465843424 : public RuntimeArray { public: ALIGN_FIELD (8) CustomAttributeTypedArgument_t2723150157 m_Items[1]; public: inline CustomAttributeTypedArgument_t2723150157 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CustomAttributeTypedArgument_t2723150157 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CustomAttributeTypedArgument_t2723150157 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline CustomAttributeTypedArgument_t2723150157 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CustomAttributeTypedArgument_t2723150157 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_t2723150157 value) { m_Items[index] = value; } }; // System.Type[] struct TypeU5BU5D_t3940880105 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Collections.Generic.Link[] struct LinkU5BU5D_t964245573 : public RuntimeArray { public: ALIGN_FIELD (8) Link_t544317964 m_Items[1]; public: inline Link_t544317964 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Link_t544317964 * 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, Link_t544317964 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Link_t544317964 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Link_t544317964 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Link_t544317964 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.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.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[] struct KeyValuePair_2U5BU5D_t2652375035 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t71524366 m_Items[1]; public: inline KeyValuePair_2_t71524366 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t71524366 * 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_t71524366 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t71524366 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t71524366 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t71524366 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.Void System.Action`1<System.Boolean>::Invoke(T) extern "C" void Action_1_Invoke_m2492370395_gshared (Action_1_t269755560 * __this, bool ___obj0, const RuntimeMethod* method); // System.Void System.Action`1<System.Object>::Invoke(T) extern "C" void Action_1_Invoke_m2461023210_gshared (Action_1_t3252573759 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::Invoke(T1,T2,T3) extern "C" void Action_3_Invoke_m313705495_gshared (Action_3_t3050575418 * __this, bool ___arg10, bool ___arg21, int32_t ___arg32, const RuntimeMethod* method); // System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) extern "C" void Action_3_Invoke_m1376317295_gshared (Action_3_t3632554945 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, RuntimeObject * ___arg32, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m570303774_gshared (InternalEnumerator_1_t3187041620 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m540198272_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<Global/FruitType>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m153299075_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<Global/FruitType>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3632739276_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3848948756_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<Global/FruitType>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3894213929_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1359891754_gshared (InternalEnumerator_1_t4239932009 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m81420524_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() extern "C" TableRange_t3332867892 InternalEnumerator_1_get_Current_m4245242303_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2980550840_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m33109155_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4138845038_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3734861738_gshared (InternalEnumerator_1_t1911769025 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2707779927_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m1708547365_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55999184_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2447779733_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2850975202_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3349908318_gshared (InternalEnumerator_1_t1004352082 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m903423974_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Boolean>::get_Current() extern "C" bool InternalEnumerator_1_get_Current_m2100201398_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1503522504_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2018798800_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m154749640_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4191108945_gshared (InternalEnumerator_1_t2041360493 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3327951435_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Byte>::get_Current() extern "C" uint8_t InternalEnumerator_1_get_Current_m3073360606_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1277470738_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3493290831_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m123458112_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2123683127_gshared (InternalEnumerator_1_t246557291 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2793870849_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Char>::get_Current() extern "C" Il2CppChar InternalEnumerator_1_get_Current_m1945804797_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1641466962_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m881342307_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1909384544_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2336656763_gshared (InternalEnumerator_1_t4031039755 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2336872218_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() extern "C" DictionaryEntry_t3123975638 InternalEnumerator_1_get_Current_m1920303382_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1295084274_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2648133761_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2577879725_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m619554185_gshared (InternalEnumerator_1_t4116331090 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3677481164_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::get_Current() extern "C" Link_t3209266973 InternalEnumerator_1_get_Current_m1845246162_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2867624895_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m326441406_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1457790320_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1424655733_gshared (InternalEnumerator_1_t978588483 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1318888374_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() extern "C" KeyValuePair_2_t71524366 InternalEnumerator_1_get_Current_m4241643334_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3575233890_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m435531507_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1543390728_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m962177456_gshared (InternalEnumerator_1_t454463237 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1716381123_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current() extern "C" KeyValuePair_2_t3842366416 InternalEnumerator_1_get_Current_m476140818_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2889979481_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1290015243_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3299696349_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1341209356_gshared (InternalEnumerator_1_t3308121025 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4239728915_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() extern "C" KeyValuePair_2_t2401056908 InternalEnumerator_1_get_Current_m3081223448_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2284280372_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m4098771594_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2951889983_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m807987550_gshared (InternalEnumerator_1_t3437281436 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2386791007_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() extern "C" KeyValuePair_2_t2530217319 InternalEnumerator_1_get_Current_m923139215_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141782011_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2342933386_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1773160976_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3390957028_gshared (InternalEnumerator_1_t1451382081 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1223176161_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::get_Current() extern "C" Link_t544317964 InternalEnumerator_1_get_Current_m2223614542_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1676501075_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1913545470_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2785895009_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1196506529_gshared (InternalEnumerator_1_t587985571 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1256724261_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::get_Current() extern "C" Slot_t3975888750 InternalEnumerator_1_get_Current_m3008260692_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1514266661_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1995846647_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3200332883_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m819716934_gshared (InternalEnumerator_1_t1291559127 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4202665280_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::get_Current() extern "C" Slot_t384495010 InternalEnumerator_1_get_Current_m2832154098_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2629988057_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1519877610_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3354536447_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3456047704_gshared (InternalEnumerator_1_t350626606 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m546509994_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.DateTime>::get_Current() extern "C" DateTime_t3738529785 InternalEnumerator_1_get_Current_m3225386639_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2742943179_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.DateTime>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m649519051_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.DateTime>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1161444633_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m143506773_gshared (InternalEnumerator_1_t3855323497 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m169899350_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Decimal>::get_Current() extern "C" Decimal_t2948259380 InternalEnumerator_1_get_Current_m2128158355_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m688818811_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Decimal>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m937653815_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Decimal>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4210671224_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1559487635_gshared (InternalEnumerator_1_t1501729480 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m14983211_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Double>::get_Current() extern "C" double InternalEnumerator_1_get_Current_m2894466703_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3853320011_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Double>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2043273260_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Double>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m377783729_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2910272776_gshared (InternalEnumerator_1_t3459884504 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m521819017_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Int16>::get_Current() extern "C" int16_t InternalEnumerator_1_get_Current_m2723520268_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m888718134_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int16>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3716424577_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Int16>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3525157932_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m217498388_gshared (InternalEnumerator_1_t3858009870 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m779787360_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Int32>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m3500427238_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2435291801_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int32>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3519406884_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Int32>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3802174768_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4055378331_gshared (InternalEnumerator_1_t348664125 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3873091784_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Int64>::get_Current() extern "C" int64_t InternalEnumerator_1_get_Current_m685192625_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m180319738_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int64>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m830510730_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Int64>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4266213580_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1579105305_gshared (InternalEnumerator_1_t1747214298 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3011999097_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.IntPtr>::get_Current() extern "C" intptr_t InternalEnumerator_1_get_Current_m3900374024_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m548105685_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2818366163_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.IntPtr>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3520556285_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1675719794_gshared (InternalEnumerator_1_t3987170281 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2914412419_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Object>::get_Current() extern "C" RuntimeObject * InternalEnumerator_1_get_Current_m3839250771_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2982675020_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Object>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2006926799_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Object>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4035695998_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m643493702_gshared (InternalEnumerator_1_t1194929827 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m895873066_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() extern "C" CustomAttributeNamedArgument_t287865710 InternalEnumerator_1_get_Current_m3354878040_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4189894603_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3577625655_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4138204635_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m748741755_gshared (InternalEnumerator_1_t3630214274 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m596870847_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() extern "C" CustomAttributeTypedArgument_t2723150157 InternalEnumerator_1_get_Current_m3653231044_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4213507601_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2438347491_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3577491700_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1486034688_gshared (InternalEnumerator_1_t1267231508 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3619766341_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::get_Current() extern "C" LabelData_t360167391 InternalEnumerator_1_get_Current_m2698009637_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m435848551_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m106460639_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1728532725_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1594304290_gshared (InternalEnumerator_1_t1765566171 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720350288_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::get_Current() extern "C" LabelFixup_t858502054 InternalEnumerator_1_get_Current_m2680116177_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1976902927_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1063909490_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2234422530_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m238559784_gshared (InternalEnumerator_1_t3232839231 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2428767548_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::get_Current() extern "C" ILTokenInfo_t2325775114 InternalEnumerator_1_get_Current_m165106323_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3624751851_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m130608859_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m819973544_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3457010038_gshared (InternalEnumerator_1_t715526830 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4138547141_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::get_Current() extern "C" MonoResource_t4103430009 InternalEnumerator_1_get_Current_m2174066122_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m782232053_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m726871561_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m72350267_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m236665673_gshared (InternalEnumerator_1_t1391455104 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m907598595_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::get_Current() extern "C" RefEmitPermissionSet_t484390987 InternalEnumerator_1_get_Current_m2316281569_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4203917072_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3241670073_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m308452279_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m39232262_gshared (InternalEnumerator_1_t2368758583 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3165277182_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() extern "C" ParameterModifier_t1461694466 InternalEnumerator_1_get_Current_m356936020_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m694606607_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2840529825_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3664960764_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1999141680_gshared (InternalEnumerator_1_t958356908 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1259718730_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::get_Current() extern "C" ResourceCacheItem_t51292791 InternalEnumerator_1_get_Current_m144365666_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141016822_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m887344916_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2960571514_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2908852803_gshared (InternalEnumerator_1_t3780029419 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4008893642_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::get_Current() extern "C" ResourceInfo_t2872965302 InternalEnumerator_1_get_Current_m3191242573_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4235876088_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m725544411_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3174983217_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4200721464_gshared (InternalEnumerator_1_t153918522 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2234754688_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::get_Current() extern "C" uint8_t InternalEnumerator_1_get_Current_m3911557813_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3892960115_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3983612351_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1020308708_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3460713284_gshared (InternalEnumerator_1_t2576641779 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3545912565_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.SByte>::get_Current() extern "C" int8_t InternalEnumerator_1_get_Current_m1408339225_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m767948013_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.SByte>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1406845627_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.SByte>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1015797184_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3443175323_gshared (InternalEnumerator_1_t1040666831 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2314612291_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() extern "C" X509ChainStatus_t133602714 InternalEnumerator_1_get_Current_m2389908135_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1096730143_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m469889800_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1732823414_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m31115849_gshared (InternalEnumerator_1_t2304330891 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181721336_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Single>::get_Current() extern "C" float InternalEnumerator_1_get_Current_m2612852447_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1823542095_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Single>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m630370856_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Single>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3134701632_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1122952091_gshared (InternalEnumerator_1_t83702344 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m396346696_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::get_Current() extern "C" Mark_t3471605523 InternalEnumerator_1_get_Current_m1909182215_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088805473_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1837758743_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4133541970_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3261326277_gshared (InternalEnumerator_1_t1788223366 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3763767775_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.TimeSpan>::get_Current() extern "C" TimeSpan_t881159249 InternalEnumerator_1_get_Current_m1698047500_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1299775605_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m4260521517_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.TimeSpan>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3958061110_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2202456613_gshared (InternalEnumerator_1_t3084789075 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3848218235_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.UInt16>::get_Current() extern "C" uint16_t InternalEnumerator_1_get_Current_m784835552_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m191386315_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt16>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m359678482_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.UInt16>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m973048327_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3383770493_gshared (InternalEnumerator_1_t3467126095 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m342565588_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.UInt32>::get_Current() extern "C" uint32_t InternalEnumerator_1_get_Current_m1897120917_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1612699335_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt32>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1121538879_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.UInt32>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3855324972_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3215746182_gshared (InternalEnumerator_1_t746136913 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m872612294_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.UInt64>::get_Current() extern "C" uint64_t InternalEnumerator_1_get_Current_m1588647567_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2395961985_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt64>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3637184090_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.UInt64>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1975820803_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m362401472_gshared (InternalEnumerator_1_t1629489814 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4196663616_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<System.Uri/UriScheme>::get_Current() extern "C" UriScheme_t722425697 InternalEnumerator_1_get_Current_m1007906068_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2671801110_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m648941584_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<System.Uri/UriScheme>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m190587569_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2616789963_gshared (InternalEnumerator_1_t2493041948 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3355902602_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() extern "C" OrderBlock_t1585977831 InternalEnumerator_1_get_Current_m2112392701_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m690851430_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3566491637_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1524093431_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2503697330_gshared (InternalEnumerator_1_t3462750441 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3274912808_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Color>::get_Current() extern "C" Color_t2555686324 InternalEnumerator_1_get_Current_m3720421287_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3060923356_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2015539009_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m683739489_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m539509188_gshared (InternalEnumerator_1_t3507565409 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m996811230_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Color32>::get_Current() extern "C" Color32_t2600501292 InternalEnumerator_1_get_Current_m1232221964_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4196752819_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3259955982_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color32>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1590908934_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1352157576_gshared (InternalEnumerator_1_t370852074 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1009155168_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() extern "C" ContactPoint_t3758755253 InternalEnumerator_1_get_Current_m2315302778_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m629296715_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m756188704_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1187868016_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2311732727_gshared (InternalEnumerator_1_t4267370966 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1686642781_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current() extern "C" RaycastResult_t3360306849 InternalEnumerator_1_get_Current_m254780543_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m923624021_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3517794894_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1344185775_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m43405049_gshared (InternalEnumerator_1_t1012836222 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098348255_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() extern "C" PlayerLoopSystem_t105772105 InternalEnumerator_1_get_Current_m1506120701_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2102877703_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3611202825_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m359138619_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1744883412_gshared (InternalEnumerator_1_t818507063 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3217592429_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::get_Current() extern "C" Keyframe_t4206410242 InternalEnumerator_1_get_Current_m2907722321_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m605068928_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3211169941_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1109261117_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4124630986_gshared (InternalEnumerator_1_t1261324826 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m729791527_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() extern "C" PlayableBinding_t354260709 InternalEnumerator_1_get_Current_m2446410893_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3854084659_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3818541596_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1096095130_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m615777089_gshared (InternalEnumerator_1_t1963066083 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2621383412_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() extern "C" RaycastHit_t1056001966 InternalEnumerator_1_get_Current_m114240259_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1635397542_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m958164402_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3164144724_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2635640285_gshared (InternalEnumerator_1_t3186646106 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1775752715_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current() extern "C" RaycastHit2D_t2279581989 InternalEnumerator_1_get_Current_m1655128652_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2424959150_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m555942266_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2734554195_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3848674141_gshared (InternalEnumerator_1_t3267543976 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2556670574_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Rect>::get_Current() extern "C" Rect_t2360479859 InternalEnumerator_1_get_Current_m3941815949_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2690353642_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1453932905_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Rect>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3804980664_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3913006324_gshared (InternalEnumerator_1_t4136673857 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1451164462_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() extern "C" HitInfo_t3229609740 InternalEnumerator_1_get_Current_m4124877207_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2032951142_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3977286481_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2088624192_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1739091604_gshared (InternalEnumerator_1_t2694367513 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1341907970_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m2350635577_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164048921_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m28687982_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1555187632_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4175030001_gshared (InternalEnumerator_1_t982565223 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2305395628_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::get_Current() extern "C" UICharInfo_t75501106 InternalEnumerator_1_get_Current_m3792939945_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2649471526_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3790132913_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3713722659_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3322594868_gshared (InternalEnumerator_1_t807363631 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1601477281_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::get_Current() extern "C" UILineInfo_t4195266810 InternalEnumerator_1_get_Current_m1070921822_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3553395619_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2788308318_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1396448578_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2490839835_gshared (InternalEnumerator_1_t669594426 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4072625129_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::get_Current() extern "C" UIVertex_t4057497605 InternalEnumerator_1_get_Current_m1534474313_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2209458050_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m365545176_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3686444574_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3022010316_gshared (InternalEnumerator_1_t2261582729 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3613328076_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() extern "C" WorkRequest_t1354518612 InternalEnumerator_1_get_Current_m2297647799_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3539708496_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m436383441_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1269299718_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m945079686_gshared (InternalEnumerator_1_t3063293640 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m158730371_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Vector2>::get_Current() extern "C" Vector2_t2156229523 InternalEnumerator_1_get_Current_m3331252162_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847780851_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m663714168_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector2>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1262669372_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4132027968_gshared (InternalEnumerator_1_t334410285 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1916984356_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Vector3>::get_Current() extern "C" Vector3_t3722313464 InternalEnumerator_1_get_Current_m1477715453_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3537550566_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2188147046_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector3>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1262906009_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2307827786_gshared (InternalEnumerator_1_t4226093054 * __this, RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1944844050_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method); // T System.Array/InternalEnumerator`1<UnityEngine.Vector4>::get_Current() extern "C" Vector4_t3319028937 InternalEnumerator_1_get_Current_m2356858238_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method); // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3982010935_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m987068791_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method); // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector4>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1258813334_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m2150997492_gshared (Enumerator_t3923002270 * __this, Dictionary_2_t1968819495 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m2197239943_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2979767597_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Reset() extern "C" void Enumerator_Reset_m1314900927_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4080198166_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() extern "C" 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" RuntimeObject * KeyValuePair_2_get_Value_m3495598764_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m522483686_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_CurrentKey() extern "C" int32_t Enumerator_get_CurrentKey_m2230405065_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m195047678_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_CurrentValue() extern "C" RuntimeObject * Enumerator_get_CurrentValue_m1016112330_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3325938730_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::VerifyState() extern "C" void Enumerator_VerifyState_m194137655_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) extern "C" void KeyValuePair_2__ctor_m2118224448_gshared (KeyValuePair_2_t71524366 * __this, int32_t p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m3398155861_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() extern "C" KeyValuePair_2_t71524366 Enumerator_get_Current_m3431285658_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m562365603_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1195706188_gshared (Enumerator_t3398877024 * __this, Dictionary_2_t1444694249 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m829026141_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3816090481_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Reset() extern "C" void Enumerator_Reset_m188913985_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3673734757_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() extern "C" 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" bool KeyValuePair_2_get_Value_m1669764045_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3249874482_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_CurrentKey() extern "C" RuntimeObject * Enumerator_get_CurrentKey_m739604894_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2502357460_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_CurrentValue() extern "C" bool Enumerator_get_CurrentValue_m90765011_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1554573429_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::VerifyState() extern "C" void Enumerator_VerifyState_m4003066746_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) extern "C" void KeyValuePair_2__ctor_m23191374_gshared (KeyValuePair_2_t3842366416 * __this, RuntimeObject * p0, bool p1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() extern "C" bool Enumerator_MoveNext_m481679286_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() extern "C" KeyValuePair_2_t3842366416 Enumerator_get_Current_m3717060936_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() extern "C" void Enumerator_Dispose_m3834169052_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m65667165_gshared (Enumerator_t1957567516 * __this, Dictionary_2_t3384741 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m3071620407_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1890150222_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Reset() extern "C" void Enumerator_Reset_m2443320674_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2915047493_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() extern "C" RuntimeObject * KeyValuePair_2_get_Key_m1218836954_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() extern "C" int32_t KeyValuePair_2_get_Value_m755756747_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m859540448_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_CurrentKey() extern "C" RuntimeObject * Enumerator_get_CurrentKey_m889650866_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4039922590_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_CurrentValue() extern "C" int32_t Enumerator_get_CurrentValue_m3103267885_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m684446183_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::VerifyState() extern "C" void Enumerator_VerifyState_m1203790900_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) extern "C" void KeyValuePair_2__ctor_m880186442_gshared (KeyValuePair_2_t2401056908 * __this, RuntimeObject * p0, int32_t p1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() extern "C" bool Enumerator_MoveNext_m1556953412_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() extern "C" KeyValuePair_2_t2401056908 Enumerator_get_Current_m2727535848_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() extern "C" void Enumerator_Dispose_m1360775770_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1946955878_gshared (Enumerator_t2086727927 * __this, Dictionary_2_t132545152 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m93918543_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m921113401_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Reset() extern "C" void Enumerator_Reset_m1473454555_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1970353910_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() extern "C" 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" RuntimeObject * KeyValuePair_2_get_Value_m1132502692_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3417028588_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_CurrentKey() extern "C" RuntimeObject * Enumerator_get_CurrentKey_m3735262888_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2500634048_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_CurrentValue() extern "C" RuntimeObject * Enumerator_get_CurrentValue_m785745355_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3510383352_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::VerifyState() extern "C" void Enumerator_VerifyState_m2651392036_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) extern "C" void KeyValuePair_2__ctor_m1794021352_gshared (KeyValuePair_2_t2530217319 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m1107569389_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() extern "C" KeyValuePair_2_t2530217319 Enumerator_get_Current_m2198442938_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m3885012575_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m3750720560_gshared (Transform_1_t2448278169 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t71524366 Transform_1_Invoke_m1839683782_gshared (Transform_1_t3690794193 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object>::Invoke(TKey,TValue) extern "C" RuntimeObject * Transform_1_Invoke_m4135861535_gshared (Transform_1_t2404408695 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean>::Invoke(TKey,TValue) extern "C" bool Transform_1_Invoke_m3827729552_gshared (Transform_1_t1235930838 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m1839759353_gshared (Transform_1_t4262618511 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t3842366416 Transform_1_Invoke_m2468053724_gshared (Transform_1_t686041993 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m2424077850_gshared (Transform_1_t1750446691 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t2401056908 Transform_1_Invoke_m484886507_gshared (Transform_1_t1027527961 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32>::Invoke(TKey,TValue) extern "C" int32_t Transform_1_Invoke_m561030424_gshared (Transform_1_t1577416806 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m841737656_gshared (Transform_1_t4209139644 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t2530217319 Transform_1_Invoke_m1731820209_gshared (Transform_1_t3615381325 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object>::Invoke(TKey,TValue) extern "C" RuntimeObject * Transform_1_Invoke_m2986796014_gshared (Transform_1_t4165270170 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1849900510_gshared (Enumerator_t2537713152 * __this, Dictionary_2_t1968819495 * ___host0, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1657817602_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2917956982_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m3503748991_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m2602845255_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() extern "C" RuntimeObject * Enumerator_get_Current_m2250080680_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1558933899_gshared (Enumerator_t2013587906 * __this, Dictionary_2_t1444694249 * ___host0, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1975949486_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m53411943_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() extern "C" void Enumerator_Dispose_m4166166038_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() extern "C" bool Enumerator_MoveNext_m339600382_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() extern "C" bool Enumerator_get_Current_m1908012892_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1734342590_gshared (Enumerator_t572278398 * __this, Dictionary_2_t3384741 * ___host0, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1987977288_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4283504067_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() extern "C" void Enumerator_Dispose_m3040896940_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() extern "C" bool Enumerator_MoveNext_m3045873697_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() extern "C" int32_t Enumerator_get_Current_m926428745_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m10850803_gshared (Enumerator_t701438809 * __this, Dictionary_2_t132545152 * ___host0, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m935000629_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m85524874_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m1051275336_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m181298207_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() extern "C" RuntimeObject * Enumerator_get_Current_m3764936176_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method); // System.Void System.Action`1<System.Boolean>::Invoke(T) #define Action_1_Invoke_m2492370395(__this, ___obj0, method) (( void (*) (Action_1_t269755560 *, bool, const RuntimeMethod*))Action_1_Invoke_m2492370395_gshared)(__this, ___obj0, method) // System.Void System.Action`1<System.Object>::Invoke(T) #define Action_1_Invoke_m2461023210(__this, ___obj0, method) (( void (*) (Action_1_t3252573759 *, RuntimeObject *, const RuntimeMethod*))Action_1_Invoke_m2461023210_gshared)(__this, ___obj0, method) // System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::Invoke(T1,T2,T3) #define Action_3_Invoke_m313705495(__this, ___arg10, ___arg21, ___arg32, method) (( void (*) (Action_3_t3050575418 *, bool, bool, int32_t, const RuntimeMethod*))Action_3_Invoke_m313705495_gshared)(__this, ___arg10, ___arg21, ___arg32, method) // System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) #define Action_3_Invoke_m1376317295(__this, ___arg10, ___arg21, ___arg32, method) (( void (*) (Action_3_t3632554945 *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Action_3_Invoke_m1376317295_gshared)(__this, ___arg10, ___arg21, ___arg32, method) // System.Void System.Object::.ctor() extern "C" void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotSupportedException::.ctor() extern "C" void NotSupportedException__ctor_m2730133172 (NotSupportedException_t1314879016 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) extern "C" void ArgumentOutOfRangeException__ctor_m3628145864 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array::CopyTo(System.Array,System.Int32) extern "C" void Array_CopyTo_m225704097 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotSupportedException::.ctor(System.String) extern "C" void NotSupportedException__ctor_m2494070935 (NotSupportedException_t1314879016 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m570303774(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3187041620 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m570303774_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m540198272(__this, method) (( void (*) (InternalEnumerator_1_t3187041620 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m540198272_gshared)(__this, method) // T System.Array/InternalEnumerator`1<Global/FruitType>::get_Current() #define InternalEnumerator_1_get_Current_m153299075(__this, method) (( int32_t (*) (InternalEnumerator_1_t3187041620 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m153299075_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<Global/FruitType>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3632739276(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3187041620 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3632739276_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::Dispose() #define InternalEnumerator_1_Dispose_m3848948756(__this, method) (( void (*) (InternalEnumerator_1_t3187041620 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3848948756_gshared)(__this, method) // System.Int32 System.Array::get_Length() extern "C" int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Array/InternalEnumerator`1<Global/FruitType>::MoveNext() #define InternalEnumerator_1_MoveNext_m3894213929(__this, method) (( bool (*) (InternalEnumerator_1_t3187041620 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3894213929_gshared)(__this, method) // System.Void System.InvalidOperationException::.ctor(System.String) extern "C" void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1359891754(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t4239932009 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1359891754_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m81420524(__this, method) (( void (*) (InternalEnumerator_1_t4239932009 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m81420524_gshared)(__this, method) // T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() #define InternalEnumerator_1_get_Current_m4245242303(__this, method) (( TableRange_t3332867892 (*) (InternalEnumerator_1_t4239932009 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m4245242303_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2980550840(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t4239932009 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2980550840_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() #define InternalEnumerator_1_Dispose_m33109155(__this, method) (( void (*) (InternalEnumerator_1_t4239932009 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m33109155_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() #define InternalEnumerator_1_MoveNext_m4138845038(__this, method) (( bool (*) (InternalEnumerator_1_t4239932009 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4138845038_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3734861738(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1911769025 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3734861738_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2707779927(__this, method) (( void (*) (InternalEnumerator_1_t1911769025 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2707779927_gshared)(__this, method) // T System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::get_Current() #define InternalEnumerator_1_get_Current_m1708547365(__this, method) (( int32_t (*) (InternalEnumerator_1_t1911769025 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1708547365_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55999184(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1911769025 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55999184_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::Dispose() #define InternalEnumerator_1_Dispose_m2447779733(__this, method) (( void (*) (InternalEnumerator_1_t1911769025 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2447779733_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::MoveNext() #define InternalEnumerator_1_MoveNext_m2850975202(__this, method) (( bool (*) (InternalEnumerator_1_t1911769025 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2850975202_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3349908318(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1004352082 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3349908318_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m903423974(__this, method) (( void (*) (InternalEnumerator_1_t1004352082 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m903423974_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Boolean>::get_Current() #define InternalEnumerator_1_get_Current_m2100201398(__this, method) (( bool (*) (InternalEnumerator_1_t1004352082 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2100201398_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1503522504(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1004352082 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1503522504_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose() #define InternalEnumerator_1_Dispose_m2018798800(__this, method) (( void (*) (InternalEnumerator_1_t1004352082 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2018798800_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext() #define InternalEnumerator_1_MoveNext_m154749640(__this, method) (( bool (*) (InternalEnumerator_1_t1004352082 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m154749640_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m4191108945(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2041360493 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4191108945_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3327951435(__this, method) (( void (*) (InternalEnumerator_1_t2041360493 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3327951435_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Byte>::get_Current() #define InternalEnumerator_1_get_Current_m3073360606(__this, method) (( uint8_t (*) (InternalEnumerator_1_t2041360493 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3073360606_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1277470738(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2041360493 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1277470738_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose() #define InternalEnumerator_1_Dispose_m3493290831(__this, method) (( void (*) (InternalEnumerator_1_t2041360493 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3493290831_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext() #define InternalEnumerator_1_MoveNext_m123458112(__this, method) (( bool (*) (InternalEnumerator_1_t2041360493 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m123458112_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2123683127(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t246557291 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2123683127_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2793870849(__this, method) (( void (*) (InternalEnumerator_1_t246557291 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2793870849_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Char>::get_Current() #define InternalEnumerator_1_get_Current_m1945804797(__this, method) (( Il2CppChar (*) (InternalEnumerator_1_t246557291 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1945804797_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1641466962(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t246557291 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1641466962_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose() #define InternalEnumerator_1_Dispose_m881342307(__this, method) (( void (*) (InternalEnumerator_1_t246557291 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m881342307_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext() #define InternalEnumerator_1_MoveNext_m1909384544(__this, method) (( bool (*) (InternalEnumerator_1_t246557291 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1909384544_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2336656763(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t4031039755 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2336656763_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2336872218(__this, method) (( void (*) (InternalEnumerator_1_t4031039755 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2336872218_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() #define InternalEnumerator_1_get_Current_m1920303382(__this, method) (( DictionaryEntry_t3123975638 (*) (InternalEnumerator_1_t4031039755 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1920303382_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1295084274(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t4031039755 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1295084274_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() #define InternalEnumerator_1_Dispose_m2648133761(__this, method) (( void (*) (InternalEnumerator_1_t4031039755 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2648133761_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() #define InternalEnumerator_1_MoveNext_m2577879725(__this, method) (( bool (*) (InternalEnumerator_1_t4031039755 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2577879725_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m619554185(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t4116331090 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m619554185_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3677481164(__this, method) (( void (*) (InternalEnumerator_1_t4116331090 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3677481164_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::get_Current() #define InternalEnumerator_1_get_Current_m1845246162(__this, method) (( Link_t3209266973 (*) (InternalEnumerator_1_t4116331090 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1845246162_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2867624895(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t4116331090 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2867624895_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::Dispose() #define InternalEnumerator_1_Dispose_m326441406(__this, method) (( void (*) (InternalEnumerator_1_t4116331090 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m326441406_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::MoveNext() #define InternalEnumerator_1_MoveNext_m1457790320(__this, method) (( bool (*) (InternalEnumerator_1_t4116331090 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1457790320_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1424655733(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t978588483 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1424655733_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1318888374(__this, method) (( void (*) (InternalEnumerator_1_t978588483 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1318888374_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() #define InternalEnumerator_1_get_Current_m4241643334(__this, method) (( KeyValuePair_2_t71524366 (*) (InternalEnumerator_1_t978588483 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m4241643334_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3575233890(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t978588483 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3575233890_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() #define InternalEnumerator_1_Dispose_m435531507(__this, method) (( void (*) (InternalEnumerator_1_t978588483 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m435531507_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() #define InternalEnumerator_1_MoveNext_m1543390728(__this, method) (( bool (*) (InternalEnumerator_1_t978588483 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1543390728_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m962177456(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t454463237 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m962177456_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1716381123(__this, method) (( void (*) (InternalEnumerator_1_t454463237 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1716381123_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current() #define InternalEnumerator_1_get_Current_m476140818(__this, method) (( KeyValuePair_2_t3842366416 (*) (InternalEnumerator_1_t454463237 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m476140818_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2889979481(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t454463237 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2889979481_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose() #define InternalEnumerator_1_Dispose_m1290015243(__this, method) (( void (*) (InternalEnumerator_1_t454463237 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1290015243_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext() #define InternalEnumerator_1_MoveNext_m3299696349(__this, method) (( bool (*) (InternalEnumerator_1_t454463237 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3299696349_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1341209356(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3308121025 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1341209356_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4239728915(__this, method) (( void (*) (InternalEnumerator_1_t3308121025 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4239728915_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() #define InternalEnumerator_1_get_Current_m3081223448(__this, method) (( KeyValuePair_2_t2401056908 (*) (InternalEnumerator_1_t3308121025 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3081223448_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2284280372(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3308121025 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2284280372_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() #define InternalEnumerator_1_Dispose_m4098771594(__this, method) (( void (*) (InternalEnumerator_1_t3308121025 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m4098771594_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() #define InternalEnumerator_1_MoveNext_m2951889983(__this, method) (( bool (*) (InternalEnumerator_1_t3308121025 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2951889983_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m807987550(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3437281436 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m807987550_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2386791007(__this, method) (( void (*) (InternalEnumerator_1_t3437281436 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2386791007_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() #define InternalEnumerator_1_get_Current_m923139215(__this, method) (( KeyValuePair_2_t2530217319 (*) (InternalEnumerator_1_t3437281436 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m923139215_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141782011(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3437281436 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141782011_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() #define InternalEnumerator_1_Dispose_m2342933386(__this, method) (( void (*) (InternalEnumerator_1_t3437281436 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2342933386_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() #define InternalEnumerator_1_MoveNext_m1773160976(__this, method) (( bool (*) (InternalEnumerator_1_t3437281436 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1773160976_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3390957028(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1451382081 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3390957028_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1223176161(__this, method) (( void (*) (InternalEnumerator_1_t1451382081 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1223176161_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::get_Current() #define InternalEnumerator_1_get_Current_m2223614542(__this, method) (( Link_t544317964 (*) (InternalEnumerator_1_t1451382081 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2223614542_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1676501075(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1451382081 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1676501075_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::Dispose() #define InternalEnumerator_1_Dispose_m1913545470(__this, method) (( void (*) (InternalEnumerator_1_t1451382081 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1913545470_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::MoveNext() #define InternalEnumerator_1_MoveNext_m2785895009(__this, method) (( bool (*) (InternalEnumerator_1_t1451382081 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2785895009_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1196506529(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t587985571 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1196506529_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1256724261(__this, method) (( void (*) (InternalEnumerator_1_t587985571 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1256724261_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::get_Current() #define InternalEnumerator_1_get_Current_m3008260692(__this, method) (( Slot_t3975888750 (*) (InternalEnumerator_1_t587985571 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3008260692_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1514266661(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t587985571 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1514266661_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::Dispose() #define InternalEnumerator_1_Dispose_m1995846647(__this, method) (( void (*) (InternalEnumerator_1_t587985571 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1995846647_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::MoveNext() #define InternalEnumerator_1_MoveNext_m3200332883(__this, method) (( bool (*) (InternalEnumerator_1_t587985571 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3200332883_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m819716934(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1291559127 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m819716934_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4202665280(__this, method) (( void (*) (InternalEnumerator_1_t1291559127 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4202665280_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::get_Current() #define InternalEnumerator_1_get_Current_m2832154098(__this, method) (( Slot_t384495010 (*) (InternalEnumerator_1_t1291559127 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2832154098_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2629988057(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1291559127 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2629988057_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::Dispose() #define InternalEnumerator_1_Dispose_m1519877610(__this, method) (( void (*) (InternalEnumerator_1_t1291559127 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1519877610_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::MoveNext() #define InternalEnumerator_1_MoveNext_m3354536447(__this, method) (( bool (*) (InternalEnumerator_1_t1291559127 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3354536447_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3456047704(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t350626606 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3456047704_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m546509994(__this, method) (( void (*) (InternalEnumerator_1_t350626606 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m546509994_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.DateTime>::get_Current() #define InternalEnumerator_1_get_Current_m3225386639(__this, method) (( DateTime_t3738529785 (*) (InternalEnumerator_1_t350626606 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3225386639_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2742943179(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t350626606 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2742943179_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.DateTime>::Dispose() #define InternalEnumerator_1_Dispose_m649519051(__this, method) (( void (*) (InternalEnumerator_1_t350626606 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m649519051_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.DateTime>::MoveNext() #define InternalEnumerator_1_MoveNext_m1161444633(__this, method) (( bool (*) (InternalEnumerator_1_t350626606 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1161444633_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m143506773(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3855323497 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m143506773_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m169899350(__this, method) (( void (*) (InternalEnumerator_1_t3855323497 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m169899350_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Decimal>::get_Current() #define InternalEnumerator_1_get_Current_m2128158355(__this, method) (( Decimal_t2948259380 (*) (InternalEnumerator_1_t3855323497 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2128158355_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m688818811(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3855323497 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m688818811_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Decimal>::Dispose() #define InternalEnumerator_1_Dispose_m937653815(__this, method) (( void (*) (InternalEnumerator_1_t3855323497 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m937653815_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Decimal>::MoveNext() #define InternalEnumerator_1_MoveNext_m4210671224(__this, method) (( bool (*) (InternalEnumerator_1_t3855323497 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4210671224_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1559487635(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1501729480 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1559487635_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m14983211(__this, method) (( void (*) (InternalEnumerator_1_t1501729480 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m14983211_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Double>::get_Current() #define InternalEnumerator_1_get_Current_m2894466703(__this, method) (( double (*) (InternalEnumerator_1_t1501729480 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2894466703_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3853320011(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1501729480 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3853320011_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Double>::Dispose() #define InternalEnumerator_1_Dispose_m2043273260(__this, method) (( void (*) (InternalEnumerator_1_t1501729480 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2043273260_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Double>::MoveNext() #define InternalEnumerator_1_MoveNext_m377783729(__this, method) (( bool (*) (InternalEnumerator_1_t1501729480 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m377783729_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2910272776(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3459884504 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2910272776_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m521819017(__this, method) (( void (*) (InternalEnumerator_1_t3459884504 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m521819017_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Int16>::get_Current() #define InternalEnumerator_1_get_Current_m2723520268(__this, method) (( int16_t (*) (InternalEnumerator_1_t3459884504 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2723520268_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m888718134(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3459884504 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m888718134_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Int16>::Dispose() #define InternalEnumerator_1_Dispose_m3716424577(__this, method) (( void (*) (InternalEnumerator_1_t3459884504 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3716424577_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Int16>::MoveNext() #define InternalEnumerator_1_MoveNext_m3525157932(__this, method) (( bool (*) (InternalEnumerator_1_t3459884504 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3525157932_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m217498388(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3858009870 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m217498388_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m779787360(__this, method) (( void (*) (InternalEnumerator_1_t3858009870 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m779787360_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Int32>::get_Current() #define InternalEnumerator_1_get_Current_m3500427238(__this, method) (( int32_t (*) (InternalEnumerator_1_t3858009870 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3500427238_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2435291801(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3858009870 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2435291801_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Int32>::Dispose() #define InternalEnumerator_1_Dispose_m3519406884(__this, method) (( void (*) (InternalEnumerator_1_t3858009870 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3519406884_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Int32>::MoveNext() #define InternalEnumerator_1_MoveNext_m3802174768(__this, method) (( bool (*) (InternalEnumerator_1_t3858009870 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3802174768_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m4055378331(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t348664125 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4055378331_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3873091784(__this, method) (( void (*) (InternalEnumerator_1_t348664125 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3873091784_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Int64>::get_Current() #define InternalEnumerator_1_get_Current_m685192625(__this, method) (( int64_t (*) (InternalEnumerator_1_t348664125 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m685192625_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m180319738(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t348664125 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m180319738_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Int64>::Dispose() #define InternalEnumerator_1_Dispose_m830510730(__this, method) (( void (*) (InternalEnumerator_1_t348664125 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m830510730_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Int64>::MoveNext() #define InternalEnumerator_1_MoveNext_m4266213580(__this, method) (( bool (*) (InternalEnumerator_1_t348664125 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4266213580_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1579105305(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1747214298 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1579105305_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3011999097(__this, method) (( void (*) (InternalEnumerator_1_t1747214298 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3011999097_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.IntPtr>::get_Current() #define InternalEnumerator_1_get_Current_m3900374024(__this, method) (( intptr_t (*) (InternalEnumerator_1_t1747214298 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3900374024_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m548105685(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1747214298 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m548105685_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::Dispose() #define InternalEnumerator_1_Dispose_m2818366163(__this, method) (( void (*) (InternalEnumerator_1_t1747214298 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2818366163_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.IntPtr>::MoveNext() #define InternalEnumerator_1_MoveNext_m3520556285(__this, method) (( bool (*) (InternalEnumerator_1_t1747214298 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3520556285_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1675719794(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3987170281 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1675719794_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2914412419(__this, method) (( void (*) (InternalEnumerator_1_t3987170281 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2914412419_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Object>::get_Current() #define InternalEnumerator_1_get_Current_m3839250771(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3987170281 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3839250771_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2982675020(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3987170281 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2982675020_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Object>::Dispose() #define InternalEnumerator_1_Dispose_m2006926799(__this, method) (( void (*) (InternalEnumerator_1_t3987170281 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2006926799_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Object>::MoveNext() #define InternalEnumerator_1_MoveNext_m4035695998(__this, method) (( bool (*) (InternalEnumerator_1_t3987170281 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4035695998_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m643493702(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1194929827 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m643493702_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m895873066(__this, method) (( void (*) (InternalEnumerator_1_t1194929827 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m895873066_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() #define InternalEnumerator_1_get_Current_m3354878040(__this, method) (( CustomAttributeNamedArgument_t287865710 (*) (InternalEnumerator_1_t1194929827 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3354878040_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4189894603(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1194929827 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4189894603_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() #define InternalEnumerator_1_Dispose_m3577625655(__this, method) (( void (*) (InternalEnumerator_1_t1194929827 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3577625655_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() #define InternalEnumerator_1_MoveNext_m4138204635(__this, method) (( bool (*) (InternalEnumerator_1_t1194929827 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4138204635_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m748741755(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3630214274 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m748741755_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m596870847(__this, method) (( void (*) (InternalEnumerator_1_t3630214274 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m596870847_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() #define InternalEnumerator_1_get_Current_m3653231044(__this, method) (( CustomAttributeTypedArgument_t2723150157 (*) (InternalEnumerator_1_t3630214274 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3653231044_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4213507601(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3630214274 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4213507601_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() #define InternalEnumerator_1_Dispose_m2438347491(__this, method) (( void (*) (InternalEnumerator_1_t3630214274 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2438347491_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() #define InternalEnumerator_1_MoveNext_m3577491700(__this, method) (( bool (*) (InternalEnumerator_1_t3630214274 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3577491700_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1486034688(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1267231508 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1486034688_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3619766341(__this, method) (( void (*) (InternalEnumerator_1_t1267231508 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3619766341_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::get_Current() #define InternalEnumerator_1_get_Current_m2698009637(__this, method) (( LabelData_t360167391 (*) (InternalEnumerator_1_t1267231508 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2698009637_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m435848551(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1267231508 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m435848551_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::Dispose() #define InternalEnumerator_1_Dispose_m106460639(__this, method) (( void (*) (InternalEnumerator_1_t1267231508 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m106460639_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::MoveNext() #define InternalEnumerator_1_MoveNext_m1728532725(__this, method) (( bool (*) (InternalEnumerator_1_t1267231508 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1728532725_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1594304290(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1765566171 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1594304290_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720350288(__this, method) (( void (*) (InternalEnumerator_1_t1765566171 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720350288_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::get_Current() #define InternalEnumerator_1_get_Current_m2680116177(__this, method) (( LabelFixup_t858502054 (*) (InternalEnumerator_1_t1765566171 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2680116177_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1976902927(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1765566171 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1976902927_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::Dispose() #define InternalEnumerator_1_Dispose_m1063909490(__this, method) (( void (*) (InternalEnumerator_1_t1765566171 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1063909490_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::MoveNext() #define InternalEnumerator_1_MoveNext_m2234422530(__this, method) (( bool (*) (InternalEnumerator_1_t1765566171 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2234422530_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m238559784(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3232839231 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m238559784_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2428767548(__this, method) (( void (*) (InternalEnumerator_1_t3232839231 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2428767548_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::get_Current() #define InternalEnumerator_1_get_Current_m165106323(__this, method) (( ILTokenInfo_t2325775114 (*) (InternalEnumerator_1_t3232839231 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m165106323_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3624751851(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3232839231 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3624751851_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::Dispose() #define InternalEnumerator_1_Dispose_m130608859(__this, method) (( void (*) (InternalEnumerator_1_t3232839231 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m130608859_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::MoveNext() #define InternalEnumerator_1_MoveNext_m819973544(__this, method) (( bool (*) (InternalEnumerator_1_t3232839231 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m819973544_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3457010038(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t715526830 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3457010038_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4138547141(__this, method) (( void (*) (InternalEnumerator_1_t715526830 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4138547141_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::get_Current() #define InternalEnumerator_1_get_Current_m2174066122(__this, method) (( MonoResource_t4103430009 (*) (InternalEnumerator_1_t715526830 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2174066122_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m782232053(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t715526830 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m782232053_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::Dispose() #define InternalEnumerator_1_Dispose_m726871561(__this, method) (( void (*) (InternalEnumerator_1_t715526830 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m726871561_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::MoveNext() #define InternalEnumerator_1_MoveNext_m72350267(__this, method) (( bool (*) (InternalEnumerator_1_t715526830 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m72350267_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m236665673(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1391455104 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m236665673_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m907598595(__this, method) (( void (*) (InternalEnumerator_1_t1391455104 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m907598595_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::get_Current() #define InternalEnumerator_1_get_Current_m2316281569(__this, method) (( RefEmitPermissionSet_t484390987 (*) (InternalEnumerator_1_t1391455104 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2316281569_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4203917072(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1391455104 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4203917072_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::Dispose() #define InternalEnumerator_1_Dispose_m3241670073(__this, method) (( void (*) (InternalEnumerator_1_t1391455104 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3241670073_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::MoveNext() #define InternalEnumerator_1_MoveNext_m308452279(__this, method) (( bool (*) (InternalEnumerator_1_t1391455104 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m308452279_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m39232262(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2368758583 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m39232262_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3165277182(__this, method) (( void (*) (InternalEnumerator_1_t2368758583 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3165277182_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() #define InternalEnumerator_1_get_Current_m356936020(__this, method) (( ParameterModifier_t1461694466 (*) (InternalEnumerator_1_t2368758583 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m356936020_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m694606607(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2368758583 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m694606607_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() #define InternalEnumerator_1_Dispose_m2840529825(__this, method) (( void (*) (InternalEnumerator_1_t2368758583 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2840529825_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() #define InternalEnumerator_1_MoveNext_m3664960764(__this, method) (( bool (*) (InternalEnumerator_1_t2368758583 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3664960764_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1999141680(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t958356908 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1999141680_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1259718730(__this, method) (( void (*) (InternalEnumerator_1_t958356908 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1259718730_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::get_Current() #define InternalEnumerator_1_get_Current_m144365666(__this, method) (( ResourceCacheItem_t51292791 (*) (InternalEnumerator_1_t958356908 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m144365666_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141016822(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t958356908 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141016822_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::Dispose() #define InternalEnumerator_1_Dispose_m887344916(__this, method) (( void (*) (InternalEnumerator_1_t958356908 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m887344916_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::MoveNext() #define InternalEnumerator_1_MoveNext_m2960571514(__this, method) (( bool (*) (InternalEnumerator_1_t958356908 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2960571514_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2908852803(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3780029419 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2908852803_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4008893642(__this, method) (( void (*) (InternalEnumerator_1_t3780029419 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4008893642_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::get_Current() #define InternalEnumerator_1_get_Current_m3191242573(__this, method) (( ResourceInfo_t2872965302 (*) (InternalEnumerator_1_t3780029419 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3191242573_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4235876088(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3780029419 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4235876088_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::Dispose() #define InternalEnumerator_1_Dispose_m725544411(__this, method) (( void (*) (InternalEnumerator_1_t3780029419 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m725544411_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::MoveNext() #define InternalEnumerator_1_MoveNext_m3174983217(__this, method) (( bool (*) (InternalEnumerator_1_t3780029419 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3174983217_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m4200721464(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t153918522 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4200721464_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2234754688(__this, method) (( void (*) (InternalEnumerator_1_t153918522 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2234754688_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::get_Current() #define InternalEnumerator_1_get_Current_m3911557813(__this, method) (( uint8_t (*) (InternalEnumerator_1_t153918522 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3911557813_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3892960115(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t153918522 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3892960115_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::Dispose() #define InternalEnumerator_1_Dispose_m3983612351(__this, method) (( void (*) (InternalEnumerator_1_t153918522 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3983612351_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::MoveNext() #define InternalEnumerator_1_MoveNext_m1020308708(__this, method) (( bool (*) (InternalEnumerator_1_t153918522 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1020308708_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3460713284(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2576641779 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3460713284_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3545912565(__this, method) (( void (*) (InternalEnumerator_1_t2576641779 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3545912565_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.SByte>::get_Current() #define InternalEnumerator_1_get_Current_m1408339225(__this, method) (( int8_t (*) (InternalEnumerator_1_t2576641779 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1408339225_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m767948013(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2576641779 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m767948013_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.SByte>::Dispose() #define InternalEnumerator_1_Dispose_m1406845627(__this, method) (( void (*) (InternalEnumerator_1_t2576641779 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1406845627_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.SByte>::MoveNext() #define InternalEnumerator_1_MoveNext_m1015797184(__this, method) (( bool (*) (InternalEnumerator_1_t2576641779 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1015797184_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3443175323(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1040666831 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3443175323_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2314612291(__this, method) (( void (*) (InternalEnumerator_1_t1040666831 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2314612291_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() #define InternalEnumerator_1_get_Current_m2389908135(__this, method) (( X509ChainStatus_t133602714 (*) (InternalEnumerator_1_t1040666831 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2389908135_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1096730143(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1040666831 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1096730143_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() #define InternalEnumerator_1_Dispose_m469889800(__this, method) (( void (*) (InternalEnumerator_1_t1040666831 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m469889800_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() #define InternalEnumerator_1_MoveNext_m1732823414(__this, method) (( bool (*) (InternalEnumerator_1_t1040666831 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1732823414_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m31115849(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2304330891 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m31115849_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181721336(__this, method) (( void (*) (InternalEnumerator_1_t2304330891 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181721336_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Single>::get_Current() #define InternalEnumerator_1_get_Current_m2612852447(__this, method) (( float (*) (InternalEnumerator_1_t2304330891 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2612852447_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1823542095(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2304330891 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1823542095_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Single>::Dispose() #define InternalEnumerator_1_Dispose_m630370856(__this, method) (( void (*) (InternalEnumerator_1_t2304330891 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m630370856_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Single>::MoveNext() #define InternalEnumerator_1_MoveNext_m3134701632(__this, method) (( bool (*) (InternalEnumerator_1_t2304330891 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3134701632_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1122952091(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t83702344 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1122952091_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m396346696(__this, method) (( void (*) (InternalEnumerator_1_t83702344 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m396346696_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::get_Current() #define InternalEnumerator_1_get_Current_m1909182215(__this, method) (( Mark_t3471605523 (*) (InternalEnumerator_1_t83702344 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1909182215_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088805473(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t83702344 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088805473_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::Dispose() #define InternalEnumerator_1_Dispose_m1837758743(__this, method) (( void (*) (InternalEnumerator_1_t83702344 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1837758743_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::MoveNext() #define InternalEnumerator_1_MoveNext_m4133541970(__this, method) (( bool (*) (InternalEnumerator_1_t83702344 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4133541970_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3261326277(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1788223366 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3261326277_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3763767775(__this, method) (( void (*) (InternalEnumerator_1_t1788223366 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3763767775_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.TimeSpan>::get_Current() #define InternalEnumerator_1_get_Current_m1698047500(__this, method) (( TimeSpan_t881159249 (*) (InternalEnumerator_1_t1788223366 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1698047500_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1299775605(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1788223366 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1299775605_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::Dispose() #define InternalEnumerator_1_Dispose_m4260521517(__this, method) (( void (*) (InternalEnumerator_1_t1788223366 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m4260521517_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.TimeSpan>::MoveNext() #define InternalEnumerator_1_MoveNext_m3958061110(__this, method) (( bool (*) (InternalEnumerator_1_t1788223366 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3958061110_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2202456613(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3084789075 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2202456613_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3848218235(__this, method) (( void (*) (InternalEnumerator_1_t3084789075 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3848218235_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.UInt16>::get_Current() #define InternalEnumerator_1_get_Current_m784835552(__this, method) (( uint16_t (*) (InternalEnumerator_1_t3084789075 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m784835552_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m191386315(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3084789075 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m191386315_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.UInt16>::Dispose() #define InternalEnumerator_1_Dispose_m359678482(__this, method) (( void (*) (InternalEnumerator_1_t3084789075 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m359678482_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.UInt16>::MoveNext() #define InternalEnumerator_1_MoveNext_m973048327(__this, method) (( bool (*) (InternalEnumerator_1_t3084789075 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m973048327_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3383770493(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3467126095 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3383770493_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m342565588(__this, method) (( void (*) (InternalEnumerator_1_t3467126095 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m342565588_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.UInt32>::get_Current() #define InternalEnumerator_1_get_Current_m1897120917(__this, method) (( uint32_t (*) (InternalEnumerator_1_t3467126095 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1897120917_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1612699335(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3467126095 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1612699335_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.UInt32>::Dispose() #define InternalEnumerator_1_Dispose_m1121538879(__this, method) (( void (*) (InternalEnumerator_1_t3467126095 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1121538879_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.UInt32>::MoveNext() #define InternalEnumerator_1_MoveNext_m3855324972(__this, method) (( bool (*) (InternalEnumerator_1_t3467126095 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3855324972_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3215746182(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t746136913 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3215746182_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m872612294(__this, method) (( void (*) (InternalEnumerator_1_t746136913 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m872612294_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.UInt64>::get_Current() #define InternalEnumerator_1_get_Current_m1588647567(__this, method) (( uint64_t (*) (InternalEnumerator_1_t746136913 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1588647567_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2395961985(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t746136913 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2395961985_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.UInt64>::Dispose() #define InternalEnumerator_1_Dispose_m3637184090(__this, method) (( void (*) (InternalEnumerator_1_t746136913 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3637184090_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.UInt64>::MoveNext() #define InternalEnumerator_1_MoveNext_m1975820803(__this, method) (( bool (*) (InternalEnumerator_1_t746136913 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1975820803_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m362401472(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1629489814 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m362401472_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4196663616(__this, method) (( void (*) (InternalEnumerator_1_t1629489814 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4196663616_gshared)(__this, method) // T System.Array/InternalEnumerator`1<System.Uri/UriScheme>::get_Current() #define InternalEnumerator_1_get_Current_m1007906068(__this, method) (( UriScheme_t722425697 (*) (InternalEnumerator_1_t1629489814 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1007906068_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2671801110(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1629489814 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2671801110_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::Dispose() #define InternalEnumerator_1_Dispose_m648941584(__this, method) (( void (*) (InternalEnumerator_1_t1629489814 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m648941584_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<System.Uri/UriScheme>::MoveNext() #define InternalEnumerator_1_MoveNext_m190587569(__this, method) (( bool (*) (InternalEnumerator_1_t1629489814 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m190587569_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2616789963(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2493041948 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2616789963_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3355902602(__this, method) (( void (*) (InternalEnumerator_1_t2493041948 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3355902602_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() #define InternalEnumerator_1_get_Current_m2112392701(__this, method) (( OrderBlock_t1585977831 (*) (InternalEnumerator_1_t2493041948 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2112392701_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m690851430(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2493041948 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m690851430_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() #define InternalEnumerator_1_Dispose_m3566491637(__this, method) (( void (*) (InternalEnumerator_1_t2493041948 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3566491637_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() #define InternalEnumerator_1_MoveNext_m1524093431(__this, method) (( bool (*) (InternalEnumerator_1_t2493041948 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1524093431_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2503697330(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3462750441 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2503697330_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3274912808(__this, method) (( void (*) (InternalEnumerator_1_t3462750441 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3274912808_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Color>::get_Current() #define InternalEnumerator_1_get_Current_m3720421287(__this, method) (( Color_t2555686324 (*) (InternalEnumerator_1_t3462750441 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3720421287_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3060923356(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3462750441 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3060923356_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::Dispose() #define InternalEnumerator_1_Dispose_m2015539009(__this, method) (( void (*) (InternalEnumerator_1_t3462750441 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2015539009_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color>::MoveNext() #define InternalEnumerator_1_MoveNext_m683739489(__this, method) (( bool (*) (InternalEnumerator_1_t3462750441 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m683739489_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m539509188(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3507565409 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m539509188_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m996811230(__this, method) (( void (*) (InternalEnumerator_1_t3507565409 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m996811230_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Color32>::get_Current() #define InternalEnumerator_1_get_Current_m1232221964(__this, method) (( Color32_t2600501292 (*) (InternalEnumerator_1_t3507565409 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1232221964_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4196752819(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3507565409 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4196752819_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::Dispose() #define InternalEnumerator_1_Dispose_m3259955982(__this, method) (( void (*) (InternalEnumerator_1_t3507565409 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3259955982_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color32>::MoveNext() #define InternalEnumerator_1_MoveNext_m1590908934(__this, method) (( bool (*) (InternalEnumerator_1_t3507565409 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1590908934_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1352157576(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t370852074 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1352157576_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1009155168(__this, method) (( void (*) (InternalEnumerator_1_t370852074 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1009155168_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() #define InternalEnumerator_1_get_Current_m2315302778(__this, method) (( ContactPoint_t3758755253 (*) (InternalEnumerator_1_t370852074 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2315302778_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m629296715(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t370852074 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m629296715_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() #define InternalEnumerator_1_Dispose_m756188704(__this, method) (( void (*) (InternalEnumerator_1_t370852074 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m756188704_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() #define InternalEnumerator_1_MoveNext_m1187868016(__this, method) (( bool (*) (InternalEnumerator_1_t370852074 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1187868016_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2311732727(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t4267370966 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2311732727_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1686642781(__this, method) (( void (*) (InternalEnumerator_1_t4267370966 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1686642781_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current() #define InternalEnumerator_1_get_Current_m254780543(__this, method) (( RaycastResult_t3360306849 (*) (InternalEnumerator_1_t4267370966 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m254780543_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m923624021(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t4267370966 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m923624021_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose() #define InternalEnumerator_1_Dispose_m3517794894(__this, method) (( void (*) (InternalEnumerator_1_t4267370966 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3517794894_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext() #define InternalEnumerator_1_MoveNext_m1344185775(__this, method) (( bool (*) (InternalEnumerator_1_t4267370966 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1344185775_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m43405049(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1012836222 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m43405049_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098348255(__this, method) (( void (*) (InternalEnumerator_1_t1012836222 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098348255_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() #define InternalEnumerator_1_get_Current_m1506120701(__this, method) (( PlayerLoopSystem_t105772105 (*) (InternalEnumerator_1_t1012836222 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1506120701_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2102877703(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1012836222 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2102877703_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() #define InternalEnumerator_1_Dispose_m3611202825(__this, method) (( void (*) (InternalEnumerator_1_t1012836222 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3611202825_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() #define InternalEnumerator_1_MoveNext_m359138619(__this, method) (( bool (*) (InternalEnumerator_1_t1012836222 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m359138619_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1744883412(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t818507063 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1744883412_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3217592429(__this, method) (( void (*) (InternalEnumerator_1_t818507063 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3217592429_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::get_Current() #define InternalEnumerator_1_get_Current_m2907722321(__this, method) (( Keyframe_t4206410242 (*) (InternalEnumerator_1_t818507063 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2907722321_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m605068928(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t818507063 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m605068928_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::Dispose() #define InternalEnumerator_1_Dispose_m3211169941(__this, method) (( void (*) (InternalEnumerator_1_t818507063 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3211169941_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() #define InternalEnumerator_1_MoveNext_m1109261117(__this, method) (( bool (*) (InternalEnumerator_1_t818507063 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1109261117_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m4124630986(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1261324826 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4124630986_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m729791527(__this, method) (( void (*) (InternalEnumerator_1_t1261324826 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m729791527_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() #define InternalEnumerator_1_get_Current_m2446410893(__this, method) (( PlayableBinding_t354260709 (*) (InternalEnumerator_1_t1261324826 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2446410893_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3854084659(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1261324826 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3854084659_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() #define InternalEnumerator_1_Dispose_m3818541596(__this, method) (( void (*) (InternalEnumerator_1_t1261324826 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3818541596_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() #define InternalEnumerator_1_MoveNext_m1096095130(__this, method) (( bool (*) (InternalEnumerator_1_t1261324826 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1096095130_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m615777089(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t1963066083 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m615777089_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2621383412(__this, method) (( void (*) (InternalEnumerator_1_t1963066083 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2621383412_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() #define InternalEnumerator_1_get_Current_m114240259(__this, method) (( RaycastHit_t1056001966 (*) (InternalEnumerator_1_t1963066083 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m114240259_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1635397542(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t1963066083 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1635397542_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() #define InternalEnumerator_1_Dispose_m958164402(__this, method) (( void (*) (InternalEnumerator_1_t1963066083 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m958164402_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() #define InternalEnumerator_1_MoveNext_m3164144724(__this, method) (( bool (*) (InternalEnumerator_1_t1963066083 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3164144724_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2635640285(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3186646106 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2635640285_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1775752715(__this, method) (( void (*) (InternalEnumerator_1_t3186646106 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1775752715_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current() #define InternalEnumerator_1_get_Current_m1655128652(__this, method) (( RaycastHit2D_t2279581989 (*) (InternalEnumerator_1_t3186646106 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1655128652_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2424959150(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3186646106 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2424959150_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose() #define InternalEnumerator_1_Dispose_m555942266(__this, method) (( void (*) (InternalEnumerator_1_t3186646106 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m555942266_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext() #define InternalEnumerator_1_MoveNext_m2734554195(__this, method) (( bool (*) (InternalEnumerator_1_t3186646106 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2734554195_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3848674141(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3267543976 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3848674141_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2556670574(__this, method) (( void (*) (InternalEnumerator_1_t3267543976 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2556670574_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Rect>::get_Current() #define InternalEnumerator_1_get_Current_m3941815949(__this, method) (( Rect_t2360479859 (*) (InternalEnumerator_1_t3267543976 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3941815949_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2690353642(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3267543976 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2690353642_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::Dispose() #define InternalEnumerator_1_Dispose_m1453932905(__this, method) (( void (*) (InternalEnumerator_1_t3267543976 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1453932905_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Rect>::MoveNext() #define InternalEnumerator_1_MoveNext_m3804980664(__this, method) (( bool (*) (InternalEnumerator_1_t3267543976 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3804980664_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3913006324(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t4136673857 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3913006324_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1451164462(__this, method) (( void (*) (InternalEnumerator_1_t4136673857 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1451164462_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() #define InternalEnumerator_1_get_Current_m4124877207(__this, method) (( HitInfo_t3229609740 (*) (InternalEnumerator_1_t4136673857 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m4124877207_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2032951142(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t4136673857 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2032951142_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() #define InternalEnumerator_1_Dispose_m3977286481(__this, method) (( void (*) (InternalEnumerator_1_t4136673857 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3977286481_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() #define InternalEnumerator_1_MoveNext_m2088624192(__this, method) (( bool (*) (InternalEnumerator_1_t4136673857 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2088624192_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m1739091604(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2694367513 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1739091604_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1341907970(__this, method) (( void (*) (InternalEnumerator_1_t2694367513 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1341907970_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::get_Current() #define InternalEnumerator_1_get_Current_m2350635577(__this, method) (( int32_t (*) (InternalEnumerator_1_t2694367513 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2350635577_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164048921(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2694367513 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164048921_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::Dispose() #define InternalEnumerator_1_Dispose_m28687982(__this, method) (( void (*) (InternalEnumerator_1_t2694367513 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m28687982_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::MoveNext() #define InternalEnumerator_1_MoveNext_m1555187632(__this, method) (( bool (*) (InternalEnumerator_1_t2694367513 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1555187632_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m4175030001(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t982565223 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4175030001_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2305395628(__this, method) (( void (*) (InternalEnumerator_1_t982565223 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2305395628_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::get_Current() #define InternalEnumerator_1_get_Current_m3792939945(__this, method) (( UICharInfo_t75501106 (*) (InternalEnumerator_1_t982565223 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3792939945_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2649471526(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t982565223 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2649471526_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::Dispose() #define InternalEnumerator_1_Dispose_m3790132913(__this, method) (( void (*) (InternalEnumerator_1_t982565223 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3790132913_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext() #define InternalEnumerator_1_MoveNext_m3713722659(__this, method) (( bool (*) (InternalEnumerator_1_t982565223 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3713722659_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3322594868(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t807363631 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3322594868_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1601477281(__this, method) (( void (*) (InternalEnumerator_1_t807363631 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1601477281_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::get_Current() #define InternalEnumerator_1_get_Current_m1070921822(__this, method) (( UILineInfo_t4195266810 (*) (InternalEnumerator_1_t807363631 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1070921822_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3553395619(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t807363631 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3553395619_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::Dispose() #define InternalEnumerator_1_Dispose_m2788308318(__this, method) (( void (*) (InternalEnumerator_1_t807363631 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2788308318_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext() #define InternalEnumerator_1_MoveNext_m1396448578(__this, method) (( bool (*) (InternalEnumerator_1_t807363631 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1396448578_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2490839835(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t669594426 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2490839835_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4072625129(__this, method) (( void (*) (InternalEnumerator_1_t669594426 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4072625129_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::get_Current() #define InternalEnumerator_1_get_Current_m1534474313(__this, method) (( UIVertex_t4057497605 (*) (InternalEnumerator_1_t669594426 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1534474313_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2209458050(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t669594426 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2209458050_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::Dispose() #define InternalEnumerator_1_Dispose_m365545176(__this, method) (( void (*) (InternalEnumerator_1_t669594426 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m365545176_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::MoveNext() #define InternalEnumerator_1_MoveNext_m3686444574(__this, method) (( bool (*) (InternalEnumerator_1_t669594426 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3686444574_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m3022010316(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t2261582729 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3022010316_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3613328076(__this, method) (( void (*) (InternalEnumerator_1_t2261582729 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3613328076_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() #define InternalEnumerator_1_get_Current_m2297647799(__this, method) (( WorkRequest_t1354518612 (*) (InternalEnumerator_1_t2261582729 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2297647799_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3539708496(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t2261582729 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3539708496_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() #define InternalEnumerator_1_Dispose_m436383441(__this, method) (( void (*) (InternalEnumerator_1_t2261582729 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m436383441_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() #define InternalEnumerator_1_MoveNext_m1269299718(__this, method) (( bool (*) (InternalEnumerator_1_t2261582729 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1269299718_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m945079686(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t3063293640 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m945079686_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m158730371(__this, method) (( void (*) (InternalEnumerator_1_t3063293640 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m158730371_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Vector2>::get_Current() #define InternalEnumerator_1_get_Current_m3331252162(__this, method) (( Vector2_t2156229523 (*) (InternalEnumerator_1_t3063293640 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3331252162_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847780851(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t3063293640 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847780851_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::Dispose() #define InternalEnumerator_1_Dispose_m663714168(__this, method) (( void (*) (InternalEnumerator_1_t3063293640 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m663714168_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector2>::MoveNext() #define InternalEnumerator_1_MoveNext_m1262669372(__this, method) (( bool (*) (InternalEnumerator_1_t3063293640 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1262669372_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m4132027968(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t334410285 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4132027968_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1916984356(__this, method) (( void (*) (InternalEnumerator_1_t334410285 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1916984356_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Vector3>::get_Current() #define InternalEnumerator_1_get_Current_m1477715453(__this, method) (( Vector3_t3722313464 (*) (InternalEnumerator_1_t334410285 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1477715453_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3537550566(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t334410285 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3537550566_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::Dispose() #define InternalEnumerator_1_Dispose_m2188147046(__this, method) (( void (*) (InternalEnumerator_1_t334410285 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2188147046_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector3>::MoveNext() #define InternalEnumerator_1_MoveNext_m1262906009(__this, method) (( bool (*) (InternalEnumerator_1_t334410285 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1262906009_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::.ctor(System.Array) #define InternalEnumerator_1__ctor_m2307827786(__this, ___array0, method) (( void (*) (InternalEnumerator_1_t4226093054 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2307827786_gshared)(__this, ___array0, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() #define InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1944844050(__this, method) (( void (*) (InternalEnumerator_1_t4226093054 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1944844050_gshared)(__this, method) // T System.Array/InternalEnumerator`1<UnityEngine.Vector4>::get_Current() #define InternalEnumerator_1_get_Current_m2356858238(__this, method) (( Vector4_t3319028937 (*) (InternalEnumerator_1_t4226093054 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2356858238_gshared)(__this, method) // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() #define InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3982010935(__this, method) (( RuntimeObject * (*) (InternalEnumerator_1_t4226093054 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3982010935_gshared)(__this, method) // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::Dispose() #define InternalEnumerator_1_Dispose_m987068791(__this, method) (( void (*) (InternalEnumerator_1_t4226093054 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m987068791_gshared)(__this, method) // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector4>::MoveNext() #define InternalEnumerator_1_MoveNext_m1258813334(__this, method) (( bool (*) (InternalEnumerator_1_t4226093054 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1258813334_gshared)(__this, method) // System.Void System.ArgumentException::.ctor(System.String) extern "C" void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 ___handle0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Activator::CreateInstance(System.Type) extern "C" RuntimeObject * Activator_CreateInstance_m3631483688 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor() extern "C" void ArgumentException__ctor_m3698743796 (ArgumentException_t132251570 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m2150997492(__this, ___dictionary0, method) (( void (*) (Enumerator_t3923002270 *, Dictionary_2_t1968819495 *, const RuntimeMethod*))Enumerator__ctor_m2150997492_gshared)(__this, ___dictionary0, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::VerifyCurrent() #define Enumerator_VerifyCurrent_m2197239943(__this, method) (( void (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_VerifyCurrent_m2197239943_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m2979767597(__this, method) (( RuntimeObject * (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2979767597_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Reset() #define Enumerator_Reset_m1314900927(__this, method) (( void (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_Reset_m1314900927_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m4080198166(__this, method) (( void (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4080198166_gshared)(__this, method) // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() #define KeyValuePair_2_get_Key_m1839753989(__this, method) (( 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() #define KeyValuePair_2_get_Value_m3495598764(__this, method) (( RuntimeObject * (*) (KeyValuePair_2_t71524366 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m3495598764_gshared)(__this, method) // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) extern "C" void DictionaryEntry__ctor_m2585376310 (DictionaryEntry_t3123975638 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m522483686(__this, method) (( DictionaryEntry_t3123975638 (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m522483686_gshared)(__this, method) // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_CurrentKey() #define Enumerator_get_CurrentKey_m2230405065(__this, method) (( int32_t (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_get_CurrentKey_m2230405065_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m195047678(__this, method) (( RuntimeObject * (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m195047678_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_CurrentValue() #define Enumerator_get_CurrentValue_m1016112330(__this, method) (( RuntimeObject * (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_get_CurrentValue_m1016112330_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3325938730(__this, method) (( RuntimeObject * (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3325938730_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::VerifyState() #define Enumerator_VerifyState_m194137655(__this, method) (( void (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_VerifyState_m194137655_gshared)(__this, method) // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) #define KeyValuePair_2__ctor_m2118224448(__this, p0, p1, method) (( void (*) (KeyValuePair_2_t71524366 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m2118224448_gshared)(__this, p0, p1, method) // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() #define Enumerator_MoveNext_m3398155861(__this, method) (( bool (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_MoveNext_m3398155861_gshared)(__this, method) // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() #define Enumerator_get_Current_m3431285658(__this, method) (( KeyValuePair_2_t71524366 (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_get_Current_m3431285658_gshared)(__this, method) // System.Void System.ObjectDisposedException::.ctor(System.String) extern "C" void ObjectDisposedException__ctor_m3603759869 (ObjectDisposedException_t21392786 * __this, String_t* ___objectName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() #define Enumerator_Dispose_m562365603(__this, method) (( void (*) (Enumerator_t3923002270 *, const RuntimeMethod*))Enumerator_Dispose_m562365603_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m1195706188(__this, ___dictionary0, method) (( void (*) (Enumerator_t3398877024 *, Dictionary_2_t1444694249 *, const RuntimeMethod*))Enumerator__ctor_m1195706188_gshared)(__this, ___dictionary0, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::VerifyCurrent() #define Enumerator_VerifyCurrent_m829026141(__this, method) (( void (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_VerifyCurrent_m829026141_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m3816090481(__this, method) (( RuntimeObject * (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3816090481_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Reset() #define Enumerator_Reset_m188913985(__this, method) (( void (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_Reset_m188913985_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m3673734757(__this, method) (( void (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3673734757_gshared)(__this, method) // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() #define KeyValuePair_2_get_Key_m2106922848(__this, method) (( 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() #define KeyValuePair_2_get_Value_m1669764045(__this, method) (( bool (*) (KeyValuePair_2_t3842366416 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1669764045_gshared)(__this, method) // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3249874482(__this, method) (( DictionaryEntry_t3123975638 (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3249874482_gshared)(__this, method) // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_CurrentKey() #define Enumerator_get_CurrentKey_m739604894(__this, method) (( RuntimeObject * (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_get_CurrentKey_m739604894_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2502357460(__this, method) (( RuntimeObject * (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2502357460_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_CurrentValue() #define Enumerator_get_CurrentValue_m90765011(__this, method) (( bool (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_get_CurrentValue_m90765011_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1554573429(__this, method) (( RuntimeObject * (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1554573429_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::VerifyState() #define Enumerator_VerifyState_m4003066746(__this, method) (( void (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_VerifyState_m4003066746_gshared)(__this, method) // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) #define KeyValuePair_2__ctor_m23191374(__this, p0, p1, method) (( void (*) (KeyValuePair_2_t3842366416 *, RuntimeObject *, bool, const RuntimeMethod*))KeyValuePair_2__ctor_m23191374_gshared)(__this, p0, p1, method) // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() #define Enumerator_MoveNext_m481679286(__this, method) (( bool (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_MoveNext_m481679286_gshared)(__this, method) // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() #define Enumerator_get_Current_m3717060936(__this, method) (( KeyValuePair_2_t3842366416 (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_get_Current_m3717060936_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() #define Enumerator_Dispose_m3834169052(__this, method) (( void (*) (Enumerator_t3398877024 *, const RuntimeMethod*))Enumerator_Dispose_m3834169052_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m65667165(__this, ___dictionary0, method) (( void (*) (Enumerator_t1957567516 *, Dictionary_2_t3384741 *, const RuntimeMethod*))Enumerator__ctor_m65667165_gshared)(__this, ___dictionary0, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::VerifyCurrent() #define Enumerator_VerifyCurrent_m3071620407(__this, method) (( void (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_VerifyCurrent_m3071620407_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m1890150222(__this, method) (( RuntimeObject * (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1890150222_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Reset() #define Enumerator_Reset_m2443320674(__this, method) (( void (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_Reset_m2443320674_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m2915047493(__this, method) (( void (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2915047493_gshared)(__this, method) // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() #define KeyValuePair_2_get_Key_m1218836954(__this, method) (( RuntimeObject * (*) (KeyValuePair_2_t2401056908 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1218836954_gshared)(__this, method) // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() #define KeyValuePair_2_get_Value_m755756747(__this, method) (( int32_t (*) (KeyValuePair_2_t2401056908 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m755756747_gshared)(__this, method) // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m859540448(__this, method) (( DictionaryEntry_t3123975638 (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m859540448_gshared)(__this, method) // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_CurrentKey() #define Enumerator_get_CurrentKey_m889650866(__this, method) (( RuntimeObject * (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_get_CurrentKey_m889650866_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4039922590(__this, method) (( RuntimeObject * (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4039922590_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_CurrentValue() #define Enumerator_get_CurrentValue_m3103267885(__this, method) (( int32_t (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_get_CurrentValue_m3103267885_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m684446183(__this, method) (( RuntimeObject * (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m684446183_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::VerifyState() #define Enumerator_VerifyState_m1203790900(__this, method) (( void (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_VerifyState_m1203790900_gshared)(__this, method) // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) #define KeyValuePair_2__ctor_m880186442(__this, p0, p1, method) (( void (*) (KeyValuePair_2_t2401056908 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m880186442_gshared)(__this, p0, p1, method) // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() #define Enumerator_MoveNext_m1556953412(__this, method) (( bool (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_MoveNext_m1556953412_gshared)(__this, method) // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() #define Enumerator_get_Current_m2727535848(__this, method) (( KeyValuePair_2_t2401056908 (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_get_Current_m2727535848_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() #define Enumerator_Dispose_m1360775770(__this, method) (( void (*) (Enumerator_t1957567516 *, const RuntimeMethod*))Enumerator_Dispose_m1360775770_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m1946955878(__this, ___dictionary0, method) (( void (*) (Enumerator_t2086727927 *, Dictionary_2_t132545152 *, const RuntimeMethod*))Enumerator__ctor_m1946955878_gshared)(__this, ___dictionary0, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::VerifyCurrent() #define Enumerator_VerifyCurrent_m93918543(__this, method) (( void (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_VerifyCurrent_m93918543_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m921113401(__this, method) (( RuntimeObject * (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m921113401_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Reset() #define Enumerator_Reset_m1473454555(__this, method) (( void (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_Reset_m1473454555_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m1970353910(__this, method) (( void (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1970353910_gshared)(__this, method) // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() #define KeyValuePair_2_get_Key_m4184817181(__this, method) (( 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() #define KeyValuePair_2_get_Value_m1132502692(__this, method) (( RuntimeObject * (*) (KeyValuePair_2_t2530217319 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1132502692_gshared)(__this, method) // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3417028588(__this, method) (( DictionaryEntry_t3123975638 (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3417028588_gshared)(__this, method) // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_CurrentKey() #define Enumerator_get_CurrentKey_m3735262888(__this, method) (( RuntimeObject * (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_get_CurrentKey_m3735262888_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2500634048(__this, method) (( RuntimeObject * (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2500634048_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_CurrentValue() #define Enumerator_get_CurrentValue_m785745355(__this, method) (( RuntimeObject * (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_get_CurrentValue_m785745355_gshared)(__this, method) // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() #define Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3510383352(__this, method) (( RuntimeObject * (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3510383352_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::VerifyState() #define Enumerator_VerifyState_m2651392036(__this, method) (( void (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_VerifyState_m2651392036_gshared)(__this, method) // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) #define KeyValuePair_2__ctor_m1794021352(__this, p0, p1, method) (( void (*) (KeyValuePair_2_t2530217319 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m1794021352_gshared)(__this, p0, p1, method) // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() #define Enumerator_MoveNext_m1107569389(__this, method) (( bool (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_MoveNext_m1107569389_gshared)(__this, method) // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() #define Enumerator_get_Current_m2198442938(__this, method) (( KeyValuePair_2_t2530217319 (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_get_Current_m2198442938_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() #define Enumerator_Dispose_m3885012575(__this, method) (( void (*) (Enumerator_t2086727927 *, const RuntimeMethod*))Enumerator_Dispose_m3885012575_gshared)(__this, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) #define Transform_1_Invoke_m3750720560(__this, ___key0, ___value1, method) (( DictionaryEntry_t3123975638 (*) (Transform_1_t2448278169 *, int32_t, RuntimeObject *, const RuntimeMethod*))Transform_1_Invoke_m3750720560_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Invoke(TKey,TValue) #define Transform_1_Invoke_m1839683782(__this, ___key0, ___value1, method) (( KeyValuePair_2_t71524366 (*) (Transform_1_t3690794193 *, int32_t, RuntimeObject *, const RuntimeMethod*))Transform_1_Invoke_m1839683782_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object>::Invoke(TKey,TValue) #define Transform_1_Invoke_m4135861535(__this, ___key0, ___value1, method) (( RuntimeObject * (*) (Transform_1_t2404408695 *, int32_t, RuntimeObject *, const RuntimeMethod*))Transform_1_Invoke_m4135861535_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean>::Invoke(TKey,TValue) #define Transform_1_Invoke_m3827729552(__this, ___key0, ___value1, method) (( bool (*) (Transform_1_t1235930838 *, RuntimeObject *, bool, const RuntimeMethod*))Transform_1_Invoke_m3827729552_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) #define Transform_1_Invoke_m1839759353(__this, ___key0, ___value1, method) (( DictionaryEntry_t3123975638 (*) (Transform_1_t4262618511 *, RuntimeObject *, bool, const RuntimeMethod*))Transform_1_Invoke_m1839759353_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Invoke(TKey,TValue) #define Transform_1_Invoke_m2468053724(__this, ___key0, ___value1, method) (( KeyValuePair_2_t3842366416 (*) (Transform_1_t686041993 *, RuntimeObject *, bool, const RuntimeMethod*))Transform_1_Invoke_m2468053724_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) #define Transform_1_Invoke_m2424077850(__this, ___key0, ___value1, method) (( DictionaryEntry_t3123975638 (*) (Transform_1_t1750446691 *, RuntimeObject *, int32_t, const RuntimeMethod*))Transform_1_Invoke_m2424077850_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Invoke(TKey,TValue) #define Transform_1_Invoke_m484886507(__this, ___key0, ___value1, method) (( KeyValuePair_2_t2401056908 (*) (Transform_1_t1027527961 *, RuntimeObject *, int32_t, const RuntimeMethod*))Transform_1_Invoke_m484886507_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32>::Invoke(TKey,TValue) #define Transform_1_Invoke_m561030424(__this, ___key0, ___value1, method) (( int32_t (*) (Transform_1_t1577416806 *, RuntimeObject *, int32_t, const RuntimeMethod*))Transform_1_Invoke_m561030424_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) #define Transform_1_Invoke_m841737656(__this, ___key0, ___value1, method) (( DictionaryEntry_t3123975638 (*) (Transform_1_t4209139644 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Transform_1_Invoke_m841737656_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(TKey,TValue) #define Transform_1_Invoke_m1731820209(__this, ___key0, ___value1, method) (( KeyValuePair_2_t2530217319 (*) (Transform_1_t3615381325 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Transform_1_Invoke_m1731820209_gshared)(__this, ___key0, ___value1, method) // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object>::Invoke(TKey,TValue) #define Transform_1_Invoke_m2986796014(__this, ___key0, ___value1, method) (( RuntimeObject * (*) (Transform_1_t4165270170 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Transform_1_Invoke_m2986796014_gshared)(__this, ___key0, ___value1, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m1849900510(__this, ___host0, method) (( void (*) (Enumerator_t2537713152 *, Dictionary_2_t1968819495 *, const RuntimeMethod*))Enumerator__ctor_m1849900510_gshared)(__this, ___host0, method) // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m1657817602(__this, method) (( RuntimeObject * (*) (Enumerator_t2537713152 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1657817602_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m2917956982(__this, method) (( void (*) (Enumerator_t2537713152 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2917956982_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() #define Enumerator_Dispose_m3503748991(__this, method) (( void (*) (Enumerator_t2537713152 *, const RuntimeMethod*))Enumerator_Dispose_m3503748991_gshared)(__this, method) // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() #define Enumerator_MoveNext_m2602845255(__this, method) (( bool (*) (Enumerator_t2537713152 *, const RuntimeMethod*))Enumerator_MoveNext_m2602845255_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() #define Enumerator_get_Current_m2250080680(__this, method) (( RuntimeObject * (*) (Enumerator_t2537713152 *, const RuntimeMethod*))Enumerator_get_Current_m2250080680_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m1558933899(__this, ___host0, method) (( void (*) (Enumerator_t2013587906 *, Dictionary_2_t1444694249 *, const RuntimeMethod*))Enumerator__ctor_m1558933899_gshared)(__this, ___host0, method) // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m1975949486(__this, method) (( RuntimeObject * (*) (Enumerator_t2013587906 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1975949486_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m53411943(__this, method) (( void (*) (Enumerator_t2013587906 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m53411943_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() #define Enumerator_Dispose_m4166166038(__this, method) (( void (*) (Enumerator_t2013587906 *, const RuntimeMethod*))Enumerator_Dispose_m4166166038_gshared)(__this, method) // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() #define Enumerator_MoveNext_m339600382(__this, method) (( bool (*) (Enumerator_t2013587906 *, const RuntimeMethod*))Enumerator_MoveNext_m339600382_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() #define Enumerator_get_Current_m1908012892(__this, method) (( bool (*) (Enumerator_t2013587906 *, const RuntimeMethod*))Enumerator_get_Current_m1908012892_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m1734342590(__this, ___host0, method) (( void (*) (Enumerator_t572278398 *, Dictionary_2_t3384741 *, const RuntimeMethod*))Enumerator__ctor_m1734342590_gshared)(__this, ___host0, method) // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m1987977288(__this, method) (( RuntimeObject * (*) (Enumerator_t572278398 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1987977288_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m4283504067(__this, method) (( void (*) (Enumerator_t572278398 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4283504067_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() #define Enumerator_Dispose_m3040896940(__this, method) (( void (*) (Enumerator_t572278398 *, const RuntimeMethod*))Enumerator_Dispose_m3040896940_gshared)(__this, method) // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() #define Enumerator_MoveNext_m3045873697(__this, method) (( bool (*) (Enumerator_t572278398 *, const RuntimeMethod*))Enumerator_MoveNext_m3045873697_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() #define Enumerator_get_Current_m926428745(__this, method) (( int32_t (*) (Enumerator_t572278398 *, const RuntimeMethod*))Enumerator_get_Current_m926428745_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) #define Enumerator__ctor_m10850803(__this, ___host0, method) (( void (*) (Enumerator_t701438809 *, Dictionary_2_t132545152 *, const RuntimeMethod*))Enumerator__ctor_m10850803_gshared)(__this, ___host0, method) // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() #define Enumerator_System_Collections_IEnumerator_get_Current_m935000629(__this, method) (( RuntimeObject * (*) (Enumerator_t701438809 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m935000629_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() #define Enumerator_System_Collections_IEnumerator_Reset_m85524874(__this, method) (( void (*) (Enumerator_t701438809 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m85524874_gshared)(__this, method) // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() #define Enumerator_Dispose_m1051275336(__this, method) (( void (*) (Enumerator_t701438809 *, const RuntimeMethod*))Enumerator_Dispose_m1051275336_gshared)(__this, method) // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() #define Enumerator_MoveNext_m181298207(__this, method) (( bool (*) (Enumerator_t701438809 *, const RuntimeMethod*))Enumerator_MoveNext_m181298207_gshared)(__this, method) // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() #define Enumerator_get_Current_m3764936176(__this, method) (( RuntimeObject * (*) (Enumerator_t701438809 *, const RuntimeMethod*))Enumerator_get_Current_m3764936176_gshared)(__this, method) // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.KeyNotFoundException::.ctor() extern "C" void KeyNotFoundException__ctor_m541499307 (KeyNotFoundException_t2292407383 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Hashtable::ToPrime(System.Int32) extern "C" int32_t Hashtable_ToPrime_m33531354 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) extern "C" void Array_Copy_m344457298 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) extern "C" void Array_Clear_m2231608178 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) extern "C" int32_t SerializationInfo_GetInt32_m2640574809 (SerializationInfo_t950877179 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) extern "C" RuntimeObject * SerializationInfo_GetValue_m42271953 (SerializationInfo_t950877179 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String,System.String) extern "C" String_t* String_Concat_m3937257545 (RuntimeObject * __this /* static, unused */, String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor(System.String,System.String) extern "C" void ArgumentException__ctor_m1216717135 (ArgumentException_t132251570 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsValueType() extern "C" bool Type_get_IsValueType_m3108065642 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Action`1<System.Boolean>::.ctor(System.Object,System.IntPtr) extern "C" void Action_1__ctor_m2677842846_gshared (Action_1_t269755560 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Action`1<System.Boolean>::Invoke(T) extern "C" void Action_1_Invoke_m2492370395_gshared (Action_1_t269755560 * __this, bool ___obj0, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { Action_1_Invoke_m2492370395((Action_1_t269755560 *)__this->get_prev_9(), ___obj0, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 1) { // open { typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod); } } else { // closed { typedef void (*FunctionPointerType) (RuntimeObject *, void*, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod); } } } else { { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___obj0); else GenericVirtActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } // System.IAsyncResult System.Action`1<System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Action_1_BeginInvoke_m1817882028_gshared (Action_1_t269755560 * __this, bool ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m1817882028_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Void System.Action`1<System.Boolean>::EndInvoke(System.IAsyncResult) extern "C" void Action_1_EndInvoke_m4173505031_gshared (Action_1_t269755560 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) extern "C" void Action_1__ctor_m118522912_gshared (Action_1_t3252573759 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Action`1<System.Object>::Invoke(T) extern "C" void Action_1_Invoke_m2461023210_gshared (Action_1_t3252573759 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { Action_1_Invoke_m2461023210((Action_1_t3252573759 *)__this->get_prev_9(), ___obj0, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 1) { // open { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod); } } else { // closed { typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 1) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0); else GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, ___obj0); else GenericVirtActionInvoker0::Invoke(targetMethod, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___obj0); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___obj0); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } } } } // System.IAsyncResult System.Action`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Action_1_BeginInvoke_m2344209729_gshared (Action_1_t3252573759 * __this, RuntimeObject * ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___obj0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Void System.Action`1<System.Object>::EndInvoke(System.IAsyncResult) extern "C" void Action_1_EndInvoke_m2989437122_gshared (Action_1_t3252573759 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::.ctor(System.Object,System.IntPtr) extern "C" void Action_3__ctor_m3820700807_gshared (Action_3_t3050575418 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::Invoke(T1,T2,T3) extern "C" void Action_3_Invoke_m313705495_gshared (Action_3_t3050575418 * __this, bool ___arg10, bool ___arg21, int32_t ___arg32, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { Action_3_Invoke_m313705495((Action_3_t3050575418 *)__this->get_prev_9(), ___arg10, ___arg21, ___arg32, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 3) { // open { typedef void (*FunctionPointerType) (RuntimeObject *, bool, bool, int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, ___arg10, ___arg21, ___arg32, targetMethod); } } else { // closed { typedef void (*FunctionPointerType) (RuntimeObject *, void*, bool, bool, int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg10, ___arg21, ___arg32, targetMethod); } } } else { { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker3< bool, bool, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32); else GenericVirtActionInvoker3< bool, bool, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker3< bool, bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21, ___arg32); else VirtActionInvoker3< bool, bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21, ___arg32); } } else { typedef void (*FunctionPointerType) (void*, bool, bool, int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, ___arg32, targetMethod); } } } } // System.IAsyncResult System.Action`3<System.Boolean,System.Boolean,System.Int32>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Action_3_BeginInvoke_m2540562525_gshared (Action_3_t3050575418 * __this, bool ___arg10, bool ___arg21, int32_t ___arg32, AsyncCallback_t3962456242 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Action_3_BeginInvoke_m2540562525_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[4] = {0}; __d_args[0] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___arg10); __d_args[1] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___arg21); __d_args[2] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___arg32); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4); } // System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::EndInvoke(System.IAsyncResult) extern "C" void Action_3_EndInvoke_m1074866110_gshared (Action_3_t3050575418 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Action`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) extern "C" void Action_3__ctor_m967275408_gshared (Action_3_t3632554945 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) extern "C" void Action_3_Invoke_m1376317295_gshared (Action_3_t3632554945 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, RuntimeObject * ___arg32, const RuntimeMethod* method) { if(__this->get_prev_9() != NULL) { Action_3_Invoke_m1376317295((Action_3_t3632554945 *)__this->get_prev_9(), ___arg10, ___arg21, ___arg32, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 3) { // open { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, ___arg10, ___arg21, ___arg32, targetMethod); } } else { // closed { typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg10, ___arg21, ___arg32, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 3) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32); else GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21, ___arg32); else VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21, ___arg32); } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, ___arg32, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg10, ___arg21, ___arg32); else GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg10, ___arg21, ___arg32); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg10, ___arg21, ___arg32); else VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg10, ___arg21, ___arg32); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, ___arg32, targetMethod); } } } } // System.IAsyncResult System.Action`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Action_3_BeginInvoke_m222978689_gshared (Action_3_t3632554945 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, RuntimeObject * ___arg32, AsyncCallback_t3962456242 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method) { void *__d_args[4] = {0}; __d_args[0] = ___arg10; __d_args[1] = ___arg21; __d_args[2] = ___arg32; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4); } // System.Void System.Action`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) extern "C" void Action_3_EndInvoke_m1410110426_gshared (Action_3_t3632554945 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::.ctor() extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m3091529227_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::System.Collections.Generic.IEnumerator<T>.get_Current() extern "C" RuntimeObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m9057020_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U24current_2(); return L_0; } } // System.Object System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m3208659014_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U24current_2(); return L_0; } } // System.Boolean System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::MoveNext() extern "C" bool U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m4047948264_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * __this, const RuntimeMethod* method) { uint32_t V_0 = 0; bool V_1 = false; { int32_t L_0 = (int32_t)__this->get_U24PC_1(); V_0 = (uint32_t)L_0; __this->set_U24PC_1((-1)); uint32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_0021; } case 1: { goto IL_0055; } } } { goto IL_0082; } IL_0021: { __this->set_U3CiU3E__0_0(0); goto IL_0063; } IL_002d: { ArrayReadOnlyList_1_t4270623997 * L_2 = (ArrayReadOnlyList_1_t4270623997 *)__this->get_U3CU3Ef__this_3(); ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)L_2->get_array_0(); int32_t L_4 = (int32_t)__this->get_U3CiU3E__0_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); __this->set_U24current_2(L_6); __this->set_U24PC_1(1); goto IL_0084; } IL_0055: { int32_t L_7 = (int32_t)__this->get_U3CiU3E__0_0(); __this->set_U3CiU3E__0_0(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); } IL_0063: { int32_t L_8 = (int32_t)__this->get_U3CiU3E__0_0(); ArrayReadOnlyList_1_t4270623997 * L_9 = (ArrayReadOnlyList_1_t4270623997 *)__this->get_U3CU3Ef__this_3(); ObjectU5BU5D_t2843939325* L_10 = (ObjectU5BU5D_t2843939325*)L_9->get_array_0(); if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_002d; } } { __this->set_U24PC_1((-1)); } IL_0082: { return (bool)0; } IL_0084: { return (bool)1; } // Dead block : IL_0086: ldloc.1 } // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::Dispose() extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m503464442_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * __this, const RuntimeMethod* method) { { __this->set_U24PC_1((-1)); return; } } // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::Reset() extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m3837913694_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ec__Iterator0_Reset_m3837913694_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CGetEnumeratorU3Ec__Iterator0_Reset_m3837913694_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::.ctor() extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m3941491744_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IEnumerator<T>.get_Current() extern "C" CustomAttributeNamedArgument_t287865710 U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m52354244_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * __this, const RuntimeMethod* method) { { CustomAttributeNamedArgument_t287865710 L_0 = (CustomAttributeNamedArgument_t287865710 )__this->get_U24current_2(); return L_0; } } // System.Object System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m1580332103_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * __this, const RuntimeMethod* method) { { CustomAttributeNamedArgument_t287865710 L_0 = (CustomAttributeNamedArgument_t287865710 )__this->get_U24current_2(); CustomAttributeNamedArgument_t287865710 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_1); return L_2; } } // System.Boolean System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::MoveNext() extern "C" bool U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m1358891892_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * __this, const RuntimeMethod* method) { uint32_t V_0 = 0; bool V_1 = false; { int32_t L_0 = (int32_t)__this->get_U24PC_1(); V_0 = (uint32_t)L_0; __this->set_U24PC_1((-1)); uint32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_0021; } case 1: { goto IL_0055; } } } { goto IL_0082; } IL_0021: { __this->set_U3CiU3E__0_0(0); goto IL_0063; } IL_002d: { ArrayReadOnlyList_1_t1478383543 * L_2 = (ArrayReadOnlyList_1_t1478383543 *)__this->get_U3CU3Ef__this_3(); CustomAttributeNamedArgumentU5BU5D_t3710464795* L_3 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)L_2->get_array_0(); int32_t L_4 = (int32_t)__this->get_U3CiU3E__0_0(); int32_t L_5 = L_4; CustomAttributeNamedArgument_t287865710 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); __this->set_U24current_2(L_6); __this->set_U24PC_1(1); goto IL_0084; } IL_0055: { int32_t L_7 = (int32_t)__this->get_U3CiU3E__0_0(); __this->set_U3CiU3E__0_0(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); } IL_0063: { int32_t L_8 = (int32_t)__this->get_U3CiU3E__0_0(); ArrayReadOnlyList_1_t1478383543 * L_9 = (ArrayReadOnlyList_1_t1478383543 *)__this->get_U3CU3Ef__this_3(); CustomAttributeNamedArgumentU5BU5D_t3710464795* L_10 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)L_9->get_array_0(); if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_002d; } } { __this->set_U24PC_1((-1)); } IL_0082: { return (bool)0; } IL_0084: { return (bool)1; } // Dead block : IL_0086: ldloc.1 } // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::Dispose() extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m1800277885_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * __this, const RuntimeMethod* method) { { __this->set_U24PC_1((-1)); return; } } // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::Reset() extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m2500457056_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ec__Iterator0_Reset_m2500457056_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CGetEnumeratorU3Ec__Iterator0_Reset_m2500457056_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::.ctor() extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m1150758267_gshared (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IEnumerator<T>.get_Current() extern "C" CustomAttributeTypedArgument_t2723150157 U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m1566629109_gshared (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * __this, const RuntimeMethod* method) { { CustomAttributeTypedArgument_t2723150157 L_0 = (CustomAttributeTypedArgument_t2723150157 )__this->get_U24current_2(); return L_0; } } // System.Object System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m283764921_gshared (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * __this, const RuntimeMethod* method) { { CustomAttributeTypedArgument_t2723150157 L_0 = (CustomAttributeTypedArgument_t2723150157 )__this->get_U24current_2(); CustomAttributeTypedArgument_t2723150157 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_1); return L_2; } } // System.Boolean System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::MoveNext() extern "C" bool U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m1185613002_gshared (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * __this, const RuntimeMethod* method) { uint32_t V_0 = 0; bool V_1 = false; { int32_t L_0 = (int32_t)__this->get_U24PC_1(); V_0 = (uint32_t)L_0; __this->set_U24PC_1((-1)); uint32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_0021; } case 1: { goto IL_0055; } } } { goto IL_0082; } IL_0021: { __this->set_U3CiU3E__0_0(0); goto IL_0063; } IL_002d: { ArrayReadOnlyList_1_t3913667990 * L_2 = (ArrayReadOnlyList_1_t3913667990 *)__this->get_U3CU3Ef__this_3(); CustomAttributeTypedArgumentU5BU5D_t1465843424* L_3 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)L_2->get_array_0(); int32_t L_4 = (int32_t)__this->get_U3CiU3E__0_0(); int32_t L_5 = L_4; CustomAttributeTypedArgument_t2723150157 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); __this->set_U24current_2(L_6); __this->set_U24PC_1(1); goto IL_0084; } IL_0055: { int32_t L_7 = (int32_t)__this->get_U3CiU3E__0_0(); __this->set_U3CiU3E__0_0(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); } IL_0063: { int32_t L_8 = (int32_t)__this->get_U3CiU3E__0_0(); ArrayReadOnlyList_1_t3913667990 * L_9 = (ArrayReadOnlyList_1_t3913667990 *)__this->get_U3CU3Ef__this_3(); CustomAttributeTypedArgumentU5BU5D_t1465843424* L_10 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)L_9->get_array_0(); if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_002d; } } { __this->set_U24PC_1((-1)); } IL_0082: { return (bool)0; } IL_0084: { return (bool)1; } // Dead block : IL_0086: ldloc.1 } // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::Dispose() extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m3298287955_gshared (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * __this, const RuntimeMethod* method) { { __this->set_U24PC_1((-1)); return; } } // System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::Reset() extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m1192421843_gshared (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ec__Iterator0_Reset_m1192421843_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CGetEnumeratorU3Ec__Iterator0_Reset_m1192421843_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::.ctor(T[]) extern "C" void ArrayReadOnlyList_1__ctor_m3411930943_gshared (ArrayReadOnlyList_1_t4270623997 * __this, ObjectU5BU5D_t2843939325* ___array0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_0 = ___array0; __this->set_array_0(L_0); return; } } // System.Collections.IEnumerator System.Array/ArrayReadOnlyList`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m1042758841_gshared (ArrayReadOnlyList_1_t4270623997 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (( RuntimeObject* (*) (ArrayReadOnlyList_1_t4270623997 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((ArrayReadOnlyList_1_t4270623997 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_0; } } // T System.Array/ArrayReadOnlyList`1<System.Object>::get_Item(System.Int32) extern "C" RuntimeObject * ArrayReadOnlyList_1_get_Item_m2988101436_gshared (ArrayReadOnlyList_1_t4270623997 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_get_Item_m2988101436_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get_array_0(); if ((!(((uint32_t)L_0) >= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0019; } } { ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, ArrayReadOnlyList_1_get_Item_m2988101436_RuntimeMethod_var); } IL_0019: { ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)__this->get_array_0(); int32_t L_4 = ___index0; int32_t L_5 = L_4; RuntimeObject * L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); return L_6; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::set_Item(System.Int32,T) extern "C" void ArrayReadOnlyList_1_set_Item_m2916695038_gshared (ArrayReadOnlyList_1_t4270623997 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_set_Item_m2916695038_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_set_Item_m2916695038_RuntimeMethod_var); } } // System.Int32 System.Array/ArrayReadOnlyList`1<System.Object>::get_Count() extern "C" int32_t ArrayReadOnlyList_1_get_Count_m3450004702_gshared (ArrayReadOnlyList_1_t4270623997 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_array_0(); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Object>::get_IsReadOnly() extern "C" bool ArrayReadOnlyList_1_get_IsReadOnly_m1365711605_gshared (ArrayReadOnlyList_1_t4270623997 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::Add(T) extern "C" void ArrayReadOnlyList_1_Add_m899240452_gshared (ArrayReadOnlyList_1_t4270623997 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Add_m899240452_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Add_m899240452_RuntimeMethod_var); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::Clear() extern "C" void ArrayReadOnlyList_1_Clear_m2564101847_gshared (ArrayReadOnlyList_1_t4270623997 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Clear_m2564101847_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Clear_m2564101847_RuntimeMethod_var); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Object>::Contains(T) extern "C" bool ArrayReadOnlyList_1_Contains_m381552673_gshared (ArrayReadOnlyList_1_t4270623997 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_array_0(); RuntimeObject * L_1 = ___item0; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::CopyTo(T[],System.Int32) extern "C" void ArrayReadOnlyList_1_CopyTo_m544662236_gshared (ArrayReadOnlyList_1_t4270623997 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_array_0(); ObjectU5BU5D_t2843939325* L_1 = ___array0; int32_t L_2 = ___index1; Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/NULL); return; } } // System.Collections.Generic.IEnumerator`1<T> System.Array/ArrayReadOnlyList`1<System.Object>::GetEnumerator() extern "C" RuntimeObject* ArrayReadOnlyList_1_GetEnumerator_m1835926958_gshared (ArrayReadOnlyList_1_t4270623997 * __this, const RuntimeMethod* method) { U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * V_0 = NULL; { U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * L_0 = (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (U3CGetEnumeratorU3Ec__Iterator0_t4107749331 *)L_0; U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * L_1 = V_0; L_1->set_U3CU3Ef__this_3(__this); U3CGetEnumeratorU3Ec__Iterator0_t4107749331 * L_2 = V_0; return L_2; } } // System.Int32 System.Array/ArrayReadOnlyList`1<System.Object>::IndexOf(T) extern "C" int32_t ArrayReadOnlyList_1_IndexOf_m562338247_gshared (ArrayReadOnlyList_1_t4270623997 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_array_0(); RuntimeObject * L_1 = ___item0; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::Insert(System.Int32,T) extern "C" void ArrayReadOnlyList_1_Insert_m1827843425_gshared (ArrayReadOnlyList_1_t4270623997 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Insert_m1827843425_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Insert_m1827843425_RuntimeMethod_var); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Object>::Remove(T) extern "C" bool ArrayReadOnlyList_1_Remove_m1724926862_gshared (ArrayReadOnlyList_1_t4270623997 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Remove_m1724926862_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Remove_m1724926862_RuntimeMethod_var); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Object>::RemoveAt(System.Int32) extern "C" void ArrayReadOnlyList_1_RemoveAt_m2104218585_gshared (ArrayReadOnlyList_1_t4270623997 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_RemoveAt_m2104218585_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_RemoveAt_m2104218585_RuntimeMethod_var); } } // System.Exception System.Array/ArrayReadOnlyList`1<System.Object>::ReadOnlyError() extern "C" Exception_t * ArrayReadOnlyList_1_ReadOnlyError_m1047641207_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_ReadOnlyError_m1047641207_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3853944826, /*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(T[]) extern "C" void ArrayReadOnlyList_1__ctor_m2942507207_gshared (ArrayReadOnlyList_1_t1478383543 * __this, CustomAttributeNamedArgumentU5BU5D_t3710464795* ___array0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); CustomAttributeNamedArgumentU5BU5D_t3710464795* L_0 = ___array0; __this->set_array_0(L_0); return; } } // System.Collections.IEnumerator System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3164285357_gshared (ArrayReadOnlyList_1_t1478383543 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (( RuntimeObject* (*) (ArrayReadOnlyList_1_t1478383543 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((ArrayReadOnlyList_1_t1478383543 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_0; } } // T System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) extern "C" CustomAttributeNamedArgument_t287865710 ArrayReadOnlyList_1_get_Item_m1974867852_gshared (ArrayReadOnlyList_1_t1478383543 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_get_Item_m1974867852_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; CustomAttributeNamedArgumentU5BU5D_t3710464795* L_1 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)__this->get_array_0(); if ((!(((uint32_t)L_0) >= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0019; } } { ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, ArrayReadOnlyList_1_get_Item_m1974867852_RuntimeMethod_var); } IL_0019: { CustomAttributeNamedArgumentU5BU5D_t3710464795* L_3 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)__this->get_array_0(); int32_t L_4 = ___index0; int32_t L_5 = L_4; CustomAttributeNamedArgument_t287865710 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); return L_6; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::set_Item(System.Int32,T) extern "C" void ArrayReadOnlyList_1_set_Item_m1428008044_gshared (ArrayReadOnlyList_1_t1478383543 * __this, int32_t ___index0, CustomAttributeNamedArgument_t287865710 ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_set_Item_m1428008044_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_set_Item_m1428008044_RuntimeMethod_var); } } // System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() extern "C" int32_t ArrayReadOnlyList_1_get_Count_m2463504623_gshared (ArrayReadOnlyList_1_t1478383543 * __this, const RuntimeMethod* method) { { CustomAttributeNamedArgumentU5BU5D_t3710464795* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)__this->get_array_0(); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::get_IsReadOnly() extern "C" bool ArrayReadOnlyList_1_get_IsReadOnly_m2046554184_gshared (ArrayReadOnlyList_1_t1478383543 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Add(T) extern "C" void ArrayReadOnlyList_1_Add_m3112646016_gshared (ArrayReadOnlyList_1_t1478383543 * __this, CustomAttributeNamedArgument_t287865710 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Add_m3112646016_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Add_m3112646016_RuntimeMethod_var); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Clear() extern "C" void ArrayReadOnlyList_1_Clear_m638462730_gshared (ArrayReadOnlyList_1_t1478383543 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Clear_m638462730_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Clear_m638462730_RuntimeMethod_var); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T) extern "C" bool ArrayReadOnlyList_1_Contains_m232667507_gshared (ArrayReadOnlyList_1_t1478383543 * __this, CustomAttributeNamedArgument_t287865710 ___item0, const RuntimeMethod* method) { { CustomAttributeNamedArgumentU5BU5D_t3710464795* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)__this->get_array_0(); CustomAttributeNamedArgument_t287865710 L_1 = ___item0; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3710464795*, CustomAttributeNamedArgument_t287865710 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeNamedArgumentU5BU5D_t3710464795*)L_0, (CustomAttributeNamedArgument_t287865710 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) extern "C" void ArrayReadOnlyList_1_CopyTo_m1127871639_gshared (ArrayReadOnlyList_1_t1478383543 * __this, CustomAttributeNamedArgumentU5BU5D_t3710464795* ___array0, int32_t ___index1, const RuntimeMethod* method) { { CustomAttributeNamedArgumentU5BU5D_t3710464795* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)__this->get_array_0(); CustomAttributeNamedArgumentU5BU5D_t3710464795* L_1 = ___array0; int32_t L_2 = ___index1; Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/NULL); return; } } // System.Collections.Generic.IEnumerator`1<T> System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator() extern "C" RuntimeObject* ArrayReadOnlyList_1_GetEnumerator_m3931906247_gshared (ArrayReadOnlyList_1_t1478383543 * __this, const RuntimeMethod* method) { U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * V_0 = NULL; { U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * L_0 = (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (U3CGetEnumeratorU3Ec__Iterator0_t1315508877 *)L_0; U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * L_1 = V_0; L_1->set_U3CU3Ef__this_3(__this); U3CGetEnumeratorU3Ec__Iterator0_t1315508877 * L_2 = V_0; return L_2; } } // System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T) extern "C" int32_t ArrayReadOnlyList_1_IndexOf_m1911574180_gshared (ArrayReadOnlyList_1_t1478383543 * __this, CustomAttributeNamedArgument_t287865710 ___item0, const RuntimeMethod* method) { { CustomAttributeNamedArgumentU5BU5D_t3710464795* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)__this->get_array_0(); CustomAttributeNamedArgument_t287865710 L_1 = ___item0; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3710464795*, CustomAttributeNamedArgument_t287865710 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeNamedArgumentU5BU5D_t3710464795*)L_0, (CustomAttributeNamedArgument_t287865710 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Insert(System.Int32,T) extern "C" void ArrayReadOnlyList_1_Insert_m587555490_gshared (ArrayReadOnlyList_1_t1478383543 * __this, int32_t ___index0, CustomAttributeNamedArgument_t287865710 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Insert_m587555490_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Insert_m587555490_RuntimeMethod_var); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Remove(T) extern "C" bool ArrayReadOnlyList_1_Remove_m439579722_gshared (ArrayReadOnlyList_1_t1478383543 * __this, CustomAttributeNamedArgument_t287865710 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Remove_m439579722_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Remove_m439579722_RuntimeMethod_var); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::RemoveAt(System.Int32) extern "C" void ArrayReadOnlyList_1_RemoveAt_m3226254084_gshared (ArrayReadOnlyList_1_t1478383543 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_RemoveAt_m3226254084_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_RemoveAt_m3226254084_RuntimeMethod_var); } } // System.Exception System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::ReadOnlyError() extern "C" Exception_t * ArrayReadOnlyList_1_ReadOnlyError_m3555240367_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_ReadOnlyError_m3555240367_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3853944826, /*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(T[]) extern "C" void ArrayReadOnlyList_1__ctor_m556992429_gshared (ArrayReadOnlyList_1_t3913667990 * __this, CustomAttributeTypedArgumentU5BU5D_t1465843424* ___array0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); CustomAttributeTypedArgumentU5BU5D_t1465843424* L_0 = ___array0; __this->set_array_0(L_0); return; } } // System.Collections.IEnumerator System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m1143471103_gshared (ArrayReadOnlyList_1_t3913667990 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (( RuntimeObject* (*) (ArrayReadOnlyList_1_t3913667990 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((ArrayReadOnlyList_1_t3913667990 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_0; } } // T System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) extern "C" CustomAttributeTypedArgument_t2723150157 ArrayReadOnlyList_1_get_Item_m4135188594_gshared (ArrayReadOnlyList_1_t3913667990 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_get_Item_m4135188594_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; CustomAttributeTypedArgumentU5BU5D_t1465843424* L_1 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)__this->get_array_0(); if ((!(((uint32_t)L_0) >= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0019; } } { ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, ArrayReadOnlyList_1_get_Item_m4135188594_RuntimeMethod_var); } IL_0019: { CustomAttributeTypedArgumentU5BU5D_t1465843424* L_3 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)__this->get_array_0(); int32_t L_4 = ___index0; int32_t L_5 = L_4; CustomAttributeTypedArgument_t2723150157 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); return L_6; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::set_Item(System.Int32,T) extern "C" void ArrayReadOnlyList_1_set_Item_m3769996290_gshared (ArrayReadOnlyList_1_t3913667990 * __this, int32_t ___index0, CustomAttributeTypedArgument_t2723150157 ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_set_Item_m3769996290_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_set_Item_m3769996290_RuntimeMethod_var); } } // System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() extern "C" int32_t ArrayReadOnlyList_1_get_Count_m2924672952_gshared (ArrayReadOnlyList_1_t3913667990 * __this, const RuntimeMethod* method) { { CustomAttributeTypedArgumentU5BU5D_t1465843424* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)__this->get_array_0(); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::get_IsReadOnly() extern "C" bool ArrayReadOnlyList_1_get_IsReadOnly_m467578319_gshared (ArrayReadOnlyList_1_t3913667990 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Add(T) extern "C" void ArrayReadOnlyList_1_Add_m302584359_gshared (ArrayReadOnlyList_1_t3913667990 * __this, CustomAttributeTypedArgument_t2723150157 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Add_m302584359_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Add_m302584359_RuntimeMethod_var); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Clear() extern "C" void ArrayReadOnlyList_1_Clear_m337906083_gshared (ArrayReadOnlyList_1_t3913667990 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Clear_m337906083_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Clear_m337906083_RuntimeMethod_var); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T) extern "C" bool ArrayReadOnlyList_1_Contains_m2459654648_gshared (ArrayReadOnlyList_1_t3913667990 * __this, CustomAttributeTypedArgument_t2723150157 ___item0, const RuntimeMethod* method) { { CustomAttributeTypedArgumentU5BU5D_t1465843424* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)__this->get_array_0(); CustomAttributeTypedArgument_t2723150157 L_1 = ___item0; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1465843424*, CustomAttributeTypedArgument_t2723150157 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeTypedArgumentU5BU5D_t1465843424*)L_0, (CustomAttributeTypedArgument_t2723150157 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) extern "C" void ArrayReadOnlyList_1_CopyTo_m1534406454_gshared (ArrayReadOnlyList_1_t3913667990 * __this, CustomAttributeTypedArgumentU5BU5D_t1465843424* ___array0, int32_t ___index1, const RuntimeMethod* method) { { CustomAttributeTypedArgumentU5BU5D_t1465843424* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)__this->get_array_0(); CustomAttributeTypedArgumentU5BU5D_t1465843424* L_1 = ___array0; int32_t L_2 = ___index1; Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/NULL); return; } } // System.Collections.Generic.IEnumerator`1<T> System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator() extern "C" RuntimeObject* ArrayReadOnlyList_1_GetEnumerator_m3297894971_gshared (ArrayReadOnlyList_1_t3913667990 * __this, const RuntimeMethod* method) { U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * V_0 = NULL; { U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * L_0 = (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (U3CGetEnumeratorU3Ec__Iterator0_t3750793324 *)L_0; U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * L_1 = V_0; L_1->set_U3CU3Ef__this_3(__this); U3CGetEnumeratorU3Ec__Iterator0_t3750793324 * L_2 = V_0; return L_2; } } // System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T) extern "C" int32_t ArrayReadOnlyList_1_IndexOf_m3750264679_gshared (ArrayReadOnlyList_1_t3913667990 * __this, CustomAttributeTypedArgument_t2723150157 ___item0, const RuntimeMethod* method) { { CustomAttributeTypedArgumentU5BU5D_t1465843424* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)__this->get_array_0(); CustomAttributeTypedArgument_t2723150157 L_1 = ___item0; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1465843424*, CustomAttributeTypedArgument_t2723150157 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeTypedArgumentU5BU5D_t1465843424*)L_0, (CustomAttributeTypedArgument_t2723150157 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Insert(System.Int32,T) extern "C" void ArrayReadOnlyList_1_Insert_m2929789526_gshared (ArrayReadOnlyList_1_t3913667990 * __this, int32_t ___index0, CustomAttributeTypedArgument_t2723150157 ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Insert_m2929789526_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Insert_m2929789526_RuntimeMethod_var); } } // System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Remove(T) extern "C" bool ArrayReadOnlyList_1_Remove_m1443718646_gshared (ArrayReadOnlyList_1_t3913667990 * __this, CustomAttributeTypedArgument_t2723150157 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_Remove_m1443718646_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_Remove_m1443718646_RuntimeMethod_var); } } // System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::RemoveAt(System.Int32) extern "C" void ArrayReadOnlyList_1_RemoveAt_m791018368_gshared (ArrayReadOnlyList_1_t3913667990 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_RemoveAt_m791018368_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t * L_0 = (( Exception_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ArrayReadOnlyList_1_RemoveAt_m791018368_RuntimeMethod_var); } } // System.Exception System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::ReadOnlyError() extern "C" Exception_t * ArrayReadOnlyList_1_ReadOnlyError_m865416608_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_ReadOnlyError_m865416608_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3853944826, /*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m570303774_gshared (InternalEnumerator_1_t3187041620 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m570303774_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3187041620 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3187041620 *>(__this + 1); InternalEnumerator_1__ctor_m570303774(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m540198272_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m540198272_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3187041620 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3187041620 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m540198272(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<Global/FruitType>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3632739276_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method) { { int32_t L_0 = InternalEnumerator_1_get_Current_m153299075((InternalEnumerator_1_t3187041620 *)(InternalEnumerator_1_t3187041620 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3632739276_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3187041620 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3187041620 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3632739276(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<Global/FruitType>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3848948756_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3848948756_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3187041620 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3187041620 *>(__this + 1); InternalEnumerator_1_Dispose_m3848948756(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<Global/FruitType>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3894213929_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3894213929_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3187041620 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3187041620 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3894213929(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<Global/FruitType>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m153299075_gshared (InternalEnumerator_1_t3187041620 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m153299075_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m153299075_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m153299075_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int32_t L_8 = (( int32_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int32_t InternalEnumerator_1_get_Current_m153299075_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3187041620 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3187041620 *>(__this + 1); return InternalEnumerator_1_get_Current_m153299075(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1359891754_gshared (InternalEnumerator_1_t4239932009 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1359891754_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t4239932009 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4239932009 *>(__this + 1); InternalEnumerator_1__ctor_m1359891754(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m81420524_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m81420524_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4239932009 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4239932009 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m81420524(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2980550840_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method) { { TableRange_t3332867892 L_0 = InternalEnumerator_1_get_Current_m4245242303((InternalEnumerator_1_t4239932009 *)(InternalEnumerator_1_t4239932009 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); TableRange_t3332867892 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2980550840_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4239932009 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4239932009 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2980550840(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m33109155_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m33109155_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4239932009 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4239932009 *>(__this + 1); InternalEnumerator_1_Dispose_m33109155(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4138845038_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m4138845038_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4239932009 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4239932009 *>(__this + 1); return InternalEnumerator_1_MoveNext_m4138845038(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() extern "C" TableRange_t3332867892 InternalEnumerator_1_get_Current_m4245242303_gshared (InternalEnumerator_1_t4239932009 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4245242303_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m4245242303_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m4245242303_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); TableRange_t3332867892 L_8 = (( TableRange_t3332867892 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" TableRange_t3332867892 InternalEnumerator_1_get_Current_m4245242303_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4239932009 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4239932009 *>(__this + 1); return InternalEnumerator_1_get_Current_m4245242303(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3734861738_gshared (InternalEnumerator_1_t1911769025 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3734861738_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1911769025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1911769025 *>(__this + 1); InternalEnumerator_1__ctor_m3734861738(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2707779927_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2707779927_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1911769025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1911769025 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2707779927(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55999184_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method) { { int32_t L_0 = InternalEnumerator_1_get_Current_m1708547365((InternalEnumerator_1_t1911769025 *)(InternalEnumerator_1_t1911769025 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55999184_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1911769025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1911769025 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55999184(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2447779733_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2447779733_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1911769025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1911769025 *>(__this + 1); InternalEnumerator_1_Dispose_m2447779733(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2850975202_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2850975202_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1911769025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1911769025 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2850975202(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m1708547365_gshared (InternalEnumerator_1_t1911769025 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1708547365_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1708547365_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1708547365_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int32_t L_8 = (( int32_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int32_t InternalEnumerator_1_get_Current_m1708547365_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1911769025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1911769025 *>(__this + 1); return InternalEnumerator_1_get_Current_m1708547365(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3349908318_gshared (InternalEnumerator_1_t1004352082 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3349908318_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1004352082 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1004352082 *>(__this + 1); InternalEnumerator_1__ctor_m3349908318(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m903423974_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m903423974_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1004352082 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1004352082 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m903423974(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1503522504_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method) { { bool L_0 = InternalEnumerator_1_get_Current_m2100201398((InternalEnumerator_1_t1004352082 *)(InternalEnumerator_1_t1004352082 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); bool L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1503522504_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1004352082 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1004352082 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1503522504(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2018798800_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2018798800_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1004352082 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1004352082 *>(__this + 1); InternalEnumerator_1_Dispose_m2018798800(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m154749640_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m154749640_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1004352082 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1004352082 *>(__this + 1); return InternalEnumerator_1_MoveNext_m154749640(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Boolean>::get_Current() extern "C" bool InternalEnumerator_1_get_Current_m2100201398_gshared (InternalEnumerator_1_t1004352082 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2100201398_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2100201398_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2100201398_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); bool L_8 = (( bool (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" bool InternalEnumerator_1_get_Current_m2100201398_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1004352082 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1004352082 *>(__this + 1); return InternalEnumerator_1_get_Current_m2100201398(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4191108945_gshared (InternalEnumerator_1_t2041360493 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m4191108945_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2041360493 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2041360493 *>(__this + 1); InternalEnumerator_1__ctor_m4191108945(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3327951435_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3327951435_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2041360493 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2041360493 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3327951435(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1277470738_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method) { { uint8_t L_0 = InternalEnumerator_1_get_Current_m3073360606((InternalEnumerator_1_t2041360493 *)(InternalEnumerator_1_t2041360493 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint8_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1277470738_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2041360493 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2041360493 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1277470738(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3493290831_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3493290831_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2041360493 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2041360493 *>(__this + 1); InternalEnumerator_1_Dispose_m3493290831(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m123458112_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m123458112_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2041360493 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2041360493 *>(__this + 1); return InternalEnumerator_1_MoveNext_m123458112(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Byte>::get_Current() extern "C" uint8_t InternalEnumerator_1_get_Current_m3073360606_gshared (InternalEnumerator_1_t2041360493 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3073360606_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3073360606_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3073360606_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); uint8_t L_8 = (( uint8_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" uint8_t InternalEnumerator_1_get_Current_m3073360606_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2041360493 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2041360493 *>(__this + 1); return InternalEnumerator_1_get_Current_m3073360606(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2123683127_gshared (InternalEnumerator_1_t246557291 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2123683127_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t246557291 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246557291 *>(__this + 1); InternalEnumerator_1__ctor_m2123683127(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2793870849_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2793870849_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t246557291 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246557291 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2793870849(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1641466962_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = InternalEnumerator_1_get_Current_m1945804797((InternalEnumerator_1_t246557291 *)(InternalEnumerator_1_t246557291 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Il2CppChar L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1641466962_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t246557291 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246557291 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1641466962(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m881342307_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m881342307_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t246557291 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246557291 *>(__this + 1); InternalEnumerator_1_Dispose_m881342307(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1909384544_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1909384544_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t246557291 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246557291 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1909384544(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Char>::get_Current() extern "C" Il2CppChar InternalEnumerator_1_get_Current_m1945804797_gshared (InternalEnumerator_1_t246557291 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1945804797_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1945804797_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1945804797_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Il2CppChar L_8 = (( Il2CppChar (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Il2CppChar InternalEnumerator_1_get_Current_m1945804797_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t246557291 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246557291 *>(__this + 1); return InternalEnumerator_1_get_Current_m1945804797(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2336656763_gshared (InternalEnumerator_1_t4031039755 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2336656763_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t4031039755 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4031039755 *>(__this + 1); InternalEnumerator_1__ctor_m2336656763(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2336872218_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2336872218_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4031039755 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4031039755 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2336872218(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1295084274_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method) { { DictionaryEntry_t3123975638 L_0 = InternalEnumerator_1_get_Current_m1920303382((InternalEnumerator_1_t4031039755 *)(InternalEnumerator_1_t4031039755 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); DictionaryEntry_t3123975638 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1295084274_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4031039755 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4031039755 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1295084274(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2648133761_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2648133761_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4031039755 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4031039755 *>(__this + 1); InternalEnumerator_1_Dispose_m2648133761(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2577879725_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2577879725_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4031039755 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4031039755 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2577879725(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() extern "C" DictionaryEntry_t3123975638 InternalEnumerator_1_get_Current_m1920303382_gshared (InternalEnumerator_1_t4031039755 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1920303382_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1920303382_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1920303382_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); DictionaryEntry_t3123975638 L_8 = (( DictionaryEntry_t3123975638 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" DictionaryEntry_t3123975638 InternalEnumerator_1_get_Current_m1920303382_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4031039755 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4031039755 *>(__this + 1); return InternalEnumerator_1_get_Current_m1920303382(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m619554185_gshared (InternalEnumerator_1_t4116331090 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m619554185_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t4116331090 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4116331090 *>(__this + 1); InternalEnumerator_1__ctor_m619554185(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3677481164_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3677481164_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4116331090 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4116331090 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3677481164(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2867624895_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method) { { Link_t3209266973 L_0 = InternalEnumerator_1_get_Current_m1845246162((InternalEnumerator_1_t4116331090 *)(InternalEnumerator_1_t4116331090 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Link_t3209266973 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2867624895_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4116331090 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4116331090 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2867624895(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m326441406_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m326441406_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4116331090 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4116331090 *>(__this + 1); InternalEnumerator_1_Dispose_m326441406(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1457790320_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1457790320_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4116331090 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4116331090 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1457790320(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::get_Current() extern "C" Link_t3209266973 InternalEnumerator_1_get_Current_m1845246162_gshared (InternalEnumerator_1_t4116331090 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1845246162_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1845246162_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1845246162_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Link_t3209266973 L_8 = (( Link_t3209266973 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Link_t3209266973 InternalEnumerator_1_get_Current_m1845246162_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4116331090 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4116331090 *>(__this + 1); return InternalEnumerator_1_get_Current_m1845246162(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1424655733_gshared (InternalEnumerator_1_t978588483 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1424655733_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t978588483 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t978588483 *>(__this + 1); InternalEnumerator_1__ctor_m1424655733(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1318888374_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1318888374_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t978588483 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t978588483 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1318888374(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3575233890_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t71524366 L_0 = InternalEnumerator_1_get_Current_m4241643334((InternalEnumerator_1_t978588483 *)(InternalEnumerator_1_t978588483 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t71524366 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3575233890_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t978588483 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t978588483 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3575233890(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m435531507_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m435531507_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t978588483 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t978588483 *>(__this + 1); InternalEnumerator_1_Dispose_m435531507(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1543390728_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1543390728_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t978588483 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t978588483 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1543390728(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() extern "C" KeyValuePair_2_t71524366 InternalEnumerator_1_get_Current_m4241643334_gshared (InternalEnumerator_1_t978588483 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4241643334_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m4241643334_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m4241643334_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); KeyValuePair_2_t71524366 L_8 = (( KeyValuePair_2_t71524366 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" KeyValuePair_2_t71524366 InternalEnumerator_1_get_Current_m4241643334_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t978588483 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t978588483 *>(__this + 1); return InternalEnumerator_1_get_Current_m4241643334(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m962177456_gshared (InternalEnumerator_1_t454463237 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m962177456_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t454463237 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t454463237 *>(__this + 1); InternalEnumerator_1__ctor_m962177456(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1716381123_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1716381123_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t454463237 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t454463237 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1716381123(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2889979481_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t3842366416 L_0 = InternalEnumerator_1_get_Current_m476140818((InternalEnumerator_1_t454463237 *)(InternalEnumerator_1_t454463237 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t3842366416 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2889979481_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t454463237 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t454463237 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2889979481(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1290015243_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1290015243_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t454463237 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t454463237 *>(__this + 1); InternalEnumerator_1_Dispose_m1290015243(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3299696349_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3299696349_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t454463237 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t454463237 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3299696349(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current() extern "C" KeyValuePair_2_t3842366416 InternalEnumerator_1_get_Current_m476140818_gshared (InternalEnumerator_1_t454463237 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m476140818_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m476140818_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m476140818_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); KeyValuePair_2_t3842366416 L_8 = (( KeyValuePair_2_t3842366416 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" KeyValuePair_2_t3842366416 InternalEnumerator_1_get_Current_m476140818_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t454463237 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t454463237 *>(__this + 1); return InternalEnumerator_1_get_Current_m476140818(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1341209356_gshared (InternalEnumerator_1_t3308121025 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1341209356_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3308121025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3308121025 *>(__this + 1); InternalEnumerator_1__ctor_m1341209356(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4239728915_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4239728915_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3308121025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3308121025 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4239728915(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2284280372_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t2401056908 L_0 = InternalEnumerator_1_get_Current_m3081223448((InternalEnumerator_1_t3308121025 *)(InternalEnumerator_1_t3308121025 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2401056908 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2284280372_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3308121025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3308121025 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2284280372(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m4098771594_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m4098771594_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3308121025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3308121025 *>(__this + 1); InternalEnumerator_1_Dispose_m4098771594(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2951889983_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2951889983_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3308121025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3308121025 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2951889983(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() extern "C" KeyValuePair_2_t2401056908 InternalEnumerator_1_get_Current_m3081223448_gshared (InternalEnumerator_1_t3308121025 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3081223448_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3081223448_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3081223448_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); KeyValuePair_2_t2401056908 L_8 = (( KeyValuePair_2_t2401056908 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" KeyValuePair_2_t2401056908 InternalEnumerator_1_get_Current_m3081223448_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3308121025 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3308121025 *>(__this + 1); return InternalEnumerator_1_get_Current_m3081223448(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m807987550_gshared (InternalEnumerator_1_t3437281436 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m807987550_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3437281436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3437281436 *>(__this + 1); InternalEnumerator_1__ctor_m807987550(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2386791007_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2386791007_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3437281436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3437281436 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2386791007(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141782011_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t2530217319 L_0 = InternalEnumerator_1_get_Current_m923139215((InternalEnumerator_1_t3437281436 *)(InternalEnumerator_1_t3437281436 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2530217319 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141782011_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3437281436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3437281436 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141782011(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2342933386_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2342933386_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3437281436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3437281436 *>(__this + 1); InternalEnumerator_1_Dispose_m2342933386(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1773160976_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1773160976_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3437281436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3437281436 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1773160976(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() extern "C" KeyValuePair_2_t2530217319 InternalEnumerator_1_get_Current_m923139215_gshared (InternalEnumerator_1_t3437281436 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m923139215_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m923139215_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m923139215_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" KeyValuePair_2_t2530217319 InternalEnumerator_1_get_Current_m923139215_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3437281436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3437281436 *>(__this + 1); return InternalEnumerator_1_get_Current_m923139215(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3390957028_gshared (InternalEnumerator_1_t1451382081 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3390957028_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1451382081 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1451382081 *>(__this + 1); InternalEnumerator_1__ctor_m3390957028(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1223176161_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1223176161_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1451382081 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1451382081 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1223176161(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1676501075_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method) { { Link_t544317964 L_0 = InternalEnumerator_1_get_Current_m2223614542((InternalEnumerator_1_t1451382081 *)(InternalEnumerator_1_t1451382081 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Link_t544317964 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1676501075_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1451382081 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1451382081 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1676501075(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1913545470_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1913545470_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1451382081 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1451382081 *>(__this + 1); InternalEnumerator_1_Dispose_m1913545470(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2785895009_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2785895009_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1451382081 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1451382081 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2785895009(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::get_Current() extern "C" Link_t544317964 InternalEnumerator_1_get_Current_m2223614542_gshared (InternalEnumerator_1_t1451382081 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2223614542_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2223614542_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2223614542_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Link_t544317964 L_8 = (( Link_t544317964 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Link_t544317964 InternalEnumerator_1_get_Current_m2223614542_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1451382081 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1451382081 *>(__this + 1); return InternalEnumerator_1_get_Current_m2223614542(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1196506529_gshared (InternalEnumerator_1_t587985571 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1196506529_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t587985571 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t587985571 *>(__this + 1); InternalEnumerator_1__ctor_m1196506529(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1256724261_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1256724261_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t587985571 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t587985571 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1256724261(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1514266661_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method) { { Slot_t3975888750 L_0 = InternalEnumerator_1_get_Current_m3008260692((InternalEnumerator_1_t587985571 *)(InternalEnumerator_1_t587985571 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Slot_t3975888750 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1514266661_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t587985571 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t587985571 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1514266661(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1995846647_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1995846647_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t587985571 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t587985571 *>(__this + 1); InternalEnumerator_1_Dispose_m1995846647(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3200332883_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3200332883_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t587985571 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t587985571 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3200332883(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::get_Current() extern "C" Slot_t3975888750 InternalEnumerator_1_get_Current_m3008260692_gshared (InternalEnumerator_1_t587985571 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3008260692_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3008260692_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3008260692_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Slot_t3975888750 L_8 = (( Slot_t3975888750 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Slot_t3975888750 InternalEnumerator_1_get_Current_m3008260692_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t587985571 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t587985571 *>(__this + 1); return InternalEnumerator_1_get_Current_m3008260692(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m819716934_gshared (InternalEnumerator_1_t1291559127 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m819716934_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1291559127 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1291559127 *>(__this + 1); InternalEnumerator_1__ctor_m819716934(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4202665280_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4202665280_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1291559127 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1291559127 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4202665280(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2629988057_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method) { { Slot_t384495010 L_0 = InternalEnumerator_1_get_Current_m2832154098((InternalEnumerator_1_t1291559127 *)(InternalEnumerator_1_t1291559127 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Slot_t384495010 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2629988057_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1291559127 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1291559127 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2629988057(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1519877610_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1519877610_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1291559127 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1291559127 *>(__this + 1); InternalEnumerator_1_Dispose_m1519877610(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3354536447_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3354536447_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1291559127 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1291559127 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3354536447(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::get_Current() extern "C" Slot_t384495010 InternalEnumerator_1_get_Current_m2832154098_gshared (InternalEnumerator_1_t1291559127 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2832154098_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2832154098_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2832154098_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Slot_t384495010 L_8 = (( Slot_t384495010 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Slot_t384495010 InternalEnumerator_1_get_Current_m2832154098_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1291559127 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1291559127 *>(__this + 1); return InternalEnumerator_1_get_Current_m2832154098(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3456047704_gshared (InternalEnumerator_1_t350626606 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3456047704_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t350626606 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t350626606 *>(__this + 1); InternalEnumerator_1__ctor_m3456047704(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m546509994_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m546509994_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t350626606 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t350626606 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m546509994(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2742943179_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method) { { DateTime_t3738529785 L_0 = InternalEnumerator_1_get_Current_m3225386639((InternalEnumerator_1_t350626606 *)(InternalEnumerator_1_t350626606 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); DateTime_t3738529785 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2742943179_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t350626606 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t350626606 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2742943179(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.DateTime>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m649519051_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m649519051_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t350626606 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t350626606 *>(__this + 1); InternalEnumerator_1_Dispose_m649519051(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.DateTime>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1161444633_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1161444633_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t350626606 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t350626606 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1161444633(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.DateTime>::get_Current() extern "C" DateTime_t3738529785 InternalEnumerator_1_get_Current_m3225386639_gshared (InternalEnumerator_1_t350626606 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3225386639_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3225386639_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3225386639_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); DateTime_t3738529785 L_8 = (( DateTime_t3738529785 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" DateTime_t3738529785 InternalEnumerator_1_get_Current_m3225386639_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t350626606 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t350626606 *>(__this + 1); return InternalEnumerator_1_get_Current_m3225386639(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m143506773_gshared (InternalEnumerator_1_t3855323497 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m143506773_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3855323497 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3855323497 *>(__this + 1); InternalEnumerator_1__ctor_m143506773(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m169899350_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m169899350_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3855323497 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3855323497 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m169899350(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m688818811_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method) { { Decimal_t2948259380 L_0 = InternalEnumerator_1_get_Current_m2128158355((InternalEnumerator_1_t3855323497 *)(InternalEnumerator_1_t3855323497 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Decimal_t2948259380 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m688818811_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3855323497 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3855323497 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m688818811(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Decimal>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m937653815_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m937653815_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3855323497 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3855323497 *>(__this + 1); InternalEnumerator_1_Dispose_m937653815(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Decimal>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4210671224_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m4210671224_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3855323497 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3855323497 *>(__this + 1); return InternalEnumerator_1_MoveNext_m4210671224(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Decimal>::get_Current() extern "C" Decimal_t2948259380 InternalEnumerator_1_get_Current_m2128158355_gshared (InternalEnumerator_1_t3855323497 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2128158355_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2128158355_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2128158355_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Decimal_t2948259380 L_8 = (( Decimal_t2948259380 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Decimal_t2948259380 InternalEnumerator_1_get_Current_m2128158355_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3855323497 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3855323497 *>(__this + 1); return InternalEnumerator_1_get_Current_m2128158355(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1559487635_gshared (InternalEnumerator_1_t1501729480 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1559487635_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1501729480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1501729480 *>(__this + 1); InternalEnumerator_1__ctor_m1559487635(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m14983211_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m14983211_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1501729480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1501729480 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m14983211(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3853320011_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method) { { double L_0 = InternalEnumerator_1_get_Current_m2894466703((InternalEnumerator_1_t1501729480 *)(InternalEnumerator_1_t1501729480 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); double L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3853320011_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1501729480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1501729480 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3853320011(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Double>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2043273260_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2043273260_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1501729480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1501729480 *>(__this + 1); InternalEnumerator_1_Dispose_m2043273260(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Double>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m377783729_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m377783729_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1501729480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1501729480 *>(__this + 1); return InternalEnumerator_1_MoveNext_m377783729(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Double>::get_Current() extern "C" double InternalEnumerator_1_get_Current_m2894466703_gshared (InternalEnumerator_1_t1501729480 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2894466703_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2894466703_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2894466703_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); double L_8 = (( double (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" double InternalEnumerator_1_get_Current_m2894466703_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1501729480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1501729480 *>(__this + 1); return InternalEnumerator_1_get_Current_m2894466703(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2910272776_gshared (InternalEnumerator_1_t3459884504 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2910272776_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3459884504 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3459884504 *>(__this + 1); InternalEnumerator_1__ctor_m2910272776(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m521819017_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m521819017_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3459884504 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3459884504 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m521819017(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m888718134_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method) { { int16_t L_0 = InternalEnumerator_1_get_Current_m2723520268((InternalEnumerator_1_t3459884504 *)(InternalEnumerator_1_t3459884504 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int16_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m888718134_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3459884504 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3459884504 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m888718134(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Int16>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3716424577_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3716424577_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3459884504 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3459884504 *>(__this + 1); InternalEnumerator_1_Dispose_m3716424577(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Int16>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3525157932_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3525157932_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3459884504 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3459884504 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3525157932(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Int16>::get_Current() extern "C" int16_t InternalEnumerator_1_get_Current_m2723520268_gshared (InternalEnumerator_1_t3459884504 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2723520268_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2723520268_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2723520268_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int16_t L_8 = (( int16_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int16_t InternalEnumerator_1_get_Current_m2723520268_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3459884504 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3459884504 *>(__this + 1); return InternalEnumerator_1_get_Current_m2723520268(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m217498388_gshared (InternalEnumerator_1_t3858009870 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m217498388_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3858009870 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3858009870 *>(__this + 1); InternalEnumerator_1__ctor_m217498388(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m779787360_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m779787360_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3858009870 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3858009870 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m779787360(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2435291801_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method) { { int32_t L_0 = InternalEnumerator_1_get_Current_m3500427238((InternalEnumerator_1_t3858009870 *)(InternalEnumerator_1_t3858009870 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2435291801_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3858009870 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3858009870 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2435291801(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Int32>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3519406884_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3519406884_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3858009870 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3858009870 *>(__this + 1); InternalEnumerator_1_Dispose_m3519406884(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Int32>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3802174768_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3802174768_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3858009870 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3858009870 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3802174768(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Int32>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m3500427238_gshared (InternalEnumerator_1_t3858009870 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3500427238_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3500427238_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3500427238_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int32_t L_8 = (( int32_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int32_t InternalEnumerator_1_get_Current_m3500427238_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3858009870 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3858009870 *>(__this + 1); return InternalEnumerator_1_get_Current_m3500427238(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4055378331_gshared (InternalEnumerator_1_t348664125 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m4055378331_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t348664125 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t348664125 *>(__this + 1); InternalEnumerator_1__ctor_m4055378331(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3873091784_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3873091784_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t348664125 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t348664125 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3873091784(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m180319738_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method) { { int64_t L_0 = InternalEnumerator_1_get_Current_m685192625((InternalEnumerator_1_t348664125 *)(InternalEnumerator_1_t348664125 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m180319738_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t348664125 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t348664125 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m180319738(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Int64>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m830510730_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m830510730_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t348664125 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t348664125 *>(__this + 1); InternalEnumerator_1_Dispose_m830510730(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Int64>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4266213580_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m4266213580_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t348664125 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t348664125 *>(__this + 1); return InternalEnumerator_1_MoveNext_m4266213580(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Int64>::get_Current() extern "C" int64_t InternalEnumerator_1_get_Current_m685192625_gshared (InternalEnumerator_1_t348664125 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m685192625_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m685192625_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m685192625_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int64_t L_8 = (( int64_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int64_t InternalEnumerator_1_get_Current_m685192625_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t348664125 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t348664125 *>(__this + 1); return InternalEnumerator_1_get_Current_m685192625(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1579105305_gshared (InternalEnumerator_1_t1747214298 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1579105305_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1747214298 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1747214298 *>(__this + 1); InternalEnumerator_1__ctor_m1579105305(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3011999097_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3011999097_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1747214298 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1747214298 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3011999097(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m548105685_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method) { { intptr_t L_0 = InternalEnumerator_1_get_Current_m3900374024((InternalEnumerator_1_t1747214298 *)(InternalEnumerator_1_t1747214298 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); intptr_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m548105685_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1747214298 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1747214298 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m548105685(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2818366163_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2818366163_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1747214298 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1747214298 *>(__this + 1); InternalEnumerator_1_Dispose_m2818366163(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.IntPtr>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3520556285_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3520556285_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1747214298 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1747214298 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3520556285(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.IntPtr>::get_Current() extern "C" intptr_t InternalEnumerator_1_get_Current_m3900374024_gshared (InternalEnumerator_1_t1747214298 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3900374024_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3900374024_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3900374024_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); intptr_t L_8 = (( intptr_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" intptr_t InternalEnumerator_1_get_Current_m3900374024_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1747214298 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1747214298 *>(__this + 1); return InternalEnumerator_1_get_Current_m3900374024(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1675719794_gshared (InternalEnumerator_1_t3987170281 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1675719794_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3987170281 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3987170281 *>(__this + 1); InternalEnumerator_1__ctor_m1675719794(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2914412419_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2914412419_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3987170281 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3987170281 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2914412419(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2982675020_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = InternalEnumerator_1_get_Current_m3839250771((InternalEnumerator_1_t3987170281 *)(InternalEnumerator_1_t3987170281 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_0; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2982675020_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3987170281 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3987170281 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2982675020(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Object>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2006926799_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2006926799_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3987170281 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3987170281 *>(__this + 1); InternalEnumerator_1_Dispose_m2006926799(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Object>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4035695998_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m4035695998_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3987170281 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3987170281 *>(__this + 1); return InternalEnumerator_1_MoveNext_m4035695998(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Object>::get_Current() extern "C" RuntimeObject * InternalEnumerator_1_get_Current_m3839250771_gshared (InternalEnumerator_1_t3987170281 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3839250771_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3839250771_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3839250771_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); RuntimeObject * L_8 = (( RuntimeObject * (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" RuntimeObject * InternalEnumerator_1_get_Current_m3839250771_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3987170281 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3987170281 *>(__this + 1); return InternalEnumerator_1_get_Current_m3839250771(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m643493702_gshared (InternalEnumerator_1_t1194929827 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m643493702_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1194929827 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1194929827 *>(__this + 1); InternalEnumerator_1__ctor_m643493702(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m895873066_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m895873066_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1194929827 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1194929827 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m895873066(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4189894603_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method) { { CustomAttributeNamedArgument_t287865710 L_0 = InternalEnumerator_1_get_Current_m3354878040((InternalEnumerator_1_t1194929827 *)(InternalEnumerator_1_t1194929827 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); CustomAttributeNamedArgument_t287865710 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4189894603_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1194929827 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1194929827 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4189894603(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3577625655_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3577625655_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1194929827 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1194929827 *>(__this + 1); InternalEnumerator_1_Dispose_m3577625655(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4138204635_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m4138204635_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1194929827 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1194929827 *>(__this + 1); return InternalEnumerator_1_MoveNext_m4138204635(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() extern "C" CustomAttributeNamedArgument_t287865710 InternalEnumerator_1_get_Current_m3354878040_gshared (InternalEnumerator_1_t1194929827 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3354878040_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3354878040_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3354878040_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); CustomAttributeNamedArgument_t287865710 L_8 = (( CustomAttributeNamedArgument_t287865710 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" CustomAttributeNamedArgument_t287865710 InternalEnumerator_1_get_Current_m3354878040_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1194929827 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1194929827 *>(__this + 1); return InternalEnumerator_1_get_Current_m3354878040(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m748741755_gshared (InternalEnumerator_1_t3630214274 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m748741755_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3630214274 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3630214274 *>(__this + 1); InternalEnumerator_1__ctor_m748741755(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m596870847_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m596870847_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3630214274 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3630214274 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m596870847(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4213507601_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method) { { CustomAttributeTypedArgument_t2723150157 L_0 = InternalEnumerator_1_get_Current_m3653231044((InternalEnumerator_1_t3630214274 *)(InternalEnumerator_1_t3630214274 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); CustomAttributeTypedArgument_t2723150157 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4213507601_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3630214274 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3630214274 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4213507601(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2438347491_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2438347491_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3630214274 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3630214274 *>(__this + 1); InternalEnumerator_1_Dispose_m2438347491(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3577491700_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3577491700_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3630214274 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3630214274 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3577491700(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() extern "C" CustomAttributeTypedArgument_t2723150157 InternalEnumerator_1_get_Current_m3653231044_gshared (InternalEnumerator_1_t3630214274 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3653231044_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3653231044_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3653231044_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); CustomAttributeTypedArgument_t2723150157 L_8 = (( CustomAttributeTypedArgument_t2723150157 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" CustomAttributeTypedArgument_t2723150157 InternalEnumerator_1_get_Current_m3653231044_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3630214274 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3630214274 *>(__this + 1); return InternalEnumerator_1_get_Current_m3653231044(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1486034688_gshared (InternalEnumerator_1_t1267231508 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1486034688_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1267231508 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1267231508 *>(__this + 1); InternalEnumerator_1__ctor_m1486034688(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3619766341_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3619766341_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1267231508 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1267231508 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3619766341(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m435848551_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method) { { LabelData_t360167391 L_0 = InternalEnumerator_1_get_Current_m2698009637((InternalEnumerator_1_t1267231508 *)(InternalEnumerator_1_t1267231508 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); LabelData_t360167391 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m435848551_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1267231508 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1267231508 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m435848551(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m106460639_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m106460639_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1267231508 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1267231508 *>(__this + 1); InternalEnumerator_1_Dispose_m106460639(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1728532725_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1728532725_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1267231508 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1267231508 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1728532725(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::get_Current() extern "C" LabelData_t360167391 InternalEnumerator_1_get_Current_m2698009637_gshared (InternalEnumerator_1_t1267231508 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2698009637_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2698009637_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2698009637_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); LabelData_t360167391 L_8 = (( LabelData_t360167391 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" LabelData_t360167391 InternalEnumerator_1_get_Current_m2698009637_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1267231508 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1267231508 *>(__this + 1); return InternalEnumerator_1_get_Current_m2698009637(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1594304290_gshared (InternalEnumerator_1_t1765566171 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1594304290_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1765566171 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1765566171 *>(__this + 1); InternalEnumerator_1__ctor_m1594304290(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720350288_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720350288_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1765566171 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1765566171 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720350288(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1976902927_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method) { { LabelFixup_t858502054 L_0 = InternalEnumerator_1_get_Current_m2680116177((InternalEnumerator_1_t1765566171 *)(InternalEnumerator_1_t1765566171 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); LabelFixup_t858502054 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1976902927_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1765566171 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1765566171 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1976902927(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1063909490_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1063909490_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1765566171 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1765566171 *>(__this + 1); InternalEnumerator_1_Dispose_m1063909490(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2234422530_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2234422530_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1765566171 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1765566171 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2234422530(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::get_Current() extern "C" LabelFixup_t858502054 InternalEnumerator_1_get_Current_m2680116177_gshared (InternalEnumerator_1_t1765566171 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2680116177_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2680116177_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2680116177_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); LabelFixup_t858502054 L_8 = (( LabelFixup_t858502054 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" LabelFixup_t858502054 InternalEnumerator_1_get_Current_m2680116177_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1765566171 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1765566171 *>(__this + 1); return InternalEnumerator_1_get_Current_m2680116177(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m238559784_gshared (InternalEnumerator_1_t3232839231 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m238559784_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3232839231 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3232839231 *>(__this + 1); InternalEnumerator_1__ctor_m238559784(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2428767548_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2428767548_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3232839231 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3232839231 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2428767548(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3624751851_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method) { { ILTokenInfo_t2325775114 L_0 = InternalEnumerator_1_get_Current_m165106323((InternalEnumerator_1_t3232839231 *)(InternalEnumerator_1_t3232839231 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ILTokenInfo_t2325775114 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3624751851_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3232839231 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3232839231 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3624751851(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m130608859_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m130608859_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3232839231 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3232839231 *>(__this + 1); InternalEnumerator_1_Dispose_m130608859(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m819973544_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m819973544_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3232839231 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3232839231 *>(__this + 1); return InternalEnumerator_1_MoveNext_m819973544(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::get_Current() extern "C" ILTokenInfo_t2325775114 InternalEnumerator_1_get_Current_m165106323_gshared (InternalEnumerator_1_t3232839231 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m165106323_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m165106323_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m165106323_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); ILTokenInfo_t2325775114 L_8 = (( ILTokenInfo_t2325775114 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" ILTokenInfo_t2325775114 InternalEnumerator_1_get_Current_m165106323_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3232839231 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3232839231 *>(__this + 1); return InternalEnumerator_1_get_Current_m165106323(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3457010038_gshared (InternalEnumerator_1_t715526830 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3457010038_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t715526830 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t715526830 *>(__this + 1); InternalEnumerator_1__ctor_m3457010038(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4138547141_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4138547141_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t715526830 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t715526830 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4138547141(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m782232053_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method) { { MonoResource_t4103430009 L_0 = InternalEnumerator_1_get_Current_m2174066122((InternalEnumerator_1_t715526830 *)(InternalEnumerator_1_t715526830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); MonoResource_t4103430009 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m782232053_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t715526830 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t715526830 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m782232053(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m726871561_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m726871561_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t715526830 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t715526830 *>(__this + 1); InternalEnumerator_1_Dispose_m726871561(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m72350267_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m72350267_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t715526830 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t715526830 *>(__this + 1); return InternalEnumerator_1_MoveNext_m72350267(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::get_Current() extern "C" MonoResource_t4103430009 InternalEnumerator_1_get_Current_m2174066122_gshared (InternalEnumerator_1_t715526830 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2174066122_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2174066122_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2174066122_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); MonoResource_t4103430009 L_8 = (( MonoResource_t4103430009 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" MonoResource_t4103430009 InternalEnumerator_1_get_Current_m2174066122_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t715526830 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t715526830 *>(__this + 1); return InternalEnumerator_1_get_Current_m2174066122(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m236665673_gshared (InternalEnumerator_1_t1391455104 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m236665673_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1391455104 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1391455104 *>(__this + 1); InternalEnumerator_1__ctor_m236665673(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m907598595_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m907598595_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1391455104 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1391455104 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m907598595(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4203917072_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method) { { RefEmitPermissionSet_t484390987 L_0 = InternalEnumerator_1_get_Current_m2316281569((InternalEnumerator_1_t1391455104 *)(InternalEnumerator_1_t1391455104 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); RefEmitPermissionSet_t484390987 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4203917072_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1391455104 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1391455104 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4203917072(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3241670073_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3241670073_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1391455104 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1391455104 *>(__this + 1); InternalEnumerator_1_Dispose_m3241670073(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m308452279_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m308452279_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1391455104 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1391455104 *>(__this + 1); return InternalEnumerator_1_MoveNext_m308452279(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::get_Current() extern "C" RefEmitPermissionSet_t484390987 InternalEnumerator_1_get_Current_m2316281569_gshared (InternalEnumerator_1_t1391455104 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2316281569_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2316281569_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2316281569_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); RefEmitPermissionSet_t484390987 L_8 = (( RefEmitPermissionSet_t484390987 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" RefEmitPermissionSet_t484390987 InternalEnumerator_1_get_Current_m2316281569_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1391455104 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1391455104 *>(__this + 1); return InternalEnumerator_1_get_Current_m2316281569(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m39232262_gshared (InternalEnumerator_1_t2368758583 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m39232262_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2368758583 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2368758583 *>(__this + 1); InternalEnumerator_1__ctor_m39232262(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3165277182_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3165277182_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2368758583 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2368758583 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3165277182(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m694606607_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method) { { ParameterModifier_t1461694466 L_0 = InternalEnumerator_1_get_Current_m356936020((InternalEnumerator_1_t2368758583 *)(InternalEnumerator_1_t2368758583 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ParameterModifier_t1461694466 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m694606607_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2368758583 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2368758583 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m694606607(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2840529825_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2840529825_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2368758583 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2368758583 *>(__this + 1); InternalEnumerator_1_Dispose_m2840529825(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3664960764_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3664960764_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2368758583 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2368758583 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3664960764(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() extern "C" ParameterModifier_t1461694466 InternalEnumerator_1_get_Current_m356936020_gshared (InternalEnumerator_1_t2368758583 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m356936020_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m356936020_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m356936020_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); ParameterModifier_t1461694466 L_8 = (( ParameterModifier_t1461694466 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" ParameterModifier_t1461694466 InternalEnumerator_1_get_Current_m356936020_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2368758583 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2368758583 *>(__this + 1); return InternalEnumerator_1_get_Current_m356936020(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1999141680_gshared (InternalEnumerator_1_t958356908 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1999141680_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t958356908 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t958356908 *>(__this + 1); InternalEnumerator_1__ctor_m1999141680(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1259718730_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1259718730_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t958356908 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t958356908 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1259718730(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141016822_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method) { { ResourceCacheItem_t51292791 L_0 = InternalEnumerator_1_get_Current_m144365666((InternalEnumerator_1_t958356908 *)(InternalEnumerator_1_t958356908 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ResourceCacheItem_t51292791 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141016822_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t958356908 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t958356908 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2141016822(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m887344916_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m887344916_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t958356908 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t958356908 *>(__this + 1); InternalEnumerator_1_Dispose_m887344916(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2960571514_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2960571514_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t958356908 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t958356908 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2960571514(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::get_Current() extern "C" ResourceCacheItem_t51292791 InternalEnumerator_1_get_Current_m144365666_gshared (InternalEnumerator_1_t958356908 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m144365666_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m144365666_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m144365666_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); ResourceCacheItem_t51292791 L_8 = (( ResourceCacheItem_t51292791 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" ResourceCacheItem_t51292791 InternalEnumerator_1_get_Current_m144365666_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t958356908 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t958356908 *>(__this + 1); return InternalEnumerator_1_get_Current_m144365666(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2908852803_gshared (InternalEnumerator_1_t3780029419 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2908852803_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3780029419 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3780029419 *>(__this + 1); InternalEnumerator_1__ctor_m2908852803(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4008893642_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4008893642_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3780029419 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3780029419 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4008893642(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4235876088_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method) { { ResourceInfo_t2872965302 L_0 = InternalEnumerator_1_get_Current_m3191242573((InternalEnumerator_1_t3780029419 *)(InternalEnumerator_1_t3780029419 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ResourceInfo_t2872965302 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4235876088_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3780029419 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3780029419 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4235876088(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m725544411_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m725544411_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3780029419 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3780029419 *>(__this + 1); InternalEnumerator_1_Dispose_m725544411(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3174983217_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3174983217_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3780029419 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3780029419 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3174983217(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::get_Current() extern "C" ResourceInfo_t2872965302 InternalEnumerator_1_get_Current_m3191242573_gshared (InternalEnumerator_1_t3780029419 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3191242573_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3191242573_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3191242573_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); ResourceInfo_t2872965302 L_8 = (( ResourceInfo_t2872965302 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" ResourceInfo_t2872965302 InternalEnumerator_1_get_Current_m3191242573_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3780029419 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3780029419 *>(__this + 1); return InternalEnumerator_1_get_Current_m3191242573(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4200721464_gshared (InternalEnumerator_1_t153918522 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m4200721464_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t153918522 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t153918522 *>(__this + 1); InternalEnumerator_1__ctor_m4200721464(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2234754688_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2234754688_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t153918522 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t153918522 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2234754688(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3892960115_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method) { { uint8_t L_0 = InternalEnumerator_1_get_Current_m3911557813((InternalEnumerator_1_t153918522 *)(InternalEnumerator_1_t153918522 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint8_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3892960115_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t153918522 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t153918522 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3892960115(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3983612351_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3983612351_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t153918522 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t153918522 *>(__this + 1); InternalEnumerator_1_Dispose_m3983612351(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1020308708_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1020308708_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t153918522 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t153918522 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1020308708(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::get_Current() extern "C" uint8_t InternalEnumerator_1_get_Current_m3911557813_gshared (InternalEnumerator_1_t153918522 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3911557813_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3911557813_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3911557813_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); uint8_t L_8 = (( uint8_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" uint8_t InternalEnumerator_1_get_Current_m3911557813_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t153918522 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t153918522 *>(__this + 1); return InternalEnumerator_1_get_Current_m3911557813(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3460713284_gshared (InternalEnumerator_1_t2576641779 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3460713284_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2576641779 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2576641779 *>(__this + 1); InternalEnumerator_1__ctor_m3460713284(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3545912565_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3545912565_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2576641779 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2576641779 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3545912565(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m767948013_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method) { { int8_t L_0 = InternalEnumerator_1_get_Current_m1408339225((InternalEnumerator_1_t2576641779 *)(InternalEnumerator_1_t2576641779 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int8_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m767948013_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2576641779 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2576641779 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m767948013(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.SByte>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1406845627_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1406845627_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2576641779 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2576641779 *>(__this + 1); InternalEnumerator_1_Dispose_m1406845627(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.SByte>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1015797184_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1015797184_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2576641779 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2576641779 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1015797184(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.SByte>::get_Current() extern "C" int8_t InternalEnumerator_1_get_Current_m1408339225_gshared (InternalEnumerator_1_t2576641779 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1408339225_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1408339225_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1408339225_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int8_t L_8 = (( int8_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int8_t InternalEnumerator_1_get_Current_m1408339225_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2576641779 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2576641779 *>(__this + 1); return InternalEnumerator_1_get_Current_m1408339225(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3443175323_gshared (InternalEnumerator_1_t1040666831 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3443175323_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1040666831 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1040666831 *>(__this + 1); InternalEnumerator_1__ctor_m3443175323(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2314612291_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2314612291_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1040666831 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1040666831 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2314612291(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1096730143_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method) { { X509ChainStatus_t133602714 L_0 = InternalEnumerator_1_get_Current_m2389908135((InternalEnumerator_1_t1040666831 *)(InternalEnumerator_1_t1040666831 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); X509ChainStatus_t133602714 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1096730143_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1040666831 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1040666831 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1096730143(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m469889800_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m469889800_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1040666831 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1040666831 *>(__this + 1); InternalEnumerator_1_Dispose_m469889800(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1732823414_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1732823414_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1040666831 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1040666831 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1732823414(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() extern "C" X509ChainStatus_t133602714 InternalEnumerator_1_get_Current_m2389908135_gshared (InternalEnumerator_1_t1040666831 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2389908135_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2389908135_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2389908135_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); X509ChainStatus_t133602714 L_8 = (( X509ChainStatus_t133602714 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" X509ChainStatus_t133602714 InternalEnumerator_1_get_Current_m2389908135_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1040666831 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1040666831 *>(__this + 1); return InternalEnumerator_1_get_Current_m2389908135(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m31115849_gshared (InternalEnumerator_1_t2304330891 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m31115849_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2304330891 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2304330891 *>(__this + 1); InternalEnumerator_1__ctor_m31115849(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181721336_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181721336_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2304330891 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2304330891 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181721336(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1823542095_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method) { { float L_0 = InternalEnumerator_1_get_Current_m2612852447((InternalEnumerator_1_t2304330891 *)(InternalEnumerator_1_t2304330891 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); float L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1823542095_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2304330891 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2304330891 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1823542095(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Single>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m630370856_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m630370856_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2304330891 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2304330891 *>(__this + 1); InternalEnumerator_1_Dispose_m630370856(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Single>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3134701632_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3134701632_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2304330891 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2304330891 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3134701632(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Single>::get_Current() extern "C" float InternalEnumerator_1_get_Current_m2612852447_gshared (InternalEnumerator_1_t2304330891 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2612852447_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2612852447_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2612852447_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); float L_8 = (( float (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" float InternalEnumerator_1_get_Current_m2612852447_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2304330891 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2304330891 *>(__this + 1); return InternalEnumerator_1_get_Current_m2612852447(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1122952091_gshared (InternalEnumerator_1_t83702344 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1122952091_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t83702344 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t83702344 *>(__this + 1); InternalEnumerator_1__ctor_m1122952091(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m396346696_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m396346696_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t83702344 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t83702344 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m396346696(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088805473_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method) { { Mark_t3471605523 L_0 = InternalEnumerator_1_get_Current_m1909182215((InternalEnumerator_1_t83702344 *)(InternalEnumerator_1_t83702344 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Mark_t3471605523 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088805473_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t83702344 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t83702344 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088805473(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1837758743_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1837758743_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t83702344 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t83702344 *>(__this + 1); InternalEnumerator_1_Dispose_m1837758743(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m4133541970_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m4133541970_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t83702344 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t83702344 *>(__this + 1); return InternalEnumerator_1_MoveNext_m4133541970(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::get_Current() extern "C" Mark_t3471605523 InternalEnumerator_1_get_Current_m1909182215_gshared (InternalEnumerator_1_t83702344 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1909182215_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1909182215_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1909182215_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Mark_t3471605523 L_8 = (( Mark_t3471605523 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Mark_t3471605523 InternalEnumerator_1_get_Current_m1909182215_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t83702344 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t83702344 *>(__this + 1); return InternalEnumerator_1_get_Current_m1909182215(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3261326277_gshared (InternalEnumerator_1_t1788223366 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3261326277_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1788223366 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1788223366 *>(__this + 1); InternalEnumerator_1__ctor_m3261326277(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3763767775_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3763767775_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1788223366 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1788223366 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3763767775(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1299775605_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method) { { TimeSpan_t881159249 L_0 = InternalEnumerator_1_get_Current_m1698047500((InternalEnumerator_1_t1788223366 *)(InternalEnumerator_1_t1788223366 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); TimeSpan_t881159249 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1299775605_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1788223366 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1788223366 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1299775605(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m4260521517_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m4260521517_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1788223366 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1788223366 *>(__this + 1); InternalEnumerator_1_Dispose_m4260521517(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.TimeSpan>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3958061110_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3958061110_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1788223366 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1788223366 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3958061110(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.TimeSpan>::get_Current() extern "C" TimeSpan_t881159249 InternalEnumerator_1_get_Current_m1698047500_gshared (InternalEnumerator_1_t1788223366 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1698047500_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1698047500_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1698047500_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); TimeSpan_t881159249 L_8 = (( TimeSpan_t881159249 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" TimeSpan_t881159249 InternalEnumerator_1_get_Current_m1698047500_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1788223366 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1788223366 *>(__this + 1); return InternalEnumerator_1_get_Current_m1698047500(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2202456613_gshared (InternalEnumerator_1_t3084789075 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2202456613_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3084789075 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3084789075 *>(__this + 1); InternalEnumerator_1__ctor_m2202456613(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3848218235_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3848218235_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3084789075 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3084789075 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3848218235(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m191386315_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method) { { uint16_t L_0 = InternalEnumerator_1_get_Current_m784835552((InternalEnumerator_1_t3084789075 *)(InternalEnumerator_1_t3084789075 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint16_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m191386315_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3084789075 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3084789075 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m191386315(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt16>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m359678482_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m359678482_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3084789075 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3084789075 *>(__this + 1); InternalEnumerator_1_Dispose_m359678482(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.UInt16>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m973048327_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m973048327_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3084789075 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3084789075 *>(__this + 1); return InternalEnumerator_1_MoveNext_m973048327(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.UInt16>::get_Current() extern "C" uint16_t InternalEnumerator_1_get_Current_m784835552_gshared (InternalEnumerator_1_t3084789075 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m784835552_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m784835552_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m784835552_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); uint16_t L_8 = (( uint16_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" uint16_t InternalEnumerator_1_get_Current_m784835552_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3084789075 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3084789075 *>(__this + 1); return InternalEnumerator_1_get_Current_m784835552(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3383770493_gshared (InternalEnumerator_1_t3467126095 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3383770493_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3467126095 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3467126095 *>(__this + 1); InternalEnumerator_1__ctor_m3383770493(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m342565588_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m342565588_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3467126095 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3467126095 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m342565588(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1612699335_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method) { { uint32_t L_0 = InternalEnumerator_1_get_Current_m1897120917((InternalEnumerator_1_t3467126095 *)(InternalEnumerator_1_t3467126095 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1612699335_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3467126095 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3467126095 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1612699335(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt32>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1121538879_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1121538879_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3467126095 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3467126095 *>(__this + 1); InternalEnumerator_1_Dispose_m1121538879(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.UInt32>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3855324972_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3855324972_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3467126095 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3467126095 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3855324972(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.UInt32>::get_Current() extern "C" uint32_t InternalEnumerator_1_get_Current_m1897120917_gshared (InternalEnumerator_1_t3467126095 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1897120917_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1897120917_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1897120917_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); uint32_t L_8 = (( uint32_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" uint32_t InternalEnumerator_1_get_Current_m1897120917_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3467126095 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3467126095 *>(__this + 1); return InternalEnumerator_1_get_Current_m1897120917(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3215746182_gshared (InternalEnumerator_1_t746136913 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3215746182_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t746136913 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t746136913 *>(__this + 1); InternalEnumerator_1__ctor_m3215746182(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m872612294_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m872612294_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t746136913 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t746136913 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m872612294(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2395961985_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method) { { uint64_t L_0 = InternalEnumerator_1_get_Current_m1588647567((InternalEnumerator_1_t746136913 *)(InternalEnumerator_1_t746136913 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint64_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2395961985_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t746136913 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t746136913 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2395961985(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt64>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3637184090_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3637184090_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t746136913 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t746136913 *>(__this + 1); InternalEnumerator_1_Dispose_m3637184090(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.UInt64>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1975820803_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1975820803_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t746136913 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t746136913 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1975820803(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.UInt64>::get_Current() extern "C" uint64_t InternalEnumerator_1_get_Current_m1588647567_gshared (InternalEnumerator_1_t746136913 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1588647567_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1588647567_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1588647567_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); uint64_t L_8 = (( uint64_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" uint64_t InternalEnumerator_1_get_Current_m1588647567_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t746136913 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t746136913 *>(__this + 1); return InternalEnumerator_1_get_Current_m1588647567(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m362401472_gshared (InternalEnumerator_1_t1629489814 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m362401472_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1629489814 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1629489814 *>(__this + 1); InternalEnumerator_1__ctor_m362401472(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4196663616_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4196663616_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1629489814 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1629489814 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4196663616(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2671801110_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method) { { UriScheme_t722425697 L_0 = InternalEnumerator_1_get_Current_m1007906068((InternalEnumerator_1_t1629489814 *)(InternalEnumerator_1_t1629489814 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); UriScheme_t722425697 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2671801110_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1629489814 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1629489814 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2671801110(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m648941584_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m648941584_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1629489814 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1629489814 *>(__this + 1); InternalEnumerator_1_Dispose_m648941584(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<System.Uri/UriScheme>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m190587569_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m190587569_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1629489814 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1629489814 *>(__this + 1); return InternalEnumerator_1_MoveNext_m190587569(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<System.Uri/UriScheme>::get_Current() extern "C" UriScheme_t722425697 InternalEnumerator_1_get_Current_m1007906068_gshared (InternalEnumerator_1_t1629489814 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1007906068_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1007906068_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1007906068_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); UriScheme_t722425697 L_8 = (( UriScheme_t722425697 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" UriScheme_t722425697 InternalEnumerator_1_get_Current_m1007906068_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1629489814 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1629489814 *>(__this + 1); return InternalEnumerator_1_get_Current_m1007906068(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2616789963_gshared (InternalEnumerator_1_t2493041948 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2616789963_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2493041948 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2493041948 *>(__this + 1); InternalEnumerator_1__ctor_m2616789963(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3355902602_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3355902602_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2493041948 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2493041948 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3355902602(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m690851430_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method) { { OrderBlock_t1585977831 L_0 = InternalEnumerator_1_get_Current_m2112392701((InternalEnumerator_1_t2493041948 *)(InternalEnumerator_1_t2493041948 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); OrderBlock_t1585977831 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m690851430_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2493041948 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2493041948 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m690851430(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3566491637_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3566491637_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2493041948 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2493041948 *>(__this + 1); InternalEnumerator_1_Dispose_m3566491637(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1524093431_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1524093431_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2493041948 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2493041948 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1524093431(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() extern "C" OrderBlock_t1585977831 InternalEnumerator_1_get_Current_m2112392701_gshared (InternalEnumerator_1_t2493041948 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2112392701_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2112392701_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2112392701_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); OrderBlock_t1585977831 L_8 = (( OrderBlock_t1585977831 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" OrderBlock_t1585977831 InternalEnumerator_1_get_Current_m2112392701_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2493041948 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2493041948 *>(__this + 1); return InternalEnumerator_1_get_Current_m2112392701(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2503697330_gshared (InternalEnumerator_1_t3462750441 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2503697330_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3462750441 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3462750441 *>(__this + 1); InternalEnumerator_1__ctor_m2503697330(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3274912808_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3274912808_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3462750441 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3462750441 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3274912808(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3060923356_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method) { { Color_t2555686324 L_0 = InternalEnumerator_1_get_Current_m3720421287((InternalEnumerator_1_t3462750441 *)(InternalEnumerator_1_t3462750441 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Color_t2555686324 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3060923356_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3462750441 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3462750441 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3060923356(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2015539009_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2015539009_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3462750441 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3462750441 *>(__this + 1); InternalEnumerator_1_Dispose_m2015539009(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m683739489_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m683739489_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3462750441 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3462750441 *>(__this + 1); return InternalEnumerator_1_MoveNext_m683739489(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Color>::get_Current() extern "C" Color_t2555686324 InternalEnumerator_1_get_Current_m3720421287_gshared (InternalEnumerator_1_t3462750441 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3720421287_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3720421287_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3720421287_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Color_t2555686324 L_8 = (( Color_t2555686324 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Color_t2555686324 InternalEnumerator_1_get_Current_m3720421287_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3462750441 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3462750441 *>(__this + 1); return InternalEnumerator_1_get_Current_m3720421287(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m539509188_gshared (InternalEnumerator_1_t3507565409 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m539509188_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3507565409 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3507565409 *>(__this + 1); InternalEnumerator_1__ctor_m539509188(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m996811230_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m996811230_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3507565409 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3507565409 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m996811230(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4196752819_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method) { { Color32_t2600501292 L_0 = InternalEnumerator_1_get_Current_m1232221964((InternalEnumerator_1_t3507565409 *)(InternalEnumerator_1_t3507565409 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Color32_t2600501292 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4196752819_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3507565409 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3507565409 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4196752819(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3259955982_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3259955982_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3507565409 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3507565409 *>(__this + 1); InternalEnumerator_1_Dispose_m3259955982(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color32>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1590908934_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1590908934_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3507565409 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3507565409 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1590908934(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Color32>::get_Current() extern "C" Color32_t2600501292 InternalEnumerator_1_get_Current_m1232221964_gshared (InternalEnumerator_1_t3507565409 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1232221964_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1232221964_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1232221964_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Color32_t2600501292 L_8 = (( Color32_t2600501292 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Color32_t2600501292 InternalEnumerator_1_get_Current_m1232221964_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3507565409 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3507565409 *>(__this + 1); return InternalEnumerator_1_get_Current_m1232221964(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1352157576_gshared (InternalEnumerator_1_t370852074 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1352157576_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t370852074 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t370852074 *>(__this + 1); InternalEnumerator_1__ctor_m1352157576(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1009155168_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1009155168_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t370852074 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t370852074 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1009155168(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m629296715_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method) { { ContactPoint_t3758755253 L_0 = InternalEnumerator_1_get_Current_m2315302778((InternalEnumerator_1_t370852074 *)(InternalEnumerator_1_t370852074 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ContactPoint_t3758755253 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m629296715_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t370852074 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t370852074 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m629296715(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m756188704_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m756188704_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t370852074 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t370852074 *>(__this + 1); InternalEnumerator_1_Dispose_m756188704(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1187868016_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1187868016_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t370852074 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t370852074 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1187868016(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() extern "C" ContactPoint_t3758755253 InternalEnumerator_1_get_Current_m2315302778_gshared (InternalEnumerator_1_t370852074 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2315302778_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2315302778_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2315302778_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); ContactPoint_t3758755253 L_8 = (( ContactPoint_t3758755253 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" ContactPoint_t3758755253 InternalEnumerator_1_get_Current_m2315302778_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t370852074 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t370852074 *>(__this + 1); return InternalEnumerator_1_get_Current_m2315302778(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2311732727_gshared (InternalEnumerator_1_t4267370966 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2311732727_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t4267370966 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4267370966 *>(__this + 1); InternalEnumerator_1__ctor_m2311732727(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1686642781_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1686642781_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4267370966 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4267370966 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1686642781(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m923624021_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method) { { RaycastResult_t3360306849 L_0 = InternalEnumerator_1_get_Current_m254780543((InternalEnumerator_1_t4267370966 *)(InternalEnumerator_1_t4267370966 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); RaycastResult_t3360306849 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m923624021_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4267370966 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4267370966 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m923624021(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3517794894_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3517794894_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4267370966 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4267370966 *>(__this + 1); InternalEnumerator_1_Dispose_m3517794894(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1344185775_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1344185775_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4267370966 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4267370966 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1344185775(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current() extern "C" RaycastResult_t3360306849 InternalEnumerator_1_get_Current_m254780543_gshared (InternalEnumerator_1_t4267370966 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m254780543_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m254780543_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m254780543_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); RaycastResult_t3360306849 L_8 = (( RaycastResult_t3360306849 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" RaycastResult_t3360306849 InternalEnumerator_1_get_Current_m254780543_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4267370966 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4267370966 *>(__this + 1); return InternalEnumerator_1_get_Current_m254780543(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m43405049_gshared (InternalEnumerator_1_t1012836222 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m43405049_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1012836222 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1012836222 *>(__this + 1); InternalEnumerator_1__ctor_m43405049(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098348255_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098348255_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1012836222 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1012836222 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098348255(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2102877703_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method) { { PlayerLoopSystem_t105772105 L_0 = InternalEnumerator_1_get_Current_m1506120701((InternalEnumerator_1_t1012836222 *)(InternalEnumerator_1_t1012836222 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); PlayerLoopSystem_t105772105 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2102877703_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1012836222 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1012836222 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2102877703(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3611202825_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3611202825_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1012836222 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1012836222 *>(__this + 1); InternalEnumerator_1_Dispose_m3611202825(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m359138619_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m359138619_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1012836222 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1012836222 *>(__this + 1); return InternalEnumerator_1_MoveNext_m359138619(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() extern "C" PlayerLoopSystem_t105772105 InternalEnumerator_1_get_Current_m1506120701_gshared (InternalEnumerator_1_t1012836222 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1506120701_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1506120701_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1506120701_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); PlayerLoopSystem_t105772105 L_8 = (( PlayerLoopSystem_t105772105 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" PlayerLoopSystem_t105772105 InternalEnumerator_1_get_Current_m1506120701_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1012836222 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1012836222 *>(__this + 1); return InternalEnumerator_1_get_Current_m1506120701(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1744883412_gshared (InternalEnumerator_1_t818507063 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1744883412_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t818507063 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t818507063 *>(__this + 1); InternalEnumerator_1__ctor_m1744883412(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3217592429_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3217592429_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t818507063 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t818507063 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3217592429(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m605068928_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method) { { Keyframe_t4206410242 L_0 = InternalEnumerator_1_get_Current_m2907722321((InternalEnumerator_1_t818507063 *)(InternalEnumerator_1_t818507063 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Keyframe_t4206410242 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m605068928_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t818507063 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t818507063 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m605068928(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3211169941_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3211169941_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t818507063 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t818507063 *>(__this + 1); InternalEnumerator_1_Dispose_m3211169941(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1109261117_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1109261117_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t818507063 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t818507063 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1109261117(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::get_Current() extern "C" Keyframe_t4206410242 InternalEnumerator_1_get_Current_m2907722321_gshared (InternalEnumerator_1_t818507063 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2907722321_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2907722321_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2907722321_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Keyframe_t4206410242 L_8 = (( Keyframe_t4206410242 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Keyframe_t4206410242 InternalEnumerator_1_get_Current_m2907722321_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t818507063 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t818507063 *>(__this + 1); return InternalEnumerator_1_get_Current_m2907722321(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4124630986_gshared (InternalEnumerator_1_t1261324826 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m4124630986_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1261324826 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1261324826 *>(__this + 1); InternalEnumerator_1__ctor_m4124630986(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m729791527_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m729791527_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1261324826 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1261324826 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m729791527(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3854084659_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method) { { PlayableBinding_t354260709 L_0 = InternalEnumerator_1_get_Current_m2446410893((InternalEnumerator_1_t1261324826 *)(InternalEnumerator_1_t1261324826 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); PlayableBinding_t354260709 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3854084659_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1261324826 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1261324826 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3854084659(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3818541596_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3818541596_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1261324826 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1261324826 *>(__this + 1); InternalEnumerator_1_Dispose_m3818541596(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1096095130_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1096095130_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1261324826 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1261324826 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1096095130(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() extern "C" PlayableBinding_t354260709 InternalEnumerator_1_get_Current_m2446410893_gshared (InternalEnumerator_1_t1261324826 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2446410893_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2446410893_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2446410893_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); PlayableBinding_t354260709 L_8 = (( PlayableBinding_t354260709 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" PlayableBinding_t354260709 InternalEnumerator_1_get_Current_m2446410893_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1261324826 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1261324826 *>(__this + 1); return InternalEnumerator_1_get_Current_m2446410893(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m615777089_gshared (InternalEnumerator_1_t1963066083 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m615777089_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t1963066083 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1963066083 *>(__this + 1); InternalEnumerator_1__ctor_m615777089(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2621383412_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2621383412_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1963066083 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1963066083 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2621383412(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1635397542_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method) { { RaycastHit_t1056001966 L_0 = InternalEnumerator_1_get_Current_m114240259((InternalEnumerator_1_t1963066083 *)(InternalEnumerator_1_t1963066083 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); RaycastHit_t1056001966 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1635397542_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1963066083 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1963066083 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1635397542(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m958164402_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m958164402_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1963066083 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1963066083 *>(__this + 1); InternalEnumerator_1_Dispose_m958164402(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3164144724_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3164144724_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1963066083 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1963066083 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3164144724(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() extern "C" RaycastHit_t1056001966 InternalEnumerator_1_get_Current_m114240259_gshared (InternalEnumerator_1_t1963066083 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m114240259_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m114240259_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m114240259_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); RaycastHit_t1056001966 L_8 = (( RaycastHit_t1056001966 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" RaycastHit_t1056001966 InternalEnumerator_1_get_Current_m114240259_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t1963066083 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1963066083 *>(__this + 1); return InternalEnumerator_1_get_Current_m114240259(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2635640285_gshared (InternalEnumerator_1_t3186646106 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2635640285_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3186646106 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3186646106 *>(__this + 1); InternalEnumerator_1__ctor_m2635640285(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1775752715_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1775752715_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3186646106 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3186646106 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1775752715(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2424959150_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method) { { RaycastHit2D_t2279581989 L_0 = InternalEnumerator_1_get_Current_m1655128652((InternalEnumerator_1_t3186646106 *)(InternalEnumerator_1_t3186646106 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); RaycastHit2D_t2279581989 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2424959150_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3186646106 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3186646106 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2424959150(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m555942266_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m555942266_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3186646106 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3186646106 *>(__this + 1); InternalEnumerator_1_Dispose_m555942266(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2734554195_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2734554195_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3186646106 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3186646106 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2734554195(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current() extern "C" RaycastHit2D_t2279581989 InternalEnumerator_1_get_Current_m1655128652_gshared (InternalEnumerator_1_t3186646106 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1655128652_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1655128652_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1655128652_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); RaycastHit2D_t2279581989 L_8 = (( RaycastHit2D_t2279581989 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" RaycastHit2D_t2279581989 InternalEnumerator_1_get_Current_m1655128652_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3186646106 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3186646106 *>(__this + 1); return InternalEnumerator_1_get_Current_m1655128652(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3848674141_gshared (InternalEnumerator_1_t3267543976 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3848674141_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3267543976 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3267543976 *>(__this + 1); InternalEnumerator_1__ctor_m3848674141(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2556670574_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2556670574_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3267543976 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3267543976 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2556670574(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2690353642_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method) { { Rect_t2360479859 L_0 = InternalEnumerator_1_get_Current_m3941815949((InternalEnumerator_1_t3267543976 *)(InternalEnumerator_1_t3267543976 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Rect_t2360479859 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2690353642_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3267543976 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3267543976 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2690353642(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Rect>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m1453932905_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m1453932905_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3267543976 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3267543976 *>(__this + 1); InternalEnumerator_1_Dispose_m1453932905(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Rect>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3804980664_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3804980664_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3267543976 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3267543976 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3804980664(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Rect>::get_Current() extern "C" Rect_t2360479859 InternalEnumerator_1_get_Current_m3941815949_gshared (InternalEnumerator_1_t3267543976 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3941815949_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3941815949_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3941815949_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Rect_t2360479859 L_8 = (( Rect_t2360479859 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Rect_t2360479859 InternalEnumerator_1_get_Current_m3941815949_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3267543976 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3267543976 *>(__this + 1); return InternalEnumerator_1_get_Current_m3941815949(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3913006324_gshared (InternalEnumerator_1_t4136673857 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3913006324_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t4136673857 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4136673857 *>(__this + 1); InternalEnumerator_1__ctor_m3913006324(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1451164462_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1451164462_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4136673857 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4136673857 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1451164462(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2032951142_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method) { { HitInfo_t3229609740 L_0 = InternalEnumerator_1_get_Current_m4124877207((InternalEnumerator_1_t4136673857 *)(InternalEnumerator_1_t4136673857 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); HitInfo_t3229609740 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2032951142_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4136673857 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4136673857 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2032951142(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3977286481_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3977286481_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4136673857 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4136673857 *>(__this + 1); InternalEnumerator_1_Dispose_m3977286481(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m2088624192_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m2088624192_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4136673857 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4136673857 *>(__this + 1); return InternalEnumerator_1_MoveNext_m2088624192(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() extern "C" HitInfo_t3229609740 InternalEnumerator_1_get_Current_m4124877207_gshared (InternalEnumerator_1_t4136673857 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4124877207_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m4124877207_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m4124877207_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); HitInfo_t3229609740 L_8 = (( HitInfo_t3229609740 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" HitInfo_t3229609740 InternalEnumerator_1_get_Current_m4124877207_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4136673857 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4136673857 *>(__this + 1); return InternalEnumerator_1_get_Current_m4124877207(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m1739091604_gshared (InternalEnumerator_1_t2694367513 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m1739091604_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2694367513 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2694367513 *>(__this + 1); InternalEnumerator_1__ctor_m1739091604(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1341907970_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1341907970_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2694367513 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2694367513 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1341907970(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164048921_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method) { { int32_t L_0 = InternalEnumerator_1_get_Current_m2350635577((InternalEnumerator_1_t2694367513 *)(InternalEnumerator_1_t2694367513 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164048921_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2694367513 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2694367513 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164048921(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m28687982_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m28687982_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2694367513 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2694367513 *>(__this + 1); InternalEnumerator_1_Dispose_m28687982(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1555187632_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1555187632_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2694367513 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2694367513 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1555187632(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::get_Current() extern "C" int32_t InternalEnumerator_1_get_Current_m2350635577_gshared (InternalEnumerator_1_t2694367513 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2350635577_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2350635577_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2350635577_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); int32_t L_8 = (( int32_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" int32_t InternalEnumerator_1_get_Current_m2350635577_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2694367513 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2694367513 *>(__this + 1); return InternalEnumerator_1_get_Current_m2350635577(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4175030001_gshared (InternalEnumerator_1_t982565223 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m4175030001_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t982565223 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982565223 *>(__this + 1); InternalEnumerator_1__ctor_m4175030001(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2305395628_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2305395628_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t982565223 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982565223 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2305395628(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2649471526_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method) { { UICharInfo_t75501106 L_0 = InternalEnumerator_1_get_Current_m3792939945((InternalEnumerator_1_t982565223 *)(InternalEnumerator_1_t982565223 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); UICharInfo_t75501106 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2649471526_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t982565223 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982565223 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2649471526(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m3790132913_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m3790132913_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t982565223 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982565223 *>(__this + 1); InternalEnumerator_1_Dispose_m3790132913(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3713722659_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3713722659_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t982565223 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982565223 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3713722659(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::get_Current() extern "C" UICharInfo_t75501106 InternalEnumerator_1_get_Current_m3792939945_gshared (InternalEnumerator_1_t982565223 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3792939945_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3792939945_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3792939945_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); UICharInfo_t75501106 L_8 = (( UICharInfo_t75501106 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" UICharInfo_t75501106 InternalEnumerator_1_get_Current_m3792939945_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t982565223 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982565223 *>(__this + 1); return InternalEnumerator_1_get_Current_m3792939945(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3322594868_gshared (InternalEnumerator_1_t807363631 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3322594868_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t807363631 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t807363631 *>(__this + 1); InternalEnumerator_1__ctor_m3322594868(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1601477281_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1601477281_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t807363631 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t807363631 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1601477281(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3553395619_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method) { { UILineInfo_t4195266810 L_0 = InternalEnumerator_1_get_Current_m1070921822((InternalEnumerator_1_t807363631 *)(InternalEnumerator_1_t807363631 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); UILineInfo_t4195266810 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3553395619_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t807363631 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t807363631 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3553395619(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2788308318_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2788308318_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t807363631 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t807363631 *>(__this + 1); InternalEnumerator_1_Dispose_m2788308318(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1396448578_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1396448578_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t807363631 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t807363631 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1396448578(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::get_Current() extern "C" UILineInfo_t4195266810 InternalEnumerator_1_get_Current_m1070921822_gshared (InternalEnumerator_1_t807363631 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1070921822_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1070921822_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1070921822_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); UILineInfo_t4195266810 L_8 = (( UILineInfo_t4195266810 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" UILineInfo_t4195266810 InternalEnumerator_1_get_Current_m1070921822_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t807363631 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t807363631 *>(__this + 1); return InternalEnumerator_1_get_Current_m1070921822(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2490839835_gshared (InternalEnumerator_1_t669594426 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2490839835_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t669594426 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t669594426 *>(__this + 1); InternalEnumerator_1__ctor_m2490839835(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4072625129_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4072625129_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t669594426 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t669594426 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4072625129(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2209458050_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method) { { UIVertex_t4057497605 L_0 = InternalEnumerator_1_get_Current_m1534474313((InternalEnumerator_1_t669594426 *)(InternalEnumerator_1_t669594426 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); UIVertex_t4057497605 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2209458050_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t669594426 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t669594426 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2209458050(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m365545176_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m365545176_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t669594426 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t669594426 *>(__this + 1); InternalEnumerator_1_Dispose_m365545176(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m3686444574_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m3686444574_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t669594426 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t669594426 *>(__this + 1); return InternalEnumerator_1_MoveNext_m3686444574(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::get_Current() extern "C" UIVertex_t4057497605 InternalEnumerator_1_get_Current_m1534474313_gshared (InternalEnumerator_1_t669594426 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1534474313_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1534474313_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1534474313_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); UIVertex_t4057497605 L_8 = (( UIVertex_t4057497605 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" UIVertex_t4057497605 InternalEnumerator_1_get_Current_m1534474313_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t669594426 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t669594426 *>(__this + 1); return InternalEnumerator_1_get_Current_m1534474313(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m3022010316_gshared (InternalEnumerator_1_t2261582729 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m3022010316_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t2261582729 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2261582729 *>(__this + 1); InternalEnumerator_1__ctor_m3022010316(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3613328076_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3613328076_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2261582729 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2261582729 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3613328076(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3539708496_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method) { { WorkRequest_t1354518612 L_0 = InternalEnumerator_1_get_Current_m2297647799((InternalEnumerator_1_t2261582729 *)(InternalEnumerator_1_t2261582729 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); WorkRequest_t1354518612 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3539708496_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2261582729 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2261582729 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3539708496(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m436383441_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m436383441_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2261582729 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2261582729 *>(__this + 1); InternalEnumerator_1_Dispose_m436383441(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1269299718_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1269299718_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2261582729 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2261582729 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1269299718(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() extern "C" WorkRequest_t1354518612 InternalEnumerator_1_get_Current_m2297647799_gshared (InternalEnumerator_1_t2261582729 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2297647799_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2297647799_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2297647799_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); WorkRequest_t1354518612 L_8 = (( WorkRequest_t1354518612 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" WorkRequest_t1354518612 InternalEnumerator_1_get_Current_m2297647799_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t2261582729 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2261582729 *>(__this + 1); return InternalEnumerator_1_get_Current_m2297647799(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m945079686_gshared (InternalEnumerator_1_t3063293640 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m945079686_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t3063293640 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3063293640 *>(__this + 1); InternalEnumerator_1__ctor_m945079686(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m158730371_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m158730371_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3063293640 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3063293640 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m158730371(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847780851_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method) { { Vector2_t2156229523 L_0 = InternalEnumerator_1_get_Current_m3331252162((InternalEnumerator_1_t3063293640 *)(InternalEnumerator_1_t3063293640 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Vector2_t2156229523 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847780851_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3063293640 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3063293640 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847780851(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m663714168_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m663714168_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3063293640 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3063293640 *>(__this + 1); InternalEnumerator_1_Dispose_m663714168(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector2>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1262669372_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1262669372_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3063293640 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3063293640 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1262669372(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Vector2>::get_Current() extern "C" Vector2_t2156229523 InternalEnumerator_1_get_Current_m3331252162_gshared (InternalEnumerator_1_t3063293640 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3331252162_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3331252162_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3331252162_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Vector2_t2156229523 L_8 = (( Vector2_t2156229523 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Vector2_t2156229523 InternalEnumerator_1_get_Current_m3331252162_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t3063293640 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3063293640 *>(__this + 1); return InternalEnumerator_1_get_Current_m3331252162(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m4132027968_gshared (InternalEnumerator_1_t334410285 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m4132027968_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t334410285 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t334410285 *>(__this + 1); InternalEnumerator_1__ctor_m4132027968(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1916984356_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1916984356_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t334410285 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t334410285 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1916984356(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3537550566_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method) { { Vector3_t3722313464 L_0 = InternalEnumerator_1_get_Current_m1477715453((InternalEnumerator_1_t334410285 *)(InternalEnumerator_1_t334410285 *)__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); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3537550566_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t334410285 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t334410285 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3537550566(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m2188147046_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m2188147046_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t334410285 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t334410285 *>(__this + 1); InternalEnumerator_1_Dispose_m2188147046(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector3>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1262906009_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1262906009_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t334410285 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t334410285 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1262906009(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Vector3>::get_Current() extern "C" Vector3_t3722313464 InternalEnumerator_1_get_Current_m1477715453_gshared (InternalEnumerator_1_t334410285 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1477715453_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1477715453_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1477715453_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Vector3_t3722313464 L_8 = (( Vector3_t3722313464 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Vector3_t3722313464 InternalEnumerator_1_get_Current_m1477715453_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t334410285 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t334410285 *>(__this + 1); return InternalEnumerator_1_get_Current_m1477715453(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::.ctor(System.Array) extern "C" void InternalEnumerator_1__ctor_m2307827786_gshared (InternalEnumerator_1_t4226093054 * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; __this->set_array_0(L_0); __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1__ctor_m2307827786_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { InternalEnumerator_1_t4226093054 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4226093054 *>(__this + 1); InternalEnumerator_1__ctor_m2307827786(_thisAdjusted, ___array0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1944844050_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1944844050_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4226093054 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4226093054 *>(__this + 1); InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1944844050(_thisAdjusted, method); } // System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3982010935_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method) { { Vector4_t3319028937 L_0 = InternalEnumerator_1_get_Current_m2356858238((InternalEnumerator_1_t4226093054 *)(InternalEnumerator_1_t4226093054 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Vector4_t3319028937 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3982010935_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4226093054 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4226093054 *>(__this + 1); return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3982010935(_thisAdjusted, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::Dispose() extern "C" void InternalEnumerator_1_Dispose_m987068791_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method) { { __this->set_idx_1(((int32_t)-2)); return; } } extern "C" void InternalEnumerator_1_Dispose_m987068791_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4226093054 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4226093054 *>(__this + 1); InternalEnumerator_1_Dispose_m987068791(_thisAdjusted, method); } // System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector4>::MoveNext() extern "C" bool InternalEnumerator_1_MoveNext_m1258813334_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B5_0 = 0; { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001e; } } { RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0(); int32_t L_2 = Array_get_Length_m21610649((RuntimeArray *)L_1, /*hidden argument*/NULL); __this->set_idx_1(L_2); } IL_001e: { int32_t L_3 = (int32_t)__this->get_idx_1(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0043; } } { int32_t L_4 = (int32_t)__this->get_idx_1(); int32_t L_5 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); V_0 = (int32_t)L_5; __this->set_idx_1(L_5); int32_t L_6 = V_0; G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0044; } IL_0043: { G_B5_0 = 0; } IL_0044: { return (bool)G_B5_0; } } extern "C" bool InternalEnumerator_1_MoveNext_m1258813334_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4226093054 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4226093054 *>(__this + 1); return InternalEnumerator_1_MoveNext_m1258813334(_thisAdjusted, method); } // T System.Array/InternalEnumerator`1<UnityEngine.Vector4>::get_Current() extern "C" Vector4_t3319028937 InternalEnumerator_1_get_Current_m2356858238_gshared (InternalEnumerator_1_t4226093054 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2356858238_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_0018; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral2287514662, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m2356858238_RuntimeMethod_var); } IL_0018: { int32_t L_2 = (int32_t)__this->get_idx_1(); if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_002f; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral3056411131, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m2356858238_RuntimeMethod_var); } IL_002f: { RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0(); RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0(); int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); int32_t L_7 = (int32_t)__this->get_idx_1(); Vector4_t3319028937 L_8 = (( Vector4_t3319028937 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return L_8; } } extern "C" Vector4_t3319028937 InternalEnumerator_1_get_Current_m2356858238_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { InternalEnumerator_1_t4226093054 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4226093054 *>(__this + 1); return InternalEnumerator_1_get_Current_m2356858238(_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 // System.Void System.Collections.Generic.Comparer`1/DefaultComparer<Global/FruitType>::.ctor() extern "C" void DefaultComparer__ctor_m1843326638_gshared (DefaultComparer_t132580836 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t3779732385 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t3779732385 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<Global/FruitType>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m3867922432_gshared (DefaultComparer_t132580836 * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3867922432_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { int32_t L_3 = ___x0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { int32_t L_6 = ___x0; int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); int32_t L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(0 /* System.Int32 System.IComparable`1<Global/FruitType>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (int32_t)L_9); return L_10; } IL_004d: { int32_t L_11 = ___x0; int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { int32_t L_14 = ___x0; int32_t L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); int32_t L_17 = ___y1; int32_t L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m3867922432_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.DateTime>::.ctor() extern "C" void DefaultComparer__ctor_m757111150_gshared (DefaultComparer_t1591133118 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t943317371 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t943317371 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTime>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m732589824_gshared (DefaultComparer_t1591133118 * __this, DateTime_t3738529785 ___x0, DateTime_t3738529785 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m732589824_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { DateTime_t3738529785 L_3 = ___x0; DateTime_t3738529785 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { DateTime_t3738529785 L_6 = ___x0; DateTime_t3738529785 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); DateTime_t3738529785 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, DateTime_t3738529785 >::Invoke(0 /* System.Int32 System.IComparable`1<System.DateTime>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (DateTime_t3738529785 )L_9); return L_10; } IL_004d: { DateTime_t3738529785 L_11 = ___x0; DateTime_t3738529785 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { DateTime_t3738529785 L_14 = ___x0; DateTime_t3738529785 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); DateTime_t3738529785 L_17 = ___y1; DateTime_t3738529785 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m732589824_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.DateTimeOffset>::.ctor() extern "C" void DefaultComparer__ctor_m3288720761_gshared (DefaultComparer_t1081890840 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t434075093 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t434075093 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTimeOffset>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m655397166_gshared (DefaultComparer_t1081890840 * __this, DateTimeOffset_t3229287507 ___x0, DateTimeOffset_t3229287507 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m655397166_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { DateTimeOffset_t3229287507 L_3 = ___x0; DateTimeOffset_t3229287507 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { DateTimeOffset_t3229287507 L_6 = ___x0; DateTimeOffset_t3229287507 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); DateTimeOffset_t3229287507 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, DateTimeOffset_t3229287507 >::Invoke(0 /* System.Int32 System.IComparable`1<System.DateTimeOffset>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (DateTimeOffset_t3229287507 )L_9); return L_10; } IL_004d: { DateTimeOffset_t3229287507 L_11 = ___x0; DateTimeOffset_t3229287507 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { DateTimeOffset_t3229287507 L_14 = ___x0; DateTimeOffset_t3229287507 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); DateTimeOffset_t3229287507 L_17 = ___y1; DateTimeOffset_t3229287507 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m655397166_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.Guid>::.ctor() extern "C" void DefaultComparer__ctor_m1236171334_gshared (DefaultComparer_t1046136220 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t398320473 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t398320473 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Guid>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m3591589106_gshared (DefaultComparer_t1046136220 * __this, Guid_t ___x0, Guid_t ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3591589106_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { Guid_t L_3 = ___x0; Guid_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { Guid_t L_6 = ___x0; Guid_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); Guid_t L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, Guid_t >::Invoke(0 /* System.Int32 System.IComparable`1<System.Guid>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (Guid_t )L_9); return L_10; } IL_004d: { Guid_t L_11 = ___x0; Guid_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { Guid_t L_14 = ___x0; Guid_t L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); Guid_t L_17 = ___y1; Guid_t L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m3591589106_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.Int32>::.ctor() extern "C" void DefaultComparer__ctor_m2309314806_gshared (DefaultComparer_t803549086 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t155733339 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t155733339 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Int32>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m1297750557_gshared (DefaultComparer_t803549086 * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1297750557_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { int32_t L_3 = ___x0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { int32_t L_6 = ___x0; int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); int32_t L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(0 /* System.Int32 System.IComparable`1<System.Int32>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (int32_t)L_9); return L_10; } IL_004d: { int32_t L_11 = ___x0; int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { int32_t L_14 = ___x0; int32_t L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); int32_t L_17 = ___y1; int32_t L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m1297750557_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.Object>::.ctor() extern "C" void DefaultComparer__ctor_m3948233172_gshared (DefaultComparer_t932709497 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t284893750 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t284893750 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Object>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m4042058291_gshared (DefaultComparer_t932709497 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m4042058291_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_001e; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_001c; } } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_002b; } } { return 1; } IL_002b: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { RuntimeObject * L_4 = ___x0; RuntimeObject * L_5 = ___y1; int32_t L_6 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable`1<System.Object>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (RuntimeObject *)L_5); return L_6; } IL_004d: { RuntimeObject * L_7 = ___x0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_7, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { RuntimeObject * L_8 = ___x0; RuntimeObject * L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_9); return L_10; } IL_0074: { ArgumentException_t132251570 * L_11 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_11, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, DefaultComparer_Compare_m4042058291_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument>::.ctor() extern "C" void DefaultComparer__ctor_m3333451630_gshared (DefaultComparer_t2435436339 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t1787620592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t1787620592 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m982533255_gshared (DefaultComparer_t2435436339 * __this, CustomAttributeNamedArgument_t287865710 ___x0, CustomAttributeNamedArgument_t287865710 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m982533255_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { CustomAttributeNamedArgument_t287865710 L_3 = ___x0; CustomAttributeNamedArgument_t287865710 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { CustomAttributeNamedArgument_t287865710 L_6 = ___x0; CustomAttributeNamedArgument_t287865710 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); CustomAttributeNamedArgument_t287865710 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, CustomAttributeNamedArgument_t287865710 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Reflection.CustomAttributeNamedArgument>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (CustomAttributeNamedArgument_t287865710 )L_9); return L_10; } IL_004d: { CustomAttributeNamedArgument_t287865710 L_11 = ___x0; CustomAttributeNamedArgument_t287865710 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { CustomAttributeNamedArgument_t287865710 L_14 = ___x0; CustomAttributeNamedArgument_t287865710 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); CustomAttributeNamedArgument_t287865710 L_17 = ___y1; CustomAttributeNamedArgument_t287865710 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m982533255_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument>::.ctor() extern "C" void DefaultComparer__ctor_m2039558311_gshared (DefaultComparer_t575753490 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t4222905039 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t4222905039 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m947823904_gshared (DefaultComparer_t575753490 * __this, CustomAttributeTypedArgument_t2723150157 ___x0, CustomAttributeTypedArgument_t2723150157 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m947823904_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { CustomAttributeTypedArgument_t2723150157 L_3 = ___x0; CustomAttributeTypedArgument_t2723150157 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { CustomAttributeTypedArgument_t2723150157 L_6 = ___x0; CustomAttributeTypedArgument_t2723150157 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); CustomAttributeTypedArgument_t2723150157 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, CustomAttributeTypedArgument_t2723150157 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Reflection.CustomAttributeTypedArgument>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (CustomAttributeTypedArgument_t2723150157 )L_9); return L_10; } IL_004d: { CustomAttributeTypedArgument_t2723150157 L_11 = ___x0; CustomAttributeTypedArgument_t2723150157 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { CustomAttributeTypedArgument_t2723150157 L_14 = ___x0; CustomAttributeTypedArgument_t2723150157 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); CustomAttributeTypedArgument_t2723150157 L_17 = ___y1; CustomAttributeTypedArgument_t2723150157 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m947823904_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<System.TimeSpan>::.ctor() extern "C" void DefaultComparer__ctor_m977417144_gshared (DefaultComparer_t3028729878 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t2380914131 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t2380914131 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.TimeSpan>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m3967426329_gshared (DefaultComparer_t3028729878 * __this, TimeSpan_t881159249 ___x0, TimeSpan_t881159249 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3967426329_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { TimeSpan_t881159249 L_3 = ___x0; TimeSpan_t881159249 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { TimeSpan_t881159249 L_6 = ___x0; TimeSpan_t881159249 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); TimeSpan_t881159249 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, TimeSpan_t881159249 >::Invoke(0 /* System.Int32 System.IComparable`1<System.TimeSpan>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (TimeSpan_t881159249 )L_9); return L_10; } IL_004d: { TimeSpan_t881159249 L_11 = ___x0; TimeSpan_t881159249 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { TimeSpan_t881159249 L_14 = ___x0; TimeSpan_t881159249 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); TimeSpan_t881159249 L_17 = ___y1; TimeSpan_t881159249 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m3967426329_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() extern "C" void DefaultComparer__ctor_m2420756525_gshared (DefaultComparer_t3733548460 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t3085732713 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t3085732713 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.BeforeRenderHelper/OrderBlock>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m2875223111_gshared (DefaultComparer_t3733548460 * __this, OrderBlock_t1585977831 ___x0, OrderBlock_t1585977831 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m2875223111_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { OrderBlock_t1585977831 L_3 = ___x0; OrderBlock_t1585977831 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { OrderBlock_t1585977831 L_6 = ___x0; OrderBlock_t1585977831 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); OrderBlock_t1585977831 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, OrderBlock_t1585977831 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (OrderBlock_t1585977831 )L_9); return L_10; } IL_004d: { OrderBlock_t1585977831 L_11 = ___x0; OrderBlock_t1585977831 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { OrderBlock_t1585977831 L_14 = ___x0; OrderBlock_t1585977831 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); OrderBlock_t1585977831 L_17 = ___y1; OrderBlock_t1585977831 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m2875223111_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.Color32>::.ctor() extern "C" void DefaultComparer__ctor_m704436039_gshared (DefaultComparer_t453104625 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t4100256174 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t4100256174 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Color32>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m3278268937_gshared (DefaultComparer_t453104625 * __this, Color32_t2600501292 ___x0, Color32_t2600501292 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3278268937_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { Color32_t2600501292 L_3 = ___x0; Color32_t2600501292 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { Color32_t2600501292 L_6 = ___x0; Color32_t2600501292 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); Color32_t2600501292 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, Color32_t2600501292 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Color32>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (Color32_t2600501292 )L_9); return L_10; } IL_004d: { Color32_t2600501292 L_11 = ___x0; Color32_t2600501292 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { Color32_t2600501292 L_14 = ___x0; Color32_t2600501292 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); Color32_t2600501292 L_17 = ___y1; Color32_t2600501292 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m3278268937_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.EventSystems.RaycastResult>::.ctor() extern "C" void DefaultComparer__ctor_m1036717011_gshared (DefaultComparer_t1212910182 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t565094435 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t565094435 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.EventSystems.RaycastResult>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m1920986590_gshared (DefaultComparer_t1212910182 * __this, RaycastResult_t3360306849 ___x0, RaycastResult_t3360306849 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1920986590_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { RaycastResult_t3360306849 L_3 = ___x0; RaycastResult_t3360306849 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { RaycastResult_t3360306849 L_6 = ___x0; RaycastResult_t3360306849 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); RaycastResult_t3360306849 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, RaycastResult_t3360306849 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.EventSystems.RaycastResult>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (RaycastResult_t3360306849 )L_9); return L_10; } IL_004d: { RaycastResult_t3360306849 L_11 = ___x0; RaycastResult_t3360306849 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { RaycastResult_t3360306849 L_14 = ___x0; RaycastResult_t3360306849 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); RaycastResult_t3360306849 L_17 = ___y1; RaycastResult_t3360306849 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m1920986590_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.UICharInfo>::.ctor() extern "C" void DefaultComparer__ctor_m1074181621_gshared (DefaultComparer_t2223071735 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t1575255988 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t1575255988 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UICharInfo>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m3931992727_gshared (DefaultComparer_t2223071735 * __this, UICharInfo_t75501106 ___x0, UICharInfo_t75501106 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3931992727_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { UICharInfo_t75501106 L_3 = ___x0; UICharInfo_t75501106 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { UICharInfo_t75501106 L_6 = ___x0; UICharInfo_t75501106 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); UICharInfo_t75501106 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, UICharInfo_t75501106 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.UICharInfo>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (UICharInfo_t75501106 )L_9); return L_10; } IL_004d: { UICharInfo_t75501106 L_11 = ___x0; UICharInfo_t75501106 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { UICharInfo_t75501106 L_14 = ___x0; UICharInfo_t75501106 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); UICharInfo_t75501106 L_17 = ___y1; UICharInfo_t75501106 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m3931992727_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.UILineInfo>::.ctor() extern "C" void DefaultComparer__ctor_m631060898_gshared (DefaultComparer_t2047870143 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t1400054396 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t1400054396 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UILineInfo>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m1916473435_gshared (DefaultComparer_t2047870143 * __this, UILineInfo_t4195266810 ___x0, UILineInfo_t4195266810 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1916473435_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { UILineInfo_t4195266810 L_3 = ___x0; UILineInfo_t4195266810 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { UILineInfo_t4195266810 L_6 = ___x0; UILineInfo_t4195266810 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); UILineInfo_t4195266810 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, UILineInfo_t4195266810 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.UILineInfo>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (UILineInfo_t4195266810 )L_9); return L_10; } IL_004d: { UILineInfo_t4195266810 L_11 = ___x0; UILineInfo_t4195266810 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { UILineInfo_t4195266810 L_14 = ___x0; UILineInfo_t4195266810 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); UILineInfo_t4195266810 L_17 = ___y1; UILineInfo_t4195266810 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m1916473435_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.UIVertex>::.ctor() extern "C" void DefaultComparer__ctor_m2906090291_gshared (DefaultComparer_t1910100938 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t1262285191 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t1262285191 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.UIVertex>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m1932373082_gshared (DefaultComparer_t1910100938 * __this, UIVertex_t4057497605 ___x0, UIVertex_t4057497605 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1932373082_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { UIVertex_t4057497605 L_3 = ___x0; UIVertex_t4057497605 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { UIVertex_t4057497605 L_6 = ___x0; UIVertex_t4057497605 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); UIVertex_t4057497605 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, UIVertex_t4057497605 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.UIVertex>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (UIVertex_t4057497605 )L_9); return L_10; } IL_004d: { UIVertex_t4057497605 L_11 = ___x0; UIVertex_t4057497605 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { UIVertex_t4057497605 L_14 = ___x0; UIVertex_t4057497605 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); UIVertex_t4057497605 L_17 = ___y1; UIVertex_t4057497605 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m1932373082_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.Vector2>::.ctor() extern "C" void DefaultComparer__ctor_m3508212919_gshared (DefaultComparer_t8832856 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t3655984405 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t3655984405 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector2>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m3648806637_gshared (DefaultComparer_t8832856 * __this, Vector2_t2156229523 ___x0, Vector2_t2156229523 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3648806637_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { Vector2_t2156229523 L_3 = ___x0; Vector2_t2156229523 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { Vector2_t2156229523 L_6 = ___x0; Vector2_t2156229523 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); Vector2_t2156229523 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, Vector2_t2156229523 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Vector2>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (Vector2_t2156229523 )L_9); return L_10; } IL_004d: { Vector2_t2156229523 L_11 = ___x0; Vector2_t2156229523 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { Vector2_t2156229523 L_14 = ___x0; Vector2_t2156229523 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); Vector2_t2156229523 L_17 = ___y1; Vector2_t2156229523 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m3648806637_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.Vector3>::.ctor() extern "C" void DefaultComparer__ctor_m3432518839_gshared (DefaultComparer_t1574916797 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t927101050 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t927101050 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector3>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m1369122336_gshared (DefaultComparer_t1574916797 * __this, Vector3_t3722313464 ___x0, Vector3_t3722313464 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1369122336_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { Vector3_t3722313464 L_3 = ___x0; Vector3_t3722313464 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { Vector3_t3722313464 L_6 = ___x0; Vector3_t3722313464 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); Vector3_t3722313464 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, Vector3_t3722313464 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Vector3>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (Vector3_t3722313464 )L_9); return L_10; } IL_004d: { Vector3_t3722313464 L_11 = ___x0; Vector3_t3722313464 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { Vector3_t3722313464 L_14 = ___x0; Vector3_t3722313464 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); Vector3_t3722313464 L_17 = ___y1; Vector3_t3722313464 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m1369122336_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1/DefaultComparer<UnityEngine.Vector4>::.ctor() extern "C" void DefaultComparer__ctor_m3373864119_gshared (DefaultComparer_t1171632270 * __this, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Comparer_1_t523816523 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Comparer_1_t523816523 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Vector4>::Compare(T,T) extern "C" int32_t DefaultComparer_Compare_m297694671_gshared (DefaultComparer_t1171632270 * __this, Vector4_t3319028937 ___x0, Vector4_t3319028937 ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DefaultComparer_Compare_m297694671_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { goto IL_001e; } { goto IL_001c; } { G_B4_0 = 0; goto IL_001d; } IL_001c: { G_B4_0 = (-1); } IL_001d: { return G_B4_0; } IL_001e: { goto IL_002b; } { return 1; } IL_002b: { Vector4_t3319028937 L_3 = ___x0; Vector4_t3319028937 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_4); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))) { goto IL_004d; } } { Vector4_t3319028937 L_6 = ___x0; Vector4_t3319028937 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); Vector4_t3319028937 L_9 = ___y1; int32_t L_10 = InterfaceFuncInvoker1< int32_t, Vector4_t3319028937 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Vector4>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))), (Vector4_t3319028937 )L_9); return L_10; } IL_004d: { Vector4_t3319028937 L_11 = ___x0; Vector4_t3319028937 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_12); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var))) { goto IL_0074; } } { Vector4_t3319028937 L_14 = ___x0; Vector4_t3319028937 L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_15); Vector4_t3319028937 L_17 = ___y1; Vector4_t3319028937 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18); int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_16, IComparable_t36111218_il2cpp_TypeInfo_var)), (RuntimeObject *)L_19); return L_20; } IL_0074: { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, (String_t*)_stringLiteral4135314742, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, DefaultComparer_Compare_m297694671_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic 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.Comparer`1<Global/FruitType>::.ctor() extern "C" void Comparer_1__ctor_m2890173435_gshared (Comparer_1_t3779732385 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<Global/FruitType>::.cctor() extern "C" void Comparer_1__cctor_m1738205000_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m1738205000_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t3779732385_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t3779732385 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t132580836 * L_12 = (DefaultComparer_t132580836 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t132580836 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t3779732385_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<Global/FruitType>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m1080883721_gshared (Comparer_1_t3779732385 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m1080883721_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<Global/FruitType>::Compare(T,T) */, (Comparer_1_t3779732385 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m1080883721_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Global/FruitType>::get_Default() extern "C" Comparer_1_t3779732385 * Comparer_1_get_Default_m2542969012_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t3779732385 * L_0 = ((Comparer_1_t3779732385_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.DateTime>::.ctor() extern "C" void Comparer_1__ctor_m1078828713_gshared (Comparer_1_t943317371 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.DateTime>::.cctor() extern "C" void Comparer_1__cctor_m1018589532_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m1018589532_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t943317371_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t943317371 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1591133118 * L_12 = (DefaultComparer_t1591133118 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1591133118 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t943317371_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.DateTime>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m4280289861_gshared (Comparer_1_t943317371 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m4280289861_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, DateTime_t3738529785 , DateTime_t3738529785 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.DateTime>::Compare(T,T) */, (Comparer_1_t943317371 *)__this, (DateTime_t3738529785 )((*(DateTime_t3738529785 *)((DateTime_t3738529785 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (DateTime_t3738529785 )((*(DateTime_t3738529785 *)((DateTime_t3738529785 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m4280289861_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.DateTime>::get_Default() extern "C" Comparer_1_t943317371 * Comparer_1_get_Default_m2298505598_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t943317371 * L_0 = ((Comparer_1_t943317371_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.DateTimeOffset>::.ctor() extern "C" void Comparer_1__ctor_m3812484202_gshared (Comparer_1_t434075093 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.DateTimeOffset>::.cctor() extern "C" void Comparer_1__cctor_m3761458313_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m3761458313_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t434075093_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t434075093 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1081890840 * L_12 = (DefaultComparer_t1081890840 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1081890840 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t434075093_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.DateTimeOffset>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m2537217645_gshared (Comparer_1_t434075093 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m2537217645_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, DateTimeOffset_t3229287507 , DateTimeOffset_t3229287507 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.DateTimeOffset>::Compare(T,T) */, (Comparer_1_t434075093 *)__this, (DateTimeOffset_t3229287507 )((*(DateTimeOffset_t3229287507 *)((DateTimeOffset_t3229287507 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (DateTimeOffset_t3229287507 )((*(DateTimeOffset_t3229287507 *)((DateTimeOffset_t3229287507 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m2537217645_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.DateTimeOffset>::get_Default() extern "C" Comparer_1_t434075093 * Comparer_1_get_Default_m4129565825_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t434075093 * L_0 = ((Comparer_1_t434075093_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.Guid>::.ctor() extern "C" void Comparer_1__ctor_m4224961417_gshared (Comparer_1_t398320473 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.Guid>::.cctor() extern "C" void Comparer_1__cctor_m1360765445_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m1360765445_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t398320473_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t398320473 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1046136220 * L_12 = (DefaultComparer_t1046136220 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1046136220 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t398320473_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.Guid>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m3331561281_gshared (Comparer_1_t398320473 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m3331561281_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, Guid_t , Guid_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Guid>::Compare(T,T) */, (Comparer_1_t398320473 *)__this, (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m3331561281_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Guid>::get_Default() extern "C" Comparer_1_t398320473 * Comparer_1_get_Default_m695486409_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t398320473 * L_0 = ((Comparer_1_t398320473_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.Int32>::.ctor() extern "C" void Comparer_1__ctor_m319670016_gshared (Comparer_1_t155733339 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.Int32>::.cctor() extern "C" void Comparer_1__cctor_m1333080997_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m1333080997_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t155733339_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t155733339 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t803549086 * L_12 = (DefaultComparer_t803549086 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t803549086 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t155733339_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m3319128700_gshared (Comparer_1_t155733339 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m3319128700_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t155733339 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m3319128700_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::get_Default() extern "C" Comparer_1_t155733339 * Comparer_1_get_Default_m1370910612_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t155733339 * L_0 = ((Comparer_1_t155733339_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.Object>::.ctor() extern "C" void Comparer_1__ctor_m3541673631_gshared (Comparer_1_t284893750 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.Object>::.cctor() extern "C" void Comparer_1__cctor_m3891417387_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m3891417387_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t284893750_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t284893750 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t932709497 * L_12 = (DefaultComparer_t932709497 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t932709497 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t284893750_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.Object>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m3873488533_gshared (Comparer_1_t284893750 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m3873488533_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t284893750 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m3873488533_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::get_Default() extern "C" Comparer_1_t284893750 * Comparer_1_get_Default_m1030668641_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t284893750 * L_0 = ((Comparer_1_t284893750_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument>::.ctor() extern "C" void Comparer_1__ctor_m2651131752_gshared (Comparer_1_t1787620592 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument>::.cctor() extern "C" void Comparer_1__cctor_m3074762297_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m3074762297_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t1787620592_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t1787620592 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t2435436339 * L_12 = (DefaultComparer_t2435436339 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t2435436339 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t1787620592_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m4179495191_gshared (Comparer_1_t1787620592 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m4179495191_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, CustomAttributeNamedArgument_t287865710 , CustomAttributeNamedArgument_t287865710 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument>::Compare(T,T) */, (Comparer_1_t1787620592 *)__this, (CustomAttributeNamedArgument_t287865710 )((*(CustomAttributeNamedArgument_t287865710 *)((CustomAttributeNamedArgument_t287865710 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (CustomAttributeNamedArgument_t287865710 )((*(CustomAttributeNamedArgument_t287865710 *)((CustomAttributeNamedArgument_t287865710 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m4179495191_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeNamedArgument>::get_Default() extern "C" Comparer_1_t1787620592 * Comparer_1_get_Default_m570833748_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t1787620592 * L_0 = ((Comparer_1_t1787620592_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument>::.ctor() extern "C" void Comparer_1__ctor_m554522841_gshared (Comparer_1_t4222905039 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument>::.cctor() extern "C" void Comparer_1__cctor_m3726381774_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m3726381774_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t4222905039_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t4222905039 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t575753490 * L_12 = (DefaultComparer_t575753490 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t575753490 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t4222905039_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m2314014408_gshared (Comparer_1_t4222905039 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m2314014408_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, CustomAttributeTypedArgument_t2723150157 , CustomAttributeTypedArgument_t2723150157 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument>::Compare(T,T) */, (Comparer_1_t4222905039 *)__this, (CustomAttributeTypedArgument_t2723150157 )((*(CustomAttributeTypedArgument_t2723150157 *)((CustomAttributeTypedArgument_t2723150157 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (CustomAttributeTypedArgument_t2723150157 )((*(CustomAttributeTypedArgument_t2723150157 *)((CustomAttributeTypedArgument_t2723150157 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m2314014408_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Reflection.CustomAttributeTypedArgument>::get_Default() extern "C" Comparer_1_t4222905039 * Comparer_1_get_Default_m4049309396_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t4222905039 * L_0 = ((Comparer_1_t4222905039_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<System.TimeSpan>::.ctor() extern "C" void Comparer_1__ctor_m1627921623_gshared (Comparer_1_t2380914131 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<System.TimeSpan>::.cctor() extern "C" void Comparer_1__cctor_m2471218188_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m2471218188_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t2380914131_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t2380914131 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t3028729878 * L_12 = (DefaultComparer_t3028729878 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t3028729878 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t2380914131_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<System.TimeSpan>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m664132038_gshared (Comparer_1_t2380914131 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m664132038_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, TimeSpan_t881159249 , TimeSpan_t881159249 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.TimeSpan>::Compare(T,T) */, (Comparer_1_t2380914131 *)__this, (TimeSpan_t881159249 )((*(TimeSpan_t881159249 *)((TimeSpan_t881159249 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (TimeSpan_t881159249 )((*(TimeSpan_t881159249 *)((TimeSpan_t881159249 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m664132038_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.TimeSpan>::get_Default() extern "C" Comparer_1_t2380914131 * Comparer_1_get_Default_m3102373764_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t2380914131 * L_0 = ((Comparer_1_t2380914131_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() extern "C" void Comparer_1__ctor_m598934217_gshared (Comparer_1_t3085732713 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.cctor() extern "C" void Comparer_1__cctor_m298632577_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m298632577_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t3085732713_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t3085732713 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t3733548460 * L_12 = (DefaultComparer_t3733548460 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t3733548460 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t3085732713_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m2018996185_gshared (Comparer_1_t3085732713 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m2018996185_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, OrderBlock_t1585977831 , OrderBlock_t1585977831 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Compare(T,T) */, (Comparer_1_t3085732713 *)__this, (OrderBlock_t1585977831 )((*(OrderBlock_t1585977831 *)((OrderBlock_t1585977831 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (OrderBlock_t1585977831 )((*(OrderBlock_t1585977831 *)((OrderBlock_t1585977831 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m2018996185_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Default() extern "C" Comparer_1_t3085732713 * Comparer_1_get_Default_m1947376189_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t3085732713 * L_0 = ((Comparer_1_t3085732713_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Color32>::.ctor() extern "C" void Comparer_1__ctor_m191896560_gshared (Comparer_1_t4100256174 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Color32>::.cctor() extern "C" void Comparer_1__cctor_m257787468_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m257787468_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t4100256174_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t4100256174 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t453104625 * L_12 = (DefaultComparer_t453104625 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t453104625 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t4100256174_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Color32>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m3846404545_gshared (Comparer_1_t4100256174 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m3846404545_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, Color32_t2600501292 , Color32_t2600501292 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Color32>::Compare(T,T) */, (Comparer_1_t4100256174 *)__this, (Color32_t2600501292 )((*(Color32_t2600501292 *)((Color32_t2600501292 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (Color32_t2600501292 )((*(Color32_t2600501292 *)((Color32_t2600501292 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m3846404545_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Color32>::get_Default() extern "C" Comparer_1_t4100256174 * Comparer_1_get_Default_m600741125_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t4100256174 * L_0 = ((Comparer_1_t4100256174_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor() extern "C" void Comparer_1__ctor_m3649041856_gshared (Comparer_1_t565094435 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::.cctor() extern "C" void Comparer_1__cctor_m3918410391_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m3918410391_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t565094435_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t565094435 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1212910182 * L_12 = (DefaultComparer_t1212910182 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1212910182 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t565094435_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m2674146735_gshared (Comparer_1_t565094435 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m2674146735_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, RaycastResult_t3360306849 , RaycastResult_t3360306849 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::Compare(T,T) */, (Comparer_1_t565094435 *)__this, (RaycastResult_t3360306849 )((*(RaycastResult_t3360306849 *)((RaycastResult_t3360306849 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (RaycastResult_t3360306849 )((*(RaycastResult_t3360306849 *)((RaycastResult_t3360306849 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m2674146735_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::get_Default() extern "C" Comparer_1_t565094435 * Comparer_1_get_Default_m1057501344_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t565094435 * L_0 = ((Comparer_1_t565094435_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::.ctor() extern "C" void Comparer_1__ctor_m3822922119_gshared (Comparer_1_t1575255988 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::.cctor() extern "C" void Comparer_1__cctor_m951016718_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m951016718_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t1575255988_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t1575255988 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t2223071735 * L_12 = (DefaultComparer_t2223071735 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t2223071735 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t1575255988_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m85666262_gshared (Comparer_1_t1575255988 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m85666262_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, UICharInfo_t75501106 , UICharInfo_t75501106 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::Compare(T,T) */, (Comparer_1_t1575255988 *)__this, (UICharInfo_t75501106 )((*(UICharInfo_t75501106 *)((UICharInfo_t75501106 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (UICharInfo_t75501106 )((*(UICharInfo_t75501106 *)((UICharInfo_t75501106 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m85666262_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::get_Default() extern "C" Comparer_1_t1575255988 * Comparer_1_get_Default_m2176685125_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t1575255988 * L_0 = ((Comparer_1_t1575255988_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::.ctor() extern "C" void Comparer_1__ctor_m1537709280_gshared (Comparer_1_t1400054396 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::.cctor() extern "C" void Comparer_1__cctor_m3470905005_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m3470905005_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t1400054396_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t1400054396 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t2047870143 * L_12 = (DefaultComparer_t2047870143 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t2047870143 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t1400054396_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m1313384821_gshared (Comparer_1_t1400054396 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m1313384821_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, UILineInfo_t4195266810 , UILineInfo_t4195266810 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::Compare(T,T) */, (Comparer_1_t1400054396 *)__this, (UILineInfo_t4195266810 )((*(UILineInfo_t4195266810 *)((UILineInfo_t4195266810 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (UILineInfo_t4195266810 )((*(UILineInfo_t4195266810 *)((UILineInfo_t4195266810 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m1313384821_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::get_Default() extern "C" Comparer_1_t1400054396 * Comparer_1_get_Default_m1596450988_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t1400054396 * L_0 = ((Comparer_1_t1400054396_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::.ctor() extern "C" void Comparer_1__ctor_m2001768893_gshared (Comparer_1_t1262285191 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::.cctor() extern "C" void Comparer_1__cctor_m1190408572_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m1190408572_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t1262285191_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t1262285191 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1910100938 * L_12 = (DefaultComparer_t1910100938 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1910100938 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t1262285191_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m1716300968_gshared (Comparer_1_t1262285191 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m1716300968_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, UIVertex_t4057497605 , UIVertex_t4057497605 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::Compare(T,T) */, (Comparer_1_t1262285191 *)__this, (UIVertex_t4057497605 )((*(UIVertex_t4057497605 *)((UIVertex_t4057497605 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (UIVertex_t4057497605 )((*(UIVertex_t4057497605 *)((UIVertex_t4057497605 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m1716300968_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::get_Default() extern "C" Comparer_1_t1262285191 * Comparer_1_get_Default_m1513846993_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t1262285191 * L_0 = ((Comparer_1_t1262285191_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::.ctor() extern "C" void Comparer_1__ctor_m1970789054_gshared (Comparer_1_t3655984405 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::.cctor() extern "C" void Comparer_1__cctor_m4224664544_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m4224664544_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t3655984405_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t3655984405 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t8832856 * L_12 = (DefaultComparer_t8832856 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t8832856 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t3655984405_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m1649952021_gshared (Comparer_1_t3655984405 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m1649952021_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, Vector2_t2156229523 , Vector2_t2156229523 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::Compare(T,T) */, (Comparer_1_t3655984405 *)__this, (Vector2_t2156229523 )((*(Vector2_t2156229523 *)((Vector2_t2156229523 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (Vector2_t2156229523 )((*(Vector2_t2156229523 *)((Vector2_t2156229523 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m1649952021_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::get_Default() extern "C" Comparer_1_t3655984405 * Comparer_1_get_Default_m3328503315_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t3655984405 * L_0 = ((Comparer_1_t3655984405_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::.ctor() extern "C" void Comparer_1__ctor_m2171919038_gshared (Comparer_1_t927101050 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::.cctor() extern "C" void Comparer_1__cctor_m2284995539_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m2284995539_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t927101050_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t927101050 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1574916797 * L_12 = (DefaultComparer_t1574916797 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1574916797 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t927101050_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m1050967453_gshared (Comparer_1_t927101050 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m1050967453_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, Vector3_t3722313464 , Vector3_t3722313464 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::Compare(T,T) */, (Comparer_1_t927101050 *)__this, (Vector3_t3722313464 )((*(Vector3_t3722313464 *)((Vector3_t3722313464 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (Vector3_t3722313464 )((*(Vector3_t3722313464 *)((Vector3_t3722313464 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m1050967453_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::get_Default() extern "C" Comparer_1_t927101050 * Comparer_1_get_Default_m3410302214_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t927101050 * L_0 = ((Comparer_1_t927101050_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::.ctor() extern "C" void Comparer_1__ctor_m1647958718_gshared (Comparer_1_t523816523 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::.cctor() extern "C" void Comparer_1__cctor_m2282308543_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1__cctor_m2282308543_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3); if (!L_4) { goto IL_0054; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (GenericComparer_1_t3581574675_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); TypeU5BU5D_t3940880105* L_7 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); Type_t * L_10 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_6, (TypeU5BU5D_t3940880105*)L_7); RuntimeObject * L_11 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_10, /*hidden argument*/NULL); ((Comparer_1_t523816523_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(((Comparer_1_t523816523 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))); goto IL_005e; } IL_0054: { DefaultComparer_t1171632270 * L_12 = (DefaultComparer_t1171632270 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (DefaultComparer_t1171632270 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((Comparer_1_t523816523_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set__default_0(L_12); } IL_005e: { return; } } // System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::System.Collections.IComparer.Compare(System.Object,System.Object) extern "C" int32_t Comparer_1_System_Collections_IComparer_Compare_m2016223770_gshared (Comparer_1_t523816523 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_1_System_Collections_IComparer_Compare_m2016223770_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0014; } } { RuntimeObject * L_1 = ___y1; if (L_1) { goto IL_0012; } } { G_B4_0 = 0; goto IL_0013; } IL_0012: { G_B4_0 = (-1); } IL_0013: { return G_B4_0; } IL_0014: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_001c; } } { return 1; } IL_001c: { RuntimeObject * L_3 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_4 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))) { goto IL_0045; } } { RuntimeObject * L_5 = ___x0; RuntimeObject * L_6 = ___y1; int32_t L_7 = VirtFuncInvoker2< int32_t, Vector4_t3319028937 , Vector4_t3319028937 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_t523816523 *)__this, (Vector4_t3319028937 )((*(Vector4_t3319028937 *)((Vector4_t3319028937 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), (Vector4_t3319028937 )((*(Vector4_t3319028937 *)((Vector4_t3319028937 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))))); return L_7; } IL_0045: { ArgumentException_t132251570 * L_8 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m3698743796(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Comparer_1_System_Collections_IComparer_Compare_m2016223770_RuntimeMethod_var); } } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::get_Default() extern "C" Comparer_1_t523816523 * Comparer_1_get_Default_m3607833401_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Comparer_1_t523816523 * L_0 = ((Comparer_1_t523816523_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->get__default_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m2150997492_gshared (Enumerator_t3923002270 * __this, Dictionary_2_t1968819495 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1968819495 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1968819495 * L_1 = ___dictionary0; int32_t L_2 = (int32_t)L_1->get_generation_14(); __this->set_stamp_2(L_2); return; } } extern "C" void Enumerator__ctor_m2150997492_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1968819495 * ___dictionary0, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); Enumerator__ctor_m2150997492(_thisAdjusted, ___dictionary0, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2979767597_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m2197239943((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t71524366 L_0 = (KeyValuePair_2_t71524366 )__this->get_current_3(); KeyValuePair_2_t71524366 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2979767597_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2979767597(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4080198166_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { Enumerator_Reset_m1314900927((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4080198166_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m4080198166(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m522483686_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m2197239943((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t71524366 * L_0 = (KeyValuePair_2_t71524366 *)__this->get_address_of_current_3(); int32_t L_1 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_2); KeyValuePair_2_t71524366 * L_4 = (KeyValuePair_2_t71524366 *)__this->get_address_of_current_3(); RuntimeObject * L_5 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); DictionaryEntry_t3123975638 L_6; memset(&L_6, 0, sizeof(L_6)); DictionaryEntry__ctor_m2585376310((&L_6), (RuntimeObject *)L_3, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m522483686_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m522483686(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m195047678_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { int32_t L_0 = Enumerator_get_CurrentKey_m2230405065((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); int32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m195047678_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m195047678(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3325938730_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enumerator_get_CurrentValue_m1016112330((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); return L_0; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3325938730_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3325938730(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m3398155861_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Enumerator_VerifyState_m194137655((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { return (bool)0; } IL_0014: { goto IL_007b; } IL_0019: { int32_t L_1 = (int32_t)__this->get_next_1(); int32_t L_2 = (int32_t)L_1; V_1 = (int32_t)L_2; __this->set_next_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_1; V_0 = (int32_t)L_3; Dictionary_2_t1968819495 * L_4 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); LinkU5BU5D_t964245573* L_5 = (LinkU5BU5D_t964245573*)L_4->get_linkSlots_5(); int32_t L_6 = V_0; int32_t L_7 = (int32_t)((L_5)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_6)))->get_HashCode_0(); if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)-2147483648LL)))) { goto IL_007b; } } { Dictionary_2_t1968819495 * L_8 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); Int32U5BU5D_t385246372* L_9 = (Int32U5BU5D_t385246372*)L_8->get_keySlots_6(); int32_t L_10 = V_0; int32_t L_11 = L_10; int32_t L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)); Dictionary_2_t1968819495 * L_13 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_14 = (ObjectU5BU5D_t2843939325*)L_13->get_valueSlots_7(); int32_t L_15 = V_0; int32_t L_16 = L_15; RuntimeObject * L_17 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16)); KeyValuePair_2_t71524366 L_18; memset(&L_18, 0, sizeof(L_18)); KeyValuePair_2__ctor_m2118224448((&L_18), (int32_t)L_12, (RuntimeObject *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); __this->set_current_3(L_18); return (bool)1; } IL_007b: { int32_t L_19 = (int32_t)__this->get_next_1(); Dictionary_2_t1968819495 * L_20 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); int32_t L_21 = (int32_t)L_20->get_touchedSlots_8(); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0019; } } { __this->set_next_1((-1)); return (bool)0; } } extern "C" bool Enumerator_MoveNext_m3398155861_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_MoveNext_m3398155861(_thisAdjusted, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() extern "C" KeyValuePair_2_t71524366 Enumerator_get_Current_m3431285658_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t71524366 L_0 = (KeyValuePair_2_t71524366 )__this->get_current_3(); return L_0; } } extern "C" KeyValuePair_2_t71524366 Enumerator_get_Current_m3431285658_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_get_Current_m3431285658(_thisAdjusted, method); } // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_CurrentKey() extern "C" int32_t Enumerator_get_CurrentKey_m2230405065_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m2197239943((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t71524366 * L_0 = (KeyValuePair_2_t71524366 *)__this->get_address_of_current_3(); int32_t L_1 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return L_1; } } extern "C" int32_t Enumerator_get_CurrentKey_m2230405065_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_get_CurrentKey_m2230405065(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_CurrentValue() extern "C" RuntimeObject * Enumerator_get_CurrentValue_m1016112330_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m2197239943((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t71524366 * L_0 = (KeyValuePair_2_t71524366 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" RuntimeObject * Enumerator_get_CurrentValue_m1016112330_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); return Enumerator_get_CurrentValue_m1016112330(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Reset() extern "C" void Enumerator_Reset_m1314900927_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { Enumerator_VerifyState_m194137655((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); __this->set_next_1(0); return; } } extern "C" void Enumerator_Reset_m1314900927_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); Enumerator_Reset_m1314900927(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::VerifyState() extern "C" void Enumerator_VerifyState_m194137655_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyState_m194137655_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1968819495 * L_0 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); if (L_0) { goto IL_0012; } } { ObjectDisposedException_t21392786 * L_1 = (ObjectDisposedException_t21392786 *)il2cpp_codegen_object_new(ObjectDisposedException_t21392786_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m3603759869(L_1, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyState_m194137655_RuntimeMethod_var); } IL_0012: { Dictionary_2_t1968819495 * L_2 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); int32_t L_3 = (int32_t)L_2->get_generation_14(); int32_t L_4 = (int32_t)__this->get_stamp_2(); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0033; } } { InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_5, (String_t*)_stringLiteral559985012, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Enumerator_VerifyState_m194137655_RuntimeMethod_var); } IL_0033: { return; } } extern "C" void Enumerator_VerifyState_m194137655_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); Enumerator_VerifyState_m194137655(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m2197239943_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyCurrent_m2197239943_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_VerifyState_m194137655((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_001d; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral3837798263, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyCurrent_m2197239943_RuntimeMethod_var); } IL_001d: { return; } } extern "C" void Enumerator_VerifyCurrent_m2197239943_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); Enumerator_VerifyCurrent_m2197239943(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m562365603_gshared (Enumerator_t3923002270 * __this, const RuntimeMethod* method) { { __this->set_dictionary_0((Dictionary_2_t1968819495 *)NULL); return; } } extern "C" void Enumerator_Dispose_m562365603_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3923002270 * _thisAdjusted = reinterpret_cast<Enumerator_t3923002270 *>(__this + 1); Enumerator_Dispose_m562365603(_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.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1195706188_gshared (Enumerator_t3398877024 * __this, Dictionary_2_t1444694249 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1444694249 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1444694249 * L_1 = ___dictionary0; int32_t L_2 = (int32_t)L_1->get_generation_14(); __this->set_stamp_2(L_2); return; } } extern "C" void Enumerator__ctor_m1195706188_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1444694249 * ___dictionary0, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); Enumerator__ctor_m1195706188(_thisAdjusted, ___dictionary0, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3816090481_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m829026141((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t3842366416 L_0 = (KeyValuePair_2_t3842366416 )__this->get_current_3(); KeyValuePair_2_t3842366416 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3816090481_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3816090481(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3673734757_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { Enumerator_Reset_m188913985((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3673734757_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3673734757(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3249874482_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m829026141((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t3842366416 * L_0 = (KeyValuePair_2_t3842366416 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Key_m2106922848((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); KeyValuePair_2_t3842366416 * L_2 = (KeyValuePair_2_t3842366416 *)__this->get_address_of_current_3(); bool L_3 = KeyValuePair_2_get_Value_m1669764045((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); bool L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_4); DictionaryEntry_t3123975638 L_6; memset(&L_6, 0, sizeof(L_6)); DictionaryEntry__ctor_m2585376310((&L_6), (RuntimeObject *)L_1, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3249874482_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3249874482(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2502357460_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enumerator_get_CurrentKey_m739604894((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); return L_0; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2502357460_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2502357460(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1554573429_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { bool L_0 = Enumerator_get_CurrentValue_m90765011((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); bool L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1554573429_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1554573429(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() extern "C" bool Enumerator_MoveNext_m481679286_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Enumerator_VerifyState_m4003066746((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { return (bool)0; } IL_0014: { goto IL_007b; } IL_0019: { int32_t L_1 = (int32_t)__this->get_next_1(); int32_t L_2 = (int32_t)L_1; V_1 = (int32_t)L_2; __this->set_next_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_1; V_0 = (int32_t)L_3; Dictionary_2_t1444694249 * L_4 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); LinkU5BU5D_t964245573* L_5 = (LinkU5BU5D_t964245573*)L_4->get_linkSlots_5(); int32_t L_6 = V_0; int32_t L_7 = (int32_t)((L_5)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_6)))->get_HashCode_0(); if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)-2147483648LL)))) { goto IL_007b; } } { Dictionary_2_t1444694249 * L_8 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_9 = (ObjectU5BU5D_t2843939325*)L_8->get_keySlots_6(); int32_t L_10 = V_0; int32_t L_11 = L_10; RuntimeObject * L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)); Dictionary_2_t1444694249 * L_13 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); BooleanU5BU5D_t2897418192* L_14 = (BooleanU5BU5D_t2897418192*)L_13->get_valueSlots_7(); int32_t L_15 = V_0; int32_t L_16 = L_15; bool L_17 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16)); KeyValuePair_2_t3842366416 L_18; memset(&L_18, 0, sizeof(L_18)); KeyValuePair_2__ctor_m23191374((&L_18), (RuntimeObject *)L_12, (bool)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); __this->set_current_3(L_18); return (bool)1; } IL_007b: { int32_t L_19 = (int32_t)__this->get_next_1(); Dictionary_2_t1444694249 * L_20 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); int32_t L_21 = (int32_t)L_20->get_touchedSlots_8(); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0019; } } { __this->set_next_1((-1)); return (bool)0; } } extern "C" bool Enumerator_MoveNext_m481679286_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_MoveNext_m481679286(_thisAdjusted, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() extern "C" KeyValuePair_2_t3842366416 Enumerator_get_Current_m3717060936_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t3842366416 L_0 = (KeyValuePair_2_t3842366416 )__this->get_current_3(); return L_0; } } extern "C" KeyValuePair_2_t3842366416 Enumerator_get_Current_m3717060936_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_get_Current_m3717060936(_thisAdjusted, method); } // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_CurrentKey() extern "C" RuntimeObject * Enumerator_get_CurrentKey_m739604894_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m829026141((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t3842366416 * L_0 = (KeyValuePair_2_t3842366416 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Key_m2106922848((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return L_1; } } extern "C" RuntimeObject * Enumerator_get_CurrentKey_m739604894_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_get_CurrentKey_m739604894(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_CurrentValue() extern "C" bool Enumerator_get_CurrentValue_m90765011_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m829026141((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t3842366416 * L_0 = (KeyValuePair_2_t3842366416 *)__this->get_address_of_current_3(); bool L_1 = KeyValuePair_2_get_Value_m1669764045((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" bool Enumerator_get_CurrentValue_m90765011_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); return Enumerator_get_CurrentValue_m90765011(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Reset() extern "C" void Enumerator_Reset_m188913985_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { Enumerator_VerifyState_m4003066746((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); __this->set_next_1(0); return; } } extern "C" void Enumerator_Reset_m188913985_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); Enumerator_Reset_m188913985(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::VerifyState() extern "C" void Enumerator_VerifyState_m4003066746_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyState_m4003066746_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1444694249 * L_0 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); if (L_0) { goto IL_0012; } } { ObjectDisposedException_t21392786 * L_1 = (ObjectDisposedException_t21392786 *)il2cpp_codegen_object_new(ObjectDisposedException_t21392786_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m3603759869(L_1, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyState_m4003066746_RuntimeMethod_var); } IL_0012: { Dictionary_2_t1444694249 * L_2 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); int32_t L_3 = (int32_t)L_2->get_generation_14(); int32_t L_4 = (int32_t)__this->get_stamp_2(); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0033; } } { InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_5, (String_t*)_stringLiteral559985012, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Enumerator_VerifyState_m4003066746_RuntimeMethod_var); } IL_0033: { return; } } extern "C" void Enumerator_VerifyState_m4003066746_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); Enumerator_VerifyState_m4003066746(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m829026141_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyCurrent_m829026141_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_VerifyState_m4003066746((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_001d; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral3837798263, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyCurrent_m829026141_RuntimeMethod_var); } IL_001d: { return; } } extern "C" void Enumerator_VerifyCurrent_m829026141_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); Enumerator_VerifyCurrent_m829026141(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() extern "C" void Enumerator_Dispose_m3834169052_gshared (Enumerator_t3398877024 * __this, const RuntimeMethod* method) { { __this->set_dictionary_0((Dictionary_2_t1444694249 *)NULL); return; } } extern "C" void Enumerator_Dispose_m3834169052_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3398877024 * _thisAdjusted = reinterpret_cast<Enumerator_t3398877024 *>(__this + 1); Enumerator_Dispose_m3834169052(_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.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m65667165_gshared (Enumerator_t1957567516 * __this, Dictionary_2_t3384741 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t3384741 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t3384741 * L_1 = ___dictionary0; int32_t L_2 = (int32_t)L_1->get_generation_14(); __this->set_stamp_2(L_2); return; } } extern "C" void Enumerator__ctor_m65667165_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t3384741 * ___dictionary0, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); Enumerator__ctor_m65667165(_thisAdjusted, ___dictionary0, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1890150222_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m3071620407((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2401056908 L_0 = (KeyValuePair_2_t2401056908 )__this->get_current_3(); KeyValuePair_2_t2401056908 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1890150222_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1890150222(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2915047493_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { Enumerator_Reset_m2443320674((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2915047493_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2915047493(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m859540448_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m3071620407((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2401056908 * L_0 = (KeyValuePair_2_t2401056908 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Key_m1218836954((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); KeyValuePair_2_t2401056908 * L_2 = (KeyValuePair_2_t2401056908 *)__this->get_address_of_current_3(); int32_t L_3 = KeyValuePair_2_get_Value_m755756747((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_4); DictionaryEntry_t3123975638 L_6; memset(&L_6, 0, sizeof(L_6)); DictionaryEntry__ctor_m2585376310((&L_6), (RuntimeObject *)L_1, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m859540448_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m859540448(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4039922590_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enumerator_get_CurrentKey_m889650866((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); return L_0; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4039922590_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4039922590(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m684446183_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { int32_t L_0 = Enumerator_get_CurrentValue_m3103267885((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); int32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m684446183_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m684446183(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() extern "C" bool Enumerator_MoveNext_m1556953412_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Enumerator_VerifyState_m1203790900((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { return (bool)0; } IL_0014: { goto IL_007b; } IL_0019: { int32_t L_1 = (int32_t)__this->get_next_1(); int32_t L_2 = (int32_t)L_1; V_1 = (int32_t)L_2; __this->set_next_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_1; V_0 = (int32_t)L_3; Dictionary_2_t3384741 * L_4 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); LinkU5BU5D_t964245573* L_5 = (LinkU5BU5D_t964245573*)L_4->get_linkSlots_5(); int32_t L_6 = V_0; int32_t L_7 = (int32_t)((L_5)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_6)))->get_HashCode_0(); if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)-2147483648LL)))) { goto IL_007b; } } { Dictionary_2_t3384741 * L_8 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_9 = (ObjectU5BU5D_t2843939325*)L_8->get_keySlots_6(); int32_t L_10 = V_0; int32_t L_11 = L_10; RuntimeObject * L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)); Dictionary_2_t3384741 * L_13 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); Int32U5BU5D_t385246372* L_14 = (Int32U5BU5D_t385246372*)L_13->get_valueSlots_7(); int32_t L_15 = V_0; int32_t L_16 = L_15; int32_t L_17 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16)); KeyValuePair_2_t2401056908 L_18; memset(&L_18, 0, sizeof(L_18)); KeyValuePair_2__ctor_m880186442((&L_18), (RuntimeObject *)L_12, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); __this->set_current_3(L_18); return (bool)1; } IL_007b: { int32_t L_19 = (int32_t)__this->get_next_1(); Dictionary_2_t3384741 * L_20 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); int32_t L_21 = (int32_t)L_20->get_touchedSlots_8(); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0019; } } { __this->set_next_1((-1)); return (bool)0; } } extern "C" bool Enumerator_MoveNext_m1556953412_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_MoveNext_m1556953412(_thisAdjusted, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() extern "C" KeyValuePair_2_t2401056908 Enumerator_get_Current_m2727535848_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t2401056908 L_0 = (KeyValuePair_2_t2401056908 )__this->get_current_3(); return L_0; } } extern "C" KeyValuePair_2_t2401056908 Enumerator_get_Current_m2727535848_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_get_Current_m2727535848(_thisAdjusted, method); } // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_CurrentKey() extern "C" RuntimeObject * Enumerator_get_CurrentKey_m889650866_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m3071620407((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2401056908 * L_0 = (KeyValuePair_2_t2401056908 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Key_m1218836954((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return L_1; } } extern "C" RuntimeObject * Enumerator_get_CurrentKey_m889650866_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_get_CurrentKey_m889650866(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_CurrentValue() extern "C" int32_t Enumerator_get_CurrentValue_m3103267885_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m3071620407((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2401056908 * L_0 = (KeyValuePair_2_t2401056908 *)__this->get_address_of_current_3(); int32_t L_1 = KeyValuePair_2_get_Value_m755756747((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" int32_t Enumerator_get_CurrentValue_m3103267885_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); return Enumerator_get_CurrentValue_m3103267885(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Reset() extern "C" void Enumerator_Reset_m2443320674_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { Enumerator_VerifyState_m1203790900((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); __this->set_next_1(0); return; } } extern "C" void Enumerator_Reset_m2443320674_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); Enumerator_Reset_m2443320674(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::VerifyState() extern "C" void Enumerator_VerifyState_m1203790900_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyState_m1203790900_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t3384741 * L_0 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); if (L_0) { goto IL_0012; } } { ObjectDisposedException_t21392786 * L_1 = (ObjectDisposedException_t21392786 *)il2cpp_codegen_object_new(ObjectDisposedException_t21392786_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m3603759869(L_1, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyState_m1203790900_RuntimeMethod_var); } IL_0012: { Dictionary_2_t3384741 * L_2 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); int32_t L_3 = (int32_t)L_2->get_generation_14(); int32_t L_4 = (int32_t)__this->get_stamp_2(); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0033; } } { InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_5, (String_t*)_stringLiteral559985012, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Enumerator_VerifyState_m1203790900_RuntimeMethod_var); } IL_0033: { return; } } extern "C" void Enumerator_VerifyState_m1203790900_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); Enumerator_VerifyState_m1203790900(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m3071620407_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyCurrent_m3071620407_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_VerifyState_m1203790900((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_001d; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral3837798263, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyCurrent_m3071620407_RuntimeMethod_var); } IL_001d: { return; } } extern "C" void Enumerator_VerifyCurrent_m3071620407_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); Enumerator_VerifyCurrent_m3071620407(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() extern "C" void Enumerator_Dispose_m1360775770_gshared (Enumerator_t1957567516 * __this, const RuntimeMethod* method) { { __this->set_dictionary_0((Dictionary_2_t3384741 *)NULL); return; } } extern "C" void Enumerator_Dispose_m1360775770_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1957567516 * _thisAdjusted = reinterpret_cast<Enumerator_t1957567516 *>(__this + 1); Enumerator_Dispose_m1360775770(_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.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1946955878_gshared (Enumerator_t2086727927 * __this, Dictionary_2_t132545152 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t132545152 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t132545152 * L_1 = ___dictionary0; int32_t L_2 = (int32_t)L_1->get_generation_14(); __this->set_stamp_2(L_2); return; } } extern "C" void Enumerator__ctor_m1946955878_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t132545152 * ___dictionary0, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); Enumerator__ctor_m1946955878(_thisAdjusted, ___dictionary0, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m921113401_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m93918543((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2530217319 L_0 = (KeyValuePair_2_t2530217319 )__this->get_current_3(); KeyValuePair_2_t2530217319 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); return L_2; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m921113401_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m921113401(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1970353910_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { Enumerator_Reset_m1473454555((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1970353910_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1970353910(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3417028588_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m93918543((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2530217319 * L_0 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Key_m4184817181((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); KeyValuePair_2_t2530217319 * L_2 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m1132502692((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); DictionaryEntry_t3123975638 L_4; memset(&L_4, 0, sizeof(L_4)); DictionaryEntry__ctor_m2585376310((&L_4), (RuntimeObject *)L_1, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" DictionaryEntry_t3123975638 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3417028588_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3417028588(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2500634048_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enumerator_get_CurrentKey_m3735262888((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); return L_0; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2500634048_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2500634048(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3510383352_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enumerator_get_CurrentValue_m785745355((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); return L_0; } } extern "C" RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3510383352_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3510383352(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m1107569389_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Enumerator_VerifyState_m2651392036((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { return (bool)0; } IL_0014: { goto IL_007b; } IL_0019: { int32_t L_1 = (int32_t)__this->get_next_1(); int32_t L_2 = (int32_t)L_1; V_1 = (int32_t)L_2; __this->set_next_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_1; V_0 = (int32_t)L_3; Dictionary_2_t132545152 * L_4 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); LinkU5BU5D_t964245573* L_5 = (LinkU5BU5D_t964245573*)L_4->get_linkSlots_5(); int32_t L_6 = V_0; int32_t L_7 = (int32_t)((L_5)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_6)))->get_HashCode_0(); if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)-2147483648LL)))) { goto IL_007b; } } { Dictionary_2_t132545152 * L_8 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_9 = (ObjectU5BU5D_t2843939325*)L_8->get_keySlots_6(); int32_t L_10 = V_0; int32_t L_11 = L_10; RuntimeObject * L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)); Dictionary_2_t132545152 * L_13 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_14 = (ObjectU5BU5D_t2843939325*)L_13->get_valueSlots_7(); int32_t L_15 = V_0; int32_t L_16 = L_15; RuntimeObject * L_17 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16)); KeyValuePair_2_t2530217319 L_18; memset(&L_18, 0, sizeof(L_18)); KeyValuePair_2__ctor_m1794021352((&L_18), (RuntimeObject *)L_12, (RuntimeObject *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); __this->set_current_3(L_18); return (bool)1; } IL_007b: { int32_t L_19 = (int32_t)__this->get_next_1(); Dictionary_2_t132545152 * L_20 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); int32_t L_21 = (int32_t)L_20->get_touchedSlots_8(); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0019; } } { __this->set_next_1((-1)); return (bool)0; } } extern "C" bool Enumerator_MoveNext_m1107569389_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_MoveNext_m1107569389(_thisAdjusted, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() extern "C" KeyValuePair_2_t2530217319 Enumerator_get_Current_m2198442938_gshared (Enumerator_t2086727927 * __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_m2198442938_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_get_Current_m2198442938(_thisAdjusted, method); } // TKey System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_CurrentKey() extern "C" RuntimeObject * Enumerator_get_CurrentKey_m3735262888_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m93918543((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2530217319 * L_0 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Key_m4184817181((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return L_1; } } extern "C" RuntimeObject * Enumerator_get_CurrentKey_m3735262888_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_get_CurrentKey_m3735262888(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_CurrentValue() extern "C" RuntimeObject * Enumerator_get_CurrentValue_m785745355_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { Enumerator_VerifyCurrent_m93918543((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); KeyValuePair_2_t2530217319 * L_0 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m1132502692((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" RuntimeObject * Enumerator_get_CurrentValue_m785745355_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); return Enumerator_get_CurrentValue_m785745355(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Reset() extern "C" void Enumerator_Reset_m1473454555_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { Enumerator_VerifyState_m2651392036((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); __this->set_next_1(0); return; } } extern "C" void Enumerator_Reset_m1473454555_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); Enumerator_Reset_m1473454555(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::VerifyState() extern "C" void Enumerator_VerifyState_m2651392036_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyState_m2651392036_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t132545152 * L_0 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); if (L_0) { goto IL_0012; } } { ObjectDisposedException_t21392786 * L_1 = (ObjectDisposedException_t21392786 *)il2cpp_codegen_object_new(ObjectDisposedException_t21392786_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m3603759869(L_1, (String_t*)NULL, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyState_m2651392036_RuntimeMethod_var); } IL_0012: { Dictionary_2_t132545152 * L_2 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); int32_t L_3 = (int32_t)L_2->get_generation_14(); int32_t L_4 = (int32_t)__this->get_stamp_2(); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0033; } } { InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_5, (String_t*)_stringLiteral559985012, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Enumerator_VerifyState_m2651392036_RuntimeMethod_var); } IL_0033: { return; } } extern "C" void Enumerator_VerifyState_m2651392036_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); Enumerator_VerifyState_m2651392036(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::VerifyCurrent() extern "C" void Enumerator_VerifyCurrent_m93918543_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_VerifyCurrent_m93918543_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_VerifyState_m2651392036((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); int32_t L_0 = (int32_t)__this->get_next_1(); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_001d; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral3837798263, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerator_VerifyCurrent_m93918543_RuntimeMethod_var); } IL_001d: { return; } } extern "C" void Enumerator_VerifyCurrent_m93918543_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); Enumerator_VerifyCurrent_m93918543(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m3885012575_gshared (Enumerator_t2086727927 * __this, const RuntimeMethod* method) { { __this->set_dictionary_0((Dictionary_2_t132545152 *)NULL); return; } } extern "C" void Enumerator_Dispose_m3885012575_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2086727927 * _thisAdjusted = reinterpret_cast<Enumerator_t2086727927 *>(__this + 1); Enumerator_Dispose_m3885012575(_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.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ShimEnumerator__ctor_m2682554310_gshared (ShimEnumerator_t1965540292 * __this, Dictionary_2_t1968819495 * ___host0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1968819495 * L_0 = ___host0; Enumerator_t3923002270 L_1 = (( Enumerator_t3923002270 (*) (Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1968819495 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } // System.Boolean System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::MoveNext() extern "C" bool ShimEnumerator_MoveNext_m885796689_gshared (ShimEnumerator_t1965540292 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m3398155861((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::get_Entry() extern "C" DictionaryEntry_t3123975638 ShimEnumerator_get_Entry_m537093886_gshared (ShimEnumerator_t1965540292 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Entry_m537093886_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_t3923002270 L_0 = (Enumerator_t3923002270 )__this->get_host_enumerator_0(); Enumerator_t3923002270 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, (RuntimeObject*)L_2); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::get_Key() extern "C" RuntimeObject * ShimEnumerator_get_Key_m2888790658_gshared (ShimEnumerator_t1965540292 * __this, const RuntimeMethod* method) { KeyValuePair_2_t71524366 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t71524366 L_1 = Enumerator_get_Current_m3431285658((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t71524366 )L_1; int32_t L_2 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), &L_3); return L_4; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::get_Value() extern "C" RuntimeObject * ShimEnumerator_get_Value_m2673520591_gshared (ShimEnumerator_t1965540292 * __this, const RuntimeMethod* method) { KeyValuePair_2_t71524366 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t71524366 L_1 = Enumerator_get_Current_m3431285658((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t71524366 )L_1; RuntimeObject * L_2 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return L_2; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::get_Current() extern "C" RuntimeObject * ShimEnumerator_get_Current_m467786447_gshared (ShimEnumerator_t1965540292 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Current_m467786447_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DictionaryEntry_t3123975638 L_0 = (( DictionaryEntry_t3123975638 (*) (ShimEnumerator_t1965540292 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((ShimEnumerator_t1965540292 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); DictionaryEntry_t3123975638 L_1 = L_0; RuntimeObject * L_2 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Object>::Reset() extern "C" void ShimEnumerator_Reset_m2537508675_gshared (ShimEnumerator_t1965540292 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m1314900927((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); 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.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ShimEnumerator__ctor_m4148301180_gshared (ShimEnumerator_t1441415046 * __this, Dictionary_2_t1444694249 * ___host0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1444694249 * L_0 = ___host0; Enumerator_t3398877024 L_1 = (( Enumerator_t3398877024 (*) (Dictionary_2_t1444694249 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1444694249 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } // System.Boolean System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::MoveNext() extern "C" bool ShimEnumerator_MoveNext_m242844913_gshared (ShimEnumerator_t1441415046 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m481679286((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::get_Entry() extern "C" DictionaryEntry_t3123975638 ShimEnumerator_get_Entry_m1811677795_gshared (ShimEnumerator_t1441415046 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Entry_m1811677795_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_t3398877024 L_0 = (Enumerator_t3398877024 )__this->get_host_enumerator_0(); Enumerator_t3398877024 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, (RuntimeObject*)L_2); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::get_Key() extern "C" RuntimeObject * ShimEnumerator_get_Key_m3066712861_gshared (ShimEnumerator_t1441415046 * __this, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t3842366416 L_1 = Enumerator_get_Current_m3717060936((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t3842366416 )L_1; RuntimeObject * L_2 = KeyValuePair_2_get_Key_m2106922848((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return L_2; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::get_Value() extern "C" RuntimeObject * ShimEnumerator_get_Value_m3807405297_gshared (ShimEnumerator_t1441415046 * __this, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t3842366416 L_1 = Enumerator_get_Current_m3717060936((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t3842366416 )L_1; bool L_2 = KeyValuePair_2_get_Value_m1669764045((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); bool L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_3); return L_4; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::get_Current() extern "C" RuntimeObject * ShimEnumerator_get_Current_m3504536618_gshared (ShimEnumerator_t1441415046 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Current_m3504536618_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DictionaryEntry_t3123975638 L_0 = (( DictionaryEntry_t3123975638 (*) (ShimEnumerator_t1441415046 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((ShimEnumerator_t1441415046 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); DictionaryEntry_t3123975638 L_1 = L_0; RuntimeObject * L_2 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Boolean>::Reset() extern "C" void ShimEnumerator_Reset_m2548503932_gshared (ShimEnumerator_t1441415046 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m188913985((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); 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.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ShimEnumerator__ctor_m266390322_gshared (ShimEnumerator_t105538 * __this, Dictionary_2_t3384741 * ___host0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t3384741 * L_0 = ___host0; Enumerator_t1957567516 L_1 = (( Enumerator_t1957567516 (*) (Dictionary_2_t3384741 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t3384741 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } // System.Boolean System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::MoveNext() extern "C" bool ShimEnumerator_MoveNext_m3637037813_gshared (ShimEnumerator_t105538 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m1556953412((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::get_Entry() extern "C" DictionaryEntry_t3123975638 ShimEnumerator_get_Entry_m2018664724_gshared (ShimEnumerator_t105538 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Entry_m2018664724_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_t1957567516 L_0 = (Enumerator_t1957567516 )__this->get_host_enumerator_0(); Enumerator_t1957567516 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, (RuntimeObject*)L_2); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::get_Key() extern "C" RuntimeObject * ShimEnumerator_get_Key_m317201915_gshared (ShimEnumerator_t105538 * __this, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t2401056908 L_1 = Enumerator_get_Current_m2727535848((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t2401056908 )L_1; RuntimeObject * L_2 = KeyValuePair_2_get_Key_m1218836954((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return L_2; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::get_Value() extern "C" RuntimeObject * ShimEnumerator_get_Value_m153531060_gshared (ShimEnumerator_t105538 * __this, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t2401056908 L_1 = Enumerator_get_Current_m2727535848((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t2401056908 )L_1; int32_t L_2 = KeyValuePair_2_get_Value_m755756747((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_3); return L_4; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::get_Current() extern "C" RuntimeObject * ShimEnumerator_get_Current_m3395837292_gshared (ShimEnumerator_t105538 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Current_m3395837292_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DictionaryEntry_t3123975638 L_0 = (( DictionaryEntry_t3123975638 (*) (ShimEnumerator_t105538 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((ShimEnumerator_t105538 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); DictionaryEntry_t3123975638 L_1 = L_0; RuntimeObject * L_2 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Int32>::Reset() extern "C" void ShimEnumerator_Reset_m381506072_gshared (ShimEnumerator_t105538 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m2443320674((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); 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.Dictionary`2/ShimEnumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ShimEnumerator__ctor_m2143350687_gshared (ShimEnumerator_t129265949 * __this, Dictionary_2_t132545152 * ___host0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t132545152 * L_0 = ___host0; Enumerator_t2086727927 L_1 = (( Enumerator_t2086727927 (*) (Dictionary_2_t132545152 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t132545152 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } // System.Boolean System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object>::MoveNext() extern "C" bool ShimEnumerator_MoveNext_m2406150314_gshared (ShimEnumerator_t129265949 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m1107569389((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object>::get_Entry() extern "C" DictionaryEntry_t3123975638 ShimEnumerator_get_Entry_m979380979_gshared (ShimEnumerator_t129265949 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Entry_m979380979_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enumerator_t2086727927 L_0 = (Enumerator_t2086727927 )__this->get_host_enumerator_0(); Enumerator_t2086727927 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, (RuntimeObject*)L_2); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object>::get_Key() extern "C" RuntimeObject * ShimEnumerator_get_Key_m4155849607_gshared (ShimEnumerator_t129265949 * __this, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t2530217319 L_1 = Enumerator_get_Current_m2198442938((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t2530217319 )L_1; RuntimeObject * L_2 = KeyValuePair_2_get_Key_m4184817181((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return L_2; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object>::get_Value() extern "C" RuntimeObject * ShimEnumerator_get_Value_m1878724567_gshared (ShimEnumerator_t129265949 * __this, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 V_0; memset(&V_0, 0, sizeof(V_0)); { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t2530217319 L_1 = Enumerator_get_Current_m2198442938((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (KeyValuePair_2_t2530217319 )L_1; RuntimeObject * L_2 = KeyValuePair_2_get_Value_m1132502692((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return L_2; } } // System.Object System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object>::get_Current() extern "C" RuntimeObject * ShimEnumerator_get_Current_m2901126692_gshared (ShimEnumerator_t129265949 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShimEnumerator_get_Current_m2901126692_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DictionaryEntry_t3123975638 L_0 = (( DictionaryEntry_t3123975638 (*) (ShimEnumerator_t129265949 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((ShimEnumerator_t129265949 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); DictionaryEntry_t3123975638 L_1 = L_0; RuntimeObject * L_2 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Object,System.Object>::Reset() extern "C" void ShimEnumerator_Reset_m2622870284_gshared (ShimEnumerator_t129265949 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m1473454555((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); 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.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m2638607165_gshared (Transform_1_t2448278169 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m3750720560_gshared (Transform_1_t2448278169 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { DictionaryEntry_t3123975638 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m3750720560((Transform_1_t2448278169 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, void*, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< DictionaryEntry_t3123975638 , int32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< DictionaryEntry_t3123975638 , int32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< DictionaryEntry_t3123975638 , int32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< DictionaryEntry_t3123975638 , int32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (void*, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m1757796657_gshared (Transform_1_t2448278169 * __this, int32_t ___key0, RuntimeObject * ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m1757796657_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___key0); __d_args[1] = ___value1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.DictionaryEntry>::EndInvoke(System.IAsyncResult) extern "C" DictionaryEntry_t3123975638 Transform_1_EndInvoke_m1589228604_gshared (Transform_1_t2448278169 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(DictionaryEntry_t3123975638 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m2810088858_gshared (Transform_1_t3690794193 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t71524366 Transform_1_Invoke_m1839683782_gshared (Transform_1_t3690794193 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t71524366 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m1839683782((Transform_1_t3690794193 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef KeyValuePair_2_t71524366 (*FunctionPointerType) (RuntimeObject *, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef KeyValuePair_2_t71524366 (*FunctionPointerType) (RuntimeObject *, void*, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< KeyValuePair_2_t71524366 , int32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< KeyValuePair_2_t71524366 , int32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< KeyValuePair_2_t71524366 , int32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< KeyValuePair_2_t71524366 , int32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef KeyValuePair_2_t71524366 (*FunctionPointerType) (void*, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m2888556735_gshared (Transform_1_t3690794193 * __this, int32_t ___key0, RuntimeObject * ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m2888556735_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___key0); __d_args[1] = ___value1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::EndInvoke(System.IAsyncResult) extern "C" KeyValuePair_2_t71524366 Transform_1_EndInvoke_m2985662404_gshared (Transform_1_t3690794193 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(KeyValuePair_2_t71524366 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m3743080137_gshared (Transform_1_t2404408695 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object>::Invoke(TKey,TValue) extern "C" RuntimeObject * Transform_1_Invoke_m4135861535_gshared (Transform_1_t2404408695 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { RuntimeObject * result = NULL; if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m4135861535((Transform_1_t2404408695 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< RuntimeObject *, int32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< RuntimeObject *, int32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< RuntimeObject *, int32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< RuntimeObject *, int32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef RuntimeObject * (*FunctionPointerType) (void*, int32_t, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m490223026_gshared (Transform_1_t2404408695 * __this, int32_t ___key0, RuntimeObject * ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m490223026_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___key0); __d_args[1] = ___value1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,System.Object,System.Object>::EndInvoke(System.IAsyncResult) extern "C" RuntimeObject * Transform_1_EndInvoke_m1599247989_gshared (Transform_1_t2404408695 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (RuntimeObject *)__result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m3395112498_gshared (Transform_1_t1235930838 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean>::Invoke(TKey,TValue) extern "C" bool Transform_1_Invoke_m3827729552_gshared (Transform_1_t1235930838 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { bool result = false; if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m3827729552((Transform_1_t1235930838 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef bool (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef bool (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< bool, RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< bool, RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< bool, RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< bool, RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef bool (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< bool, bool >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< bool, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef bool (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m2643675321_gshared (Transform_1_t1235930838 * __this, RuntimeObject * ___key0, bool ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m2643675321_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___value1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Boolean>::EndInvoke(System.IAsyncResult) extern "C" bool Transform_1_EndInvoke_m2748969988_gshared (Transform_1_t1235930838 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m1371731675_gshared (Transform_1_t4262618511 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m1839759353_gshared (Transform_1_t4262618511 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { DictionaryEntry_t3123975638 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m1839759353((Transform_1_t4262618511 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< DictionaryEntry_t3123975638 , bool >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< DictionaryEntry_t3123975638 , bool >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< DictionaryEntry_t3123975638 , bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m2300688636_gshared (Transform_1_t4262618511 * __this, RuntimeObject * ___key0, bool ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m2300688636_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___value1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.DictionaryEntry>::EndInvoke(System.IAsyncResult) extern "C" DictionaryEntry_t3123975638 Transform_1_EndInvoke_m1824035816_gshared (Transform_1_t4262618511 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(DictionaryEntry_t3123975638 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m677223493_gshared (Transform_1_t686041993 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t3842366416 Transform_1_Invoke_m2468053724_gshared (Transform_1_t686041993 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m2468053724((Transform_1_t686041993 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef KeyValuePair_2_t3842366416 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef KeyValuePair_2_t3842366416 (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< KeyValuePair_2_t3842366416 , RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< KeyValuePair_2_t3842366416 , RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< KeyValuePair_2_t3842366416 , RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< KeyValuePair_2_t3842366416 , RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef KeyValuePair_2_t3842366416 (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< KeyValuePair_2_t3842366416 , bool >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< KeyValuePair_2_t3842366416 , bool >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< KeyValuePair_2_t3842366416 , bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< KeyValuePair_2_t3842366416 , bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef KeyValuePair_2_t3842366416 (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m669197031_gshared (Transform_1_t686041993 * __this, RuntimeObject * ___key0, bool ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m669197031_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___value1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Boolean,System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::EndInvoke(System.IAsyncResult) extern "C" KeyValuePair_2_t3842366416 Transform_1_EndInvoke_m2716226219_gshared (Transform_1_t686041993 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(KeyValuePair_2_t3842366416 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m4142159300_gshared (Transform_1_t1750446691 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m2424077850_gshared (Transform_1_t1750446691 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { DictionaryEntry_t3123975638 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m2424077850((Transform_1_t1750446691 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (void*, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m410735052_gshared (Transform_1_t1750446691 * __this, RuntimeObject * ___key0, int32_t ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m410735052_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___value1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.DictionaryEntry>::EndInvoke(System.IAsyncResult) extern "C" DictionaryEntry_t3123975638 Transform_1_EndInvoke_m2182030084_gshared (Transform_1_t1750446691 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(DictionaryEntry_t3123975638 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m3369371265_gshared (Transform_1_t1027527961 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t2401056908 Transform_1_Invoke_m484886507_gshared (Transform_1_t1027527961 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m484886507((Transform_1_t1027527961 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef KeyValuePair_2_t2401056908 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef KeyValuePair_2_t2401056908 (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< KeyValuePair_2_t2401056908 , RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< KeyValuePair_2_t2401056908 , RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< KeyValuePair_2_t2401056908 , RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< KeyValuePair_2_t2401056908 , RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef KeyValuePair_2_t2401056908 (*FunctionPointerType) (void*, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< KeyValuePair_2_t2401056908 , int32_t >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< KeyValuePair_2_t2401056908 , int32_t >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< KeyValuePair_2_t2401056908 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< KeyValuePair_2_t2401056908 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef KeyValuePair_2_t2401056908 (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m3802763823_gshared (Transform_1_t1027527961 * __this, RuntimeObject * ___key0, int32_t ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m3802763823_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___value1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::EndInvoke(System.IAsyncResult) extern "C" KeyValuePair_2_t2401056908 Transform_1_EndInvoke_m988340631_gshared (Transform_1_t1027527961 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(KeyValuePair_2_t2401056908 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m1931395988_gshared (Transform_1_t1577416806 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32>::Invoke(TKey,TValue) extern "C" int32_t Transform_1_Invoke_m561030424_gshared (Transform_1_t1577416806 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { int32_t result = 0; if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m561030424((Transform_1_t1577416806 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef int32_t (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef int32_t (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef int32_t (*FunctionPointerType) (void*, RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< int32_t, int32_t >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< int32_t, int32_t >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef int32_t (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m2849783396_gshared (Transform_1_t1577416806 * __this, RuntimeObject * ___key0, int32_t ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Transform_1_BeginInvoke_m2849783396_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___value1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Int32,System.Int32>::EndInvoke(System.IAsyncResult) extern "C" int32_t Transform_1_EndInvoke_m4080596031_gshared (Transform_1_t1577416806 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m1781248964_gshared (Transform_1_t4209139644 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry>::Invoke(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Transform_1_Invoke_m841737656_gshared (Transform_1_t4209139644 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { DictionaryEntry_t3123975638 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m841737656((Transform_1_t4209139644 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< DictionaryEntry_t3123975638 , RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< DictionaryEntry_t3123975638 , RuntimeObject * >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< DictionaryEntry_t3123975638 , RuntimeObject * >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< DictionaryEntry_t3123975638 , RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef DictionaryEntry_t3123975638 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m3697921475_gshared (Transform_1_t4209139644 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = ___value1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.DictionaryEntry>::EndInvoke(System.IAsyncResult) extern "C" DictionaryEntry_t3123975638 Transform_1_EndInvoke_m1973275694_gshared (Transform_1_t4209139644 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(DictionaryEntry_t3123975638 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m498158356_gshared (Transform_1_t3615381325 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(TKey,TValue) extern "C" KeyValuePair_2_t2530217319 Transform_1_Invoke_m1731820209_gshared (Transform_1_t3615381325 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 result; memset(&result, 0, sizeof(result)); if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m1731820209((Transform_1_t3615381325 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef KeyValuePair_2_t2530217319 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef KeyValuePair_2_t2530217319 (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< KeyValuePair_2_t2530217319 , RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< KeyValuePair_2_t2530217319 , RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< KeyValuePair_2_t2530217319 , RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< KeyValuePair_2_t2530217319 , RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef KeyValuePair_2_t2530217319 (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< KeyValuePair_2_t2530217319 , RuntimeObject * >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< KeyValuePair_2_t2530217319 , RuntimeObject * >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< KeyValuePair_2_t2530217319 , RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< KeyValuePair_2_t2530217319 , RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef KeyValuePair_2_t2530217319 (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m912085017_gshared (Transform_1_t3615381325 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = ___value1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::EndInvoke(System.IAsyncResult) extern "C" KeyValuePair_2_t2530217319 Transform_1_EndInvoke_m1701794896_gshared (Transform_1_t3615381325 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(KeyValuePair_2_t2530217319 *)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) extern "C" void Transform_1__ctor_m2699925986_gshared (Transform_1_t4165270170 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object>::Invoke(TKey,TValue) extern "C" RuntimeObject * Transform_1_Invoke_m2986796014_gshared (Transform_1_t4165270170 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { RuntimeObject * result = NULL; if(__this->get_prev_9() != NULL) { Transform_1_Invoke_m2986796014((Transform_1_t4165270170 *)__this->get_prev_9(), ___key0, ___value1, method); } Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); bool ___methodIsStatic = MethodIsStatic(targetMethod); if (___methodIsStatic) { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // open { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, ___key0, ___value1, targetMethod); } } else { // closed { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___key0, ___value1, targetMethod); } } } else { if (il2cpp_codegen_method_parameter_count(targetMethod) == 2) { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); else result = GenericVirtFuncInvoker2< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___value1); else result = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___value1); } } else { typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___value1, targetMethod); } } else { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___key0, ___value1); else result = GenericVirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___key0, ___value1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0, ___value1); else result = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0, ___value1); } } else { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, ___value1, targetMethod); } } } return result; } // System.IAsyncResult System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object>::BeginInvoke(TKey,TValue,System.AsyncCallback,System.Object) extern "C" RuntimeObject* Transform_1_BeginInvoke_m500585065_gshared (Transform_1_t4165270170 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___key0; __d_args[1] = ___value1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // TRet System.Collections.Generic.Dictionary`2/Transform`1<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) extern "C" RuntimeObject * Transform_1_EndInvoke_m522847676_gshared (Transform_1_t4165270170 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (RuntimeObject *)__result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1849900510_gshared (Enumerator_t2537713152 * __this, Dictionary_2_t1968819495 * ___host0, const RuntimeMethod* method) { { Dictionary_2_t1968819495 * L_0 = ___host0; Enumerator_t3923002270 L_1 = (( Enumerator_t3923002270 (*) (Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Dictionary_2_t1968819495 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } extern "C" void Enumerator__ctor_m1849900510_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1968819495 * ___host0, const RuntimeMethod* method) { Enumerator_t2537713152 * _thisAdjusted = reinterpret_cast<Enumerator_t2537713152 *>(__this + 1); Enumerator__ctor_m1849900510(_thisAdjusted, ___host0, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1657817602_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); RuntimeObject * L_1 = Enumerator_get_CurrentValue_m1016112330((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_1; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1657817602_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2537713152 * _thisAdjusted = reinterpret_cast<Enumerator_t2537713152 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1657817602(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2917956982_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m1314900927((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2917956982_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2537713152 * _thisAdjusted = reinterpret_cast<Enumerator_t2537713152 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2917956982(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m3503748991_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); Enumerator_Dispose_m562365603((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return; } } extern "C" void Enumerator_Dispose_m3503748991_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2537713152 * _thisAdjusted = reinterpret_cast<Enumerator_t2537713152 *>(__this + 1); Enumerator_Dispose_m3503748991(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m2602845255_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m3398155861((Enumerator_t3923002270 *)(Enumerator_t3923002270 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" bool Enumerator_MoveNext_m2602845255_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2537713152 * _thisAdjusted = reinterpret_cast<Enumerator_t2537713152 *>(__this + 1); return Enumerator_MoveNext_m2602845255(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() extern "C" RuntimeObject * Enumerator_get_Current_m2250080680_gshared (Enumerator_t2537713152 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 * L_0 = (Enumerator_t3923002270 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t71524366 * L_1 = (KeyValuePair_2_t71524366 *)L_0->get_address_of_current_3(); RuntimeObject * L_2 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_2; } } extern "C" RuntimeObject * Enumerator_get_Current_m2250080680_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2537713152 * _thisAdjusted = reinterpret_cast<Enumerator_t2537713152 *>(__this + 1); return Enumerator_get_Current_m2250080680(_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.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1558933899_gshared (Enumerator_t2013587906 * __this, Dictionary_2_t1444694249 * ___host0, const RuntimeMethod* method) { { Dictionary_2_t1444694249 * L_0 = ___host0; Enumerator_t3398877024 L_1 = (( Enumerator_t3398877024 (*) (Dictionary_2_t1444694249 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Dictionary_2_t1444694249 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } extern "C" void Enumerator__ctor_m1558933899_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1444694249 * ___host0, const RuntimeMethod* method) { Enumerator_t2013587906 * _thisAdjusted = reinterpret_cast<Enumerator_t2013587906 *>(__this + 1); Enumerator__ctor_m1558933899(_thisAdjusted, ___host0, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1975949486_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_get_CurrentValue_m90765011((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2); return L_3; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1975949486_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2013587906 * _thisAdjusted = reinterpret_cast<Enumerator_t2013587906 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1975949486(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m53411943_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m188913985((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m53411943_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2013587906 * _thisAdjusted = reinterpret_cast<Enumerator_t2013587906 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m53411943(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() extern "C" void Enumerator_Dispose_m4166166038_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); Enumerator_Dispose_m3834169052((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return; } } extern "C" void Enumerator_Dispose_m4166166038_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2013587906 * _thisAdjusted = reinterpret_cast<Enumerator_t2013587906 *>(__this + 1); Enumerator_Dispose_m4166166038(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() extern "C" bool Enumerator_MoveNext_m339600382_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m481679286((Enumerator_t3398877024 *)(Enumerator_t3398877024 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" bool Enumerator_MoveNext_m339600382_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2013587906 * _thisAdjusted = reinterpret_cast<Enumerator_t2013587906 *>(__this + 1); return Enumerator_MoveNext_m339600382(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() extern "C" bool Enumerator_get_Current_m1908012892_gshared (Enumerator_t2013587906 * __this, const RuntimeMethod* method) { { Enumerator_t3398877024 * L_0 = (Enumerator_t3398877024 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t3842366416 * L_1 = (KeyValuePair_2_t3842366416 *)L_0->get_address_of_current_3(); bool L_2 = KeyValuePair_2_get_Value_m1669764045((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_2; } } extern "C" bool Enumerator_get_Current_m1908012892_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2013587906 * _thisAdjusted = reinterpret_cast<Enumerator_t2013587906 *>(__this + 1); return Enumerator_get_Current_m1908012892(_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.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m1734342590_gshared (Enumerator_t572278398 * __this, Dictionary_2_t3384741 * ___host0, const RuntimeMethod* method) { { Dictionary_2_t3384741 * L_0 = ___host0; Enumerator_t1957567516 L_1 = (( Enumerator_t1957567516 (*) (Dictionary_2_t3384741 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Dictionary_2_t3384741 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } extern "C" void Enumerator__ctor_m1734342590_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t3384741 * ___host0, const RuntimeMethod* method) { Enumerator_t572278398 * _thisAdjusted = reinterpret_cast<Enumerator_t572278398 *>(__this + 1); Enumerator__ctor_m1734342590(_thisAdjusted, ___host0, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1987977288_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); int32_t L_1 = Enumerator_get_CurrentValue_m3103267885((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2); return L_3; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1987977288_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t572278398 * _thisAdjusted = reinterpret_cast<Enumerator_t572278398 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1987977288(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4283504067_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m2443320674((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4283504067_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t572278398 * _thisAdjusted = reinterpret_cast<Enumerator_t572278398 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m4283504067(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() extern "C" void Enumerator_Dispose_m3040896940_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); Enumerator_Dispose_m1360775770((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return; } } extern "C" void Enumerator_Dispose_m3040896940_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t572278398 * _thisAdjusted = reinterpret_cast<Enumerator_t572278398 *>(__this + 1); Enumerator_Dispose_m3040896940(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() extern "C" bool Enumerator_MoveNext_m3045873697_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m1556953412((Enumerator_t1957567516 *)(Enumerator_t1957567516 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" bool Enumerator_MoveNext_m3045873697_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t572278398 * _thisAdjusted = reinterpret_cast<Enumerator_t572278398 *>(__this + 1); return Enumerator_MoveNext_m3045873697(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() extern "C" int32_t Enumerator_get_Current_m926428745_gshared (Enumerator_t572278398 * __this, const RuntimeMethod* method) { { Enumerator_t1957567516 * L_0 = (Enumerator_t1957567516 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t2401056908 * L_1 = (KeyValuePair_2_t2401056908 *)L_0->get_address_of_current_3(); int32_t L_2 = KeyValuePair_2_get_Value_m755756747((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_2; } } extern "C" int32_t Enumerator_get_Current_m926428745_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t572278398 * _thisAdjusted = reinterpret_cast<Enumerator_t572278398 *>(__this + 1); return Enumerator_get_Current_m926428745(_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.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void Enumerator__ctor_m10850803_gshared (Enumerator_t701438809 * __this, Dictionary_2_t132545152 * ___host0, const RuntimeMethod* method) { { Dictionary_2_t132545152 * L_0 = ___host0; Enumerator_t2086727927 L_1 = (( Enumerator_t2086727927 (*) (Dictionary_2_t132545152 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Dictionary_2_t132545152 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_host_enumerator_0(L_1); return; } } extern "C" void Enumerator__ctor_m10850803_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t132545152 * ___host0, const RuntimeMethod* method) { Enumerator_t701438809 * _thisAdjusted = reinterpret_cast<Enumerator_t701438809 *>(__this + 1); Enumerator__ctor_m10850803(_thisAdjusted, ___host0, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m935000629_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); RuntimeObject * L_1 = Enumerator_get_CurrentValue_m785745355((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_1; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m935000629_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t701438809 * _thisAdjusted = reinterpret_cast<Enumerator_t701438809 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m935000629(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m85524874_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); Enumerator_Reset_m1473454555((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m85524874_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t701438809 * _thisAdjusted = reinterpret_cast<Enumerator_t701438809 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m85524874(_thisAdjusted, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() extern "C" void Enumerator_Dispose_m1051275336_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); Enumerator_Dispose_m3885012575((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return; } } extern "C" void Enumerator_Dispose_m1051275336_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t701438809 * _thisAdjusted = reinterpret_cast<Enumerator_t701438809 *>(__this + 1); Enumerator_Dispose_m1051275336(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() extern "C" bool Enumerator_MoveNext_m181298207_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); bool L_1 = Enumerator_MoveNext_m1107569389((Enumerator_t2086727927 *)(Enumerator_t2086727927 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return L_1; } } extern "C" bool Enumerator_MoveNext_m181298207_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t701438809 * _thisAdjusted = reinterpret_cast<Enumerator_t701438809 *>(__this + 1); return Enumerator_MoveNext_m181298207(_thisAdjusted, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() extern "C" RuntimeObject * Enumerator_get_Current_m3764936176_gshared (Enumerator_t701438809 * __this, const RuntimeMethod* method) { { Enumerator_t2086727927 * L_0 = (Enumerator_t2086727927 *)__this->get_address_of_host_enumerator_0(); KeyValuePair_2_t2530217319 * L_1 = (KeyValuePair_2_t2530217319 *)L_0->get_address_of_current_3(); RuntimeObject * L_2 = KeyValuePair_2_get_Value_m1132502692((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_2; } } extern "C" RuntimeObject * Enumerator_get_Current_m3764936176_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t701438809 * _thisAdjusted = reinterpret_cast<Enumerator_t701438809 *>(__this + 1); return Enumerator_get_Current_m3764936176(_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.Dictionary`2/ValueCollection<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ValueCollection__ctor_m278735622_gshared (ValueCollection_t3684863813 * __this, Dictionary_2_t1968819495 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m278735622_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1968819495 * L_0 = ___dictionary0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2957729587, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m278735622_RuntimeMethod_var); } IL_0017: { Dictionary_2_t1968819495 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3298059628_gshared (ValueCollection_t3684863813 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3298059628_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3298059628_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m442731484_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m442731484_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m442731484_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m1842955046_gshared (ValueCollection_t3684863813 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t1968819495 * L_0 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; bool L_2 = (( bool (*) (Dictionary_2_t1968819495 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1968819495 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2980345068_gshared (ValueCollection_t3684863813 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2980345068_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2980345068_RuntimeMethod_var); } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m2916591636_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { { Enumerator_t2537713152 L_0 = (( Enumerator_t2537713152 (*) (ValueCollection_t3684863813 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t3684863813 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t2537713152 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m1349573889_gshared (ValueCollection_t3684863813 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { ObjectU5BU5D_t2843939325* V_0 = NULL; { RuntimeArray * L_0 = ___array0; V_0 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); ObjectU5BU5D_t2843939325* L_1 = V_0; if (!L_1) { goto IL_0016; } } { ObjectU5BU5D_t2843939325* L_2 = V_0; int32_t L_3 = ___index1; (( void (*) (ValueCollection_t3684863813 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ValueCollection_t3684863813 *)__this, (ObjectU5BU5D_t2843939325*)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } IL_0016: { Dictionary_2_t1968819495 * L_4 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); RuntimeArray * L_5 = ___array0; int32_t L_6 = ___index1; (( void (*) (Dictionary_2_t1968819495 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t1968819495 *)L_4, (RuntimeArray *)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t1968819495 * L_7 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); RuntimeArray * L_8 = ___array0; int32_t L_9 = ___index1; intptr_t L_10 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t2404408695 * L_11 = (Transform_1_t2404408695 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t2404408695 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_11, (RuntimeObject *)NULL, (intptr_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t1968819495 *, RuntimeArray *, int32_t, Transform_1_t2404408695 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t1968819495 *)L_7, (RuntimeArray *)L_8, (int32_t)L_9, (Transform_1_t2404408695 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m3842040412_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { { Enumerator_t2537713152 L_0 = (( Enumerator_t2537713152 (*) (ValueCollection_t3684863813 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t3684863813 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t2537713152 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m3469759275_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" bool ValueCollection_System_Collections_ICollection_get_IsSynchronized_m745730085_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m4058779411_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_get_SyncRoot_m4058779411_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1968819495 * L_0 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::CopyTo(TValue[],System.Int32) extern "C" void ValueCollection_CopyTo_m1392757640_gshared (ValueCollection_t3684863813 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method) { { Dictionary_2_t1968819495 * L_0 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_1 = ___array0; int32_t L_2 = ___index1; (( void (*) (Dictionary_2_t1968819495 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t1968819495 *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t1968819495 * L_3 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_4 = ___array0; int32_t L_5 = ___index1; intptr_t L_6 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t2404408695 * L_7 = (Transform_1_t2404408695 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t2404408695 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_7, (RuntimeObject *)NULL, (intptr_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t1968819495 *, ObjectU5BU5D_t2843939325*, int32_t, Transform_1_t2404408695 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Dictionary_2_t1968819495 *)L_3, (ObjectU5BU5D_t2843939325*)L_4, (int32_t)L_5, (Transform_1_t2404408695 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::GetEnumerator() extern "C" Enumerator_t2537713152 ValueCollection_GetEnumerator_m616748621_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { { Dictionary_2_t1968819495 * L_0 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); Enumerator_t2537713152 L_1; memset(&L_1, 0, sizeof(L_1)); Enumerator__ctor_m1849900510((&L_1), (Dictionary_2_t1968819495 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return L_1; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::get_Count() extern "C" int32_t ValueCollection_get_Count_m3453282768_gshared (ValueCollection_t3684863813 * __this, const RuntimeMethod* method) { { Dictionary_2_t1968819495 * L_0 = (Dictionary_2_t1968819495 *)__this->get_dictionary_0(); int32_t L_1 = (( int32_t (*) (Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t1968819495 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return L_1; } } #ifdef __clang__ #pragma clang diagnostic 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.Dictionary`2/ValueCollection<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ValueCollection__ctor_m3001501704_gshared (ValueCollection_t3160738567 * __this, Dictionary_2_t1444694249 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m3001501704_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1444694249 * L_0 = ___dictionary0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2957729587, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m3001501704_RuntimeMethod_var); } IL_0017: { Dictionary_2_t1444694249 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Add(TValue) extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2448180692_gshared (ValueCollection_t3160738567 * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2448180692_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2448180692_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Clear() extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m283414414_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m283414414_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m283414414_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3110959791_gshared (ValueCollection_t3160738567 * __this, bool ___item0, const RuntimeMethod* method) { { Dictionary_2_t1444694249 * L_0 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); bool L_1 = ___item0; bool L_2 = (( bool (*) (Dictionary_2_t1444694249 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1444694249 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1748672125_gshared (ValueCollection_t3160738567 * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1748672125_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1748672125_RuntimeMethod_var); } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m216590304_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { { Enumerator_t2013587906 L_0 = (( Enumerator_t2013587906 (*) (ValueCollection_t3160738567 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t3160738567 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t2013587906 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m2317060457_gshared (ValueCollection_t3160738567 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { BooleanU5BU5D_t2897418192* V_0 = NULL; { RuntimeArray * L_0 = ___array0; V_0 = (BooleanU5BU5D_t2897418192*)((BooleanU5BU5D_t2897418192*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); BooleanU5BU5D_t2897418192* L_1 = V_0; if (!L_1) { goto IL_0016; } } { BooleanU5BU5D_t2897418192* L_2 = V_0; int32_t L_3 = ___index1; (( void (*) (ValueCollection_t3160738567 *, BooleanU5BU5D_t2897418192*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ValueCollection_t3160738567 *)__this, (BooleanU5BU5D_t2897418192*)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } IL_0016: { Dictionary_2_t1444694249 * L_4 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); RuntimeArray * L_5 = ___array0; int32_t L_6 = ___index1; (( void (*) (Dictionary_2_t1444694249 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t1444694249 *)L_4, (RuntimeArray *)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t1444694249 * L_7 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); RuntimeArray * L_8 = ___array0; int32_t L_9 = ___index1; intptr_t L_10 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t1235930838 * L_11 = (Transform_1_t1235930838 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t1235930838 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_11, (RuntimeObject *)NULL, (intptr_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t1444694249 *, RuntimeArray *, int32_t, Transform_1_t1235930838 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t1444694249 *)L_7, (RuntimeArray *)L_8, (int32_t)L_9, (Transform_1_t1235930838 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2059570604_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { { Enumerator_t2013587906 L_0 = (( Enumerator_t2013587906 (*) (ValueCollection_t3160738567 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t3160738567 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t2013587906 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m3374443700_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.ICollection.get_IsSynchronized() extern "C" bool ValueCollection_System_Collections_ICollection_get_IsSynchronized_m624493528_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m1114275063_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_get_SyncRoot_m1114275063_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1444694249 * L_0 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::CopyTo(TValue[],System.Int32) extern "C" void ValueCollection_CopyTo_m2188334703_gshared (ValueCollection_t3160738567 * __this, BooleanU5BU5D_t2897418192* ___array0, int32_t ___index1, const RuntimeMethod* method) { { Dictionary_2_t1444694249 * L_0 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); BooleanU5BU5D_t2897418192* L_1 = ___array0; int32_t L_2 = ___index1; (( void (*) (Dictionary_2_t1444694249 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t1444694249 *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t1444694249 * L_3 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); BooleanU5BU5D_t2897418192* L_4 = ___array0; int32_t L_5 = ___index1; intptr_t L_6 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t1235930838 * L_7 = (Transform_1_t1235930838 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t1235930838 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_7, (RuntimeObject *)NULL, (intptr_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t1444694249 *, BooleanU5BU5D_t2897418192*, int32_t, Transform_1_t1235930838 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Dictionary_2_t1444694249 *)L_3, (BooleanU5BU5D_t2897418192*)L_4, (int32_t)L_5, (Transform_1_t1235930838 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::GetEnumerator() extern "C" Enumerator_t2013587906 ValueCollection_GetEnumerator_m728585672_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { { Dictionary_2_t1444694249 * L_0 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); Enumerator_t2013587906 L_1; memset(&L_1, 0, sizeof(L_1)); Enumerator__ctor_m1558933899((&L_1), (Dictionary_2_t1444694249 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return L_1; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>::get_Count() extern "C" int32_t ValueCollection_get_Count_m994935123_gshared (ValueCollection_t3160738567 * __this, const RuntimeMethod* method) { { Dictionary_2_t1444694249 * L_0 = (Dictionary_2_t1444694249 *)__this->get_dictionary_0(); int32_t L_1 = (( int32_t (*) (Dictionary_2_t1444694249 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t1444694249 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return L_1; } } #ifdef __clang__ #pragma clang diagnostic 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.Dictionary`2/ValueCollection<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ValueCollection__ctor_m2584527071_gshared (ValueCollection_t1719429059 * __this, Dictionary_2_t3384741 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m2584527071_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t3384741 * L_0 = ___dictionary0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2957729587, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m2584527071_RuntimeMethod_var); } IL_0017: { Dictionary_2_t3384741 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue) extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3538092350_gshared (ValueCollection_t1719429059 * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3538092350_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3538092350_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear() extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3566470663_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3566470663_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3566470663_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3207510784_gshared (ValueCollection_t1719429059 * __this, int32_t ___item0, const RuntimeMethod* method) { { Dictionary_2_t3384741 * L_0 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); int32_t L_1 = ___item0; bool L_2 = (( bool (*) (Dictionary_2_t3384741 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t3384741 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2815410150_gshared (ValueCollection_t1719429059 * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2815410150_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2815410150_RuntimeMethod_var); } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m2147530360_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { { Enumerator_t572278398 L_0 = (( Enumerator_t572278398 (*) (ValueCollection_t1719429059 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t1719429059 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t572278398 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m4266973977_gshared (ValueCollection_t1719429059 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { Int32U5BU5D_t385246372* V_0 = NULL; { RuntimeArray * L_0 = ___array0; V_0 = (Int32U5BU5D_t385246372*)((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); Int32U5BU5D_t385246372* L_1 = V_0; if (!L_1) { goto IL_0016; } } { Int32U5BU5D_t385246372* L_2 = V_0; int32_t L_3 = ___index1; (( void (*) (ValueCollection_t1719429059 *, Int32U5BU5D_t385246372*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ValueCollection_t1719429059 *)__this, (Int32U5BU5D_t385246372*)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } IL_0016: { Dictionary_2_t3384741 * L_4 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); RuntimeArray * L_5 = ___array0; int32_t L_6 = ___index1; (( void (*) (Dictionary_2_t3384741 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t3384741 *)L_4, (RuntimeArray *)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t3384741 * L_7 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); RuntimeArray * L_8 = ___array0; int32_t L_9 = ___index1; intptr_t L_10 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t1577416806 * L_11 = (Transform_1_t1577416806 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t1577416806 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_11, (RuntimeObject *)NULL, (intptr_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t3384741 *, RuntimeArray *, int32_t, Transform_1_t1577416806 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t3384741 *)L_7, (RuntimeArray *)L_8, (int32_t)L_9, (Transform_1_t1577416806 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m1685688505_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { { Enumerator_t572278398 L_0 = (( Enumerator_t572278398 (*) (ValueCollection_t1719429059 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t1719429059 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t572278398 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1110422367_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.get_IsSynchronized() extern "C" bool ValueCollection_System_Collections_ICollection_get_IsSynchronized_m2813565637_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m3020187163_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_get_SyncRoot_m3020187163_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t3384741 * L_0 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::CopyTo(TValue[],System.Int32) extern "C" void ValueCollection_CopyTo_m427013126_gshared (ValueCollection_t1719429059 * __this, Int32U5BU5D_t385246372* ___array0, int32_t ___index1, const RuntimeMethod* method) { { Dictionary_2_t3384741 * L_0 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); Int32U5BU5D_t385246372* L_1 = ___array0; int32_t L_2 = ___index1; (( void (*) (Dictionary_2_t3384741 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t3384741 *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t3384741 * L_3 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); Int32U5BU5D_t385246372* L_4 = ___array0; int32_t L_5 = ___index1; intptr_t L_6 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t1577416806 * L_7 = (Transform_1_t1577416806 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t1577416806 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_7, (RuntimeObject *)NULL, (intptr_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t3384741 *, Int32U5BU5D_t385246372*, int32_t, Transform_1_t1577416806 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Dictionary_2_t3384741 *)L_3, (Int32U5BU5D_t385246372*)L_4, (int32_t)L_5, (Transform_1_t1577416806 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::GetEnumerator() extern "C" Enumerator_t572278398 ValueCollection_GetEnumerator_m245977334_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { { Dictionary_2_t3384741 * L_0 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); Enumerator_t572278398 L_1; memset(&L_1, 0, sizeof(L_1)); Enumerator__ctor_m1734342590((&L_1), (Dictionary_2_t3384741 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return L_1; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::get_Count() extern "C" int32_t ValueCollection_get_Count_m1974895064_gshared (ValueCollection_t1719429059 * __this, const RuntimeMethod* method) { { Dictionary_2_t3384741 * L_0 = (Dictionary_2_t3384741 *)__this->get_dictionary_0(); int32_t L_1 = (( int32_t (*) (Dictionary_2_t3384741 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t3384741 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return L_1; } } #ifdef __clang__ #pragma clang diagnostic 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.Dictionary`2/ValueCollection<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) extern "C" void ValueCollection__ctor_m2244993774_gshared (ValueCollection_t1848589470 * __this, Dictionary_2_t132545152 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m2244993774_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t132545152 * L_0 = ___dictionary0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2957729587, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m2244993774_RuntimeMethod_var); } IL_0017: { Dictionary_2_t132545152 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1396030577_gshared (ValueCollection_t1848589470 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1396030577_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1396030577_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m626686600_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m626686600_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m626686600_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m875763171_gshared (ValueCollection_t1848589470 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t132545152 * L_0 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; bool L_2 = (( bool (*) (Dictionary_2_t132545152 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t132545152 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m659601308_gshared (ValueCollection_t1848589470 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m659601308_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral1364654004, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m659601308_RuntimeMethod_var); } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1577573334_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { { Enumerator_t701438809 L_0 = (( Enumerator_t701438809 (*) (ValueCollection_t1848589470 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t1848589470 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t701438809 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m4118369663_gshared (ValueCollection_t1848589470 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { ObjectU5BU5D_t2843939325* V_0 = NULL; { RuntimeArray * L_0 = ___array0; V_0 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); ObjectU5BU5D_t2843939325* L_1 = V_0; if (!L_1) { goto IL_0016; } } { ObjectU5BU5D_t2843939325* L_2 = V_0; int32_t L_3 = ___index1; (( void (*) (ValueCollection_t1848589470 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ValueCollection_t1848589470 *)__this, (ObjectU5BU5D_t2843939325*)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } IL_0016: { Dictionary_2_t132545152 * L_4 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); RuntimeArray * L_5 = ___array0; int32_t L_6 = ___index1; (( void (*) (Dictionary_2_t132545152 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t132545152 *)L_4, (RuntimeArray *)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t132545152 * L_7 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); RuntimeArray * L_8 = ___array0; int32_t L_9 = ___index1; intptr_t L_10 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t4165270170 * L_11 = (Transform_1_t4165270170 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t4165270170 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_11, (RuntimeObject *)NULL, (intptr_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t132545152 *, RuntimeArray *, int32_t, Transform_1_t4165270170 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t132545152 *)L_7, (RuntimeArray *)L_8, (int32_t)L_9, (Transform_1_t4165270170 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m4057714833_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { { Enumerator_t701438809 L_0 = (( Enumerator_t701438809 (*) (ValueCollection_t1848589470 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ValueCollection_t1848589470 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t701438809 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() extern "C" bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1988828109_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" bool ValueCollection_System_Collections_ICollection_get_IsSynchronized_m336229891_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m1849311106_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_get_SyncRoot_m1849311106_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Dictionary_2_t132545152 * L_0 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::CopyTo(TValue[],System.Int32) extern "C" void ValueCollection_CopyTo_m499275609_gshared (ValueCollection_t1848589470 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method) { { Dictionary_2_t132545152 * L_0 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_1 = ___array0; int32_t L_2 = ___index1; (( void (*) (Dictionary_2_t132545152 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Dictionary_2_t132545152 *)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); Dictionary_2_t132545152 * L_3 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); ObjectU5BU5D_t2843939325* L_4 = ___array0; int32_t L_5 = ___index1; intptr_t L_6 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6); Transform_1_t4165270170 * L_7 = (Transform_1_t4165270170 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (Transform_1_t4165270170 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_7, (RuntimeObject *)NULL, (intptr_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); (( void (*) (Dictionary_2_t132545152 *, ObjectU5BU5D_t2843939325*, int32_t, Transform_1_t4165270170 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Dictionary_2_t132545152 *)L_3, (ObjectU5BU5D_t2843939325*)L_4, (int32_t)L_5, (Transform_1_t4165270170 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::GetEnumerator() extern "C" Enumerator_t701438809 ValueCollection_GetEnumerator_m3046098970_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { { Dictionary_2_t132545152 * L_0 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); Enumerator_t701438809 L_1; memset(&L_1, 0, sizeof(L_1)); Enumerator__ctor_m10850803((&L_1), (Dictionary_2_t132545152 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return L_1; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::get_Count() extern "C" int32_t ValueCollection_get_Count_m4232000973_gshared (ValueCollection_t1848589470 * __this, const RuntimeMethod* method) { { Dictionary_2_t132545152 * L_0 = (Dictionary_2_t132545152 *)__this->get_dictionary_0(); int32_t L_1 = (( int32_t (*) (Dictionary_2_t132545152 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t132545152 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return L_1; } } #ifdef __clang__ #pragma clang diagnostic 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.Dictionary`2<System.Int32,System.Object>::.ctor() extern "C" void Dictionary_2__ctor_m2601736566_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)((int32_t)10), (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" void Dictionary_2__ctor_m1060663922_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)((int32_t)10), (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32) extern "C" void Dictionary_2__ctor_m2399340297_gshared (Dictionary_2_t1968819495 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void Dictionary_2__ctor_m2744724763_gshared (Dictionary_2_t1968819495 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { { Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); SerializationInfo_t950877179 * L_0 = ___info0; __this->set_serialization_info_13(L_0); return; } } // System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.get_Item(System.Object) extern "C" RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m787919239_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) { goto IL_002f; } } { RuntimeObject * L_1 = ___key0; bool L_2 = (( bool (*) (Dictionary_2_t1968819495 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if (!L_2) { goto IL_002f; } } { RuntimeObject * L_3 = ___key0; int32_t L_4 = (( int32_t (*) (Dictionary_2_t1968819495 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeObject *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); RuntimeObject * L_5 = (( RuntimeObject * (*) (Dictionary_2_t1968819495 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return L_5; } IL_002f: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" void Dictionary_2_System_Collections_IDictionary_set_Item_m439946704_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int32_t L_1 = (( int32_t (*) (Dictionary_2_t1968819495 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); RuntimeObject * L_2 = ___value1; RuntimeObject * L_3 = (( RuntimeObject * (*) (Dictionary_2_t1968819495 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_1, (RuntimeObject *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.Add(System.Object,System.Object) extern "C" void Dictionary_2_System_Collections_IDictionary_Add_m776121614_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int32_t L_1 = (( int32_t (*) (Dictionary_2_t1968819495 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); RuntimeObject * L_2 = ___value1; RuntimeObject * L_3 = (( RuntimeObject * (*) (Dictionary_2_t1968819495 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_1, (RuntimeObject *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.Remove(System.Object) extern "C" void Dictionary_2_System_Collections_IDictionary_Remove_m1909892810_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Remove_m1909892810_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Remove_m1909892810_RuntimeMethod_var); } IL_0011: { RuntimeObject * L_2 = ___key0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) { goto IL_0029; } } { RuntimeObject * L_3 = ___key0; (( bool (*) (Dictionary_2_t1968819495 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0029: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m2067840963_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2020472285_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { return __this; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m1491257236_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m3401902714_gshared (Dictionary_2_t1968819495 * __this, KeyValuePair_2_t71524366 ___keyValuePair0, const RuntimeMethod* method) { { int32_t L_0 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m1823197466_gshared (Dictionary_2_t1968819495 * __this, KeyValuePair_2_t71524366 ___keyValuePair0, const RuntimeMethod* method) { { KeyValuePair_2_t71524366 L_0 = ___keyValuePair0; bool L_1 = (( bool (*) (Dictionary_2_t1968819495 *, KeyValuePair_2_t71524366 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t1968819495 *)__this, (KeyValuePair_2_t71524366 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1123458898_gshared (Dictionary_2_t1968819495 * __this, KeyValuePair_2U5BU5D_t2652375035* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t2652375035* L_0 = ___array0; int32_t L_1 = ___index1; (( void (*) (Dictionary_2_t1968819495 *, KeyValuePair_2U5BU5D_t2652375035*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((Dictionary_2_t1968819495 *)__this, (KeyValuePair_2U5BU5D_t2652375035*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2915825929_gshared (Dictionary_2_t1968819495 * __this, KeyValuePair_2_t71524366 ___keyValuePair0, const RuntimeMethod* method) { { KeyValuePair_2_t71524366 L_0 = ___keyValuePair0; bool L_1 = (( bool (*) (Dictionary_2_t1968819495 *, KeyValuePair_2_t71524366 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t1968819495 *)__this, (KeyValuePair_2_t71524366 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); if (L_1) { goto IL_000e; } } { return (bool)0; } IL_000e: { int32_t L_2 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); bool L_3 = (( bool (*) (Dictionary_2_t1968819495 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return L_3; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" void Dictionary_2_System_Collections_ICollection_CopyTo_m3143696177_gshared (Dictionary_2_t1968819495 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m3143696177_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t2652375035* V_0 = NULL; DictionaryEntryU5BU5D_t4217117203* V_1 = NULL; int32_t G_B5_0 = 0; DictionaryEntryU5BU5D_t4217117203* G_B5_1 = NULL; Dictionary_2_t1968819495 * G_B5_2 = NULL; int32_t G_B4_0 = 0; DictionaryEntryU5BU5D_t4217117203* G_B4_1 = NULL; Dictionary_2_t1968819495 * G_B4_2 = NULL; { RuntimeArray * L_0 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t2652375035*)((KeyValuePair_2U5BU5D_t2652375035*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14))); KeyValuePair_2U5BU5D_t2652375035* L_1 = V_0; if (!L_1) { goto IL_0016; } } { KeyValuePair_2U5BU5D_t2652375035* L_2 = V_0; int32_t L_3 = ___index1; (( void (*) (Dictionary_2_t1968819495 *, KeyValuePair_2U5BU5D_t2652375035*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((Dictionary_2_t1968819495 *)__this, (KeyValuePair_2U5BU5D_t2652375035*)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); return; } IL_0016: { RuntimeArray * L_4 = ___array0; int32_t L_5 = ___index1; (( void (*) (Dictionary_2_t1968819495 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeArray *)L_4, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); RuntimeArray * L_6 = ___array0; V_1 = (DictionaryEntryU5BU5D_t4217117203*)((DictionaryEntryU5BU5D_t4217117203*)IsInst((RuntimeObject*)L_6, DictionaryEntryU5BU5D_t4217117203_il2cpp_TypeInfo_var)); DictionaryEntryU5BU5D_t4217117203* L_7 = V_1; if (!L_7) { goto IL_0051; } } { DictionaryEntryU5BU5D_t4217117203* L_8 = V_1; int32_t L_9 = ___index1; Transform_1_t2448278169 * L_10 = ((Dictionary_2_t1968819495_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16)))->get_U3CU3Ef__amU24cacheB_15(); G_B4_0 = L_9; G_B4_1 = L_8; G_B4_2 = ((Dictionary_2_t1968819495 *)(__this)); if (L_10) { G_B5_0 = L_9; G_B5_1 = L_8; G_B5_2 = ((Dictionary_2_t1968819495 *)(__this)); goto IL_0046; } } { intptr_t L_11 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17); Transform_1_t2448278169 * L_12 = (Transform_1_t2448278169 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 18)); (( void (*) (Transform_1_t2448278169 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(L_12, (RuntimeObject *)NULL, (intptr_t)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); ((Dictionary_2_t1968819495_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16)))->set_U3CU3Ef__amU24cacheB_15(L_12); G_B5_0 = G_B4_0; G_B5_1 = G_B4_1; G_B5_2 = ((Dictionary_2_t1968819495 *)(G_B4_2)); } IL_0046: { Transform_1_t2448278169 * L_13 = ((Dictionary_2_t1968819495_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16)))->get_U3CU3Ef__amU24cacheB_15(); (( void (*) (Dictionary_2_t1968819495 *, DictionaryEntryU5BU5D_t4217117203*, int32_t, Transform_1_t2448278169 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((Dictionary_2_t1968819495 *)G_B5_2, (DictionaryEntryU5BU5D_t4217117203*)G_B5_1, (int32_t)G_B5_0, (Transform_1_t2448278169 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); return; } IL_0051: { RuntimeArray * L_14 = ___array0; int32_t L_15 = ___index1; intptr_t L_16 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 21); Transform_1_t3690794193 * L_17 = (Transform_1_t3690794193 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 22)); (( void (*) (Transform_1_t3690794193 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)(L_17, (RuntimeObject *)NULL, (intptr_t)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); (( void (*) (Dictionary_2_t1968819495 *, RuntimeArray *, int32_t, Transform_1_t3690794193 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeArray *)L_14, (int32_t)L_15, (Transform_1_t3690794193 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3993325289_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m2150997492((&L_0), (Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); Enumerator_t3923002270 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m4109180678_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m2150997492((&L_0), (Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); Enumerator_t3923002270 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.GetEnumerator() extern "C" RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m751864982_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { ShimEnumerator_t1965540292 * L_0 = (ShimEnumerator_t1965540292 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27)); (( void (*) (ShimEnumerator_t1965540292 *, Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)->methodPointer)(L_0, (Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Count() extern "C" int32_t Dictionary_2_get_Count_m3300912776_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_10(); return L_0; } } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) extern "C" RuntimeObject * Dictionary_2_get_Item_m193757924_gshared (Dictionary_2_t1968819495 * __this, int32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m193757924_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0016; } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_get_Item_m193757924_RuntimeMethod_var); } IL_0016: { RuntimeObject* L_2 = (RuntimeObject*)__this->get_hcp_12(); int32_t L_3 = ___key0; int32_t L_4 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_2, (int32_t)L_3); V_0 = (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)-2147483648LL))); Int32U5BU5D_t385246372* L_5 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_6 = V_0; Int32U5BU5D_t385246372* L_7 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_8 = ((int32_t)((int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); int32_t L_9 = (L_5)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8)); V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); goto IL_009b; } IL_0048: { LinkU5BU5D_t964245573* L_10 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_11 = V_1; int32_t L_12 = (int32_t)((L_10)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)))->get_HashCode_0(); int32_t L_13 = V_0; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_0089; } } { RuntimeObject* L_14 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_15 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_16 = V_1; int32_t L_17 = L_16; int32_t L_18 = (L_15)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_17)); int32_t L_19 = ___key0; bool L_20 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_14, (int32_t)L_18, (int32_t)L_19); if (!L_20) { goto IL_0089; } } { ObjectU5BU5D_t2843939325* L_21 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); int32_t L_22 = V_1; int32_t L_23 = L_22; RuntimeObject * L_24 = (L_21)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_23)); return L_24; } IL_0089: { LinkU5BU5D_t964245573* L_25 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_26 = V_1; int32_t L_27 = (int32_t)((L_25)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_26)))->get_Next_1(); V_1 = (int32_t)L_27; } IL_009b: { int32_t L_28 = V_1; if ((!(((uint32_t)L_28) == ((uint32_t)(-1))))) { goto IL_0048; } } { KeyNotFoundException_t2292407383 * L_29 = (KeyNotFoundException_t2292407383 *)il2cpp_codegen_object_new(KeyNotFoundException_t2292407383_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_m541499307(L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_get_Item_m193757924_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue) extern "C" void Dictionary_2_set_Item_m3327106492_gshared (Dictionary_2_t1968819495 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_set_Item_m3327106492_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { goto IL_0016; } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_set_Item_m3327106492_RuntimeMethod_var); } IL_0016: { RuntimeObject* L_2 = (RuntimeObject*)__this->get_hcp_12(); int32_t L_3 = ___key0; int32_t L_4 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_2, (int32_t)L_3); V_0 = (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)-2147483648LL))); int32_t L_5 = V_0; Int32U5BU5D_t385246372* L_6 = (Int32U5BU5D_t385246372*)__this->get_table_4(); V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))); Int32U5BU5D_t385246372* L_7 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_8 = V_1; int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_9)); V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); V_3 = (int32_t)(-1); int32_t L_11 = V_2; if ((((int32_t)L_11) == ((int32_t)(-1)))) { goto IL_00a2; } } IL_004e: { LinkU5BU5D_t964245573* L_12 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_13 = V_2; int32_t L_14 = (int32_t)((L_12)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)))->get_HashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0087; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_17 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_18 = V_2; int32_t L_19 = L_18; int32_t L_20 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_19)); int32_t L_21 = ___key0; bool L_22 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_16, (int32_t)L_20, (int32_t)L_21); if (!L_22) { goto IL_0087; } } { goto IL_00a2; } IL_0087: { int32_t L_23 = V_2; V_3 = (int32_t)L_23; LinkU5BU5D_t964245573* L_24 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_25 = V_2; int32_t L_26 = (int32_t)((L_24)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_25)))->get_Next_1(); V_2 = (int32_t)L_26; int32_t L_27 = V_2; if ((!(((uint32_t)L_27) == ((uint32_t)(-1))))) { goto IL_004e; } } IL_00a2: { int32_t L_28 = V_2; if ((!(((uint32_t)L_28) == ((uint32_t)(-1))))) { goto IL_0166; } } { int32_t L_29 = (int32_t)__this->get_count_10(); int32_t L_30 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); V_4 = (int32_t)L_30; __this->set_count_10(L_30); int32_t L_31 = V_4; int32_t L_32 = (int32_t)__this->get_threshold_11(); if ((((int32_t)L_31) <= ((int32_t)L_32))) { goto IL_00de; } } { (( void (*) (Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_33 = V_0; Int32U5BU5D_t385246372* L_34 = (Int32U5BU5D_t385246372*)__this->get_table_4(); V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_33&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_34)->max_length)))))); } IL_00de: { int32_t L_35 = (int32_t)__this->get_emptySlot_9(); V_2 = (int32_t)L_35; int32_t L_36 = V_2; if ((!(((uint32_t)L_36) == ((uint32_t)(-1))))) { goto IL_0105; } } { int32_t L_37 = (int32_t)__this->get_touchedSlots_8(); int32_t L_38 = (int32_t)L_37; V_4 = (int32_t)L_38; __this->set_touchedSlots_8(((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1))); int32_t L_39 = V_4; V_2 = (int32_t)L_39; goto IL_011c; } IL_0105: { LinkU5BU5D_t964245573* L_40 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_41 = V_2; int32_t L_42 = (int32_t)((L_40)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_41)))->get_Next_1(); __this->set_emptySlot_9(L_42); } IL_011c: { LinkU5BU5D_t964245573* L_43 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_44 = V_2; Int32U5BU5D_t385246372* L_45 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_46 = V_1; int32_t L_47 = L_46; int32_t L_48 = (L_45)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_47)); ((L_43)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_44)))->set_Next_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)1))); Int32U5BU5D_t385246372* L_49 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_50 = V_1; int32_t L_51 = V_2; (L_49)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_50), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1))); LinkU5BU5D_t964245573* L_52 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_53 = V_2; int32_t L_54 = V_0; ((L_52)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_53)))->set_HashCode_0(L_54); Int32U5BU5D_t385246372* L_55 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_56 = V_2; int32_t L_57 = ___key0; (L_55)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_56), (int32_t)L_57); goto IL_01b5; } IL_0166: { int32_t L_58 = V_3; if ((((int32_t)L_58) == ((int32_t)(-1)))) { goto IL_01b5; } } { LinkU5BU5D_t964245573* L_59 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_60 = V_3; LinkU5BU5D_t964245573* L_61 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_62 = V_2; int32_t L_63 = (int32_t)((L_61)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_62)))->get_Next_1(); ((L_59)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_60)))->set_Next_1(L_63); LinkU5BU5D_t964245573* L_64 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_65 = V_2; Int32U5BU5D_t385246372* L_66 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_67 = V_1; int32_t L_68 = L_67; int32_t L_69 = (L_66)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_68)); ((L_64)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_65)))->set_Next_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_69, (int32_t)1))); Int32U5BU5D_t385246372* L_70 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_71 = V_1; int32_t L_72 = V_2; (L_70)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_71), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1))); } IL_01b5: { ObjectU5BU5D_t2843939325* L_73 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); int32_t L_74 = V_2; RuntimeObject * L_75 = ___value1; (L_73)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_74), (RuntimeObject *)L_75); int32_t L_76 = (int32_t)__this->get_generation_14(); __this->set_generation_14(((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1))); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Init(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" void Dictionary_2_Init_m15475088_gshared (Dictionary_2_t1968819495 * __this, int32_t ___capacity0, RuntimeObject* ___hcp1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Init_m15475088_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Dictionary_2_t1968819495 * G_B4_0 = NULL; Dictionary_2_t1968819495 * G_B3_0 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t1968819495 * G_B5_1 = NULL; { int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { ArgumentOutOfRangeException_t777629997 * L_1 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m3628145864(L_1, (String_t*)_stringLiteral3623012086, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Init_m15475088_RuntimeMethod_var); } IL_0012: { RuntimeObject* L_2 = ___hcp1; G_B3_0 = ((Dictionary_2_t1968819495 *)(__this)); if (!L_2) { G_B4_0 = ((Dictionary_2_t1968819495 *)(__this)); goto IL_0021; } } { RuntimeObject* L_3 = ___hcp1; V_0 = (RuntimeObject*)L_3; RuntimeObject* L_4 = V_0; G_B5_0 = L_4; G_B5_1 = ((Dictionary_2_t1968819495 *)(G_B3_0)); goto IL_0026; } IL_0021: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32)); EqualityComparer_1_t1120718089 * L_5 = (( EqualityComparer_1_t1120718089 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); G_B5_0 = ((RuntimeObject*)(L_5)); G_B5_1 = ((Dictionary_2_t1968819495 *)(G_B4_0)); } IL_0026: { G_B5_1->set_hcp_12(G_B5_0); int32_t L_6 = ___capacity0; if (L_6) { goto IL_0035; } } { ___capacity0 = (int32_t)((int32_t)10); } IL_0035: { int32_t L_7 = ___capacity0; ___capacity0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)((float)((float)(((float)((float)L_7)))/(float)(0.9f)))))), (int32_t)1)); int32_t L_8 = ___capacity0; (( void (*) (Dictionary_2_t1968819495 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); __this->set_generation_14(0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::InitArrays(System.Int32) extern "C" void Dictionary_2_InitArrays_m1664917084_gshared (Dictionary_2_t1968819495 * __this, int32_t ___size0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_InitArrays_m1664917084_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___size0; __this->set_table_4(((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_0))); int32_t L_1 = ___size0; __this->set_linkSlots_5(((LinkU5BU5D_t964245573*)SZArrayNew(LinkU5BU5D_t964245573_il2cpp_TypeInfo_var, (uint32_t)L_1))); __this->set_emptySlot_9((-1)); int32_t L_2 = ___size0; __this->set_keySlots_6(((Int32U5BU5D_t385246372*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (uint32_t)L_2))); int32_t L_3 = ___size0; __this->set_valueSlots_7(((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_3))); __this->set_touchedSlots_8(0); Int32U5BU5D_t385246372* L_4 = (Int32U5BU5D_t385246372*)__this->get_table_4(); __this->set_threshold_11((((int32_t)((int32_t)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))), (float)(0.9f))))))); int32_t L_5 = (int32_t)__this->get_threshold_11(); if (L_5) { goto IL_0074; } } { Int32U5BU5D_t385246372* L_6 = (Int32U5BU5D_t385246372*)__this->get_table_4(); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))) <= ((int32_t)0))) { goto IL_0074; } } { __this->set_threshold_11(1); } IL_0074: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::CopyToCheck(System.Array,System.Int32) extern "C" void Dictionary_2_CopyToCheck_m45332585_gshared (Dictionary_2_t1968819495 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyToCheck_m45332585_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_0011; } } { 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, Dictionary_2_CopyToCheck_m45332585_RuntimeMethod_var); } IL_0011: { int32_t L_2 = ___index1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0023; } } { ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m3628145864(L_3, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Dictionary_2_CopyToCheck_m45332585_RuntimeMethod_var); } IL_0023: { int32_t L_4 = ___index1; RuntimeArray * L_5 = ___array0; int32_t L_6 = Array_get_Length_m21610649((RuntimeArray *)L_5, /*hidden argument*/NULL); if ((((int32_t)L_4) <= ((int32_t)L_6))) { goto IL_003a; } } { ArgumentException_t132251570 * L_7 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_7, (String_t*)_stringLiteral2973413626, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_CopyToCheck_m45332585_RuntimeMethod_var); } IL_003a: { RuntimeArray * L_8 = ___array0; int32_t L_9 = Array_get_Length_m21610649((RuntimeArray *)L_8, /*hidden argument*/NULL); int32_t L_10 = ___index1; int32_t L_11 = (( int32_t (*) (Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0058; } } { ArgumentException_t132251570 * L_12 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_12, (String_t*)_stringLiteral751398076, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyToCheck_m45332585_RuntimeMethod_var); } IL_0058: { return; } } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::make_pair(TKey,TValue) extern "C" KeyValuePair_2_t71524366 Dictionary_2_make_pair_m2465326463_gshared (RuntimeObject * __this /* static, unused */, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; KeyValuePair_2_t71524366 L_2; memset(&L_2, 0, sizeof(L_2)); KeyValuePair_2__ctor_m2118224448((&L_2), (int32_t)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 38)); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::pick_value(TKey,TValue) extern "C" RuntimeObject * Dictionary_2_pick_value_m3014302136_gshared (RuntimeObject * __this /* static, unused */, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value1; return L_0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" void Dictionary_2_CopyTo_m1376953690_gshared (Dictionary_2_t1968819495 * __this, KeyValuePair_2U5BU5D_t2652375035* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t2652375035* L_0 = ___array0; int32_t L_1 = ___index1; (( void (*) (Dictionary_2_t1968819495 *, RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((Dictionary_2_t1968819495 *)__this, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); KeyValuePair_2U5BU5D_t2652375035* L_2 = ___array0; int32_t L_3 = ___index1; intptr_t L_4 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 21); Transform_1_t3690794193 * L_5 = (Transform_1_t3690794193 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 22)); (( void (*) (Transform_1_t3690794193 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)(L_5, (RuntimeObject *)NULL, (intptr_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); (( void (*) (Dictionary_2_t1968819495 *, KeyValuePair_2U5BU5D_t2652375035*, int32_t, Transform_1_t3690794193 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_t1968819495 *)__this, (KeyValuePair_2U5BU5D_t2652375035*)L_2, (int32_t)L_3, (Transform_1_t3690794193 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize() extern "C" void Dictionary_2_Resize_m1156965638_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m1156965638_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Int32U5BU5D_t385246372* V_1 = NULL; LinkU5BU5D_t964245573* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; Int32U5BU5D_t385246372* V_7 = NULL; ObjectU5BU5D_t2843939325* V_8 = NULL; int32_t V_9 = 0; { Int32U5BU5D_t385246372* L_0 = (Int32U5BU5D_t385246372*)__this->get_table_4(); IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var); int32_t L_1 = Hashtable_ToPrime_m33531354(NULL /*static, unused*/, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))<<(int32_t)1))|(int32_t)1)), /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; V_1 = (Int32U5BU5D_t385246372*)((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_2)); int32_t L_3 = V_0; V_2 = (LinkU5BU5D_t964245573*)((LinkU5BU5D_t964245573*)SZArrayNew(LinkU5BU5D_t964245573_il2cpp_TypeInfo_var, (uint32_t)L_3)); V_3 = (int32_t)0; goto IL_00b1; } IL_0027: { Int32U5BU5D_t385246372* L_4 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_5 = V_3; int32_t L_6 = L_5; int32_t L_7 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_6)); V_4 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)); goto IL_00a5; } IL_0038: { LinkU5BU5D_t964245573* L_8 = V_2; int32_t L_9 = V_4; RuntimeObject* L_10 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_11 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_12 = V_4; int32_t L_13 = L_12; int32_t L_14 = (L_11)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)); int32_t L_15 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_10, (int32_t)L_14); int32_t L_16 = (int32_t)((int32_t)((int32_t)L_15|(int32_t)((int32_t)-2147483648LL))); V_9 = (int32_t)L_16; ((L_8)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_9)))->set_HashCode_0(L_16); int32_t L_17 = V_9; V_5 = (int32_t)L_17; int32_t L_18 = V_5; int32_t L_19 = V_0; V_6 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_18&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_19)); LinkU5BU5D_t964245573* L_20 = V_2; int32_t L_21 = V_4; Int32U5BU5D_t385246372* L_22 = V_1; int32_t L_23 = V_6; int32_t L_24 = L_23; int32_t L_25 = (L_22)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_24)); ((L_20)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_21)))->set_Next_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1))); Int32U5BU5D_t385246372* L_26 = V_1; int32_t L_27 = V_6; int32_t L_28 = V_4; (L_26)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_27), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1))); LinkU5BU5D_t964245573* L_29 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_30 = V_4; int32_t L_31 = (int32_t)((L_29)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_30)))->get_Next_1(); V_4 = (int32_t)L_31; } IL_00a5: { int32_t L_32 = V_4; if ((!(((uint32_t)L_32) == ((uint32_t)(-1))))) { goto IL_0038; } } { int32_t L_33 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); } IL_00b1: { int32_t L_34 = V_3; Int32U5BU5D_t385246372* L_35 = (Int32U5BU5D_t385246372*)__this->get_table_4(); if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_35)->max_length))))))) { goto IL_0027; } } { Int32U5BU5D_t385246372* L_36 = V_1; __this->set_table_4(L_36); LinkU5BU5D_t964245573* L_37 = V_2; __this->set_linkSlots_5(L_37); int32_t L_38 = V_0; V_7 = (Int32U5BU5D_t385246372*)((Int32U5BU5D_t385246372*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (uint32_t)L_38)); int32_t L_39 = V_0; V_8 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_39)); Int32U5BU5D_t385246372* L_40 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); Int32U5BU5D_t385246372* L_41 = V_7; int32_t L_42 = (int32_t)__this->get_touchedSlots_8(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_40, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_41, (int32_t)0, (int32_t)L_42, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_43 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); ObjectU5BU5D_t2843939325* L_44 = V_8; int32_t L_45 = (int32_t)__this->get_touchedSlots_8(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_43, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_44, (int32_t)0, (int32_t)L_45, /*hidden argument*/NULL); Int32U5BU5D_t385246372* L_46 = V_7; __this->set_keySlots_6(L_46); ObjectU5BU5D_t2843939325* L_47 = V_8; __this->set_valueSlots_7(L_47); int32_t L_48 = V_0; __this->set_threshold_11((((int32_t)((int32_t)((float)il2cpp_codegen_multiply((float)(((float)((float)L_48))), (float)(0.9f))))))); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(TKey,TValue) extern "C" void Dictionary_2_Add_m2059424751_gshared (Dictionary_2_t1968819495 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Add_m2059424751_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { goto IL_0016; } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Add_m2059424751_RuntimeMethod_var); } IL_0016: { RuntimeObject* L_2 = (RuntimeObject*)__this->get_hcp_12(); int32_t L_3 = ___key0; int32_t L_4 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_2, (int32_t)L_3); V_0 = (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)-2147483648LL))); int32_t L_5 = V_0; Int32U5BU5D_t385246372* L_6 = (Int32U5BU5D_t385246372*)__this->get_table_4(); V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))); Int32U5BU5D_t385246372* L_7 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_8 = V_1; int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_9)); V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); goto IL_009b; } IL_004a: { LinkU5BU5D_t964245573* L_11 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_12 = V_2; int32_t L_13 = (int32_t)((L_11)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_12)))->get_HashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0089; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_16 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_17 = V_2; int32_t L_18 = L_17; int32_t L_19 = (L_16)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_18)); int32_t L_20 = ___key0; bool L_21 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_15, (int32_t)L_19, (int32_t)L_20); if (!L_21) { goto IL_0089; } } { ArgumentException_t132251570 * L_22 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_22, (String_t*)_stringLiteral3189027530, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, Dictionary_2_Add_m2059424751_RuntimeMethod_var); } IL_0089: { LinkU5BU5D_t964245573* L_23 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_24 = V_2; int32_t L_25 = (int32_t)((L_23)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_24)))->get_Next_1(); V_2 = (int32_t)L_25; } IL_009b: { int32_t L_26 = V_2; if ((!(((uint32_t)L_26) == ((uint32_t)(-1))))) { goto IL_004a; } } { int32_t L_27 = (int32_t)__this->get_count_10(); int32_t L_28 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); V_3 = (int32_t)L_28; __this->set_count_10(L_28); int32_t L_29 = V_3; int32_t L_30 = (int32_t)__this->get_threshold_11(); if ((((int32_t)L_29) <= ((int32_t)L_30))) { goto IL_00d5; } } { (( void (*) (Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_31 = V_0; Int32U5BU5D_t385246372* L_32 = (Int32U5BU5D_t385246372*)__this->get_table_4(); V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_31&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_32)->max_length)))))); } IL_00d5: { int32_t L_33 = (int32_t)__this->get_emptySlot_9(); V_2 = (int32_t)L_33; int32_t L_34 = V_2; if ((!(((uint32_t)L_34) == ((uint32_t)(-1))))) { goto IL_00fa; } } { int32_t L_35 = (int32_t)__this->get_touchedSlots_8(); int32_t L_36 = (int32_t)L_35; V_3 = (int32_t)L_36; __this->set_touchedSlots_8(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1))); int32_t L_37 = V_3; V_2 = (int32_t)L_37; goto IL_0111; } IL_00fa: { LinkU5BU5D_t964245573* L_38 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_39 = V_2; int32_t L_40 = (int32_t)((L_38)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_39)))->get_Next_1(); __this->set_emptySlot_9(L_40); } IL_0111: { LinkU5BU5D_t964245573* L_41 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_42 = V_2; int32_t L_43 = V_0; ((L_41)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_42)))->set_HashCode_0(L_43); LinkU5BU5D_t964245573* L_44 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_45 = V_2; Int32U5BU5D_t385246372* L_46 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_47 = V_1; int32_t L_48 = L_47; int32_t L_49 = (L_46)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_48)); ((L_44)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_45)))->set_Next_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1))); Int32U5BU5D_t385246372* L_50 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_51 = V_1; int32_t L_52 = V_2; (L_50)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_51), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1))); Int32U5BU5D_t385246372* L_53 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_54 = V_2; int32_t L_55 = ___key0; (L_53)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_54), (int32_t)L_55); ObjectU5BU5D_t2843939325* L_56 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); int32_t L_57 = V_2; RuntimeObject * L_58 = ___value1; (L_56)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_57), (RuntimeObject *)L_58); int32_t L_59 = (int32_t)__this->get_generation_14(); __this->set_generation_14(((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1))); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Clear() extern "C" void Dictionary_2_Clear_m212974362_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { __this->set_count_10(0); Int32U5BU5D_t385246372* L_0 = (Int32U5BU5D_t385246372*)__this->get_table_4(); Int32U5BU5D_t385246372* L_1 = (Int32U5BU5D_t385246372*)__this->get_table_4(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))), /*hidden argument*/NULL); Int32U5BU5D_t385246372* L_2 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); Int32U5BU5D_t385246372* L_3 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); ObjectU5BU5D_t2843939325* L_5 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_4, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))), /*hidden argument*/NULL); LinkU5BU5D_t964245573* L_6 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); LinkU5BU5D_t964245573* L_7 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))), /*hidden argument*/NULL); __this->set_emptySlot_9((-1)); __this->set_touchedSlots_8(0); int32_t L_8 = (int32_t)__this->get_generation_14(); __this->set_generation_14(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsKey(TKey) extern "C" bool Dictionary_2_ContainsKey_m2585338612_gshared (Dictionary_2_t1968819495 * __this, int32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_ContainsKey_m2585338612_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0016; } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_ContainsKey_m2585338612_RuntimeMethod_var); } IL_0016: { RuntimeObject* L_2 = (RuntimeObject*)__this->get_hcp_12(); int32_t L_3 = ___key0; int32_t L_4 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_2, (int32_t)L_3); V_0 = (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)-2147483648LL))); Int32U5BU5D_t385246372* L_5 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_6 = V_0; Int32U5BU5D_t385246372* L_7 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_8 = ((int32_t)((int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); int32_t L_9 = (L_5)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8)); V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); goto IL_0090; } IL_0048: { LinkU5BU5D_t964245573* L_10 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_11 = V_1; int32_t L_12 = (int32_t)((L_10)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)))->get_HashCode_0(); int32_t L_13 = V_0; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_007e; } } { RuntimeObject* L_14 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_15 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_16 = V_1; int32_t L_17 = L_16; int32_t L_18 = (L_15)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_17)); int32_t L_19 = ___key0; bool L_20 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_14, (int32_t)L_18, (int32_t)L_19); if (!L_20) { goto IL_007e; } } { return (bool)1; } IL_007e: { LinkU5BU5D_t964245573* L_21 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_22 = V_1; int32_t L_23 = (int32_t)((L_21)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_22)))->get_Next_1(); V_1 = (int32_t)L_23; } IL_0090: { int32_t L_24 = V_1; if ((!(((uint32_t)L_24) == ((uint32_t)(-1))))) { goto IL_0048; } } { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsValue(TValue) extern "C" bool Dictionary_2_ContainsValue_m3161585138_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { RuntimeObject* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 41)); EqualityComparer_1_t1249878500 * L_0 = (( EqualityComparer_1_t1249878500 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); V_0 = (RuntimeObject*)L_0; V_1 = (int32_t)0; goto IL_0054; } IL_000d: { Int32U5BU5D_t385246372* L_1 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_2 = V_1; int32_t L_3 = L_2; int32_t L_4 = (L_1)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_3)); V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); goto IL_0049; } IL_001d: { RuntimeObject* L_5 = V_0; ObjectU5BU5D_t2843939325* L_6 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = (L_6)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8)); RuntimeObject * L_10 = ___value0; bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 42), (RuntimeObject*)L_5, (RuntimeObject *)L_9, (RuntimeObject *)L_10); if (!L_11) { goto IL_0037; } } { return (bool)1; } IL_0037: { LinkU5BU5D_t964245573* L_12 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_13 = V_2; int32_t L_14 = (int32_t)((L_12)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)))->get_Next_1(); V_2 = (int32_t)L_14; } IL_0049: { int32_t L_15 = V_2; if ((!(((uint32_t)L_15) == ((uint32_t)(-1))))) { goto IL_001d; } } { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0054: { int32_t L_17 = V_1; Int32U5BU5D_t385246372* L_18 = (Int32U5BU5D_t385246372*)__this->get_table_4(); if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_18)->max_length))))))) { goto IL_000d; } } { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::OnDeserialization(System.Object) extern "C" void Dictionary_2_OnDeserialization_m4209543208_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m4209543208_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; KeyValuePair_2U5BU5D_t2652375035* V_1 = NULL; int32_t V_2 = 0; { SerializationInfo_t950877179 * L_0 = (SerializationInfo_t950877179 *)__this->get_serialization_info_13(); if (L_0) { goto IL_000c; } } { return; } IL_000c: { SerializationInfo_t950877179 * L_1 = (SerializationInfo_t950877179 *)__this->get_serialization_info_13(); int32_t L_2 = SerializationInfo_GetInt32_m2640574809((SerializationInfo_t950877179 *)L_1, (String_t*)_stringLiteral1902402919, /*hidden argument*/NULL); __this->set_generation_14(L_2); SerializationInfo_t950877179 * L_3 = (SerializationInfo_t950877179 *)__this->get_serialization_info_13(); RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 43)) }; 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); RuntimeObject * L_6 = SerializationInfo_GetValue_m42271953((SerializationInfo_t950877179 *)L_3, (String_t*)_stringLiteral892943380, (Type_t *)L_5, /*hidden argument*/NULL); __this->set_hcp_12(((RuntimeObject*)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29)))); SerializationInfo_t950877179 * L_7 = (SerializationInfo_t950877179 *)__this->get_serialization_info_13(); int32_t L_8 = SerializationInfo_GetInt32_m2640574809((SerializationInfo_t950877179 *)L_7, (String_t*)_stringLiteral953796230, /*hidden argument*/NULL); V_0 = (int32_t)L_8; SerializationInfo_t950877179 * L_9 = (SerializationInfo_t950877179 *)__this->get_serialization_info_13(); RuntimeTypeHandle_t3027515415 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; Type_t * L_11 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_10, /*hidden argument*/NULL); RuntimeObject * L_12 = SerializationInfo_GetValue_m42271953((SerializationInfo_t950877179 *)L_9, (String_t*)_stringLiteral2947573650, (Type_t *)L_11, /*hidden argument*/NULL); V_1 = (KeyValuePair_2U5BU5D_t2652375035*)((KeyValuePair_2U5BU5D_t2652375035*)Castclass((RuntimeObject*)L_12, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14))); int32_t L_13 = V_0; if ((((int32_t)L_13) >= ((int32_t)((int32_t)10)))) { goto IL_0083; } } { V_0 = (int32_t)((int32_t)10); } IL_0083: { int32_t L_14 = V_0; (( void (*) (Dictionary_2_t1968819495 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); __this->set_count_10(0); KeyValuePair_2U5BU5D_t2652375035* L_15 = V_1; if (!L_15) { goto IL_00c9; } } { V_2 = (int32_t)0; goto IL_00c0; } IL_009e: { KeyValuePair_2U5BU5D_t2652375035* L_16 = V_1; int32_t L_17 = V_2; int32_t L_18 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)((L_16)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_17))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_t2652375035* L_19 = V_1; int32_t L_20 = V_2; RuntimeObject * L_21 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)((L_19)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_20))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); (( void (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_18, (RuntimeObject *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_22 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_00c0: { int32_t L_23 = V_2; KeyValuePair_2U5BU5D_t2652375035* L_24 = V_1; if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_24)->max_length))))))) { goto IL_009e; } } IL_00c9: { int32_t L_25 = (int32_t)__this->get_generation_14(); __this->set_generation_14(((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1))); __this->set_serialization_info_13((SerializationInfo_t950877179 *)NULL); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Remove(TKey) extern "C" bool Dictionary_2_Remove_m4193450060_gshared (Dictionary_2_t1968819495 * __this, int32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m4193450060_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; { goto IL_0016; } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m4193450060_RuntimeMethod_var); } IL_0016: { RuntimeObject* L_2 = (RuntimeObject*)__this->get_hcp_12(); int32_t L_3 = ___key0; int32_t L_4 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_2, (int32_t)L_3); V_0 = (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)-2147483648LL))); int32_t L_5 = V_0; Int32U5BU5D_t385246372* L_6 = (Int32U5BU5D_t385246372*)__this->get_table_4(); V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))); Int32U5BU5D_t385246372* L_7 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_8 = V_1; int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_9)); V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); int32_t L_11 = V_2; if ((!(((uint32_t)L_11) == ((uint32_t)(-1))))) { goto IL_004e; } } { return (bool)0; } IL_004e: { V_3 = (int32_t)(-1); } IL_0050: { LinkU5BU5D_t964245573* L_12 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_13 = V_2; int32_t L_14 = (int32_t)((L_12)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)))->get_HashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0089; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_17 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_18 = V_2; int32_t L_19 = L_18; int32_t L_20 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_19)); int32_t L_21 = ___key0; bool L_22 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_16, (int32_t)L_20, (int32_t)L_21); if (!L_22) { goto IL_0089; } } { goto IL_00a4; } IL_0089: { int32_t L_23 = V_2; V_3 = (int32_t)L_23; LinkU5BU5D_t964245573* L_24 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_25 = V_2; int32_t L_26 = (int32_t)((L_24)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_25)))->get_Next_1(); V_2 = (int32_t)L_26; int32_t L_27 = V_2; if ((!(((uint32_t)L_27) == ((uint32_t)(-1))))) { goto IL_0050; } } IL_00a4: { int32_t L_28 = V_2; if ((!(((uint32_t)L_28) == ((uint32_t)(-1))))) { goto IL_00ad; } } { return (bool)0; } IL_00ad: { int32_t L_29 = (int32_t)__this->get_count_10(); __this->set_count_10(((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1))); int32_t L_30 = V_3; if ((!(((uint32_t)L_30) == ((uint32_t)(-1))))) { goto IL_00e2; } } { Int32U5BU5D_t385246372* L_31 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_32 = V_1; LinkU5BU5D_t964245573* L_33 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_34 = V_2; int32_t L_35 = (int32_t)((L_33)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_34)))->get_Next_1(); (L_31)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_32), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1))); goto IL_0104; } IL_00e2: { LinkU5BU5D_t964245573* L_36 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_37 = V_3; LinkU5BU5D_t964245573* L_38 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_39 = V_2; int32_t L_40 = (int32_t)((L_38)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_39)))->get_Next_1(); ((L_36)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_37)))->set_Next_1(L_40); } IL_0104: { LinkU5BU5D_t964245573* L_41 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_42 = V_2; int32_t L_43 = (int32_t)__this->get_emptySlot_9(); ((L_41)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_42)))->set_Next_1(L_43); int32_t L_44 = V_2; __this->set_emptySlot_9(L_44); LinkU5BU5D_t964245573* L_45 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_46 = V_2; ((L_45)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_46)))->set_HashCode_0(0); Int32U5BU5D_t385246372* L_47 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_48 = V_2; il2cpp_codegen_initobj((&V_4), sizeof(int32_t)); int32_t L_49 = V_4; (L_47)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_48), (int32_t)L_49); ObjectU5BU5D_t2843939325* L_50 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); int32_t L_51 = V_2; il2cpp_codegen_initobj((&V_5), sizeof(RuntimeObject *)); RuntimeObject * L_52 = V_5; (L_50)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_51), (RuntimeObject *)L_52); int32_t L_53 = (int32_t)__this->get_generation_14(); __this->set_generation_14(((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1))); return (bool)1; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&) extern "C" bool Dictionary_2_TryGetValue_m3411363121_gshared (Dictionary_2_t1968819495 * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryGetValue_m3411363121_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; { goto IL_0016; } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryGetValue_m3411363121_RuntimeMethod_var); } IL_0016: { RuntimeObject* L_2 = (RuntimeObject*)__this->get_hcp_12(); int32_t L_3 = ___key0; int32_t L_4 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_2, (int32_t)L_3); V_0 = (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)-2147483648LL))); Int32U5BU5D_t385246372* L_5 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_6 = V_0; Int32U5BU5D_t385246372* L_7 = (Int32U5BU5D_t385246372*)__this->get_table_4(); int32_t L_8 = ((int32_t)((int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); int32_t L_9 = (L_5)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8)); V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); goto IL_00a2; } IL_0048: { LinkU5BU5D_t964245573* L_10 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_11 = V_1; int32_t L_12 = (int32_t)((L_10)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_11)))->get_HashCode_0(); int32_t L_13 = V_0; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_0090; } } { RuntimeObject* L_14 = (RuntimeObject*)__this->get_hcp_12(); Int32U5BU5D_t385246372* L_15 = (Int32U5BU5D_t385246372*)__this->get_keySlots_6(); int32_t L_16 = V_1; int32_t L_17 = L_16; int32_t L_18 = (L_15)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_17)); int32_t L_19 = ___key0; bool L_20 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (RuntimeObject*)L_14, (int32_t)L_18, (int32_t)L_19); if (!L_20) { goto IL_0090; } } { RuntimeObject ** L_21 = ___value1; ObjectU5BU5D_t2843939325* L_22 = (ObjectU5BU5D_t2843939325*)__this->get_valueSlots_7(); int32_t L_23 = V_1; int32_t L_24 = L_23; RuntimeObject * L_25 = (L_22)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_24)); *(RuntimeObject **)L_21 = L_25; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_21, L_25); return (bool)1; } IL_0090: { LinkU5BU5D_t964245573* L_26 = (LinkU5BU5D_t964245573*)__this->get_linkSlots_5(); int32_t L_27 = V_1; int32_t L_28 = (int32_t)((L_26)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_27)))->get_Next_1(); V_1 = (int32_t)L_28; } IL_00a2: { int32_t L_29 = V_1; if ((!(((uint32_t)L_29) == ((uint32_t)(-1))))) { goto IL_0048; } } { RuntimeObject ** L_30 = ___value1; il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_31 = V_2; *(RuntimeObject **)L_30 = L_31; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_30, L_31); return (bool)0; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Values() extern "C" ValueCollection_t3684863813 * Dictionary_2_get_Values_m683714624_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { ValueCollection_t3684863813 * L_0 = (ValueCollection_t3684863813 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 45)); (( void (*) (ValueCollection_t3684863813 *, Dictionary_2_t1968819495 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)(L_0, (Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_0; } } // TKey System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ToTKey(System.Object) extern "C" int32_t Dictionary_2_ToTKey_m224697230_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_ToTKey_m224697230_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_ToTKey_m224697230_RuntimeMethod_var); } IL_0011: { RuntimeObject * L_2 = ___key0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)))) { goto IL_0040; } } { RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 47)) }; 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); String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, (Type_t *)L_4); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)_stringLiteral4183622140, (String_t*)L_5, /*hidden argument*/NULL); ArgumentException_t132251570 * L_7 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1216717135(L_7, (String_t*)L_6, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_ToTKey_m224697230_RuntimeMethod_var); } IL_0040: { RuntimeObject * L_8 = ___key0; return ((*(int32_t*)((int32_t*)UnBox(L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))))); } } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ToTValue(System.Object) extern "C" RuntimeObject * Dictionary_2_ToTValue_m692436965_gshared (Dictionary_2_t1968819495 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_ToTValue_m692436965_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0024; } } { RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 48)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); bool L_3 = Type_get_IsValueType_m3108065642((Type_t *)L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0024; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; return L_4; } IL_0024: { RuntimeObject * L_5 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5)))) { goto IL_0053; } } { RuntimeTypeHandle_t3027515415 L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 48)) }; 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); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, (Type_t *)L_7); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_9 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)_stringLiteral4183622140, (String_t*)L_8, /*hidden argument*/NULL); ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1216717135(L_10, (String_t*)L_9, (String_t*)_stringLiteral3493618073, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Dictionary_2_ToTValue_m692436965_RuntimeMethod_var); } IL_0053: { RuntimeObject * L_11 = ___value0; return ((RuntimeObject *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" bool Dictionary_2_ContainsKeyValuePair_m3478027727_gshared (Dictionary_2_t1968819495 * __this, KeyValuePair_2_t71524366 ___pair0, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; { int32_t L_0 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&___pair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); bool L_1 = (( bool (*) (Dictionary_2_t1968819495 *, int32_t, RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 49)->methodPointer)((Dictionary_2_t1968819495 *)__this, (int32_t)L_0, (RuntimeObject **)(RuntimeObject **)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 49)); if (L_1) { goto IL_0016; } } { return (bool)0; } IL_0016: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 41)); EqualityComparer_1_t1249878500 * L_2 = (( EqualityComparer_1_t1249878500 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&___pair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_4 = V_0; bool L_5 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t1249878500 *)L_2, (RuntimeObject *)L_3, (RuntimeObject *)L_4); return L_5; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetEnumerator() extern "C" Enumerator_t3923002270 Dictionary_2_GetEnumerator_m1087370259_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method) { { Enumerator_t3923002270 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m2150997492((&L_0), (Dictionary_2_t1968819495 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); return L_0; } } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::<CopyTo>m__0(TKey,TValue) extern "C" DictionaryEntry_t3123975638 Dictionary_2_U3CCopyToU3Em__0_m583642638_gshared (RuntimeObject * __this /* static, unused */, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; int32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = ___value1; DictionaryEntry_t3123975638 L_4; memset(&L_4, 0, sizeof(L_4)); DictionaryEntry__ctor_m2585376310((&L_4), (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
541dc1e72f71c0b6e7b3ad97773d05b9313dc7cd
cca8ee8214b6673cbf01d1a0374a1ef5f12b4602
/pertemuan1_percabangan_arif_sidik_permana.cpp
7c05af29197078b300b30de7d684dff166867789
[]
no_license
ninegrafh/Dasar-Pemograman
ed2b520a1ffc312cf677c4048f34197cce69a7ba
04304c3b4b0db485d4a2be44ecbf4db1c2883b5f
refs/heads/master
2021-02-16T23:20:06.974883
2020-05-05T08:15:03
2020-05-05T08:15:03
245,052,283
0
0
null
null
null
null
UTF-8
C++
false
false
421
cpp
#include <iostream> #include <cstdlib> using namespace std; void pilihan (int x){ if (x==1) { cout << "Anda Memesan Nasi Goreng"; } else { cout << "Anda Memesan Nasi Kucing"; } } int main(){ int pilih; cout << "1. Nasi Goreng" << '\n'; cout << "2. Nasi Kucing" << '\n'; cout << "Masukan Pulihan Anda (1-2): "; cin >> pilih; pilihan (pilih); }
1157ef0fc3ab333d1adf1665167a73812790e6e6
0add5dd73742d371fb8c2fd0575bde1c9717822d
/Source/GUAO_EveryThing/Private/Online/EveryThingGameState_Game.cpp
e59bd7643dfadabfde13c3ba8f0b7a43338f8f6e
[]
no_license
GuAoDiao/GUAO_EveryThing
ff56a01085fab74104a92a2ce33928083b268c9d
5dd6415e9649ac0f18b6c2c9e76a9405818e5d8b
refs/heads/master
2020-03-12T13:29:44.860723
2018-06-07T09:45:22
2018-06-07T09:45:22
130,643,541
3
1
null
null
null
null
UTF-8
C++
false
false
12,719
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "EveryThingGameState_Game.h" #include "Engine/World.h" #include "UnrealNetwork.h" #include "TimerManager.h" #include "Characters/GamePawn.h" #include "Online/EveryThingPlayerState_Game.h" #include "Online/EveryThingGameMode_Game.h" #include "Online/PlayerController_Game.h" #include "EveryThingAssetManager.h" const FString AEveryThingGameState_Game::PlayerChatName_NONE = FString("NONE"); AEveryThingGameState_Game::AEveryThingGameState_Game() { CurrentPlayerNum = 0; bIsETGameStarted = false; CurrentETGameState = EETGameState::WaitForHousePlayerLoad; DefaultReadyTime = 5.f; DefaultGameTime = 600.f; DefaultBackToHouseTime = 10.f; ActualTeamNums = 1; } ////////////////////////////////////////////////////////////////////////// /// Game flow path void AEveryThingGameState_Game::InitializeETGameState(const FString& InGameType, const FString& InMapName, const FString& InHouseName, bool bInIsLANMatach, int32 InMaxPlayerNum, int32 InCurrentPlayerNum) { GameType = InGameType; MapName = InMapName; HouseName = InHouseName; bIsLANMatach = bInIsLANMatach; MaxPlayerNum = InMaxPlayerNum; HousePlayerNum = InCurrentPlayerNum; OnGameTypeChanged(); } void AEveryThingGameState_Game::OnGameTypeChanged() { MapTypeInfo = UEveryThingAssetManager::GetAssetManagerInstance()->GetMapTypeInfoFromName(FName(*GameType)); checkf(MapTypeInfo, TEXT("-_- the map type(%s) info must be exists."), *GameType); AllowedTeamNum = MapTypeInfo->AllowedTeamNum; ActualTeamNums = MapTypeInfo->ActualTeamNums; OnAllowedTeamNumChanged(); CureScoreScale = MapTypeInfo->CureScoreScale; DamageScoreScale = MapTypeInfo->DamageScoreScale; CriticalDamageScore = MapTypeInfo->CriticalDamageScore; KillScore = MapTypeInfo->KillScore; } int32 AEveryThingGameState_Game::GetRandomTeamID() const { if (AllowedTeamNum == 0) { return -1; } TArray<int32> AllTeamPlayerNums; for (int32 i = 0; i < AllowedTeamNum; ++i) { AllTeamPlayerNums.Add(0); } for (const APlayerState* PlayerState : PlayerArray) { const AEveryThingPlayerState_Game* ETPS_G = Cast<AEveryThingPlayerState_Game>(PlayerState); if (ETPS_G) { int32 TeamID = ETPS_G->GetTeamID(); if (CheckTeamIDIsAllowed(TeamID)) { ++AllTeamPlayerNums[TeamID - 1]; } } } int32 PlayerNumMinTeam = 0; int32 MinPlayerNum = INT_MAX; for (int32 i = 0; i < AllTeamPlayerNums.Num(); ++i) { if (AllTeamPlayerNums[i] < MinPlayerNum) { PlayerNumMinTeam = i; MinPlayerNum = AllTeamPlayerNums[i]; } } return PlayerNumMinTeam + 1; } ////////////////////////////////////////////////////////////////////////// /// Start Ready void AEveryThingGameState_Game::StartReadyCountDown() { RemaningReadyTime = DefaultReadyTime; OnRemaningReadyTimeUpdate(); GetWorldTimerManager().SetTimer(CountDownTimer, this, &AEveryThingGameState_Game::ReadyCountDown, 1.f, true); } void AEveryThingGameState_Game::ReadyCountDown() { if (RemaningReadyTime <= 0.f) { GetWorldTimerManager().ClearTimer(CountDownTimer); ToggleToTargetETGameState(EETGameState::Gameing); } else { RemaningReadyTime -= 1.f; OnRemaningReadyTimeUpdate(); } } /// Game void AEveryThingGameState_Game::StartGameTimeCountDown() { RemaningGameTime = DefaultGameTime; OnRemaningGameTimeUpdate(); // TODO: Need to optimize GetWorldTimerManager().SetTimer(CountDownTimer, this, &AEveryThingGameState_Game::GameTimeCountDown, 1.f, true); } void AEveryThingGameState_Game::GameTimeCountDown() { if (RemaningGameTime <= 0.f) { GetWorldTimerManager().ClearTimer(CountDownTimer); ToggleToTargetETGameState(EETGameState::GameOver); } else { RemaningGameTime -= 1.f; OnRemaningGameTimeUpdate(); } } /// Back to house void AEveryThingGameState_Game::StartBackToHouseTimeCountDown() { RemaningBackToHouseTime = DefaultBackToHouseTime; OnRemaningBackToHouseTimeUpdate(); GetWorldTimerManager().SetTimer(CountDownTimer, this, &AEveryThingGameState_Game::BackToHouseeTimeCountDown, 1.f, true); } void AEveryThingGameState_Game::BackToHouseeTimeCountDown() { if (RemaningBackToHouseTime <= 0.f) { GetWorldTimerManager().ClearTimer(CountDownTimer); AEveryThingGameMode_Game* OwnerETGM_G = GetWorld() ? GetWorld()->GetAuthGameMode<AEveryThingGameMode_Game>() : nullptr; if (OwnerETGM_G) { OwnerETGM_G->HandlerETBackToHouse(); } } else { RemaningBackToHouseTime -= 1.f; OnRemaningBackToHouseTimeUpdate(); } } ////////////////////////////////////////////////////////////////////////// /// Game State void AEveryThingGameState_Game::OnPlayerPostLogin(APlayerController* NewPlayer) { ++CurrentPlayerNum; UE_LOG(LogTemp, Log, TEXT("-_- On Player Add, Current Player: %d / %d"), CurrentPlayerNum, HousePlayerNum); if (IsTargetETGameState(EETGameState::WaitForHousePlayerLoad) && CurrentPlayerNum >= HousePlayerNum) { ToggleToTargetETGameState(EETGameState::ReadyToStart); } } void AEveryThingGameState_Game::OnPlayerLogout(AController* Exiting) { --CurrentPlayerNum; if (IsTargetETGameState(EETGameState::WaitForHousePlayerLoad)) { --HousePlayerNum; } } void AEveryThingGameState_Game::ToggleToTargetETGameState(EETGameState TargetGameStae) { CurrentETGameState = TargetGameStae; AEveryThingGameMode_Game* OwnerETGM_G = GetWorld() ? GetWorld()->GetAuthGameMode<AEveryThingGameMode_Game>() : nullptr; if (OwnerETGM_G) { switch (TargetGameStae) { case EETGameState::WaitForHousePlayerLoad: break; case EETGameState::ReadyToStart: {OwnerETGM_G->HandleETGameReay(); break; } case EETGameState::Gameing: { bIsETGameStarted = true; OwnerETGM_G->HandleETGameStart(); break; } case EETGameState::GameOver: {OwnerETGM_G->HandleETGameOver(); break; } } } } ////////////////////////////////////////////////////////////////////////// /// Chat const FString& AEveryThingGameState_Game::GetPlayerChatName(int32 PlayerID) const { AEveryThingPlayerState_Game* TargetETPS = ChatPlayerState.IsValidIndex(PlayerID) ? Cast<AEveryThingPlayerState_Game>(ChatPlayerState[PlayerID]) : nullptr; if (TargetETPS) { return TargetETPS->GetPlayerChatName(); } return PlayerChatName_NONE; } ////////////////////////////////////////////////////////////////////////// /// Game Pawn Damage And Death void AEveryThingGameState_Game::OnGamePawnAcceptCure(AGamePawn* AccpetPawn, AActor* Causer, float Treatment) { APlayerController_Game* AcceptPC_G = AccpetPawn ? Cast<APlayerController_Game>(AccpetPawn->GetController()) : nullptr; if (AcceptPC_G) { IHitAbleInterface* CauserHitable = Cast<IHitAbleInterface>(Causer); FString CauserActorDisplayName = CauserHitable ? CauserHitable->GetHitAbleActorDisplayName() : TEXT("SceneObject"); AcceptPC_G->ClientOnAcceptCure(CauserActorDisplayName, Treatment); } AGamePawn* CauserGamePawn = Cast<AGamePawn>(Causer); APlayerController_Game* CasuerPC_G = CauserGamePawn ? Cast<APlayerController_Game>(CauserGamePawn->GetController()) : nullptr; if (CasuerPC_G) { AEveryThingPlayerState_Game* CauserETPS_G = Cast<AEveryThingPlayerState_Game>(CasuerPC_G->PlayerState); if (CauserETPS_G) { CauserETPS_G->AddGameScore(Treatment * CureScoreScale); } if (AccpetPawn) { CasuerPC_G->ClientOnTakeCure(AccpetPawn->GetHitAbleActorDisplayName(), Treatment); } } } void AEveryThingGameState_Game::OnGamePawnAcceptDamage(AGamePawn* AccpetPawn, AActor* Causer, float Damage) { APlayerController_Game* AcceptPC_G = AccpetPawn ? Cast<APlayerController_Game>(AccpetPawn->GetController()) : nullptr; if (AcceptPC_G) { IHitAbleInterface* CauserHitable = Cast<IHitAbleInterface>(Causer); FString CauserActorDisplayName = CauserHitable ? CauserHitable->GetHitAbleActorDisplayName() : TEXT("SceneObject"); AcceptPC_G->ClientOnAcceptDamage(CauserActorDisplayName, Damage); } AGamePawn* CauserGamePawn = Cast<AGamePawn>(Causer); APlayerController_Game* CasuerPC_G = CauserGamePawn ? Cast<APlayerController_Game>(CauserGamePawn->GetController()) : nullptr; if (CasuerPC_G) { AEveryThingPlayerState_Game* CauserETPS_G = Cast<AEveryThingPlayerState_Game>(CasuerPC_G->PlayerState); if (CauserETPS_G) { CauserETPS_G->AddGameScore(Damage * DamageScoreScale); } if (AccpetPawn) { CasuerPC_G->ClientOnTakeDamage(AccpetPawn->GetHitAbleActorDisplayName(), Damage); } } } void AEveryThingGameState_Game::OnGamePawnAcceptCriticalDamage(AGamePawn* AccpetPawn, AActor* Causer) { APlayerController_Game* AcceptPC_G = AccpetPawn ? Cast<APlayerController_Game>(AccpetPawn->GetController()) : nullptr; if (AcceptPC_G) { IHitAbleInterface* CauserHitable = Cast<IHitAbleInterface>(Causer); FString CauserActorDisplayName = CauserHitable ? CauserHitable->GetHitAbleActorDisplayName() : TEXT("SceneObject"); AcceptPC_G->ClientOnAcceptCriticalDamage(CauserActorDisplayName); } AGamePawn* CauserGamePawn = Cast<AGamePawn>(Causer); APlayerController_Game* CasuerPC_G = CauserGamePawn ? Cast<APlayerController_Game>(CauserGamePawn->GetController()) : nullptr; if (CasuerPC_G) { AEveryThingPlayerState_Game* CauserETPS_G = Cast<AEveryThingPlayerState_Game>(CasuerPC_G->PlayerState); if (CauserETPS_G) { CauserETPS_G->AddGameScore(CriticalDamageScore); } if (AccpetPawn) { CasuerPC_G->ClientOnTakeCriticalDamage(AccpetPawn->GetHitAbleActorDisplayName()); } } } void AEveryThingGameState_Game::OnGamePawnBeKilled(AGamePawn* KilledGamePawn, AActor* KillerActor) { AGamePawn* KillerGamePawn = Cast<AGamePawn>(KillerActor); APlayerController_Game* KilledPC_G = KilledGamePawn ? Cast<APlayerController_Game>(KilledGamePawn->GetController()) : nullptr; if (KilledPC_G) { AEveryThingPlayerState_Game* KilledETPS_G = Cast<AEveryThingPlayerState_Game>(KilledPC_G->PlayerState); if (KilledETPS_G) { KilledETPS_G->IncDeathNum(); } if (KillerActor) { IHitAbleInterface* KillerHitable = Cast<IHitAbleInterface>(KillerActor); FString KillerName = KillerHitable ? KillerHitable->GetHitAbleActorDisplayName() : TEXT("SceneObject"); KilledPC_G->ClientOnBeKilled(KillerName); } else { KilledPC_G->ClientOnSuicided(); } KilledPC_G->UnPossess(); KilledPC_G->DelayToRestartGamePawn(3.f); } APlayerController_Game* KillerPC_G = KillerGamePawn ? Cast<APlayerController_Game>(KillerGamePawn->GetController()) : nullptr; if (KillerPC_G) { AEveryThingPlayerState_Game* KillerETPS_G = Cast<AEveryThingPlayerState_Game>(KillerPC_G->PlayerState); if (KillerETPS_G) { KillerETPS_G->AddGameScore(KillScore); KillerETPS_G->IncKillNum(); } if (KillerGamePawn) { KillerPC_G->ClientOnKillOther(KillerGamePawn->GetHitAbleActorDisplayName()); } } if (GetWorld()) { if (KillerGamePawn) { for (FConstPlayerControllerIterator It = GetWorld()->GetPlayerControllerIterator(); It; ++It) { APlayerController_Game* OwnerPC_G = Cast<APlayerController_Game>(It->Get()); if (OwnerPC_G) { OwnerPC_G->ClientOnGamePawnBeKilled(KilledGamePawn->GetHitAbleActorDisplayName(), KillerGamePawn->GetHitAbleActorDisplayName()); } } } else { for (FConstPlayerControllerIterator It = GetWorld()->GetPlayerControllerIterator(); It; ++It) { APlayerController_Game* OwnerPC_G = Cast<APlayerController_Game>(It->Get()); if (OwnerPC_G) { OwnerPC_G->ClientOnGamePawnSuicided(KilledGamePawn->GetHitAbleActorDisplayName()); } } } } } void AEveryThingGameState_Game::GetLifetimeReplicatedProps(TArray<FLifetimeProperty> &OutLifetimeProps) const { Super::GetLifetimeReplicatedProps(OutLifetimeProps); DOREPLIFETIME(AEveryThingGameState_Game, CurrentETGameState); DOREPLIFETIME(AEveryThingGameState_Game, bIsETGameStarted); DOREPLIFETIME(AEveryThingGameState_Game, RemaningReadyTime); DOREPLIFETIME(AEveryThingGameState_Game, RemaningGameTime); DOREPLIFETIME(AEveryThingGameState_Game, RemaningBackToHouseTime); DOREPLIFETIME(AEveryThingGameState_Game, GameType); DOREPLIFETIME(AEveryThingGameState_Game, MapName); DOREPLIFETIME(AEveryThingGameState_Game, HouseName); DOREPLIFETIME(AEveryThingGameState_Game, bIsLANMatach); DOREPLIFETIME(AEveryThingGameState_Game, MaxPlayerNum); DOREPLIFETIME(AEveryThingGameState_Game, CurrentPlayerNum); DOREPLIFETIME(AEveryThingGameState_Game, ActualTeamNums); DOREPLIFETIME(AEveryThingGameState_Game, AllowedTeamNum); DOREPLIFETIME(AEveryThingGameState_Game, ChatPlayerState); }
9c9befbdf8e88c5dab8baa519b174eaa25aa6ecf
7ab1c31c2ea1ef2e269e0dbbcd1aa5c44490e171
/droneModuleInterfaceROS/src/include/droneekfstateestimatorinterface.h
ceb32fc6b8a47832e774ea4bc30ad561ffe4b21a
[ "BSD-3-Clause", "MIT" ]
permissive
MorS25/cvg_quadrotor_swarm
3efe9436489f804cb7fe9204660656398055ff07
da75d02049163cf65fd7305bc46a16359a851c7c
refs/heads/master
2021-01-20T21:45:16.803701
2015-07-20T15:25:59
2015-07-20T15:25:59
22,577,363
0
0
null
null
null
null
UTF-8
C++
false
false
2,707
h
#ifndef DRONEEKFSTATEESTIMATORINTERFACE_H #define DRONEEKFSTATEESTIMATORINTERFACE_H #include "dronemoduleinterface.h" #include "droneMsgsROS/dronePose.h" #include "droneMsgsROS/droneSpeeds.h" #include "droneMsgsROS/setInitDroneYaw_srv_type.h" #include "communication_definition.h" class DroneEKFStateEstimatorInterface : public DroneModuleInterface { public: DroneEKFStateEstimatorInterface(const std::string &module_name_str_in, ModuleNames::name module_name_enum_in); ~DroneEKFStateEstimatorInterface(); void open(ros::NodeHandle & nIn); inline const droneMsgsROS::dronePose& last_drone_estimated_LMrTwrtEKF_pose_msg() { return last_drone_estimated_LMrTwrtEKF_pose_msg_; } inline const droneMsgsROS::dronePose& last_drone_estimated_GMRwrtGFF_pose_msg() { return last_drone_estimated_GMRwrtGFF_pose_msg_; } inline const droneMsgsROS::droneSpeeds& last_drone_estimated_LMrTwrtEKF_speeds_msg() { return last_drone_estimated_LMrTwrtEKF_speeds_msg_; } inline const droneMsgsROS::droneSpeeds& last_drone_estimated_GMRwrtGFF_speeds_msg() { return last_drone_estimated_GMRwrtGFF_speeds_msg_; } bool sendInitDroneYaw( double current_yaw_droneLMrT_telemetry_rad); private: // Subscribers ros::Subscriber drone_estimated_LMrT_pose_subscriber; ros::Subscriber drone_estimated_GMR_pose_subscriber; ros::Subscriber drone_estimated_LMrT_speeds_subscriber; ros::Subscriber drone_estimated_GMR_speeds_subscriber; void drone_estimated_LMrT_pose_callback_function(const droneMsgsROS::dronePose &msg) { last_drone_estimated_LMrTwrtEKF_pose_msg_ = (msg); } void drone_estimated_GMR_pose_callback_function(const droneMsgsROS::dronePose &msg) { last_drone_estimated_GMRwrtGFF_pose_msg_ = (msg); } void drone_estimated_LMrT_speeds_callback_function(const droneMsgsROS::droneSpeeds &msg) { last_drone_estimated_LMrTwrtEKF_speeds_msg_ = (msg); } void drone_estimated_GMR_speeds_callback_function(const droneMsgsROS::droneSpeeds &msg) { last_drone_estimated_GMRwrtGFF_speeds_msg_ = (msg); } droneMsgsROS::dronePose last_drone_estimated_LMrTwrtEKF_pose_msg_; droneMsgsROS::dronePose last_drone_estimated_GMRwrtGFF_pose_msg_; droneMsgsROS::droneSpeeds last_drone_estimated_LMrTwrtEKF_speeds_msg_; droneMsgsROS::droneSpeeds last_drone_estimated_GMRwrtGFF_speeds_msg_; // services ros::ServiceClient setInitDroneYaw_srv_server; public: std::stringstream *getStateEstimatorState_Stream(); std::stringstream *getPositionEstimates_GMRwrtGFF_Stream(); std::stringstream *getSpeedEstimates_GMRwrtGFF_Stream(); private: std::stringstream interface_printout_stream; }; #endif // DRONEEKFSTATEESTIMATORINTERFACE_H
0aa1f8a30eda89d63c68e7e12731194530c206a5
89292be10b520779772588bbd90184e4f6d00748
/chrome/browser/bookmarks/enhanced_bookmarks_features.cc
a39766b954928b9c9b015b067c9b36c74de3b360
[ "BSD-3-Clause" ]
permissive
anirudhSK/chromium
2cd85630932a05fa065a5d9a1703de33e9b5c483
a8f23c87e656ab9ba49de9ccccbc53f614cdcb41
refs/heads/master
2016-09-11T03:25:35.744751
2014-03-14T15:59:45
2014-03-14T15:59:45
10,112,188
2
2
null
null
null
null
UTF-8
C++
false
false
3,112
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/bookmarks/enhanced_bookmarks_features.h" #include "base/command_line.h" #include "base/metrics/field_trial.h" #include "base/sha1.h" #include "base/strings/string_number_conversions.h" #include "chrome/common/chrome_switches.h" #include "components/variations/variations_associated_data.h" #include "extensions/common/features/feature.h" #include "extensions/common/features/feature_provider.h" namespace { const char kFieldTrialName[] = "EnhancedBookmarks"; bool IsBookmarksExtensionHash(const std::string& sha1_hex) { return sha1_hex == "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2" || sha1_hex == "D57DE394F36DC1C3220E7604C575D29C51A6C495"; } }; // namespace bool IsBookmarksExtensionInstalled( const extensions::ExtensionIdSet& extension_ids) { // Compare installed extension ids with ones we expect. for (extensions::ExtensionIdSet::const_iterator iter = extension_ids.begin(); iter != extension_ids.end(); ++iter) { const std::string id_hash = base::SHA1HashString(*iter); DCHECK_EQ(id_hash.length(), base::kSHA1Length); std::string hash = base::HexEncode(id_hash.c_str(), id_hash.length()); if (IsBookmarksExtensionHash(hash)) return true; } return false; } bool OptInIntoBookmarksExperiment(BookmarksExperimentState state) { // Opt-in user into Finch group. CommandLine* command_line = CommandLine::ForCurrentProcess(); if (state == kBookmarksExperimentEnabledUserOptOut) command_line->AppendSwitch(switches::kManualEnhancedBookmarksOptout); else command_line->AppendSwitch(switches::kManualEnhancedBookmarks); return true; } bool IsEnhancedBookmarksExperimentEnabled() { CommandLine* command_line = CommandLine::ForCurrentProcess(); if (command_line->HasSwitch(switches::kManualEnhancedBookmarks) || command_line->HasSwitch(switches::kManualEnhancedBookmarksOptout)) { return true; } std::string ext_id = GetEnhancedBookmarksExtensionIdFromFinch(); extensions::FeatureProvider* feature_provider = extensions::FeatureProvider::GetPermissionFeatures(); extensions::Feature* feature = feature_provider->GetFeature("metricsPrivate"); return feature && feature->IsIdInWhitelist(ext_id); } bool IsEnableDomDistillerSet() { if (CommandLine::ForCurrentProcess()-> HasSwitch(switches::kEnableDomDistiller)) { return true; } if (chrome_variations::GetVariationParamValue( kFieldTrialName, "enable-dom-distiller") == "1") return true; return false; } bool IsEnableSyncArticlesSet() { if (CommandLine::ForCurrentProcess()-> HasSwitch(switches::kEnableSyncArticles)) { return true; } if (chrome_variations::GetVariationParamValue( kFieldTrialName, "enable-sync-articles") == "1") return true; return false; } std::string GetEnhancedBookmarksExtensionIdFromFinch() { return chrome_variations::GetVariationParamValue(kFieldTrialName, "id"); }
[ "[email protected]@0039d316-1c4b-4281-b951-d872f2087c98" ]
[email protected]@0039d316-1c4b-4281-b951-d872f2087c98
e8759ae9e30d148c72e1397d2981660b1e76f177
740c63a653055bec3e4f73f6740689f6c1a7d811
/libraries/chain/include/graphene/chain/protocol/personal_identity.hpp
9873f6bd714bcc7042329398899f4cff01e889c8
[ "MIT" ]
permissive
agarwalrits13/dascoin-blockchain
c7f7c2d62269228a2bed5866e6ee5f1802928b88
a37141ab0cc2e357090c055107e8e4373c3cd68a
refs/heads/master
2020-03-07T19:20:35.407571
2018-03-31T21:40:03
2018-03-31T21:40:03
127,668,038
0
0
null
2018-04-01T20:17:34
2018-04-01T20:17:33
null
UTF-8
C++
false
false
2,398
hpp
/* * MIT License * * Copyright (c) 2018 Tech Solutions Malta LTD * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #pragma once #include <graphene/chain/protocol/base.hpp> namespace graphene { namespace chain { /////////////////////////////// // Operations: // /////////////////////////////// struct update_pi_limits_operation : public base_operation { struct fee_parameters_type {}; asset fee; account_id_type pi_validator; // This is the id of the validation authority that assigns the pi and levels. account_id_type account; // The account whose level and limits are being modified. uint8_t level; // The new level of PI. optional<limits_type> new_limits; // (optional) New limits. extensions_type extensions; account_id_type fee_payer()const { return pi_validator; } void validate()const; share_type calculate_fee(const fee_parameters_type& k)const { return 0; } }; } } // namespace graphene::chain //////////////////////////////// // Reflections: // //////////////////////////////// FC_REFLECT( graphene::chain::update_pi_limits_operation::fee_parameters_type, ) FC_REFLECT( graphene::chain::update_pi_limits_operation, (fee) (pi_validator) (account) (level) (new_limits) (extensions) )
dd0a475c955a29a8f22663a0421d96074d460f7a
fef7dfa0475cb868a5a14432eba57a81693f357d
/Management_System_Xion_2.2/include/ProveedorFile.h
a340f8ae5ed3b251af606c1f847dc028215e08dd
[]
no_license
EzequielEduardo/LAB2-SEGUNDO-PARCIAL
a656845d61d0db3ab2a619f5ab68755d9223e4cc
bad1897538361031e07b6987b44c630df51f8683
refs/heads/main
2023-05-31T13:52:52.378898
2021-07-14T15:44:10
2021-07-14T15:44:10
373,639,841
0
0
null
2021-06-06T21:59:55
2021-06-03T21:00:09
C++
UTF-8
C++
false
false
335
h
#define FUNCIONES_H_INCLUDED #define FUNCIONES_H_INCLUDED #ifndef PROVEEDORFILE_H #define PROVEEDORFILE_H class ProveedorFile { private: //FILE *pfile; public: bool grabarEnDisco(Proveedor ); Proveedor* extraerDatosDeDisco(); int cantidadDeDatosGrabados(); }; #endif // PROVEEDORFILE_H
554ccc84400b0817a65b2706d6be9d60eb75f777
3ef84250365b6501afd4c55830edb73f45398c46
/Code/GameSDK/GameDll/PlayerAnimation.h
5a0bcd71be07cb14c2fc47393ceae7d9e4946c72
[]
no_license
Rjayone/TravellersNotes
cc9193d01c0b060d848401d74797ef14322e90dd
0bf44ad22daf64d56b70c841ac936ae3d1c12d9c
refs/heads/master
2021-04-26T11:40:03.965230
2015-10-25T14:04:22
2015-10-25T14:04:22
43,647,664
1
0
null
null
null
null
UTF-8
C++
false
false
4,012
h
/************************************************************************* Crytek Source File. Copyright (C), Crytek Studios, 2001-2010. ------------------------------------------------------------------------- Description: Helper interface for player animation control ------------------------------------------------------------------------- History: - 08.9.11: Created by Tom Berry *************************************************************************/ #ifndef __PLAYERANIMATION_H__ #define __PLAYERANIMATION_H__ #include "ICryMannequin.h" typedef TAction<SAnimationContext> TPlayerAction; enum EPlayerActionPriority { PP_Lowest, PP_Movement, PP_MovementAction, PP_PlayerAction, PP_PlayerActionUrgent, PP_HitReaction, PP_Death, PP_PostDeath }; #define MAN_PLAYER_FRAGMENTS( f ) \ f( MotionIdle ) \ f( MotionTurn ) \ f( MotionMovement ) \ f( MotionJump ) \ f( MotionInAir ) \ f( MotionMounted ) \ f( FPNone ) \ f( FPSway ) \ f( FPIdle ) \ f( FPMovement ) \ f( FPLand ) \ f( aimPose ) \ f( idlePose ) \ f( ledgeGrab ) \ f( LadderClimb ) \ f( LadderGetOn ) \ f( LadderGetOff ) \ f( idle ) \ f( idle_break ) \ f( slide ) \ f( slidingKick ) \ f( bump ) \ f( interact ) \ f( melee ) \ f( melee_multipart ) \ f( melee_weapon ) \ f( melee_interact ) \ f( hitDeath ) \ f( animationControlled ) \ f( weaponPose ) \ #define MAN_PLAYER_CONTEXTS( f ) \ f( Char1P ) \ f( Char3P ) \ f( Weapon ) \ f( attachment_top ) \ f( attachment_bottom ) \ f( SlaveChar ) \ f( SlaveObject ) #define MAN_PLAYER_TAGS( f ) \ f( crouch ) \ f( swim ) \ f( underwater ) \ f( jump ) \ f( move ) \ f( sprint ) \ f( outOfAmmo ) \ f( aiming ) \ f( forward ) \ f( backward ) \ f( left ) \ f( right ) \ f( nw ) \ f( MP ) \ f( SP ) \ f( FP ) \ f( localClient ) \ f( throwing ) \ f( slaveHuman ) \ f( BowPrime ) \ f(leftSide) \ f(rightSide) \ f(up) \ f(down) \ f(front) \ f(vertical) \ f(diagonal) \ f(horizontal) \ f(pricking) \ f(cancel)\ f(swing)\ f(hold)\ f(release)\ f(hit)\ f(miss) \ f(defence) #define MAN_PLAYER_TAG_GROUPS( f ) \ f( stance ) \ f( weaponType ) \ f( item ) \ f( zoom ) \ f( firemode ) \ f( moveDir ) \ f( moveSpeed ) \ f( scope_attachment ) \ f( barrel_attachment ) \ f( underbarrel_attachment ) \ f( melee_type ) \ f( playMode ) \ f( mp_enviro ) \ #define MAN_PLAYER_SCOPES( f ) \ f( FullBody1P ) \ f( FullBody3P ) \ f( Motion1P ) \ f( AimPose ) \ f( Torso1P ) \ f( Torso3P ) \ f( Weapon ) \ f( AttachmentBottom ) \ f( SlaveChar ) \ f( SlaveObject ) #define MAN_MELEE_FRAGMENT_TAGS( f ) \ f( into ) \ f( hit ) \ f( miss ) #define MAN_MELEEPOLE_FRAGMENT_TAGS( f ) \ f( secondSwing ) #define MAN_LEDGEGRAB_FRAGMENT_TAGS( f ) \ f( floor ) \ f( fall ) \ f( ledge ) \ f( vault ) \ f( quick ) \ f( up ) \ f( over ) \ f( drop ) \ f( endCrouched ) \ f( floorSprint ) \ f( high ) #define MAN_PLAYER_FRAGMENT_TAGS( f ) \ f( melee, MAN_MELEEPOLE_FRAGMENT_TAGS, MANNEQUIN_USER_PARAMS__EMPTY_LIST ) \ f( melee_multipart, MAN_MELEE_FRAGMENT_TAGS, MANNEQUIN_USER_PARAMS__EMPTY_LIST ) \ f( ledgeGrab, MAN_LEDGEGRAB_FRAGMENT_TAGS, MANNEQUIN_USER_PARAMS__EMPTY_LIST ) \ MANNEQUIN_USER_PARAMS( SMannequinPlayerParams, MAN_PLAYER_FRAGMENTS, MAN_PLAYER_TAGS, MAN_PLAYER_TAG_GROUPS, MAN_PLAYER_SCOPES, MAN_PLAYER_CONTEXTS, MAN_PLAYER_FRAGMENT_TAGS ); extern SMannequinPlayerParams PlayerMannequin; void InitPlayerMannequin( IActionController* pActionController ); template< typename T > const T* GetMannequinUserParams( const SAnimationContext& context ) { IGameFramework* pGameFramework = g_pGame->GetIGameFramework(); CRY_ASSERT( pGameFramework ); IMannequin& mannequin = pGameFramework->GetMannequinInterface(); CMannequinUserParamsManager& mannequinUserParams = mannequin.GetMannequinUserParamsManager(); const T* const pUserParams = mannequinUserParams.FindOrCreateParams< T >( context.controllerDef ); CRY_ASSERT( pUserParams ); return pUserParams; } #endif // !__PLAYERANIMATION_H__
9efc9c30ed581d48f1b176f0ad8b81100663ce35
731d0d3e1d1cc11f31ca8f8c0aa7951814052c15
/InetSpeed/Generated Files/winrt/impl/Windows.Devices.Spi.Provider.2.h
d97dc04a84b4ffc88dd0557581d8125d11243cf2
[]
no_license
serzh82saratov/InetSpeedCppWinRT
07623c08b5c8135c7d55c17fed1164c8d9e56c8f
e5051f8c44469bbed0488c1d38731afe874f8c1f
refs/heads/master
2022-04-20T05:48:22.203411
2020-04-02T19:36:13
2020-04-02T19:36:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
774
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.200316.3 #ifndef WINRT_Windows_Devices_Spi_Provider_2_H #define WINRT_Windows_Devices_Spi_Provider_2_H #include "winrt/impl/Windows.Devices.Spi.Provider.1.h" WINRT_EXPORT namespace winrt::Windows::Devices::Spi::Provider { struct __declspec(empty_bases) ProviderSpiConnectionSettings : Windows::Devices::Spi::Provider::IProviderSpiConnectionSettings { ProviderSpiConnectionSettings(std::nullptr_t) noexcept {} ProviderSpiConnectionSettings(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Devices::Spi::Provider::IProviderSpiConnectionSettings(ptr, take_ownership_from_abi) {} explicit ProviderSpiConnectionSettings(int32_t chipSelectLine); }; } #endif
b0ddbf53647f317ec3da78e4ac9d419ea5c48e48
31f671e589e58f7a34ddf383d6701bc04f74bfd4
/ps/week8.2/task6/budrina/task6.cpp
0e226095b426a43f3c255545186ea0dad417b03e
[]
no_license
Boklazhenko/itstephomework
450fbdd43c56fadb9f53573573197f2c880e832a
368f951936620332ca68d14eb444084db9bb33a4
refs/heads/master
2020-09-08T16:54:19.988831
2020-08-08T13:22:35
2020-08-08T13:22:35
221,188,173
5
10
null
2020-08-15T07:00:35
2019-11-12T10:13:14
C++
UTF-8
C++
false
false
1,048
cpp
// Пользователь вводит строку. Определить количество букв, //количество цифр и количество остальных символов, присутствующих в строке. #include <iostream> #include <cstdlib> #include <cctype> #include <cstring> using namespace std; int main() { setlocale(LC_ALL, "rus"); int countLetter = 0, countDigit = 0, countSymb = 0; char str[500]; cout << "Введите строку:" << endl; cin.getline(str, 500); for (int i = 0; i < strlen(str); i++) { if (isalpha(str[i])) countLetter++; else if (isdigit(str[i])) countDigit++; else countSymb++; } cout << "Количество букв в строке: " << countLetter << endl; cout << "Количество цифр в строке: " << countDigit << endl; cout << "Количество других символов в строке: " << countSymb << endl; return 0; }
05a83921e9495cc222c5618142ec5a0a3a8974b8
9ef9a26801cb9c5e733f1b75ad3037034ed10a46
/code/cf/cf.165.e.cpp
a3537d968e3d1d414f38945fef869c3c825f81ae
[]
no_license
shi-yang/algorithms
5c8e07fdff4689a5790f329153c0fe18ba0ce65a
cb7a75fdfa1af6c83625ab7f6930710965337776
refs/heads/master
2021-07-17T02:14:40.713967
2017-10-25T12:43:32
2017-10-25T12:43:32
82,473,964
0
1
null
null
null
null
UTF-8
C++
false
false
813
cpp
/** * code generated by JHelper * More info: https://github.com/AlexeyDmitriev/JHelper * @author */ #include <bits/stdc++.h> using namespace std; const int N = (int) 1e6 + 5; int a[N], dp[N]; class TaskE { public: void solve(std::istream& in, std::ostream& out) { int n; in >> n; for (int i = 0; i < n; i++) { in >> a[i]; } for (int i = 0; i < n; i++) { if (dp[i]) continue; for (int j = i + 1; j < n; j++) { if ((a[i] & a[j]) == 0) { dp[i] = a[j]; dp[j] = a[i]; } } } for (int i = 0; i < n; i++) { if (dp[i]) out << dp[i] << ' '; else out << -1 << ' '; } } }; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); TaskE solver; std::istream& in(std::cin); std::ostream& out(std::cout); solver.solve(in, out); return 0; }
ea8548298ffe40418ba501e1bd93344a0b63b7ad
611b92bdb5e3a6e1f8a8af7019388b081888aa78
/liste.hpp
35f664c9c3a8700175fef0a73ee56855da991221
[ "MIT" ]
permissive
TheMagnat/Algorithme-de-Trie
6ec5c0ac54777ca1442634963ce1a45cf65a9d14
6d7501a4dceb7d6b5780efd10b33f3e3587fa886
refs/heads/master
2020-06-20T16:22:42.980566
2019-11-26T22:52:05
2019-11-26T22:52:05
197,176,613
0
0
null
null
null
null
UTF-8
C++
false
false
17,989
hpp
#define FICHIER {"gutenberg-books/00ws110.txt","gutenberg-books/0ddc809a.txt","gutenberg-books/0ddcc10.txt","gutenberg-books/0ddcl10.txt","gutenberg-books/11001108.txt","gutenberg-books/19rus10.txt","gutenberg-books/1argn10.txt","gutenberg-books/1cahe10.txt","gutenberg-books/1dfre10.txt","gutenberg-books/1donq10.txt","gutenberg-books/1drvb10.txt","gutenberg-books/1hofh10.txt","gutenberg-books/1jcfs10.txt","gutenberg-books/1linc11.txt","gutenberg-books/1lotj10.txt","gutenberg-books/1mart10.txt","gutenberg-books/1mlyd10.txt","gutenberg-books/1mrar10.txt","gutenberg-books/1musk12.txt","gutenberg-books/1onwr10.txt","gutenberg-books/1rbnh10.txt","gutenberg-books/1spne10.txt","gutenberg-books/1vkip11.txt","gutenberg-books/1ws4710.txt","gutenberg-books/1ws4910.txt","gutenberg-books/1ws5110.txt","gutenberg-books/2000010.txt","gutenberg-books/21001108.txt","gutenberg-books/2cahe10.txt","gutenberg-books/2city12.txt","gutenberg-books/2dfre11.txt","gutenberg-books/2donq10.txt","gutenberg-books/2drvb10.txt","gutenberg-books/2hofh10.txt","gutenberg-books/2linc11.txt","gutenberg-books/2lotj10.txt","gutenberg-books/2mart10.txt","gutenberg-books/2mlyd10.txt","gutenberg-books/2musk10.txt","gutenberg-books/2rbnh10.txt","gutenberg-books/2spne10.txt","gutenberg-books/2ws0110.txt","gutenberg-books/2ws0210.txt","gutenberg-books/2ws0310.txt","gutenberg-books/2ws0410.txt","gutenberg-books/2ws0610.txt","gutenberg-books/2ws0810.txt","gutenberg-books/2ws0910.txt","gutenberg-books/2ws1010.txt","gutenberg-books/2ws1110.txt","gutenberg-books/2ws1210.txt","gutenberg-books/2ws1410.txt","gutenberg-books/2ws1510.txt","gutenberg-books/2ws1610.txt","gutenberg-books/2ws1710.txt","gutenberg-books/2ws1810.txt","gutenberg-books/2ws1910.txt","gutenberg-books/2ws2010.txt","gutenberg-books/2ws2110.txt","gutenberg-books/2ws2210.txt","gutenberg-books/2ws2310.txt","gutenberg-books/2ws2410.txt","gutenberg-books/2ws2510.txt","gutenberg-books/2ws2610.txt","gutenberg-books/2ws2710.txt","gutenberg-books/2ws2810.txt","gutenberg-books/2ws2910.txt","gutenberg-books/2ws3010.txt","gutenberg-books/2ws3110.txt","gutenberg-books/2ws3210.txt","gutenberg-books/2ws3310.txt","gutenberg-books/2ws3410.txt","gutenberg-books/2ws3510.txt","gutenberg-books/2ws3610.txt","gutenberg-books/2ws3710.txt","gutenberg-books/2ws3810.txt","gutenberg-books/2ws3910.txt","gutenberg-books/2ws4010.txt","gutenberg-books/2ws4110.txt","gutenberg-books/2ws4210.txt","gutenberg-books/2ws4310.txt","gutenberg-books/2ws4410.txt","gutenberg-books/2ws4510.txt","gutenberg-books/2yb4m10.txt","gutenberg-books/31001108.txt","gutenberg-books/3dfre10.txt","gutenberg-books/3drvb10.txt","gutenberg-books/3linc11.txt","gutenberg-books/3lotj10.txt","gutenberg-books/3musk11.txt","gutenberg-books/3spne10.txt","gutenberg-books/41001108.txt","gutenberg-books/4dfre10.txt","gutenberg-books/4linc11.txt","gutenberg-books/4lotj10.txt","gutenberg-books/4spne10.txt","gutenberg-books/51001108.txt","gutenberg-books/5dfre11.txt","gutenberg-books/5linc11.txt","gutenberg-books/5spne10.txt","gutenberg-books/5wiab10.txt","gutenberg-books/61001108.txt","gutenberg-books/6dfre10.txt","gutenberg-books/6linc11.txt","gutenberg-books/71001108.txt","gutenberg-books/7king10.txt","gutenberg-books/7linc11.txt","gutenberg-books/7mynr10.txt","gutenberg-books/80day11.txt","gutenberg-books/81001108.txt","gutenberg-books/8aggr10.txt","gutenberg-books/8ataw11.txt","gutenberg-books/8augr10.txt","gutenberg-books/8cand10.txt","gutenberg-books/8celt10.txt","gutenberg-books/8clel10.txt","gutenberg-books/8clln10.txt","gutenberg-books/8crmp10.txt","gutenberg-books/8csus10.txt","gutenberg-books/8cury10.txt","gutenberg-books/8dubc10.txt","gutenberg-books/8eftl10.txt","gutenberg-books/8elit10.txt","gutenberg-books/8euhs10.txt","gutenberg-books/8fmtm10.txt","gutenberg-books/8frml10.txt","gutenberg-books/8frog10.txt","gutenberg-books/8ghst10.txt","gutenberg-books/8grtr10.txt","gutenberg-books/8gs3410.txt","gutenberg-books/8gtdr10.txt","gutenberg-books/8hcal10.txt","gutenberg-books/8hfld10.txt","gutenberg-books/8hist10.txt","gutenberg-books/8hmvg10.txt","gutenberg-books/8homr10.txt","gutenberg-books/8hsrs10.txt","gutenberg-books/8idol10.txt","gutenberg-books/8igjp10.txt","gutenberg-books/8jeev10.txt","gutenberg-books/8josh10.txt","gutenberg-books/8jrc710.txt","gutenberg-books/8jrny10.txt","gutenberg-books/8knck10.txt","gutenberg-books/8ldvc10.txt","gutenberg-books/8ldvn10.txt","gutenberg-books/8lndp10.txt","gutenberg-books/8lssm10u.txt","gutenberg-books/8luth10.txt","gutenberg-books/8mala10.txt","gutenberg-books/8moon10.txt","gutenberg-books/8moor10.txt","gutenberg-books/8ntle10.txt","gutenberg-books/8phil10.txt","gutenberg-books/8purg10.txt","gutenberg-books/8rbaa10.txt","gutenberg-books/8rdsl10.txt","gutenberg-books/8read10.txt","gutenberg-books/8recn10.txt","gutenberg-books/8rheb10.txt","gutenberg-books/8rinc10.txt","gutenberg-books/8rome10.txt","gutenberg-books/8romn10.txt","gutenberg-books/8rran10.txt","gutenberg-books/8rtib10.txt","gutenberg-books/8saht10.txt","gutenberg-books/8sced10.txt","gutenberg-books/8shkm10.txt","gutenberg-books/8swan11.txt","gutenberg-books/8swnn10.txt","gutenberg-books/8tjna10.txt","gutenberg-books/8tomj10.txt","gutenberg-books/8trsa10.txt","gutenberg-books/8tspv111.txt","gutenberg-books/8tspv211.txt","gutenberg-books/8unlt10.txt","gutenberg-books/8ushx10.txt","gutenberg-books/8va0910.txt","gutenberg-books/8vnmm10.txt","gutenberg-books/8wsh110.txt","gutenberg-books/8wwrt10.txt","gutenberg-books/8year10.txt","gutenberg-books/91001108.txt","gutenberg-books/a1001108.txt","gutenberg-books/aaard10.txt","gutenberg-books/adrwn10.txt","gutenberg-books/advsh12.txt","gutenberg-books/aesop11.txt","gutenberg-books/agino10.txt","gutenberg-books/agnsg10.txt","gutenberg-books/alice30.txt","gutenberg-books/andsj10.txt","gutenberg-books/andvl11.txt","gutenberg-books/anide10.txt","gutenberg-books/anidl10.txt","gutenberg-books/anne11.txt","gutenberg-books/anthm10z.txt","gutenberg-books/areop10.txt","gutenberg-books/arjpl10.txt","gutenberg-books/armyl10.txt","gutenberg-books/avon10.txt","gutenberg-books/b033w10.txt","gutenberg-books/b1001108.txt","gutenberg-books/badge10a.txt","gutenberg-books/baron10.txt","gutenberg-books/bbeau10.txt","gutenberg-books/beheb10.txt","gutenberg-books/benhr10.txt","gutenberg-books/bfaut10.txt","gutenberg-books/bgita10.txt","gutenberg-books/bhawk10.txt","gutenberg-books/bill11.txt","gutenberg-books/birds10.txt","gutenberg-books/blkhs10.txt","gutenberg-books/bllfn10.txt","gutenberg-books/bnrwy10.txt","gutenberg-books/bough11.txt","gutenberg-books/bribe10.txt","gutenberg-books/brtns10.txt","gutenberg-books/bskrv11a.txt","gutenberg-books/btbst10.txt","gutenberg-books/btowe10.txt","gutenberg-books/btsnl10.txt","gutenberg-books/bwulf11.txt","gutenberg-books/bygdv10.txt","gutenberg-books/c1001108.txt","gutenberg-books/callw10.txt","gutenberg-books/canpw10.txt","gutenberg-books/carol13.txt","gutenberg-books/cbtls12.txt","gutenberg-books/cdben10.txt","gutenberg-books/cdbfr10.txt","gutenberg-books/cfvrw10.txt","gutenberg-books/chacr10.txt","gutenberg-books/chldh10.txt","gutenberg-books/chshr10.txt","gutenberg-books/civil11.txt","gutenberg-books/clckm10.txt","gutenberg-books/cloud10.txt","gutenberg-books/clprm10u.txt","gutenberg-books/cndrl10.txt","gutenberg-books/cnfcs10.txt","gutenberg-books/cnstr10.txt","gutenberg-books/comet10.txt","gutenberg-books/comsn10.txt","gutenberg-books/conra10.txt","gutenberg-books/const11.txt","gutenberg-books/copyright.txt","gutenberg-books/cpogs10.txt","gutenberg-books/cprfd10.txt","gutenberg-books/cprrn10.txt","gutenberg-books/cptcr11a.txt","gutenberg-books/crito10.txt","gutenberg-books/crsto12.txt","gutenberg-books/crtcm10.txt","gutenberg-books/cs10w10.txt","gutenberg-books/cstwy11.txt","gutenberg-books/curio10.txt","gutenberg-books/cwgen11.txt","gutenberg-books/cyrus10.txt","gutenberg-books/d1001108.txt","gutenberg-books/dblnr11.txt","gutenberg-books/dcart10.txt","gutenberg-books/dchla10.txt","gutenberg-books/dkang10.txt","gutenberg-books/dmoro11.txt","gutenberg-books/dmsnd11.txt","gutenberg-books/dnhst10.txt","gutenberg-books/donate-howto.txt","gutenberg-books/doroz10.txt","gutenberg-books/dracu12.txt","gutenberg-books/drfst10.txt","gutenberg-books/drthn11.txt","gutenberg-books/dscep10.txt","gutenberg-books/dscmn10.txt","gutenberg-books/dtroy10.txt","gutenberg-books/duglas11.txt","gutenberg-books/dyssy10.txt","gutenberg-books/e1001108.txt","gutenberg-books/ebacn10.txt","gutenberg-books/eduha10.txt","gutenberg-books/ee710.txt","gutenberg-books/emihh10a.txt","gutenberg-books/emohh10.txt","gutenberg-books/eotsw10.txt","gutenberg-books/esper10.txt","gutenberg-books/esycr10.txt","gutenberg-books/esymn10.txt","gutenberg-books/f1001108.txt","gutenberg-books/fb10w11.txt","gutenberg-books/feder16.txt","gutenberg-books/fevch10.txt","gutenberg-books/fgths10.txt","gutenberg-books/fkchp10.txt","gutenberg-books/fldct10.txt","gutenberg-books/frank14.txt","gutenberg-books/fs40w10.txt","gutenberg-books/ftroy10.txt","gutenberg-books/fuman12.txt","gutenberg-books/g1001108.txt","gutenberg-books/g138v10.txt","gutenberg-books/galli10.txt","gutenberg-books/gardn11.txt","gutenberg-books/gbwlc10.txt","gutenberg-books/ggpnt10.txt","gutenberg-books/gltrv10.txt","gutenberg-books/gm00v11.txt","gutenberg-books/gmars12.txt","gutenberg-books/gn06v10.txt","gutenberg-books/gp37w10.txt","gutenberg-books/grexp10a.txt","gutenberg-books/grimm10.txt","gutenberg-books/h8ahc10.txt","gutenberg-books/handi10.txt","gutenberg-books/hardt10.txt","gutenberg-books/hbtht10.txt","gutenberg-books/hcath10.txt","gutenberg-books/hdark12a.txt","gutenberg-books/hfinn12.txt","gutenberg-books/hgrkr10.txt","gutenberg-books/hhmms11.txt","gutenberg-books/hioaj10.txt","gutenberg-books/hlnty10.txt","gutenberg-books/hmjnc10.txt","gutenberg-books/hmjnc11.txt","gutenberg-books/hoend10.txt","gutenberg-books/holyw10.txt","gutenberg-books/homer10.txt","gutenberg-books/hpaot10.txt","gutenberg-books/hphnc10.txt","gutenberg-books/hstwl10.txt","gutenberg-books/humbn10.txt","gutenberg-books/icfsh10.txt","gutenberg-books/idiot10.txt","gutenberg-books/idyll10a.txt","gutenberg-books/iliad10a.txt","gutenberg-books/iliad10b.txt","gutenberg-books/inagu10.txt","gutenberg-books/irish10.txt","gutenberg-books/ironm11.txt","gutenberg-books/ithoa10.txt","gutenberg-books/jandc10.txt","gutenberg-books/janey11.txt","gutenberg-books/jj13b10.txt","gutenberg-books/jm00v10.txt","gutenberg-books/jmlta10.txt","gutenberg-books/jnglb10.txt","gutenberg-books/jpnft10.txt","gutenberg-books/jude11.txt","gutenberg-books/judsm10.txt","gutenberg-books/jungl10.txt","gutenberg-books/kalec10.txt","gutenberg-books/kalev10.txt","gutenberg-books/kjv10.txt","gutenberg-books/kknta10.txt","gutenberg-books/koran12a.txt","gutenberg-books/kswom10.txt","gutenberg-books/lacob11.txt","gutenberg-books/lchms10.txt","gutenberg-books/lcjnl10.txt","gutenberg-books/legva12.txt","gutenberg-books/lesms10.txt","gutenberg-books/lfcpn10.txt","gutenberg-books/lflcn10.txt","gutenberg-books/lglass18.txt","gutenberg-books/lgsp10.txt","gutenberg-books/lgtrd10.txt","gutenberg-books/liber11.txt","gutenberg-books/liste.txt","gutenberg-books/litbl10.txt","gutenberg-books/llake10.txt","gutenberg-books/lndle10.txt","gutenberg-books/lstbw10.txt","gutenberg-books/lsttn10.txt","gutenberg-books/ltswd10.txt","gutenberg-books/lvbma11.txt","gutenberg-books/lwmen12.txt","gutenberg-books/magoz10.txt","gutenberg-books/manif12.txt","gutenberg-books/marmn10a.txt","gutenberg-books/mayrc10.txt","gutenberg-books/mbova10.txt","gutenberg-books/mcrst11.txt","gutenberg-books/mdmar10.txt","gutenberg-books/mdntp10.txt","gutenberg-books/mdprp10.txt","gutenberg-books/mdvll10.txt","gutenberg-books/memho11.txt","gutenberg-books/mhyde10.txt","gutenberg-books/milnd11.txt","gutenberg-books/mjbrb10.txt","gutenberg-books/mlcal10.txt","gutenberg-books/mlfls10.txt","gutenberg-books/mn20v11.txt","gutenberg-books/moby11.txt","gutenberg-books/mohic10.txt","gutenberg-books/mohwk10.txt","gutenberg-books/mollf10.txt","gutenberg-books/moon10.txt","gutenberg-books/mormon13.txt","gutenberg-books/mpolo10.txt","gutenberg-books/mrclt10.txt","gutenberg-books/msprs10.txt","gutenberg-books/mtdtl11.txt","gutenberg-books/mthts11.txt","gutenberg-books/mtlad10.txt","gutenberg-books/mtrcs10.txt","gutenberg-books/mwktm10a.txt","gutenberg-books/myant11.txt","gutenberg-books/nativ10.txt","gutenberg-books/nb17v11.txt","gutenberg-books/nblng10.txt","gutenberg-books/nc13v11.txt","gutenberg-books/ncklb10.txt","gutenberg-books/niebl10.txt","gutenberg-books/njals10.txt","gutenberg-books/nkrnn11.txt","gutenberg-books/nnchr10.txt","gutenberg-books/nnsns10.txt","gutenberg-books/notun11.txt","gutenberg-books/nplnb10.txt","gutenberg-books/nqpmr10.txt","gutenberg-books/nsnvl10.txt","gutenberg-books/oldno10.txt","gutenberg-books/oleng10.txt","gutenberg-books/olivr10.txt","gutenberg-books/onepi10.txt","gutenberg-books/orfur10.txt","gutenberg-books/oroos10.txt","gutenberg-books/otoos11.txt","gutenberg-books/ovtop10.txt","gutenberg-books/owlcr10.txt","gutenberg-books/ozland10.txt","gutenberg-books/pam1w10.txt","gutenberg-books/pandp12.txt","gutenberg-books/panic10.txt","gutenberg-books/pas8w10.txt","gutenberg-books/pcwar10.txt","gutenberg-books/pengl10.txt","gutenberg-books/pgbev10.txt","gutenberg-books/pge0112.txt","gutenberg-books/phado10.txt","gutenberg-books/phant12.txt","gutenberg-books/phrlc10.txt","gutenberg-books/pimil10.txt","gutenberg-books/plgrm11.txt","gutenberg-books/plivs10.txt","gutenberg-books/plpwr10.txt","gutenberg-books/plrabn12.txt","gutenberg-books/pmars13.txt","gutenberg-books/pmbrb10.txt","gutenberg-books/pmisr10.txt","gutenberg-books/poe1v10.txt","gutenberg-books/poe2v10.txt","gutenberg-books/poe3v11.txt","gutenberg-books/poe4v10.txt","gutenberg-books/poe5v10.txt","gutenberg-books/poeti10.txt","gutenberg-books/ponye10.txt","gutenberg-books/potww10.txt","gutenberg-books/ppikg10.txt","gutenberg-books/pplgy10.txt","gutenberg-books/pprty10.txt","gutenberg-books/prblm10.txt","gutenberg-books/prgob10.txt","gutenberg-books/prjtr10.txt","gutenberg-books/prppr11.txt","gutenberg-books/prtrt10.txt","gutenberg-books/pscmg10.txt","gutenberg-books/pygml10.txt","gutenberg-books/rbddh10.txt","gutenberg-books/rcddv10.txt","gutenberg-books/rd2oz10.txt","gutenberg-books/Readme.txt","gutenberg-books/remus10.txt","gutenberg-books/repub13.txt","gutenberg-books/resur10.txt","gutenberg-books/rgain10.txt","gutenberg-books/rholm10.txt","gutenberg-books/rime10.txt","gutenberg-books/rlchn10.txt","gutenberg-books/rnpz810.txt","gutenberg-books/rob3w10.txt","gutenberg-books/roget15a.txt","gutenberg-books/rosry11.txt","gutenberg-books/rplan10.txt","gutenberg-books/rshft10.txt","gutenberg-books/samur10.txt","gutenberg-books/sawyr11.txt","gutenberg-books/scarp10.txt","gutenberg-books/scarr10.txt","gutenberg-books/scrlt12.txt","gutenberg-books/secad10.txt","gutenberg-books/sense11.txt","gutenberg-books/sffrg10.txt","gutenberg-books/shkdd10.txt","gutenberg-books/shlyc10.txt","gutenberg-books/shndy10.txt","gutenberg-books/shrhe10.txt","gutenberg-books/siddh10.txt","gutenberg-books/sign410.txt","gutenberg-books/sinex10.txt","gutenberg-books/sioux10.txt","gutenberg-books/sjv0410.txt","gutenberg-books/skawe10.txt","gutenberg-books/sleep11.txt","gutenberg-books/slman10.txt","gutenberg-books/smtlc10.txt","gutenberg-books/sorol10.txt","gutenberg-books/soulb10.txt","gutenberg-books/sp85g10.txt","gutenberg-books/spatr10.txt","gutenberg-books/sphjd10.txt","gutenberg-books/sprvr11.txt","gutenberg-books/spzar10.txt","gutenberg-books/ssklt10.txt","gutenberg-books/sstcq10.txt","gutenberg-books/st15w10.txt","gutenberg-books/strtt10.txt","gutenberg-books/study10.txt","gutenberg-books/suall10.txt","gutenberg-books/sunzu10.txt","gutenberg-books/svncl10.txt","gutenberg-books/swoop10.txt","gutenberg-books/tagod10.txt","gutenberg-books/tarz210.txt","gutenberg-books/tarzn10.txt","gutenberg-books/tbisp10.txt","gutenberg-books/tbyty10.txt","gutenberg-books/tcosa10.txt","gutenberg-books/tctgr10.txt","gutenberg-books/tess10.txt","gutenberg-books/tfdbt10.txt","gutenberg-books/tfgtv10.txt","gutenberg-books/tftaa10.txt","gutenberg-books/tgovt10.txt","gutenberg-books/thdcm10.txt","gutenberg-books/thjwl10.txt","gutenberg-books/thngl10.txt","gutenberg-books/thx1010.txt","gutenberg-books/timem11.txt","gutenberg-books/tiobe10.txt","gutenberg-books/tmbn110.txt","gutenberg-books/tmbn210.txt","gutenberg-books/tmrcr10.txt","gutenberg-books/totlc10.txt","gutenberg-books/tprnc10.txt","gutenberg-books/trabi10.txt","gutenberg-books/treas11.txt","gutenberg-books/troic10.txt","gutenberg-books/trthn10.txt","gutenberg-books/truss10.txt","gutenberg-books/tshak10.txt","gutenberg-books/ttnic10.txt","gutenberg-books/tturn10.txt","gutenberg-books/twrdn10.txt","gutenberg-books/twtp110.txt","gutenberg-books/twtp210.txt","gutenberg-books/twtp410.txt","gutenberg-books/ulyss12.txt","gutenberg-books/uspis10.txt","gutenberg-books/utomc11.txt","gutenberg-books/utopi10.txt","gutenberg-books/utrkj10.txt","gutenberg-books/vampy10.txt","gutenberg-books/vanya10.txt","gutenberg-books/vazov10.txt","gutenberg-books/vbgle11a.txt","gutenberg-books/vccty10.txt","gutenberg-books/vfair12.txt","gutenberg-books/vfear11a.txt","gutenberg-books/vlpnr10.txt","gutenberg-books/vlsng10.txt","gutenberg-books/vorow10.txt","gutenberg-books/vstil10.txt","gutenberg-books/warje10.txt","gutenberg-books/warw12.txt","gutenberg-books/wflsh10.txt","gutenberg-books/when12.txt","gutenberg-books/whwar10.txt","gutenberg-books/wizoz10.txt","gutenberg-books/wltnt10.txt","gutenberg-books/wlwrk10.txt","gutenberg-books/wmars13.txt","gutenberg-books/wmnlv10.txt","gutenberg-books/wnbrg11.txt","gutenberg-books/wrnpc10.txt","gutenberg-books/wssnt10.txt","gutenberg-books/wsvns10.txt","gutenberg-books/wtfng10.txt","gutenberg-books/wuthr10.txt","gutenberg-books/wwasw10.txt","gutenberg-books/wwend10.txt","gutenberg-books/wwill10.txt","gutenberg-books/wwrld10.txt","gutenberg-books/ylwlp10.txt","gutenberg-books/zambs10.txt","gutenberg-books/zenda10.txt"}
dd43d150eb38e60a8eb14542fbdff30d29147ea4
c8724f08b9630a5051d1bce673127da5bd93d861
/microsoft/billiboards.cpp
88a77fc67bf7f1f58ecf4aeeb269b212c8f99d5b
[]
no_license
codelibra/comp-programming
89b2b2b656d317b52d2c2427ad11aa21d509c0e9
fce68180a8f1e68a2a6503bf450a524b41de02d5
refs/heads/master
2021-01-21T17:39:17.618853
2017-06-04T16:06:53
2017-06-04T16:06:53
91,977,761
1
1
null
null
null
null
UTF-8
C++
false
false
812
cpp
//shivi..coding is adictive!! #include<stdio.h> long long int arr[100001]; long long int sum[100001]; long long int including[100001],excluding[100001]; long long int maxim(long long int a,long long int b) {if(a>b) return a;return b;} int main() { int N,K; scanf("%d%d",&N,&K); for(int i=0;i<N;++i)scanf("%lld",&arr[i]); sum[0]=arr[0]; including[0]=sum[0]; excluding[0]=sum[0]; for(int i=1;i<K;++i) { sum[i]+=sum[i-1]+arr[i]; including[i]=sum[i]; excluding[i]=sum[i]; } long long int maxi=0,temp=0; for(int i=K;i<N;++i) { sum[i]+=sum[i-1]+arr[i]; for(int j=1;j<=K;++j) { temp=sum[i]-sum[i-j]; if(i-j-1>=0) temp+=including[i-j-1]; if(temp>maxi)maxi=temp; } including[i]=maxi; excluding[i]=including[i-1]; } printf("%lld",maxim(including[N-1],excluding[N-1])); }
57d175666473aaf5abd1ac695b1ab0490417d37d
1815ffb9da6899c295acdc797cb5d860f6620ffa
/Code/Engine.Main.cpp
18f547adfd08ce820cc2d7e4209f3da072ec2b47
[]
no_license
CanadianZombies/InfectEngineV2
4b1150219055145f670c34e6edcf918df7328b08
3dec38640e1c63e54650fd1405c5067ba42dc52f
refs/heads/master
2022-12-23T05:16:11.441846
2022-12-18T19:26:30
2022-12-18T19:26:30
23,100,447
1
0
null
null
null
null
UTF-8
C++
false
false
65,130
cpp
/*################################################################################### # Infected City powered by InfectEngine # # InfectEngine is powered by CombatMUD Core Infrastructure # # Original Diku Mud Copyright (c) 1990, 1991 by Sebastian Hammer, Michael Sifert # # Hans Henrik St{rfeldt, Tom Madsen, and Katja Nyboe # # Merc Copyright (c) 1992, 1993 by Michael Chastain, Michael Quan, and Mitchell Tse # # ROM 2.4 Copyright (c) 1993-1998 Russ Taylor, Brian Moore, Gabrielle Taylor # ##################################################################################### # InfectEngine and CombatMUD Engine are both ground up C++ MUDs by David Simmerson # # InfectEngine V2 is an attempt to Hybrid ROM24B6 and InfectEngineV1 and CombatMUD # # together. All source falls under the DIKU license, Merc and ROM licences however # # if individual functions are retrieved from this base that were not originally part# # of Diku, Merc or ROM they will fall under the MIT license as per the original # # Licenses for CombatMUD and InfectEngine. # ##################################################################################### # InfectEngine Copyright (c) 2010-2014 David Simmerson # # CombatMUD Copyright (c) 2007-2014 David Simmerson # # # # Permission is hereby granted, A, to any person obtaining a copy # # of this software and associated documentation files (the "Software"), to deal # # in the Software without restriction, including without limitation the rights # # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # # copies of the Software, and to permit persons to whom the Software is # # furnished to do so, subject to the following conditions: # # # # The above copyright notice and this permission notice shall be included in # # all copies or substantial portions of the Software. # # # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # # THE SOFTWARE. # ###################################################################################*/ #include "Engine.h" #if defined(unix) #include <signal.h> #endif void ban_site ( Creature *ch, const char *argument, bool fPerm ); /* * Socket and TCP/IP stuff. */ #if defined(unix) #include <fcntl.h> #include <netdb.h> #include <netinet/in.h> #include <sys/socket.h> const char go_ahead_str [] = { ( char ) IAC, ( char ) GA, '\0' }; #endif // -- Just incase int close args ( ( int fd ) ); int gettimeofday args ( ( struct timeval *tp, struct timezone *tzp ) ); int select args ( ( int width, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout ) ); int socket args ( ( int domain, int type, int protocol ) ); /* * Global variables. */ fd_set in_set; fd_set out_set; fd_set exc_set; Socket * socket_list; /* All open descriptors */ Socket * d_next; /* Next descriptor in loop */ FILE * fpReserve; /* Reserved file handle */ bool god; /* All new chars are gods! */ bool is_shutdown; /* Shutdown */ bool lockdown; /* Game is lockdowned */ bool newbielockdown; /* Game is newbielockdowned */ char str_boot_time[MAX_INPUT_LENGTH]; time_t current_time; /* time of this pulse */ bool MOBtrigger = TRUE; /* act() switch */ bool mDeveloperConsole = false; bool mGodMode = false; bool mPeacefulMode = false; bool mNoLogging = false; bool mVerboseLogging = false; bool mDoubleExperience = false; /* * OS-dependent local functions. */ #if defined(unix) void RunMudLoop args ( ( int control ) ); int init_socket args ( ( int port ) ); void init_descriptor args ( ( int control ) ); bool read_from_descriptor args ( ( Socket *d ) ); bool write_to_descriptor args ( ( int desc, const char *txt, int length ) ); #endif /* * Other local functions (OS-independent). */ bool check_parse_name args ( ( char *name ) ); bool check_reconnect args ( ( Socket *d, char *name, bool fConn ) ); bool check_playing args ( ( Socket *d, char *name ) ); int main args ( ( int argc, char **argv ) ); void nanny args ( ( Socket *d, char *argument ) ); bool process_output args ( ( Socket *d, bool fPrompt ) ); void read_from_buffer args ( ( Socket *d ) ); void stop_idling args ( ( Creature *ch ) ); void bust_a_prompt args ( ( Creature *ch ) ); int main ( int argc, char **argv ) { struct timeval now_time; int port; int control; /* * Init time. */ gettimeofday ( &now_time, NULL ); current_time = ( time_t ) now_time.tv_sec; strcpy ( str_boot_time, ctime ( &current_time ) ); // -- reserve a file descriptor to potential protect against problems later on. if ( ( fpReserve = fopen ( NULL_FILE, "r" ) ) == NULL ) { ReportErrno ( NULL_FILE ); exit ( 1 ); } port = 4000; build_directories(); // -- process our bootup options. if ( argc > 1 ) { int y = 0; while ( y < argc ) { bool optionReal = false; log_hd ( LOG_ALL, Format ( "Boot Option '%s' selected", argv[y] ) ); // -- shouldn't be an issue but just to be sure. if ( argv[y] == NULL ) { break; } // -- have we detected the port? std::string arggy = argv[y]; size_t p_found = arggy.find ( "port:" ); if ( p_found != std::string::npos ) { std::string np; size_t x = 0; for ( x = 0; x < arggy.length(); x++ ) { if ( !is_number ( Format ( "%c", arggy[x] ) ) ) { continue; } np.append ( Format ( "%c", arggy[x] ) ); } // -- check port boundaries. if ( !is_number ( np.c_str() ) || atoi ( C_STR ( np ) ) < 1024 || atoi ( C_STR ( np ) ) > 9999 ) { // -- error in bootup, we abort std::cout << "Port selected was not a valid port(Port must be between 1024 and 9999)" << std::endl; abort(); } else { // -- an acceptable port will be assigned appropriately. port = atoi ( C_STR ( np ) ); log_hd ( LOG_ALL, Format ( "\tCustom Port: %d has been selected!", port ) ); } optionReal = true; } // -- enable the developer console. if ( SameString ( arggy, "console" ) ) { mDeveloperConsole = true; optionReal = true; } // -- everyone has staff commands! if ( SameString ( arggy, "godmode" ) ) { mGodMode = true; optionReal = true; } // -- disable combat! if ( SameString ( arggy, "peaceful" ) ) { mPeacefulMode = true; optionReal = true; } // -- disable the ability to log if ( SameString ( arggy, "nolog" ) ) { mNoLogging = true; optionReal = true; } if ( SameString ( arggy, "verbose" ) ) { mVerboseLogging = true; optionReal = true; } if ( SameString ( arggy, "doublexp" ) ) { mDoubleExperience = true; optionReal = true; } if ( !optionReal ) { log_hd ( LOG_ALL, Format ( "Boot Option '%s' does not exist!", C_STR ( arggy ) ) ); } y++; } } // -- add our pid to the flatfile. { FILE *fp = fopen ( "InfectEngine.pid", "w" ); if ( fp ) { fprintf ( fp, "%d\n", getpid() ); fflush ( fp ); fclose ( fp ); log_hd ( LOG_ALL, Format ( "InfectEngine is attached to pid %d", getpid() ) ); } else { log_hd ( LOG_ERROR, Format ( "Could not write the pid number (%d) in InfectEngine.pid", getpid() ) ); raise(SIGSEGV); } } // -- attempt to generate our new event manager try { new Math(); new EventManager(); } catch ( ... ) { CATCH ( true ); // cause engine to abort. } log_hd ( LOG_ALL, Format ( "Attempting to gain control of socket port #%d...", port ) ); control = init_socket ( port ); // -- boot_db does all its own processing boot_db( ); EventManager::instance().BootupEvents(); log_hd ( LOG_ALL, Format ( "InfectEngine v%s is now accepting connections on port %d.", getVersion(), port ) ); RunMudLoop ( control ); // -- attempt to cleanup memory allocations here. try { if ( EventManager::instancePtr() ) { delete EventManager::instancePtr(); } if ( Math::instancePtr() ) { delete Math::instancePtr(); } } catch ( ... ) { CATCH ( true ); // -- cause the engine to abort. } log_hd ( LOG_ALL, Format ( "Control Value: %d is scheduled to be closed...", control ) ); close ( control ); log_hd ( LOG_ALL, "InfectEngine has terminated properly." ); exit ( EXIT_SUCCESS ); return 0; } int init_socket ( int port ) { static struct sockaddr_in sa_zero; struct sockaddr_in sa; int x = 1; int fd; if ( ( fd = socket ( AF_INET, SOCK_STREAM, 0 ) ) < 0 ) { ReportErrno ( "Init_socket: socket" ); exit ( 1 ); } if ( setsockopt ( fd, SOL_SOCKET, SO_REUSEADDR, ( char * ) &x, sizeof ( x ) ) < 0 ) { ReportErrno ( "Init_socket: SO_REUSEADDR" ); close ( fd ); exit ( 1 ); } #if defined(SO_DONTLINGER) && !defined(SYSV) { struct linger ld; ld.l_onoff = 1; ld.l_linger = 1000; if ( setsockopt ( fd, SOL_SOCKET, SO_DONTLINGER, ( char * ) &ld, sizeof ( ld ) ) < 0 ) { ReportErrno ( "Init_socket: SO_DONTLINGER" ); close ( fd ); exit ( 1 ); } } #endif sa = sa_zero; sa.sin_family = AF_INET; sa.sin_port = htons ( port ); if ( bind ( fd, ( struct sockaddr * ) &sa, sizeof ( sa ) ) < 0 ) { ReportErrno ( "Init socket: bind" ); close ( fd ); exit ( 1 ); } if ( listen ( fd, 3 ) < 0 ) { ReportErrno ( "Init socket: listen" ); close ( fd ); exit ( 1 ); } return fd; } void processInput ( ) { Socket *d, *d_next; for ( d = socket_list; d != NULL; d = d_next ) { d_next = d->next; d->fcommand = FALSE; if ( FD_ISSET ( d->descriptor, &in_set ) ) { if ( d->character != NULL ) { d->character->timer = 0; } if ( !read_from_descriptor ( d ) ) { FD_CLR ( d->descriptor, &out_set ); if ( d->character != NULL && d->connected == STATE_PLAYING ) { save_char_obj ( d->character ); } d->outtop = 0; close_socket ( d ); continue; } } if ( d->character != NULL && d->character->daze > 0 ) { --d->character->daze; } if ( d->character != NULL && d->character->wait > 0 ) { --d->character->wait; continue; } read_from_buffer ( d ); if ( d->incomm[0] != '\0' ) { d->fcommand = TRUE; if ( d->pProtocol != NULL ) { d->pProtocol->WriteOOB = 0; } stop_idling ( d->character ); if ( d->showstr_point ) { show_string ( d, d->incomm ); } else if ( d->character && d->character->queries.querycommand ) { log_hd ( LOG_COMMAND, Format ( "Q-Player: %s :: Argument: \"%s\"", d->character ? d->character->name : "!Error!", d->incomm ? d->incomm : "{No Argument}" ) ); // -- process the queried function ( *d->character->queries.queryfunc ) ( d->character, Format ( "queried_command:%p", d->character->queries.queryfunc ), d->incomm ? d->incomm : "", d->character->queries.querycommand ); } else if ( d->pEditString ) { StringEditorOptions ( d->character, d->incomm ); } else { // -- check to see if we are banned or not. static int cnterStatePlug = 0; switch ( d->connected ) { case STATE_PLAYING: cnterStatePlug++; if(cnterStatePlug == 5) { if ( check_ban ( d->host, BAN_ALL ) ) { write_to_descriptor ( d->descriptor, "Your site has been banned from this mud.\n\r", 0 ); close_socket(d); break; } if ( check_ban ( dnew->host, BAN_TEMP ) ) { write_to_descriptor ( d->descriptor, Format ( "Your login site is currently under a temporary site ban. It will be un-banned within an hour.\n\r" ), 0 ); close_socket(d); break; } cnterStatePlug = 0; } if ( !run_olc_editor ( d ) ) { substitute_alias ( d, d->incomm ); } break; default: nanny ( d, d->incomm ); break; } } d->incomm[0] = '\0'; } } } void acceptNewConnections ( int ctrl, struct timeval null_time ) { int maxdesc; Socket *d, *d_next; // -- just reset the data pointers incase of overflows/leaks elsewhere. d = d_next = NULL; // -- reset the file descriptors FD_ZERO ( &in_set ); FD_ZERO ( &out_set ); FD_ZERO ( &exc_set ); // -- set the input file descriptor FD_SET ( ctrl, &in_set ); maxdesc = ctrl; for ( d = socket_list; d; d = d_next ) { d_next = d->next; maxdesc = UMAX ( maxdesc, d->descriptor ); FD_SET ( d->descriptor, &in_set ); FD_SET ( d->descriptor, &out_set ); FD_SET ( d->descriptor, &exc_set ); } if ( select ( maxdesc + 1, &in_set, &out_set, &exc_set, &null_time ) < 0 ) { ReportErrno ( "select: poll (failed)" ); exit ( 1 ); } // -- do we have a new socket connection? if ( FD_ISSET ( ctrl, &in_set ) ) { init_descriptor ( ctrl ); } } void processBrokenSockets() { Socket *d, *d_next; for ( d = socket_list; d != NULL; d = d_next ) { d_next = d->next; if ( FD_ISSET ( d->descriptor, &exc_set ) ) { FD_CLR ( d->descriptor, &in_set ); FD_CLR ( d->descriptor, &out_set ); if ( d->character && d->connected == STATE_PLAYING ) { save_char_obj ( d->character ); } d->outtop = 0; close_socket ( d ); } } } void processSocketOutput() { Socket *d, *d_next; // -- handle output for ( d = socket_list; d != NULL; d = d_next ) { d_next = d->next; if ( ( d->fcommand || d->outtop > 0 ) && FD_ISSET ( d->descriptor, &out_set ) ) { if ( !process_output ( d, TRUE ) ) { if ( d->character != NULL && d->connected == STATE_PLAYING ) { save_char_obj ( d->character ); } d->outtop = 0; close_socket ( d ); } } } } int kbhit ( void ) { struct timeval tv; fd_set kbHit_fd; tv.tv_sec = 0; tv.tv_usec = 0; FD_ZERO ( &kbHit_fd ); FD_SET ( 0, &kbHit_fd ); if ( select ( 1, &kbHit_fd, NULL, NULL, &tv ) == -1 ) { return 0; } if ( FD_ISSET ( 0, &kbHit_fd ) ) { return 1; } return 0; } void processDevCommands ( const std::string &kbHitStr ) { static bool debugConsole = false; std::string command; std::string argument; argument = ChopString ( kbHitStr, command ); if ( SameString ( command, "help" ) || kbHitStr.empty() ) { std::cout << "+----------------DEVELOPER CONSOLE----------------+" << std::endl; std::cout << "help - Displays this message " << std::endl; std::cout << "shutdown - Deploys the shutdown sequence " << std::endl; std::cout << "sockets - Lists all connected sockets " << std::endl; std::cout << "broadcast <msg> - Broadcasts a message to all " << std::endl; std::cout << "version - Displays the CME Version " << std::endl; std::cout << "debug - Adds debugging logs for dev console" << std::endl; std::cout << "+-------------------------------------------------+" << std::endl; std::cout << "Remember, please press 'RETURN' twice after each command!" << std::endl; std::cout << "More developer commands are on-route in the near future!" << std::endl; std::cout << "+-------------------------------------------------+" << std::endl; return; } //#ifdef _DEBUG_ if(debugConsole) { std::cout << "---------------------------------------------------------------" << std::endl; std::cout << "Developer issued command: " << command << std::endl; std::cout << "Developer issued argument:" << argument << std::endl; std::cout << "---------------------------------------------------------------" << std::endl; } //#endif if ( SameString ( kbHitStr, "debug" )) { debugConsole != debugConsole; std::cout << "Developer console debugger toggled." << std::endl; return; } if ( SameString ( kbHitStr, "sockets" ) ) { Socket *d, *d_next; int cnt = 0; for ( d = socket_list; d != NULL; d = d_next ) { d_next = d->next; std::cout << Format ( "[%d] %s", d->descriptor, d->character ? d->character->name : d->host ) << std::endl; cnt++; } std::cout << "There were " << cnt << " socket(s) connected." << std::endl; return; } if ( SameString ( command, "broadcast" ) ) { if ( argument.empty() ) { std::cout << "Broadcast what?" << std::endl; return; } Socket *d, *d_next; for ( d = socket_list; d != NULL; d = d_next ) { d_next = d->next; write_to_buffer ( d, Format ( "\r\n\r\n\aO{\aYSystem Message\aO}\aw: \aC%s\an\r\n\r\n", C_STR ( argument ) ), 0 ); } std::cout << "System message has been broadcasted." << std::endl; return; } if ( SameString ( kbHitStr, "shutdown" ) ) { is_shutdown = true; std::cout << "The mud has entered into shutdown mode." << std::endl; return; } // rock out our version if ( SameString ( command, "version" ) ) { std::cout << "InfectedCityV2 Build Version: " << getVersion() << "\n\r\n\r" << std::endl; return; } std::cout << "Unknown command: " << command << std::endl; return; } // -- end of end of processDevCommands void processDevConsole() { static std::string kbHitStr; // -- mDeveloperConsole has to be activated via bootup options in order to work. // -- this ensures safety of the system and ensures that developer console is only used // -- when intentionally used. Not by accident to prevent 'problems' and security risks. if ( !mDeveloperConsole ) { return; } if ( kbhit() ) { char c = getchar(); switch ( c ) { default: kbHitStr.append ( Format ( "%c", c ) ); break; case '\n': case '\r': processDevCommands ( kbHitStr ); kbHitStr.clear(); break; } } return; } void RunMudLoop ( int control ) { static struct timeval null_time; struct timeval last_time; signal ( SIGPIPE, SIG_IGN ); gettimeofday ( &last_time, NULL ); current_time = ( time_t ) last_time.tv_sec; static bool first_loop = true; static bool first_event_loop = true; static bool first_update_handler = true; // -- run until we are shutdown while ( !is_shutdown ) { processDevConsole(); // -- attempt to read for developer input acceptNewConnections ( control, null_time ); // -- attempt to detect new connections. processBrokenSockets(); // -- attempt to purge broken sockets processInput (); // -- attempt to cull the socket input // -- attempt to control our errors and our updaters try { update_handler( ); if ( first_update_handler ) { first_update_handler = false; log_hd ( LOG_DEBUG, "Successfully processed the first batch of oldstyle event updaters." ); } } catch ( ... ) { CATCH ( false ); } // -- push our EventManager try { EventManager::instance().updateEvents(); if ( first_event_loop ) { first_event_loop = false; log_hd ( LOG_DEBUG, "Successfully processed the first EventManager events." ); } } catch ( ... ) { CATCH ( false ); } processSocketOutput(); // -- sync the clocking mechanism { struct timeval now_time; long secDelta; long usecDelta; gettimeofday ( &now_time, NULL ); usecDelta = ( ( int ) last_time.tv_usec ) - ( ( int ) now_time.tv_usec ) + 1000000 / PULSE_PER_SECOND; secDelta = ( ( int ) last_time.tv_sec ) - ( ( int ) now_time.tv_sec ); while ( usecDelta < 0 ) { usecDelta += 1000000; secDelta -= 1; } while ( usecDelta >= 1000000 ) { usecDelta -= 1000000; secDelta += 1; } if ( secDelta > 0 || ( secDelta == 0 && usecDelta > 0 ) ) { struct timeval stall_time; stall_time.tv_usec = usecDelta; stall_time.tv_sec = secDelta; if ( select ( 0, NULL, NULL, NULL, &stall_time ) < 0 ) { ReportErrno ( "RunMudLoop: select: stall" ); exit ( 1 ); } } } gettimeofday ( &last_time, NULL ); current_time = ( time_t ) last_time.tv_sec; if ( first_loop ) { first_loop = false; log_hd ( LOG_DEBUG, "Successfully looped through the first iteration of the MUD." ); } } return; } #if defined(unix) void init_descriptor ( int control ) { static bool first_connection = true; char buf[MAX_STRING_LENGTH]; Socket *dnew; struct sockaddr_in sock; struct hostent *from; int desc; socklen_t size; size = sizeof ( sock ); getsockname ( control, ( struct sockaddr * ) &sock, &size ); if ( ( desc = accept ( control, ( struct sockaddr * ) &sock, &size ) ) < 0 ) { ReportErrno ( "init_descriptor: accept" ); return; } #if !defined(FNDELAY) #define FNDELAY O_NDELAY #endif if ( fcntl ( desc, F_SETFL, FNDELAY ) == -1 ) { ReportErrno ( "init_descriptor: fcntl: FNDELAY" ); return; } /* * Cons a new descriptor. */ dnew = new_descriptor(); dnew->descriptor = desc; dnew->connected = STATE_GET_NAME; dnew->showstr_head = NULL; dnew->showstr_point = NULL; dnew->outsize = 2000; dnew->pEdit = NULL; /* OLC */ dnew->pEditString = NULL; /* OLC */ dnew->pEditBacku = NULL; dnew->editor = 0; /* OLC */ ALLOC_DATA ( dnew->outbuf, char, dnew->outsize ); dnew->pProtocol = ProtocolCreate(); size = sizeof ( sock ); if ( getpeername ( desc, ( struct sockaddr * ) &sock, &size ) < 0 ) { ReportErrno ( "init_descriptor: getpeername" ); dnew->host = assign_string ( "(unknown)" ); } else { /* * Would be nice to use inet_ntoa here but it takes a struct arg, * which ain't very compatible between gcc and system libraries. */ int addr; addr = ntohl ( sock.sin_addr.s_addr ); sprintf ( buf, "%d.%d.%d.%d", ( addr >> 24 ) & 0xFF, ( addr >> 16 ) & 0xFF, ( addr >> 8 ) & 0xFF, ( addr ) & 0xFF ); log_hd ( LOG_SECURITY, Format ( "Sock.sinaddr: %s", buf ) ); from = gethostbyaddr ( ( char * ) &sock.sin_addr, sizeof ( sock.sin_addr ), AF_INET ); dnew->host = assign_string ( from ? from->h_name : buf ); } // -- logging of our first connection to the debug log if ( first_connection ) { first_connection = false; log_hd ( LOG_DEBUG, Format ( "First connection since system bootup by %s @ %s", dnew->host, grab_time_log ( current_time ) ) ); } /* * Swiftest: I added the following to ban sites. I don't * endorse banning of sites, but Copper has few descriptors now * and some people from certain sites keep abusing access by * using automated 'autodialers' and leaving connections hanging. * * Furey: added suffix check by request of Nickel of HiddenWorlds. */ if ( check_ban ( dnew->host, BAN_ALL ) ) { write_to_descriptor ( desc, "Your site has been banned from this mud.\n\r", 0 ); close ( desc ); recycle_descriptor ( dnew ); return; } if ( check_ban ( dnew->host, BAN_TEMP ) ) { write_to_descriptor ( desc, Format ( "Your login site is currently under a temporary site ban. It will be un-banned within an hour.\n\r" ), 0 ); close ( desc ); recycle_descriptor ( dnew ); return; } // -- add our sockets to the list dnew->next = socket_list; socket_list = dnew; ProtocolNegotiate ( dnew ); // -- send our greeting message { extern char * help_greeting; if ( help_greeting[0] == '.' ) { write_to_buffer ( dnew, help_greeting + 1, 0 ); } else { write_to_buffer ( dnew, help_greeting , 0 ); } } return; } #endif void close_socket ( Socket *dclose ) { Creature *ch; if ( dclose->outtop > 0 ) { process_output ( dclose, FALSE ); } if ( dclose->snoop_by != NULL ) { write_to_buffer ( dclose->snoop_by, "Your victim has left the game.\n\r", 0 ); } { Socket *d; for ( d = socket_list; d != NULL; d = d->next ) { if ( d->snoop_by == dclose ) { d->snoop_by = NULL; } } } if ( ( ch = dclose->character ) != NULL ) { log_hd ( LOG_SECURITY, Format ( "Closing link to %s.", ch->name ) ); /* cut down on wiznet spam when rebooting */ if ( dclose->connected == STATE_PLAYING && !is_shutdown ) { act ( "$n has lost $s link.", ch, NULL, NULL, TO_ROOM ); wiznet ( "Net death has claimed $N.", ch, NULL, WIZ_LINKS, 0, 0 ); ch->desc = NULL; } else { log_hd(LOG_BASIC, Format("Losing player: %s", dclose->character->name)); recycle_char ( dclose->original ? dclose->original : dclose->character ); } } if ( d_next == dclose ) { d_next = d_next->next; } if ( dclose == socket_list ) { socket_list = socket_list->next; } else { Socket *d; for ( d = socket_list; d && d->next != dclose; d = d->next ) ; if ( d != NULL ) { d->next = dclose->next; } else { log_hd ( LOG_ERROR, "Close_socket: dclose not found." ); } } ProtocolDestroy ( dclose->pProtocol ); close ( dclose->descriptor ); recycle_descriptor ( dclose ); return; } bool read_from_descriptor ( Socket *d ) { int iStart; static char read_buf[MAX_PROTOCOL_BUFFER]; read_buf[0] = '\0'; /* Hold horses if pending command already. */ if ( d->incomm[0] != '\0' ) { return TRUE; } /* Check for overflow. */ iStart = 0; if ( strlen ( d->inbuf ) >= sizeof ( d->inbuf ) - 10 ) { log_hd ( LOG_SECURITY, Format ( "%s input overflow! (possible spamming)", d->host ) ); write_to_descriptor ( d->descriptor, "\n\r*** Please refrain from Spamming ***\n\r", 0 ); return FALSE; } while ( true ) { int nRead; nRead = read ( d->descriptor, read_buf + iStart, sizeof ( read_buf ) - 10 - iStart ); if ( nRead > 0 ) { iStart += nRead; if ( read_buf[iStart - 1] == '\n' || read_buf[iStart - 1] == '\r' ) { break; } } else if ( nRead == 0 ) { log_hd ( LOG_ERROR, Format ( "EOF encountered on read from %p:%d @ %s.", d, d->descriptor, d->host ) ); return FALSE; } else if ( errno == EWOULDBLOCK ) { break; } else { ReportErrno ( "Read_from_descriptor" ); return FALSE; } } read_buf[iStart] = '\0'; ProtocolInput ( d, read_buf, iStart, d->inbuf ); return TRUE; } /* * Transfer one line from input buffer to input line. */ void read_from_buffer ( Socket *d ) { int i, j, k; /* * Hold horses if pending command already. */ if ( d->incomm[0] != '\0' ) { return; } // -- look for a new line. for ( i = 0; d->inbuf[i] != '\n' && d->inbuf[i] != '\r'; i++ ) { if ( d->inbuf[i] == '\0' ) { return; } } /* * Canonical input processing. */ for ( i = 0, k = 0; d->inbuf[i] != '\n' && d->inbuf[i] != '\r'; i++ ) { if ( k >= MAX_INPUT_LENGTH - 2 ) { write_to_descriptor ( d->descriptor, "Line too long.\n\r", 0 ); /* skip the rest of the line */ for ( ; d->inbuf[i] != '\0'; i++ ) { if ( d->inbuf[i] == '\n' || d->inbuf[i] == '\r' ) { break; } } d->inbuf[i] = '\n'; d->inbuf[i + 1] = '\0'; break; } if ( d->inbuf[i] == '\b' && k > 0 ) { --k; } else if ( isascii ( d->inbuf[i] ) && isprint ( d->inbuf[i] ) ) { d->incomm[k++] = d->inbuf[i]; } } /* * Finish off the line. */ if ( k == 0 ) { d->incomm[k++] = ' '; } d->incomm[k] = '\0'; /* * Deal with bozos with #repeat 1000 ... */ if ( k > 1 || d->incomm[0] == '!' ) { if ( d->incomm[0] != '!' && strcmp ( d->incomm, d->inlast ) ) { d->repeat = 0; } else { if ( ++d->repeat >= 25 && d->character && d->connected == STATE_PLAYING ) { log_hd ( LOG_SECURITY, Format ( "%s input spamming!", d->host ) ); wiznet ( "$N is input spamming!!", d->character, NULL, WIZ_SPAM, 0, get_trust ( d->character ) ); if ( d->incomm[0] == '!' ) wiznet ( d->inlast, d->character, NULL, WIZ_SPAM, 0, get_trust ( d->character ) ); else wiznet ( d->incomm, d->character, NULL, WIZ_SPAM, 0, get_trust ( d->character ) ); d->repeat = 0; write_to_descriptor ( d->descriptor, "\n\r*** You are temporarily banned for Spamming! ***\n\r", 0 ); // -- temporarily ban the host ban_site ( NULL, Format ( "%s temp", d->host ), false ); cmd_function ( NULL, cmd_disconnect, Format ( "%d", d->descriptor ) ); } } } /* * Do '!' substitution. */ if ( d->incomm[0] == '!' ) { strcpy ( d->incomm, d->inlast ); } else { strcpy ( d->inlast, d->incomm ); } /* * Shift the input buffer. */ while ( d->inbuf[i] == '\n' || d->inbuf[i] == '\r' ) { i++; } for ( j = 0; ( d->inbuf[j] = d->inbuf[i + j] ) != '\0'; j++ ) ; return; } /* * Low level output function. */ bool process_output ( Socket *d, bool fPrompt ) { extern bool is_shutdown; // -- display our prompt (if necessary) if ( d->character && ( ( d->character->queries.querycommand ) || ( d->character->queries.queryintcommand ) ) ) { // -- display our queryprompt write_to_buffer ( d, d->character->queries.queryprompt, 0 ); // -- memset it so we don't have any problems (should stop the spamming of screenreaders) memset ( d->character->queries.queryprompt, 0, sizeof ( d->character->queries.queryprompt ) ); } else if ( d->pProtocol->WriteOOB ) ; /* The last sent data was OOB, so do NOT draw the prompt */ else if ( !is_shutdown && d->showstr_point ) { write_to_buffer ( d, "\r\n\r\n\a[F500] { \a[F535]Shoot that Return Key \a[F500]} \an\r\n\r\n", 0 ); } else if ( fPrompt && d->pEditBackup && d->connected == STATE_PLAYING ) { write_to_buffer ( d, "} ", 2 ); } else if ( fPrompt && d->connected == STATE_PLAYING ) { Creature *ch; Creature *victim; ch = d->character; /* battle prompt */ if ( ( victim = FIGHTING ( ch ) ) != NULL && can_see ( ch, victim ) ) { int percent; char wound[100]; char buf[MAX_STRING_LENGTH]; if ( victim->max_hit > 0 ) { percent = victim->hit * 100 / victim->max_hit; } else { percent = -1; } if ( percent >= 100 ) { sprintf ( wound, "is in excellent condition." ); } else if ( percent >= 90 ) { sprintf ( wound, "has a few scratches." ); } else if ( percent >= 75 ) { sprintf ( wound, "has some small wounds and bruises." ); } else if ( percent >= 50 ) { sprintf ( wound, "has quite a few wounds." ); } else if ( percent >= 30 ) { sprintf ( wound, "has some big nasty wounds and scratches." ); } else if ( percent >= 15 ) { sprintf ( wound, "looks pretty hurt." ); } else if ( percent >= 0 ) { sprintf ( wound, "is in awful condition." ); } else { sprintf ( wound, "is bleeding to death." ); } snprintf ( buf, sizeof ( buf ), "%s %s \n\r", IS_NPC ( victim ) ? victim->short_descr : victim->name, wound ); buf[0] = UPPER ( buf[0] ); write_to_buffer ( d, buf, 0 ); } ch = d->original ? d->original : d->character; if ( !IS_SET ( ch->comm, COMM_COMPACT ) ) { write_to_buffer ( d, "\n\r", 2 ); } if ( IS_SET ( ch->comm, COMM_PROMPT ) ) { bust_a_prompt ( d->character ); } if ( IS_SET ( ch->comm, COMM_TELNET_GA ) ) { write_to_buffer ( d, go_ahead_str, 0 ); } } /* * Short-circuit if nothing to write. */ if ( d->outtop == 0 ) { return TRUE; } // -- snooping control if ( d->snoop_by != NULL ) { if ( d->character != NULL ) { write_to_buffer ( d->snoop_by, Format ( "\ac{ \aR%s \ac}\r\n", d->character->name ), 0 ); } write_to_buffer ( d->snoop_by, "\ay-----------------------------------------------------\an\r\n", 0 ); write_to_buffer ( d->snoop_by, d->outbuf, d->outtop ); write_to_buffer ( d->snoop_by, "\ay-----------------------------------------------------\an\r\n", 0 ); } // -- write our output if ( !write_to_descriptor ( d->descriptor, d->outbuf, d->outtop ) ) { d->outtop = 0; return FALSE; } else { d->outtop = 0; return TRUE; } } /* * Bust a prompt (player settable prompt) * coded by Morgenes for Aldara Mud */ void bust_a_prompt ( Creature *ch ) { char buf[MAX_STRING_LENGTH]; char buf2[MAX_STRING_LENGTH]; const char *str; const char *i; char *point; char doors[MAX_INPUT_LENGTH]; Exit *pexit; bool found; const char *dir_name[] = {"N", "E", "S", "W", "U", "D"}; int door; point = buf; str = ch->prompt; // -- entertaining times. writeBuffer(Format("%c%c%c%c%c%c%c %c%c%c%c%c%c%c %c%c%c%c%c%c%c\r\n",27,91,49,109,27,91,109,27,91,49,109,27,91,109,27,91,49,109,27,91,109),ch ); if ( str == NULL || str[0] == '\0' ) { sprintf ( buf, "<%dhp %dm %dmv> %s", ch->hit, ch->mana, ch->move, ch->prefix ); writeBuffer ( buf, ch ); return; } if ( IS_SET ( ch->comm, COMM_AFK ) ) { writeBuffer ( "<AFK> ", ch ); return; } if ( ch->desc && ch->desc->editor ) { writeBuffer ( Format ( "\ac{\ay%s \aR: \ay%s\ac}\an ", olc_ed_name ( ch ), olc_ed_vnum ( ch ) ), ch ); return; } while ( *str != '\0' ) { if ( *str != '%' ) { *point++ = *str++; continue; } ++str; switch ( *str ) { default : i = " "; break; case 'e': found = FALSE; doors[0] = '\0'; for ( door = 0; door < 6; door++ ) { if ( ( pexit = IN_ROOM ( ch )->exit[door] ) != NULL && pexit ->u1.to_room != NULL && ( can_see_room ( ch, pexit->u1.to_room ) || ( IS_AFFECTED ( ch, AFF_INFRARED ) && !IS_AFFECTED ( ch, AFF_BLIND ) ) ) && !IS_SET ( pexit->exit_info, EX_CLOSED ) ) { found = TRUE; strcat ( doors, dir_name[door] ); } } if ( !found ) { strcat ( buf, "none" ); } sprintf ( buf2, "%s", doors ); i = buf2; break; case 'c' : sprintf ( buf2, "%s", "\n\r" ); i = buf2; break; case 'h' : sprintf ( buf2, "%d", ch->hit ); i = buf2; break; case 'H' : sprintf ( buf2, "%d", ch->max_hit ); i = buf2; break; case 'm' : sprintf ( buf2, "%d", ch->mana ); i = buf2; break; case 'M' : sprintf ( buf2, "%d", ch->max_mana ); i = buf2; break; case 'v' : sprintf ( buf2, "%d", ch->move ); i = buf2; break; case 'V' : sprintf ( buf2, "%d", ch->max_move ); i = buf2; break; case 'x' : sprintf ( buf2, "%d", ch->exp ); i = buf2; break; case 'X' : sprintf ( buf2, "%d", IS_NPC ( ch ) ? 0 : ( ch->level + 1 ) * exp_per_level ( ch, ch->pcdata->points ) - ch->exp ); i = buf2; break; case 'g' : sprintf ( buf2, "%ld", ch->gold ); i = buf2; break; case 's' : sprintf ( buf2, "%ld", ch->silver ); i = buf2; break; case 'a' : if ( ch->level > 9 ) { sprintf ( buf2, "%d", ch->alignment ); } else sprintf ( buf2, "%s", IS_GOOD ( ch ) ? "good" : IS_EVIL ( ch ) ? "evil" : "neutral" ); i = buf2; break; case 'r' : if ( IN_ROOM ( ch ) != NULL ) sprintf ( buf2, "%s", ( ( !IS_NPC ( ch ) && IS_SET ( ch->act, PLR_HOLYLIGHT ) ) || ( !IS_AFFECTED ( ch, AFF_BLIND ) && !room_is_dark ( IN_ROOM ( ch ) ) ) ) ? IN_ROOM ( ch )->name : "darkness" ); else { sprintf ( buf2, " " ); } i = buf2; break; case 'R' : if ( IsStaff ( ch ) && IN_ROOM ( ch ) != NULL ) { sprintf ( buf2, "%d", IN_ROOM ( ch )->vnum ); } else { sprintf ( buf2, " " ); } i = buf2; break; case 'z' : if ( IsStaff ( ch ) && IN_ROOM ( ch ) != NULL ) { sprintf ( buf2, "%s", IN_ROOM ( ch )->area->name ); } else { sprintf ( buf2, " " ); } i = buf2; break; case '%' : sprintf ( buf2, "%%" ); i = buf2; break; case 'o' : sprintf ( buf2, "%s", olc_ed_name ( ch ) ); i = buf2; break; case 'O' : sprintf ( buf2, "%s", olc_ed_vnum ( ch ) ); i = buf2; break; } ++str; while ( ( *point = *i ) != '\0' ) { ++point, ++i; } } write_to_buffer ( ch->desc, buf, point - buf ); if ( !IS_NULLSTR ( ch->prefix ) ) { write_to_buffer ( ch->desc, ch->prefix, 0 ); } return; } /* * Append onto an output buffer. */ void write_to_buffer ( Socket *d, const char *txt, int length ) { txt = ProtocolOutput ( d, txt, &length ); if ( d->pProtocol->WriteOOB > 0 ) { --d->pProtocol->WriteOOB; } /* * Find length in case caller didn't. */ if ( length <= 0 ) { length = strlen ( txt ); } /* * Initial \n\r if needed. */ if ( d->outtop == 0 && !d->fcommand && !d->pProtocol->WriteOOB ) { d->outbuf[0] = '\n'; d->outbuf[1] = '\r'; d->outtop = 2; } /* * Expand the buffer as needed. */ while ( d->outtop + length >= d->outsize ) { char *outbuf; if ( d->outsize >= 32000 ) { // -- attempt to get the buffer overflow logged properly. log_hd ( LOG_ERROR, Format ( "Buffer overflow: %p:%d @ %s\n\r", d, d->descriptor, d->host ) ); close_socket ( d ); return; } ALLOC_DATA ( outbuf, char, 2 * d->outsize ); strncpy ( outbuf, d->outbuf, d->outtop ); PURGE_DATA ( d->outbuf ); d->outbuf = outbuf; d->outsize *= 2; } /* * Copy. */ strncpy ( d->outbuf + d->outtop, txt, length ); d->outtop += length; return; } /* * Lowest level output function. * Write a block of text to the file descriptor. * If this gives errors on very long blocks (like 'ofind all'), * try lowering the max block size. */ bool write_to_descriptor ( int desc, const char *txt, int length ) { int iStart; int nWrite; int nBlock; if ( length <= 0 ) { length = strlen ( txt ); } for ( iStart = 0; iStart < length; iStart += nWrite ) { nBlock = UMIN ( length - iStart, 4096 ); if ( ( nWrite = write ( desc, txt + iStart, nBlock ) ) < 0 ) { ReportErrno ( "Write_to_descriptor" ); return FALSE; } } return TRUE; } // -- micromanage sockets void nanny ( Socket *d, char *argument ) { Socket *d_old, *d_next; char buf[MAX_STRING_LENGTH]; char arg[MAX_INPUT_LENGTH]; Creature *ch; char *pwdnew; char *p; int iClass, race, i, weapon; bool fOld; // -- always check so we can boot people who are banned if ( check_ban ( d->host, BAN_ALL ) ) { write_to_descriptor ( d->descriptor, "Your site has been banned from this mud.\n\r", 0 ); close_socket(d); return; } if ( check_ban ( dnew->host, BAN_TEMP ) ) { write_to_descriptor ( d->descriptor, Format ( "Your login site is currently under a temporary site ban. It will be un-banned within an hour.\n\r" ), 0 ); close_socket(d); return; } while ( isspace ( *argument ) ) { argument++; } ch = d->character; switch ( d->connected ) { default: log_hd ( LOG_ERROR, Format ( "Nanny: bad d(%d)(%p)->connected %d @ %s.", d->descriptor, d, d->connected, d->host ) ); close_socket ( d ); return; case STATE_GET_NAME: if ( IS_NULLSTR ( argument ) ) { close_socket ( d ); return; } argument[0] = UPPER ( argument[0] ); if ( !check_parse_name ( argument ) ) { write_to_buffer ( d, "Illegal name, try another.\n\rName: ", 0 ); return; } fOld = load_char_obj ( d, argument ); ch = d->character; if ( IS_SET ( ch->act, PLR_DENY ) ) { log_hd ( LOG_SECURITY, Format ( "Denying access to %s@%s.", argument, d->host ) ); write_to_buffer ( d, "You are denied access.\n\r", 0 ); close_socket ( d ); return; } if ( check_ban ( d->host, BAN_PERMIT ) && !IS_SET ( ch->act, PLR_PERMIT ) ) { write_to_buffer ( d, "Your site has been banned from this mud.\n\r", 0 ); close_socket ( d ); return; } if ( check_reconnect ( d, argument, FALSE ) ) { fOld = TRUE; } else { if ( lockdown && !IsStaff ( ch ) ) { write_to_buffer ( d, "The game is currently in lockdown.\n\r", 0 ); close_socket ( d ); return; } } if ( fOld ) { /* Old player */ write_to_buffer ( d, "Password: ", 0 ); ProtocolNoEcho ( d, true ); d->connected = STATE_GET_OLD_PASSWORD; return; } else { /* New player */ if ( newbielockdown ) { write_to_buffer ( d, "The game is currently blocking new players.\n\r", 0 ); close_socket ( d ); return; } if ( check_ban ( d->host, BAN_NEWBIES ) ) { write_to_buffer ( d, "New players are not allowed from your site.\n\r", 0 ); close_socket ( d ); return; } sprintf ( buf, "Did I get that right, %s (Y/N)? ", argument ); write_to_buffer ( d, buf, 0 ); d->connected = STATE_CONFIRM_NEW_NAME; return; } break; case STATE_GET_OLD_PASSWORD: write_to_buffer ( d, "\n\r", 2 ); if ( strcmp ( crypt ( argument, ch->pcdata->pwd ), ch->pcdata->pwd ) ) { write_to_buffer ( d, "Wrong password.\n\r", 0 ); close_socket ( d ); return; } ProtocolNoEcho ( d, false ); if ( check_playing ( d, ch->name ) ) { return; } if ( check_reconnect ( d, ch->name, TRUE ) ) { return; } log_hd ( LOG_SECURITY, Format ( "%s@%s has connected.", ch->name, d->host ) ); wiznet ( Format ( "%s@%s has connected.", ch->name, d->host ), NULL, NULL, WIZ_SITES, 0, get_trust ( ch ) ); if ( IsStaff ( ch ) ) { cmd_function ( ch, &cmd_help, "imotd" ); d->connected = STATE_READ_IMOTD; } else { cmd_function ( ch, &cmd_help, "motd" ); d->connected = STATE_READ_MOTD; } break; /* RT code for breaking link */ case STATE_BREAK_CONNECT: switch ( *argument ) { case 'y' : case 'Y': for ( d_old = socket_list; d_old != NULL; d_old = d_next ) { d_next = d_old->next; if ( d_old == d || d_old->character == NULL ) { continue; } if ( !SameString ( ch->name, d_old->original ? d_old->original->name : d_old->character->name ) ) { continue; } close_socket ( d_old ); } if ( check_reconnect ( d, ch->name, TRUE ) ) { return; } write_to_buffer ( d, "Reconnect attempt failed.\n\rName: ", 0 ); if ( d->character != NULL ) { recycle_char ( d->character ); d->character = NULL; } d->connected = STATE_GET_NAME; break; case 'n' : case 'N': write_to_buffer ( d, "Name: ", 0 ); if ( d->character != NULL ) { recycle_char ( d->character ); d->character = NULL; } d->connected = STATE_GET_NAME; break; default: write_to_buffer ( d, "Please type Y or N? ", 0 ); break; } break; case STATE_CONFIRM_NEW_NAME: switch ( *argument ) { case 'y': case 'Y': sprintf ( buf, "New character.\n\rGive me a password for %s", ch->name ); write_to_buffer ( d, buf, 0 ); ProtocolNoEcho ( d, true ); d->connected = STATE_GET_NEW_PASSWORD; break; case 'n': case 'N': write_to_buffer ( d, "Ok, what IS it, then? ", 0 ); recycle_char ( d->character ); d->character = NULL; d->connected = STATE_GET_NAME; break; default: write_to_buffer ( d, "Please type Yes or No? ", 0 ); break; } break; case STATE_GET_NEW_PASSWORD: #if defined(unix) write_to_buffer ( d, "\n\r", 2 ); #endif if ( strlen ( argument ) < 7 ) { write_to_buffer ( d, "Password must be at least seven characters long.\n\rPassword: ", 0 ); return; } if ( !strstr ( argument, "1" ) && !strstr ( argument, "2" ) && !strstr ( argument, "3" ) && !strstr ( argument, "4" ) && !strstr ( argument, "5" ) && !strstr ( argument, "6" ) && !strstr ( argument, "7" ) && !strstr ( argument, "8" ) && !strstr ( argument, "9" ) && !strstr ( argument, "0" ) ) { write_to_buffer ( d, "You must have a number in your password.\r\nPassword: ", 0 ); return; } pwdnew = crypt ( argument, ch->name ); for ( p = pwdnew; *p != '\0'; p++ ) { if ( *p == '~' ) { write_to_buffer ( d, "New password not acceptable, try again.\n\rPassword: ", 0 ); return; } } PURGE_DATA ( ch->pcdata->pwd ); ch->pcdata->pwd = assign_string ( pwdnew ); write_to_buffer ( d, "Please retype password: ", 0 ); d->connected = STATE_CONFIRM_NEW_PASSWORD; break; case STATE_CONFIRM_NEW_PASSWORD: #if defined(unix) write_to_buffer ( d, "\n\r", 2 ); #endif if ( strcmp ( crypt ( argument, ch->pcdata->pwd ), ch->pcdata->pwd ) ) { write_to_buffer ( d, "Passwords don't match.\n\rRetype password: ", 0 ); d->connected = STATE_GET_NEW_PASSWORD; return; } ProtocolNoEcho ( d, false ); write_to_buffer ( d, "The following races are available:\n\r ", 0 ); for ( race = 1; race_table[race].name != NULL; race++ ) { if ( !race_table[race].pc_race ) { break; } write_to_buffer ( d, race_table[race].name, 0 ); write_to_buffer ( d, " ", 1 ); } write_to_buffer ( d, "\n\r", 0 ); write_to_buffer ( d, "What is your race (help for more information)? ", 0 ); d->connected = STATE_GET_NEW_RACE; break; case STATE_GET_NEW_RACE: ChopC ( argument, arg ); if ( !strcmp ( arg, "help" ) ) { argument = ChopC ( argument, arg ); if ( argument[0] == '\0' ) { cmd_function ( ch, &cmd_help, "race help" ); } else { cmd_function ( ch, &cmd_help, argument ); } write_to_buffer ( d, "What is your race (help for more information)? ", 0 ); break; } race = race_lookup ( argument ); if ( race == 0 || !race_table[race].pc_race ) { write_to_buffer ( d, "That is not a valid race.\n\r", 0 ); write_to_buffer ( d, "The following races are available:\n\r ", 0 ); for ( race = 1; race_table[race].name != NULL; race++ ) { if ( !race_table[race].pc_race ) { break; } write_to_buffer ( d, race_table[race].name, 0 ); write_to_buffer ( d, " ", 1 ); } write_to_buffer ( d, "\n\r", 0 ); write_to_buffer ( d, "What is your race? (help for more information) ", 0 ); break; } ch->race = race; /* initialize stats */ for ( i = 0; i < MAX_STATS; i++ ) { ch->perm_stat[i] = pc_race_table[race].stats[i]; } ch->affected_by = ch->affected_by | race_table[race].aff; ch->imm_flags = ch->imm_flags | race_table[race].imm; ch->res_flags = ch->res_flags | race_table[race].res; ch->vuln_flags = ch->vuln_flags | race_table[race].vuln; ch->form = race_table[race].form; ch->parts = race_table[race].parts; /* add skills */ for ( i = 0; i < 5; i++ ) { if ( pc_race_table[race].skills[i] == NULL ) { break; } group_add ( ch, pc_race_table[race].skills[i], FALSE ); } /* add cost */ ch->pcdata->points = pc_race_table[race].points; ch->size = pc_race_table[race].size; write_to_buffer ( d, "What is your sex (M/F)? ", 0 ); d->connected = STATE_GET_NEW_SEX; break; case STATE_GET_NEW_SEX: switch ( argument[0] ) { case 'm': case 'M': ch->sex = SEX_MALE; ch->pcdata->true_sex = SEX_MALE; break; case 'f': case 'F': ch->sex = SEX_FEMALE; ch->pcdata->true_sex = SEX_FEMALE; break; default: write_to_buffer ( d, "That's not a sex.\n\rWhat IS your sex? ", 0 ); return; } strcpy ( buf, "Select a archetype [" ); for ( iClass = 0; iClass < MAX_CLASS; iClass++ ) { if ( iClass > 0 ) { strcat ( buf, " " ); } strcat ( buf, archetype_table[iClass].name ); } strcat ( buf, "]: " ); write_to_buffer ( d, buf, 0 ); d->connected = STATE_GET_NEW_CLASS; break; case STATE_GET_NEW_CLASS: iClass = archetype_lookup ( argument ); if ( iClass == -1 ) { write_to_buffer ( d, "That's not a archetype.\n\rWhat IS your archetype? ", 0 ); return; } ch->archetype = iClass; log_hd ( LOG_SECURITY, Format ( "%s@%s new player.", ch->name, d->host ) ); wiznet ( "Newbie alert! $N sighted.", ch, NULL, WIZ_NEWBIE, 0, 0 ); wiznet ( Format ( "%s@%s new player.", ch->name, d->host ), NULL, NULL, WIZ_SITES, 0, get_trust ( ch ) ); write_to_buffer ( d, "\n\r", 2 ); write_to_buffer ( d, "You may be good, neutral, or evil.\n\r", 0 ); write_to_buffer ( d, "Which alignment (G/N/E)? ", 0 ); d->connected = STATE_GET_ALIGNMENT; break; case STATE_GET_ALIGNMENT: switch ( argument[0] ) { case 'g' : case 'G' : ch->alignment = 750; break; case 'n' : case 'N' : ch->alignment = 0; break; case 'e' : case 'E' : ch->alignment = -750; break; default: write_to_buffer ( d, "That's not a valid alignment.\n\r", 0 ); write_to_buffer ( d, "Which alignment (G/N/E)? ", 0 ); return; } write_to_buffer ( d, "\n\r", 0 ); group_add ( ch, "rom basics", FALSE ); group_add ( ch, archetype_table[ch->archetype].base_group, FALSE ); ch->pcdata->learned[gsn_recall] = 50; write_to_buffer ( d, "Do you wish to customize this character?\n\r", 0 ); write_to_buffer ( d, "Customization takes time, but allows a wider range of skills and abilities.\n\r", 0 ); write_to_buffer ( d, "Customize (Y/N)? ", 0 ); d->connected = STATE_DEFAULT_CHOICE; break; case STATE_DEFAULT_CHOICE: write_to_buffer ( d, "\n\r", 2 ); switch ( argument[0] ) { case 'y': case 'Y': ch->gen_data = new_gen_data(); ch->gen_data->points_chosen = ch->pcdata->points; cmd_function ( ch, &cmd_help, "group header" ); list_group_costs ( ch ); write_to_buffer ( d, "You already have the following skills:\n\r", 0 ); cmd_function ( ch, &cmd_skills, "" ); cmd_function ( ch, &cmd_help, "menu choice" ); d->connected = STATE_GEN_GROUPS; break; case 'n': case 'N': group_add ( ch, archetype_table[ch->archetype].default_group, TRUE ); write_to_buffer ( d, "\n\r", 2 ); write_to_buffer ( d, "Please pick a weapon from the following choices:\n\r", 0 ); buf[0] = '\0'; for ( i = 0; weapon_table[i].name != NULL; i++ ) if ( ch->pcdata->learned[*weapon_table[i].gsn] > 0 ) { strcat ( buf, weapon_table[i].name ); strcat ( buf, " " ); } strcat ( buf, "\n\rYour choice? " ); write_to_buffer ( d, buf, 0 ); d->connected = STATE_PICK_WEAPON; break; default: write_to_buffer ( d, "Please answer (Y/N)? ", 0 ); return; } break; case STATE_PICK_WEAPON: write_to_buffer ( d, "\n\r", 2 ); weapon = weapon_lookup ( argument ); if ( weapon == -1 || ch->pcdata->learned[*weapon_table[weapon].gsn] <= 0 ) { write_to_buffer ( d, "That's not a valid selection. Choices are:\n\r", 0 ); buf[0] = '\0'; for ( i = 0; weapon_table[i].name != NULL; i++ ) if ( ch->pcdata->learned[*weapon_table[i].gsn] > 0 ) { strcat ( buf, weapon_table[i].name ); strcat ( buf, " " ); } strcat ( buf, "\n\rYour choice? " ); write_to_buffer ( d, buf, 0 ); return; } ch->pcdata->learned[*weapon_table[weapon].gsn] = 40; write_to_buffer ( d, "\n\r", 2 ); cmd_function ( ch, &cmd_help, "motd" ); d->connected = STATE_READ_MOTD; break; case STATE_GEN_GROUPS: writeBuffer ( "\n\r", ch ); if ( SameString ( argument, "done" ) ) { if ( ch->pcdata->points == pc_race_table[ch->race].points ) { writeBuffer ( "You didn't pick anything.\n\r", ch ); break; } if ( ch->pcdata->points <= 40 + pc_race_table[ch->race].points ) { snprintf ( buf, sizeof ( buf ), "You must take at least %d points of skills and groups", 40 + pc_race_table[ch->race].points ); writeBuffer ( buf, ch ); break; } snprintf ( buf, sizeof ( buf ), "Creation points: %d\n\r", ch->pcdata->points ); writeBuffer ( buf, ch ); snprintf ( buf, sizeof ( buf ), "Experience per level: %d\n\r", exp_per_level ( ch, ch->gen_data->points_chosen ) ); if ( ch->pcdata->points < 40 ) { ch->train = ( 40 - ch->pcdata->points + 1 ) / 2; } recycle_gen_data ( ch->gen_data ); ch->gen_data = NULL; writeBuffer ( buf, ch ); write_to_buffer ( d, "\n\r", 2 ); write_to_buffer ( d, "Please pick a weapon from the following choices:\n\r", 0 ); buf[0] = '\0'; for ( i = 0; weapon_table[i].name != NULL; i++ ) if ( ch->pcdata->learned[*weapon_table[i].gsn] > 0 ) { strcat ( buf, weapon_table[i].name ); strcat ( buf, " " ); } strcat ( buf, "\n\rYour choice? " ); write_to_buffer ( d, buf, 0 ); d->connected = STATE_PICK_WEAPON; break; } if ( !parse_gen_groups ( ch, argument ) ) writeBuffer ( "Choices are: list,learned,premise,add,drop,info,help, and done.\n\r" , ch ); cmd_function ( ch, &cmd_help, "menu choice" ); break; case STATE_READ_IMOTD: write_to_buffer ( d, "\n\r", 2 ); cmd_function ( ch, &cmd_help, "motd" ); d->connected = STATE_READ_MOTD; break; case STATE_READ_MOTD: if ( ch->pcdata == NULL || IS_NULLSTR ( ch->pcdata->pwd ) ) { write_to_buffer ( d, "Warning! Null password!\n\r", 0 ); write_to_buffer ( d, "Type 'password null <new password>' to fix.\n\r", 0 ); } write_to_buffer ( d, "\n\r\awThe \arI\aRn\arf\aRe\arc\aRt\ar\aRe\ard \awCity welcomes you to the chaos!\an\n\r", 0 ); ch->next = char_list; char_list = ch; d->connected = STATE_PLAYING; reset_char ( ch ); // -- increment our total connections. connect_count++; // -- haven't proven ourselves stable, so save them all! FILE *fp = NULL; if ( ( fp = fopen ( CONNECTED_DAT, "w" ) ) != NULL ) { fwrite ( &connect_count, sizeof ( unsigned long int ), 1, fp ); fclose ( fp ); } // -- make it known that we have jumped up like this! writeBuffer ( Format ( "\n\rYou are the [%ld] person to connect since February 3rd, 2014.\n\r", connect_count ), ch ); if ( ( connect_count % 500 ) == 0 ) { log_hd ( LOG_BASIC, Format ( "%s WAS THE %ld person to connect to %s!", ch->name, connect_count, "The Infected City" ) ); announce ( Format ( "**** %s IS THE %ld PERSON TO CONNECT TO THE INFECTED CITY!", ch->name, connect_count ) ); tweetStatement ( Format ( "%s was the %ld connection to %s", ch->name, connect_count, "The Infected City" ) ); } MXPSendTag ( d, "<VERSION>" ); if ( ch->level == 0 ) { ch->perm_stat[archetype_table[ch->archetype].attr_prime] += 3; ch->level = 1; ch->exp = exp_per_level ( ch, ch->pcdata->points ); ch->hit = ch->max_hit; ch->mana = ch->max_mana; ch->move = ch->max_move; ch->train = 3; ch->practice = 5; set_title ( ch, ( char * ) "is attempting to survive level 1." ); cmd_function ( ch, &cmd_outfit, "" ); tweetStatement ( Format ( "New Player: %s is attempting to survive The Infected City", ch->name ) ); // -- teleport us to the school char_to_room ( ch, get_room_index ( ROOM_VNUM_SCHOOL ) ); writeBuffer ( "\n\r", ch ); cmd_function ( ch, &cmd_help, "newbie info" ); writeBuffer ( "\n\r", ch ); wiznet ( "$N has left real life behind.", ch, NULL, WIZ_LOGINS, WIZ_SITES, get_trust ( ch ) ); // -- lets set up our character. cmd_function ( ch, &cmd_config, "" ); return; } else if ( IN_ROOM ( ch ) != NULL ) { char_to_room ( ch, IN_ROOM ( ch ) ); } else if ( IsStaff ( ch ) ) { char_to_room ( ch, get_room_index ( ROOM_VNUM_CHAT ) ); } else { char_to_room ( ch, get_room_index ( ROOM_VNUM_TEMPLE ) ); } act ( "$n has entered The Infected City.", ch, NULL, NULL, TO_ROOM ); cmd_function ( ch, &cmd_look, "auto" ); wiznet ( "$N has left real life behind.", ch, NULL, WIZ_LOGINS, WIZ_SITES, get_trust ( ch ) ); if ( ch->pet != NULL ) { char_to_room ( ch->pet, IN_ROOM ( ch ) ); act ( "$n has entered the game.", ch->pet, NULL, NULL, TO_ROOM ); } cmd_function ( ch, &cmd_unread, "" ); break; } return; } /* * Parse a name for acceptability. */ bool check_parse_name ( char *name ) { int clan; /* * Reserved words. */ if ( is_exact_name ( name, "all auto immortal self someone something the you loner none new delete" "system mud psux mob npc staff vanguard security builder relations" ) ) { return FALSE; } /* check clans */ for ( clan = 0; clan < MAX_CLAN; clan++ ) { if ( LOWER ( name[0] ) == LOWER ( clan_table[clan].name[0] ) && SameString ( name, clan_table[clan].name ) ) { return FALSE; } } if ( !SameString ( capitalize ( name ), "Alander" ) && ( !str_prefix ( "Alan", name ) || !str_suffix ( "Alander", name ) ) ) { return FALSE; } /* * Length restrictions. */ if ( strlen ( name ) < 2 ) { return FALSE; } #if defined(MSDOS) if ( strlen ( name ) > 8 ) { return FALSE; } #endif #if defined(macintosh) || defined(unix) if ( strlen ( name ) > 12 ) { return FALSE; } #endif // -- no naming ourselves after commands. /*for ( int cmd = 0; cmd_table[cmd].name; cmd++ ) { if ( SameString ( name, cmd_table[cmd].name ) ) { return false; } } */ /* * Alphanumerics only. * Lock out IllIll twits. */ { char *pc; bool fIll, adjcaps = FALSE, cleancaps = FALSE; int total_caps = 0; fIll = TRUE; for ( pc = name; *pc != '\0'; pc++ ) { if ( !isalpha ( *pc ) ) { return FALSE; } if ( isupper ( *pc ) ) { /* ugly anti-caps hack */ if ( adjcaps ) { cleancaps = TRUE; } total_caps++; adjcaps = TRUE; } else { adjcaps = FALSE; } if ( LOWER ( *pc ) != 'i' && LOWER ( *pc ) != 'l' ) { fIll = FALSE; } } if ( fIll ) { return FALSE; } if ( cleancaps || ( total_caps > ( ( signed int ) strlen ( name ) ) / 2 && ( signed int ) strlen ( name ) < 3 ) ) { return FALSE; } } /* * Prevent players from naming themselves after mobs. */ { extern NPCData *mob_index_hash[MAX_KEY_HASH]; NPCData *pMobIndex; int iHash; for ( iHash = 0; iHash < MAX_KEY_HASH; iHash++ ) { for ( pMobIndex = mob_index_hash[iHash]; pMobIndex != NULL; pMobIndex = pMobIndex->next ) { if ( is_name ( name, pMobIndex->player_name ) ) { return FALSE; } } } } return TRUE; } /* * Look for link-dead player to reconnect. */ bool check_reconnect ( Socket *d, char *name, bool fConn ) { Creature *ch; for ( ch = char_list; ch != NULL; ch = ch->next ) { if ( !IS_NPC ( ch ) && ( !fConn || ch->desc == NULL ) && SameString ( d->character->name, ch->name ) ) { if ( fConn == FALSE ) { PURGE_DATA ( d->character->pcdata->pwd ); d->character->pcdata->pwd = assign_string ( ch->pcdata->pwd ); } else { recycle_char ( d->character ); d->character = ch; ch->desc = d; ch->timer = 0; writeBuffer ( "Reconnecting. Type replay to see missed tells.\n\r", ch ); act ( "$n has reconnected.", ch, NULL, NULL, TO_ROOM ); MXPSendTag ( d, "<VERSION>" ); log_hd ( LOG_SECURITY, Format ( "%s@%s reconnected.", ch->name, d->host ) ); wiznet ( "$N groks the fullness of $S link.", ch, NULL, WIZ_LINKS, 0, 0 ); d->connected = STATE_PLAYING; } return TRUE; } } return FALSE; } /* * Check if already playing. */ bool check_playing ( Socket *d, char *name ) { Socket *dold; for ( dold = socket_list; dold; dold = dold->next ) { if ( dold != d && dold->character != NULL && dold->connected != STATE_GET_NAME && dold->connected != STATE_GET_OLD_PASSWORD && SameString ( name, dold->original ? dold->original->name : dold->character->name ) ) { write_to_buffer ( d, "That character is already playing.\n\r", 0 ); write_to_buffer ( d, "Do you wish to connect anyway (Y/N)?", 0 ); d->connected = STATE_BREAK_CONNECT; return TRUE; } } return FALSE; } void stop_idling ( Creature *ch ) { if ( ch == NULL || ch->desc == NULL || ch->desc->connected != STATE_PLAYING || ch->was_in_room == NULL || IN_ROOM ( ch ) != get_room_index ( ROOM_VNUM_LIMBO ) ) { return; } ch->timer = 0; char_from_room ( ch ); char_to_room ( ch, ch->was_in_room ); ch->was_in_room = NULL; act ( "$n has reformed from a pile of ash.", ch, NULL, NULL, TO_ROOM ); return; } /* * Write to one char. */ void writeBuffer ( const char *txt, Creature *ch ) { if ( !IS_NULLSTR ( txt ) && ch->desc != NULL ) { write_to_buffer ( ch->desc, txt, strlen ( txt ) ); } return; } /* * Send a page to one char. */ void writePage ( const char *txt, Creature *ch ) { if ( IS_NULLSTR ( txt ) || ch->desc == NULL ) { return; } if ( ch->lines == 0 ) { writeBuffer ( txt, ch ); return; } ALLOC_DATA ( ch->desc->showstr_head, char, strlen ( txt ) + 1 ); strcpy ( ch->desc->showstr_head, txt ); ch->desc->showstr_point = ch->desc->showstr_head; show_string ( ch->desc, "" ); return; } /* string pager */ void show_string ( struct descriptor_data *d, const char *input ) { char buffer[4 * MAX_STRING_LENGTH]; char buf[MAX_INPUT_LENGTH]; register char *scan, *chk; int lines = 0, toggle = 1; int show_lines; ChopC ( input, buf ); if ( buf[0] != '\0' ) { if ( d->showstr_head ) { PURGE_DATA ( d->showstr_head ); d->showstr_head = 0; } d->showstr_point = 0; return; } if ( d->character ) { show_lines = d->character->lines; } else { show_lines = 0; } for ( scan = buffer; ; scan++, d->showstr_point++ ) { if ( ( ( *scan = *d->showstr_point ) == '\n' || *scan == '\r' ) && ( toggle = -toggle ) < 0 ) { lines++; } else if ( !*scan || ( show_lines > 0 && lines >= show_lines ) ) { *scan = '\0'; write_to_buffer ( d, buffer, strlen ( buffer ) ); for ( chk = d->showstr_point; isspace ( *chk ); chk++ ); { if ( !*chk ) { if ( d->showstr_head ) { PURGE_DATA ( d->showstr_head ); d->showstr_head = 0; } d->showstr_point = 0; } } return; } } return; } /* quick sex fixer */ void fix_sex ( Creature *ch ) { if ( ch->sex < 0 || ch->sex > 2 ) { ch->sex = IS_NPC ( ch ) ? 0 : ch->pcdata->true_sex; } } void act_new ( const char *format, Creature *ch, const void *arg1, const void *arg2, int type, int min_pos ) { static const char *he_she [] = { "it", "he", "she" }; static const char *him_her [] = { "it", "him", "her" }; static const char *his_her [] = { "its", "his", "her" }; char buf[MAX_STRING_LENGTH]; char fname[MAX_INPUT_LENGTH]; Creature *to; Creature *vch = ( Creature * ) arg2; Item *obj1 = ( Item * ) arg1; Item *obj2 = ( Item * ) arg2; const char *str; const char *i; char *point; /* * Discard null and zero-length messages. */ if ( IS_NULLSTR ( format ) ) { return; } /* discard null rooms and chars */ if ( ch == NULL || IN_ROOM ( ch ) == NULL ) { return; } to = IN_ROOM ( ch )->people; if ( type == TO_VICT ) { if ( vch == NULL ) { log_hd ( LOG_ERROR, "Act: null vch with TO_VICT." ); return; } if ( IN_ROOM ( vch ) == NULL ) { return; } to = IN_ROOM ( vch )->people; } for ( ; to != NULL; to = to->next_in_room ) { if ( ( !IS_NPC ( to ) && to->desc == NULL ) || ( IS_NPC ( to ) && !HAS_TRIGGER ( to, TRIG_ACT ) ) || to->position < min_pos ) { continue; } if ( ( type == TO_CHAR ) && to != ch ) { continue; } if ( type == TO_VICT && ( to != vch || to == ch ) ) { continue; } if ( type == TO_ROOM && to == ch ) { continue; } if ( type == TO_NOTVICT && ( to == ch || to == vch ) ) { continue; } point = buf; str = format; while ( *str != '\0' ) { if ( *str != '$' ) { *point++ = *str++; continue; } ++str; if ( arg2 == NULL && *str >= 'A' && *str <= 'Z' ) { log_hd ( LOG_ERROR, Format ( "Act: missing arg2 for code %d.", *str ) ); i = " <@@@> "; } else { switch ( *str ) { default: log_hd ( LOG_ERROR, Format ( "Act: bad code %d.", *str ) ); i = " <@@@> "; break; /* Thx alex for 't' idea */ case 't': i = ( char * ) arg1; break; case 'T': i = ( char * ) arg2; break; case 'n': i = PERS ( ch, to ); break; case 'N': i = PERS ( vch, to ); break; case 'e': i = he_she [URANGE ( 0, ch ->sex, 2 )]; break; case 'E': i = he_she [URANGE ( 0, vch ->sex, 2 )]; break; case 'm': i = him_her [URANGE ( 0, ch ->sex, 2 )]; break; case 'M': i = him_her [URANGE ( 0, vch ->sex, 2 )]; break; case 's': i = his_her [URANGE ( 0, ch ->sex, 2 )]; break; case 'S': i = his_her [URANGE ( 0, vch ->sex, 2 )]; break; case 'p': i = can_see_obj ( to, obj1 ) ? obj1->short_descr : "something"; break; case 'P': i = can_see_obj ( to, obj2 ) ? obj2->short_descr : "something"; break; case 'd': if ( arg2 == NULL || ( ( char * ) arg2 ) [0] == '\0' ) { i = "door"; } else { ChopC ( ( char * ) arg2, fname ); i = fname; } break; } } ++str; while ( ( *point = *i ) != '\0' ) { ++point, ++i; } } *point++ = '\n'; *point++ = '\r'; *point++ = '\a'; *point++ = 'n'; *point = '\0'; buf[0] = UPPER ( buf[0] ); if ( to->desc != NULL ) { write_to_buffer ( to->desc, buf, point - buf ); } else if ( MOBtrigger ) { mp_act_trigger ( buf, to, ch, arg1, arg2, TRIG_ACT ); } } return; }
e0fdbb2f73bcb7bb7077e812c4225e44be23cadf
f13ef18abfb61d983040f83249bd19c6f55c29c9
/tools/Vitis-AI-Library/facerecog/include/vitis/ai/facerecog.hpp
c27c93d684cb2ab81c5836ac07b5db7a6bb872f9
[ "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
AEW2015/Vitis-AI
5487b6474924e57dbdf54f66517d1c604fc2c480
84798c76e6ebb93300bf384cb56397f214676330
refs/heads/master
2023-06-24T11:02:20.049076
2021-07-27T05:41:52
2021-07-27T05:41:52
390,221,916
1
0
Apache-2.0
2021-07-28T05:12:07
2021-07-28T05:12:06
null
UTF-8
C++
false
false
7,878
hpp
/* * Copyright 2019 Xilinx Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * Filename: facerecog.hpp * * Description: * This library is used to getting features of faces in the input * image Please refer to document "XILINX_AI_SDK_Programming_Guide.pdf" for more * details of these APIs. */ #pragma once #include <memory> #include <utility> #include <opencv2/core.hpp> #include <vector> #include <array> #include <vitis/ai/facefeature.hpp> namespace xir { class Attrs; }; namespace vitis { namespace ai { /** * @struct FaceRecogFloatResult * @brief Struct of the result returned by the facerecog network, the features type is float. */ struct FaceRecogFloatResult { ///width of a input image. int width; /// height of a input image. int height; ///Face confidence,the value range from 0 to 1. using vector_t = std::array<float, 512>; ///Face features, the float array has 512 elements. /// the 512 dimention array std::unique_ptr<vector_t> feature; }; /** * @struct FaceRecogFixedResult * @brief Struct of the result returned by the facerecog network , the features type is fixed. */ struct FaceRecogFixedResult { ///width of a input image. int width; /// height of a input image. int height; ///the fix point float scale; using vector_t = std::array<int8_t, 512>; ///Face features, the float array has 512 elements. /// the 512 dimention array std::unique_ptr<vector_t> feature; }; /** * @brief Base class for getting features in a face image (cv:Mat). * * Input is a face image (cv::Mat). * * Output is features of a face in the input image. * * @note Facedetect network is depended on Landmark network and Feature network. * * smaple code: * @code cv::Mat image = cv::imread("abc.jpg"); auto densebox_detect = vitis::ai::FaceDetect::create( "densebox_640_360); auto result = densebox_detect->run(image); auto recog = vitis::ai::FaceRecog::create("facerec_resnet20"); int i = 0; while(i < result.size()){ auto e = vitis::ai::FaceRecog::expand_and_align(image.cols, image.rows, r[i].x * images.cols, r[i].y * images.rows, r[i].width * images.cols, r[i].height * images.rows, 0.2,0.2, 16, 8); auto result_tuple = recog->run(image(e.first), e1.second.x, e1.second.y, e1.second.width, e1.second.height); auto confidence = result_tuple.score; auto features_normal = result_tuple.features; auto gender = result_tuple.gender; auto age = result_tuple.age; i++; } @endcode * */ class FaceRecog { public : /** * @brief Function to enlarge the detect. * @param width Origin width of an image. * @param height Origin height of an image. * @param x, y, w, h output of densebox. * @param ratio_x enlarge by ratio_x, 20% by default. * @param ratio_y enlarge by ratio_y, 20% by default. * @param align_x aligned pixels. * @param align_y aligned pixels. * @return the first is enlarged bounding box, the second is the relative bounding box relative to the first. */ static std::pair<cv::Rect, cv::Rect> expand_and_align(int width, int height, int x, int y, int w, int h, float ratio_x,float ratio_y, int align_x, int align_y); /** * @brief Factory function to get an instance of derived classes of class *Recog. * * @param feature_model_name Face feature model name * @param need_preprocess normalize with mean/scale or not, true *by default. * * @return An instance of FaceRecog class. */ static std::unique_ptr<FaceRecog> create(const std::string &feature_network_name, bool need_preprocess = true); static std::unique_ptr<FaceRecog> create(const std::string &feature_network_name, xir::Attrs *attrs, bool need_preprocess = true); /** * @brief Factory function to get an instance of derived classes of class *Recog. * * @param landmark_model_name Face landmark model name * @param feature_model_name Face feature model name * @param need_preprocess normalize with mean/scale or not, true *by default. * * @return An instance of FaceRecog class. */ static std::unique_ptr<FaceRecog> create(const std::string &landmark_network_name, const std::string &feature_network_name, bool need_preprocess = true); static std::unique_ptr<FaceRecog> create(const std::string &landmark_network_name, const std::string &feature_network_name, xir::Attrs *attrs, bool need_preprocess = true); protected: explicit FaceRecog(); FaceRecog(const FaceRecog &other) = delete; public: virtual ~FaceRecog(); /** * @brief Function to get InputWidth of the facerecog network (input image *cols). * * @return InputWidth of the facerecog network */ virtual int getInputWidth() const = 0; /** *@brief Function to get InputHeigth of the facerecog network (input image *rows). * *@return InputHeight of the facerecog network. */ virtual int getInputHeight() const = 0; /** * @brief Function to get the number of images processed by the DPU at one *time. * @note Different DPU core the batch size may be differnt. This depends on *the IP used. * * @return Batch size. */ virtual size_t get_input_batch() const = 0; /** * @brief Function of get running result (float feature) of the facerecog network. * * @param img A face image of after expand and align. * @param inner_x x-coordinate relative to the input img. * @param inner_y y-coordinate relative to the input img. * @param inner_w face width. * @param inner_h face heigth. * * @return the float features, gender and age of a face , features is a *vector has 512 elements. */ virtual FaceRecogFloatResult run(const cv::Mat &img, int inner_x, int inner_y, int inner_w, int inner_h) = 0; virtual std::vector<FaceRecogFloatResult> run( const std::vector<cv::Mat> &imgs, const std::vector<cv::Rect> &inner_bboxes) = 0; /** * @brief Function of get running result (float feature) of the facerecog network. * * @param img A face image of after expand and align. * @param inner_x x-coordinate relative to the input img. * @param inner_y y-coordinate relative to the input img. * @param inner_w face width. * @param inner_h face heigth. * * @return the fixed features, gender and age of a face , features is a *vector has 512 elements. */ virtual FaceRecogFixedResult run_fixed(const cv::Mat &img, int inner_x, int inner_y, int inner_w, int inner_h) = 0; virtual std::vector<FaceRecogFixedResult> run_fixed( const std::vector<cv::Mat> &imgs, const std::vector<cv::Rect> &inner_bboxes) = 0; }; /*!@} */ } } // Local Variables: // mode:c++ // c-basic-offset: 2 // coding: utf-8-unix // End:
9ca05672a17936270c0ea8f22a6ccf5e83891fda
48dc4953e424f2e422b36965bf80b8c0b6bf74f2
/mcpp/mcpp3/ex04/ClapTrap.cpp
dbbbce42338f4ce31373b636fde6ce23e9c27688
[]
no_license
Krcdb/42
21b47feee856aa1ffbebef2e6330146624db6532
896d5681bfd2f636f84cc3ba9e9d9a89e169d2d4
refs/heads/master
2023-05-01T18:50:38.411080
2023-03-03T11:35:51
2023-03-03T11:35:51
125,866,691
1
0
null
2023-04-23T20:01:03
2018-03-19T14:02:15
C
UTF-8
C++
false
false
3,492
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ClapTrap.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: user42 <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/21 17:55:03 by memartin #+# #+# */ /* Updated: 2020/11/24 15:40:36 by user42 ### ########.fr */ /* */ /* ************************************************************************** */ #include "ClapTrap.hpp" ClapTrap::ClapTrap(void): _name("default"), _hp(1), _hpMax(1), _ep(1), _epMax(1), _level(1), _armorDamageReduction(5), _meleeAttackDamage(3), _rangedAttackDamage(2) { say("base ClapTrap created !"); } ClapTrap::ClapTrap(std::string name, int hp, int hpMax, int ep, int epMax, int level, int meleeAttackDamage, int rangedAttackDamage, int armorDamageReduction): _name(name), _hp(hp), _hpMax(hpMax), _ep(ep), _epMax(epMax), _level(level), _armorDamageReduction(armorDamageReduction), _meleeAttackDamage(meleeAttackDamage), _rangedAttackDamage(rangedAttackDamage) { say("base ClapTrap created !"); } ClapTrap::ClapTrap(const ClapTrap &other) { *this = other; say("copied (claptrap)!"); } ClapTrap::~ClapTrap(void) { say("ClapTrap destroy !"); } ClapTrap& ClapTrap::operator =(const ClapTrap &other) { if (this != &other) { this->_name = other._name; this->_hp = other._hp; this->_hpMax = other._hpMax; this->_ep = other._ep; this->_epMax = other._epMax; this->_level = other._level; this->_meleeAttackDamage = other._meleeAttackDamage; this->_rangedAttackDamage = other._rangedAttackDamage; this->_armorDamageReduction = other._armorDamageReduction; } say("assigned (claptrap)!"); return (*this); } std::ostream& ClapTrap::say(void) { return (std::cout << this->_name << " : "); } std::ostream& ClapTrap::say(std::string output) { return (say() << output << std::endl); } void ClapTrap::takeDamage(unsigned int amount) { int damage; damage = amount - this->_armorDamageReduction; if (damage <= 0 && this->_hp != 0) say("Nice try !") << this->_name << " received 0 damages !" << std::endl; else if (damage >= this->_hp) { say("Woah! Oh! Jeez!") << this->_name << " is dead ! See you space FR4G-TP" << std::endl; this->_hp = 0; } else { say("Ouch !") << this->_name << " received " << damage << " damages !" << std::endl; this->_hp -= damage; } } void ClapTrap::beRepaired(unsigned int amount) { int heal; if (amount > (unsigned int)(this->_hpMax - this->_hp)) heal = this->_hpMax - this->_hp; else heal = amount; if (this->_hp == 100) say("I'm full bro !"); else { say("Yay ! Healing !") << this->_name << " healed for " << heal << " hp !" << std::endl; this->_hp += heal; } } void ClapTrap::displayStatus(void) { say() << "current HP : " << this->_hp << " | current EP : " << this->_ep << std::endl; } int& ClapTrap::getHp(void) { return (this->_hp); } int& ClapTrap::getEp(void) { return (this->_ep); } const std::string& ClapTrap::getName(void) { return (this->_name); }
61a7e2883af0cf8e2ee4ebfe5fd283362a4496da
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5634697451274240_0/C++/simonlindholm/B.cpp
829da4040d25e5082e5ca086e98371513e304145
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
643
cpp
#include <bits/stdc++.h> using namespace std; #define rep(i, from, to) for (int i = from; i < (to); ++i) #define trav(a, x) for (auto& a : x) #define all(x) x.begin(), x.end() #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; void PR(vi &v) { trav(x, v) cout << x << ' '; cout << endl; } void solve() { string s; cin >> s; char last = s[0]; int res = 0; for (char c : s + "+") { if (c != last) res++; last = c; } cout << res << endl; } int main() { cin.sync_with_stdio(false); cin.tie(0); int N; cin >> N; rep(i,0,N) { cout << "Case #" << i+1 << ": "; solve(); } }
e0300d5b2b5398686fb128e80fc9d2f51d4e7946
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/run-scripts/tmp_1/S+dmb.sy+dmb.st.c.cbmc_out.cpp
0bdce152590118747021b8654a143530569825f0
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C++
false
false
25,679
cpp
// 0:vars:2 // 2:atom_1_X0_1:1 // 3:thr0:1 // 4:thr1:1 #define ADDRSIZE 5 #define NPROC 3 #define NCONTEXT 1 #define ASSUME(stmt) __CPROVER_assume(stmt) #define ASSERT(stmt) __CPROVER_assert(stmt, "error") #define max(a,b) (a>b?a:b) char __get_rng(); char get_rng( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } char get_rng_th( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } int main(int argc, char **argv) { // declare arrays for intial value version in contexts int meminit_[ADDRSIZE*NCONTEXT]; #define meminit(x,k) meminit_[(x)*NCONTEXT+k] int coinit_[ADDRSIZE*NCONTEXT]; #define coinit(x,k) coinit_[(x)*NCONTEXT+k] int deltainit_[ADDRSIZE*NCONTEXT]; #define deltainit(x,k) deltainit_[(x)*NCONTEXT+k] // declare arrays for running value version in contexts int mem_[ADDRSIZE*NCONTEXT]; #define mem(x,k) mem_[(x)*NCONTEXT+k] int co_[ADDRSIZE*NCONTEXT]; #define co(x,k) co_[(x)*NCONTEXT+k] int delta_[ADDRSIZE*NCONTEXT]; #define delta(x,k) delta_[(x)*NCONTEXT+k] // declare arrays for local buffer and observed writes int buff_[NPROC*ADDRSIZE]; #define buff(x,k) buff_[(x)*ADDRSIZE+k] int pw_[NPROC*ADDRSIZE]; #define pw(x,k) pw_[(x)*ADDRSIZE+k] // declare arrays for context stamps char cr_[NPROC*ADDRSIZE]; #define cr(x,k) cr_[(x)*ADDRSIZE+k] char iw_[NPROC*ADDRSIZE]; #define iw(x,k) iw_[(x)*ADDRSIZE+k] char cw_[NPROC*ADDRSIZE]; #define cw(x,k) cw_[(x)*ADDRSIZE+k] char cx_[NPROC*ADDRSIZE]; #define cx(x,k) cx_[(x)*ADDRSIZE+k] char is_[NPROC*ADDRSIZE]; #define is(x,k) is_[(x)*ADDRSIZE+k] char cs_[NPROC*ADDRSIZE]; #define cs(x,k) cs_[(x)*ADDRSIZE+k] char crmax_[NPROC*ADDRSIZE]; #define crmax(x,k) crmax_[(x)*ADDRSIZE+k] char sforbid_[ADDRSIZE*NCONTEXT]; #define sforbid(x,k) sforbid_[(x)*NCONTEXT+k] // declare arrays for synchronizations int cl[NPROC]; int cdy[NPROC]; int cds[NPROC]; int cdl[NPROC]; int cisb[NPROC]; int caddr[NPROC]; int cctrl[NPROC]; int cstart[NPROC]; int creturn[NPROC]; // declare arrays for contexts activity int active[NCONTEXT]; int ctx_used[NCONTEXT]; int r0= 0; char creg_r0; int r1= 0; char creg_r1; int r2= 0; char creg_r2; int r3= 0; char creg_r3; int r4= 0; char creg_r4; int r5= 0; char creg_r5; int r6= 0; char creg_r6; int r7= 0; char creg_r7; char old_cctrl= 0; char old_cr= 0; char old_cdy= 0; char old_cw= 0; char new_creg= 0; buff(0,0) = 0; pw(0,0) = 0; cr(0,0) = 0; iw(0,0) = 0; cw(0,0) = 0; cx(0,0) = 0; is(0,0) = 0; cs(0,0) = 0; crmax(0,0) = 0; buff(0,1) = 0; pw(0,1) = 0; cr(0,1) = 0; iw(0,1) = 0; cw(0,1) = 0; cx(0,1) = 0; is(0,1) = 0; cs(0,1) = 0; crmax(0,1) = 0; buff(0,2) = 0; pw(0,2) = 0; cr(0,2) = 0; iw(0,2) = 0; cw(0,2) = 0; cx(0,2) = 0; is(0,2) = 0; cs(0,2) = 0; crmax(0,2) = 0; buff(0,3) = 0; pw(0,3) = 0; cr(0,3) = 0; iw(0,3) = 0; cw(0,3) = 0; cx(0,3) = 0; is(0,3) = 0; cs(0,3) = 0; crmax(0,3) = 0; buff(0,4) = 0; pw(0,4) = 0; cr(0,4) = 0; iw(0,4) = 0; cw(0,4) = 0; cx(0,4) = 0; is(0,4) = 0; cs(0,4) = 0; crmax(0,4) = 0; cl[0] = 0; cdy[0] = 0; cds[0] = 0; cdl[0] = 0; cisb[0] = 0; caddr[0] = 0; cctrl[0] = 0; cstart[0] = get_rng(0,NCONTEXT-1); creturn[0] = get_rng(0,NCONTEXT-1); buff(1,0) = 0; pw(1,0) = 0; cr(1,0) = 0; iw(1,0) = 0; cw(1,0) = 0; cx(1,0) = 0; is(1,0) = 0; cs(1,0) = 0; crmax(1,0) = 0; buff(1,1) = 0; pw(1,1) = 0; cr(1,1) = 0; iw(1,1) = 0; cw(1,1) = 0; cx(1,1) = 0; is(1,1) = 0; cs(1,1) = 0; crmax(1,1) = 0; buff(1,2) = 0; pw(1,2) = 0; cr(1,2) = 0; iw(1,2) = 0; cw(1,2) = 0; cx(1,2) = 0; is(1,2) = 0; cs(1,2) = 0; crmax(1,2) = 0; buff(1,3) = 0; pw(1,3) = 0; cr(1,3) = 0; iw(1,3) = 0; cw(1,3) = 0; cx(1,3) = 0; is(1,3) = 0; cs(1,3) = 0; crmax(1,3) = 0; buff(1,4) = 0; pw(1,4) = 0; cr(1,4) = 0; iw(1,4) = 0; cw(1,4) = 0; cx(1,4) = 0; is(1,4) = 0; cs(1,4) = 0; crmax(1,4) = 0; cl[1] = 0; cdy[1] = 0; cds[1] = 0; cdl[1] = 0; cisb[1] = 0; caddr[1] = 0; cctrl[1] = 0; cstart[1] = get_rng(0,NCONTEXT-1); creturn[1] = get_rng(0,NCONTEXT-1); buff(2,0) = 0; pw(2,0) = 0; cr(2,0) = 0; iw(2,0) = 0; cw(2,0) = 0; cx(2,0) = 0; is(2,0) = 0; cs(2,0) = 0; crmax(2,0) = 0; buff(2,1) = 0; pw(2,1) = 0; cr(2,1) = 0; iw(2,1) = 0; cw(2,1) = 0; cx(2,1) = 0; is(2,1) = 0; cs(2,1) = 0; crmax(2,1) = 0; buff(2,2) = 0; pw(2,2) = 0; cr(2,2) = 0; iw(2,2) = 0; cw(2,2) = 0; cx(2,2) = 0; is(2,2) = 0; cs(2,2) = 0; crmax(2,2) = 0; buff(2,3) = 0; pw(2,3) = 0; cr(2,3) = 0; iw(2,3) = 0; cw(2,3) = 0; cx(2,3) = 0; is(2,3) = 0; cs(2,3) = 0; crmax(2,3) = 0; buff(2,4) = 0; pw(2,4) = 0; cr(2,4) = 0; iw(2,4) = 0; cw(2,4) = 0; cx(2,4) = 0; is(2,4) = 0; cs(2,4) = 0; crmax(2,4) = 0; cl[2] = 0; cdy[2] = 0; cds[2] = 0; cdl[2] = 0; cisb[2] = 0; caddr[2] = 0; cctrl[2] = 0; cstart[2] = get_rng(0,NCONTEXT-1); creturn[2] = get_rng(0,NCONTEXT-1); // Dumping initializations mem(0+0,0) = 0; mem(0+1,0) = 0; mem(2+0,0) = 0; mem(3+0,0) = 0; mem(4+0,0) = 0; // Dumping context matching equalities co(0,0) = 0; delta(0,0) = -1; co(1,0) = 0; delta(1,0) = -1; co(2,0) = 0; delta(2,0) = -1; co(3,0) = 0; delta(3,0) = -1; co(4,0) = 0; delta(4,0) = -1; // Dumping thread 1 int ret_thread_1 = 0; cdy[1] = get_rng(0,NCONTEXT-1); ASSUME(cdy[1] >= cstart[1]); T1BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !33, metadata !DIExpression()), !dbg !42 // br label %label_1, !dbg !43 goto T1BLOCK1; T1BLOCK1: // call void @llvm.dbg.label(metadata !41), !dbg !44 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !34, metadata !DIExpression()), !dbg !45 // call void @llvm.dbg.value(metadata i64 2, metadata !37, metadata !DIExpression()), !dbg !45 // store atomic i64 2, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !46 // ST: Guess iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW old_cw = cw(1,0); cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM // Check ASSUME(active[iw(1,0)] == 1); ASSUME(active[cw(1,0)] == 1); ASSUME(sforbid(0,cw(1,0))== 0); ASSUME(iw(1,0) >= 0); ASSUME(iw(1,0) >= 0); ASSUME(cw(1,0) >= iw(1,0)); ASSUME(cw(1,0) >= old_cw); ASSUME(cw(1,0) >= cr(1,0)); ASSUME(cw(1,0) >= cl[1]); ASSUME(cw(1,0) >= cisb[1]); ASSUME(cw(1,0) >= cdy[1]); ASSUME(cw(1,0) >= cdl[1]); ASSUME(cw(1,0) >= cds[1]); ASSUME(cw(1,0) >= cctrl[1]); ASSUME(cw(1,0) >= caddr[1]); // Update caddr[1] = max(caddr[1],0); buff(1,0) = 2; mem(0,cw(1,0)) = 2; co(0,cw(1,0))+=1; delta(0,cw(1,0)) = -1; ASSUME(creturn[1] >= cw(1,0)); // call void (...) @dmbsy(), !dbg !47 // dumbsy: Guess old_cdy = cdy[1]; cdy[1] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[1] >= old_cdy); ASSUME(cdy[1] >= cisb[1]); ASSUME(cdy[1] >= cdl[1]); ASSUME(cdy[1] >= cds[1]); ASSUME(cdy[1] >= cctrl[1]); ASSUME(cdy[1] >= cw(1,0+0)); ASSUME(cdy[1] >= cw(1,0+1)); ASSUME(cdy[1] >= cw(1,2+0)); ASSUME(cdy[1] >= cw(1,3+0)); ASSUME(cdy[1] >= cw(1,4+0)); ASSUME(cdy[1] >= cr(1,0+0)); ASSUME(cdy[1] >= cr(1,0+1)); ASSUME(cdy[1] >= cr(1,2+0)); ASSUME(cdy[1] >= cr(1,3+0)); ASSUME(cdy[1] >= cr(1,4+0)); ASSUME(creturn[1] >= cdy[1]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !38, metadata !DIExpression()), !dbg !48 // call void @llvm.dbg.value(metadata i64 1, metadata !40, metadata !DIExpression()), !dbg !48 // store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !49 // ST: Guess iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW old_cw = cw(1,0+1*1); cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM // Check ASSUME(active[iw(1,0+1*1)] == 1); ASSUME(active[cw(1,0+1*1)] == 1); ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(cw(1,0+1*1) >= iw(1,0+1*1)); ASSUME(cw(1,0+1*1) >= old_cw); ASSUME(cw(1,0+1*1) >= cr(1,0+1*1)); ASSUME(cw(1,0+1*1) >= cl[1]); ASSUME(cw(1,0+1*1) >= cisb[1]); ASSUME(cw(1,0+1*1) >= cdy[1]); ASSUME(cw(1,0+1*1) >= cdl[1]); ASSUME(cw(1,0+1*1) >= cds[1]); ASSUME(cw(1,0+1*1) >= cctrl[1]); ASSUME(cw(1,0+1*1) >= caddr[1]); // Update caddr[1] = max(caddr[1],0); buff(1,0+1*1) = 1; mem(0+1*1,cw(1,0+1*1)) = 1; co(0+1*1,cw(1,0+1*1))+=1; delta(0+1*1,cw(1,0+1*1)) = -1; ASSUME(creturn[1] >= cw(1,0+1*1)); // ret i8* null, !dbg !50 ret_thread_1 = (- 1); // Dumping thread 2 int ret_thread_2 = 0; cdy[2] = get_rng(0,NCONTEXT-1); ASSUME(cdy[2] >= cstart[2]); T2BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !53, metadata !DIExpression()), !dbg !67 // br label %label_2, !dbg !49 goto T2BLOCK1; T2BLOCK1: // call void @llvm.dbg.label(metadata !66), !dbg !69 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !56, metadata !DIExpression()), !dbg !70 // %0 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !52 // LD: Guess old_cr = cr(2,0+1*1); cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM // Check ASSUME(active[cr(2,0+1*1)] == 2); ASSUME(cr(2,0+1*1) >= iw(2,0+1*1)); ASSUME(cr(2,0+1*1) >= 0); ASSUME(cr(2,0+1*1) >= cdy[2]); ASSUME(cr(2,0+1*1) >= cisb[2]); ASSUME(cr(2,0+1*1) >= cdl[2]); ASSUME(cr(2,0+1*1) >= cl[2]); // Update creg_r0 = cr(2,0+1*1); crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1)); caddr[2] = max(caddr[2],0); if(cr(2,0+1*1) < cw(2,0+1*1)) { r0 = buff(2,0+1*1); } else { if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) { ASSUME(cr(2,0+1*1) >= old_cr); } pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1)); r0 = mem(0+1*1,cr(2,0+1*1)); } ASSUME(creturn[2] >= cr(2,0+1*1)); // call void @llvm.dbg.value(metadata i64 %0, metadata !58, metadata !DIExpression()), !dbg !70 // %conv = trunc i64 %0 to i32, !dbg !53 // call void @llvm.dbg.value(metadata i32 %conv, metadata !54, metadata !DIExpression()), !dbg !67 // call void (...) @dmbst(), !dbg !54 // dumbst: Guess cds[2] = get_rng(0,NCONTEXT-1); // Check ASSUME(cds[2] >= cdy[2]); ASSUME(cds[2] >= cw(2,0+0)); ASSUME(cds[2] >= cw(2,0+1)); ASSUME(cds[2] >= cw(2,2+0)); ASSUME(cds[2] >= cw(2,3+0)); ASSUME(cds[2] >= cw(2,4+0)); ASSUME(creturn[2] >= cds[2]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !59, metadata !DIExpression()), !dbg !74 // call void @llvm.dbg.value(metadata i64 1, metadata !61, metadata !DIExpression()), !dbg !74 // store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !56 // ST: Guess iw(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW old_cw = cw(2,0); cw(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM // Check ASSUME(active[iw(2,0)] == 2); ASSUME(active[cw(2,0)] == 2); ASSUME(sforbid(0,cw(2,0))== 0); ASSUME(iw(2,0) >= 0); ASSUME(iw(2,0) >= 0); ASSUME(cw(2,0) >= iw(2,0)); ASSUME(cw(2,0) >= old_cw); ASSUME(cw(2,0) >= cr(2,0)); ASSUME(cw(2,0) >= cl[2]); ASSUME(cw(2,0) >= cisb[2]); ASSUME(cw(2,0) >= cdy[2]); ASSUME(cw(2,0) >= cdl[2]); ASSUME(cw(2,0) >= cds[2]); ASSUME(cw(2,0) >= cctrl[2]); ASSUME(cw(2,0) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,0) = 1; mem(0,cw(2,0)) = 1; co(0,cw(2,0))+=1; delta(0,cw(2,0)) = -1; ASSUME(creturn[2] >= cw(2,0)); // %cmp = icmp eq i32 %conv, 1, !dbg !57 // %conv1 = zext i1 %cmp to i32, !dbg !57 // call void @llvm.dbg.value(metadata i32 %conv1, metadata !62, metadata !DIExpression()), !dbg !67 // call void @llvm.dbg.value(metadata i64* @atom_1_X0_1, metadata !63, metadata !DIExpression()), !dbg !77 // %1 = zext i32 %conv1 to i64 // call void @llvm.dbg.value(metadata i64 %1, metadata !65, metadata !DIExpression()), !dbg !77 // store atomic i64 %1, i64* @atom_1_X0_1 seq_cst, align 8, !dbg !59 // ST: Guess iw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW old_cw = cw(2,2); cw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM // Check ASSUME(active[iw(2,2)] == 2); ASSUME(active[cw(2,2)] == 2); ASSUME(sforbid(2,cw(2,2))== 0); ASSUME(iw(2,2) >= max(creg_r0,0)); ASSUME(iw(2,2) >= 0); ASSUME(cw(2,2) >= iw(2,2)); ASSUME(cw(2,2) >= old_cw); ASSUME(cw(2,2) >= cr(2,2)); ASSUME(cw(2,2) >= cl[2]); ASSUME(cw(2,2) >= cisb[2]); ASSUME(cw(2,2) >= cdy[2]); ASSUME(cw(2,2) >= cdl[2]); ASSUME(cw(2,2) >= cds[2]); ASSUME(cw(2,2) >= cctrl[2]); ASSUME(cw(2,2) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,2) = (r0==1); mem(2,cw(2,2)) = (r0==1); co(2,cw(2,2))+=1; delta(2,cw(2,2)) = -1; ASSUME(creturn[2] >= cw(2,2)); // ret i8* null, !dbg !60 ret_thread_2 = (- 1); // Dumping thread 0 int ret_thread_0 = 0; cdy[0] = get_rng(0,NCONTEXT-1); ASSUME(cdy[0] >= cstart[0]); T0BLOCK0: // %thr0 = alloca i64, align 8 // %thr1 = alloca i64, align 8 // call void @llvm.dbg.value(metadata i32 %argc, metadata !87, metadata !DIExpression()), !dbg !113 // call void @llvm.dbg.value(metadata i8** %argv, metadata !88, metadata !DIExpression()), !dbg !113 // %0 = bitcast i64* %thr0 to i8*, !dbg !65 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #6, !dbg !65 // call void @llvm.dbg.declare(metadata i64* %thr0, metadata !89, metadata !DIExpression()), !dbg !115 // %1 = bitcast i64* %thr1 to i8*, !dbg !67 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #6, !dbg !67 // call void @llvm.dbg.declare(metadata i64* %thr1, metadata !93, metadata !DIExpression()), !dbg !117 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !94, metadata !DIExpression()), !dbg !118 // call void @llvm.dbg.value(metadata i64 0, metadata !96, metadata !DIExpression()), !dbg !118 // store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !70 // ST: Guess iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW old_cw = cw(0,0+1*1); cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM // Check ASSUME(active[iw(0,0+1*1)] == 0); ASSUME(active[cw(0,0+1*1)] == 0); ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(cw(0,0+1*1) >= iw(0,0+1*1)); ASSUME(cw(0,0+1*1) >= old_cw); ASSUME(cw(0,0+1*1) >= cr(0,0+1*1)); ASSUME(cw(0,0+1*1) >= cl[0]); ASSUME(cw(0,0+1*1) >= cisb[0]); ASSUME(cw(0,0+1*1) >= cdy[0]); ASSUME(cw(0,0+1*1) >= cdl[0]); ASSUME(cw(0,0+1*1) >= cds[0]); ASSUME(cw(0,0+1*1) >= cctrl[0]); ASSUME(cw(0,0+1*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+1*1) = 0; mem(0+1*1,cw(0,0+1*1)) = 0; co(0+1*1,cw(0,0+1*1))+=1; delta(0+1*1,cw(0,0+1*1)) = -1; ASSUME(creturn[0] >= cw(0,0+1*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !97, metadata !DIExpression()), !dbg !120 // call void @llvm.dbg.value(metadata i64 0, metadata !99, metadata !DIExpression()), !dbg !120 // store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !72 // ST: Guess iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW old_cw = cw(0,0); cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM // Check ASSUME(active[iw(0,0)] == 0); ASSUME(active[cw(0,0)] == 0); ASSUME(sforbid(0,cw(0,0))== 0); ASSUME(iw(0,0) >= 0); ASSUME(iw(0,0) >= 0); ASSUME(cw(0,0) >= iw(0,0)); ASSUME(cw(0,0) >= old_cw); ASSUME(cw(0,0) >= cr(0,0)); ASSUME(cw(0,0) >= cl[0]); ASSUME(cw(0,0) >= cisb[0]); ASSUME(cw(0,0) >= cdy[0]); ASSUME(cw(0,0) >= cdl[0]); ASSUME(cw(0,0) >= cds[0]); ASSUME(cw(0,0) >= cctrl[0]); ASSUME(cw(0,0) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0) = 0; mem(0,cw(0,0)) = 0; co(0,cw(0,0))+=1; delta(0,cw(0,0)) = -1; ASSUME(creturn[0] >= cw(0,0)); // call void @llvm.dbg.value(metadata i64* @atom_1_X0_1, metadata !100, metadata !DIExpression()), !dbg !122 // call void @llvm.dbg.value(metadata i64 0, metadata !102, metadata !DIExpression()), !dbg !122 // store atomic i64 0, i64* @atom_1_X0_1 monotonic, align 8, !dbg !74 // ST: Guess iw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW old_cw = cw(0,2); cw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM // Check ASSUME(active[iw(0,2)] == 0); ASSUME(active[cw(0,2)] == 0); ASSUME(sforbid(2,cw(0,2))== 0); ASSUME(iw(0,2) >= 0); ASSUME(iw(0,2) >= 0); ASSUME(cw(0,2) >= iw(0,2)); ASSUME(cw(0,2) >= old_cw); ASSUME(cw(0,2) >= cr(0,2)); ASSUME(cw(0,2) >= cl[0]); ASSUME(cw(0,2) >= cisb[0]); ASSUME(cw(0,2) >= cdy[0]); ASSUME(cw(0,2) >= cdl[0]); ASSUME(cw(0,2) >= cds[0]); ASSUME(cw(0,2) >= cctrl[0]); ASSUME(cw(0,2) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,2) = 0; mem(2,cw(0,2)) = 0; co(2,cw(0,2))+=1; delta(2,cw(0,2)) = -1; ASSUME(creturn[0] >= cw(0,2)); // %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #6, !dbg !75 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[1] >= cdy[0]); // %call5 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #6, !dbg !76 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[2] >= cdy[0]); // %2 = load i64, i64* %thr0, align 8, !dbg !77, !tbaa !78 // LD: Guess old_cr = cr(0,3); cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,3)] == 0); ASSUME(cr(0,3) >= iw(0,3)); ASSUME(cr(0,3) >= 0); ASSUME(cr(0,3) >= cdy[0]); ASSUME(cr(0,3) >= cisb[0]); ASSUME(cr(0,3) >= cdl[0]); ASSUME(cr(0,3) >= cl[0]); // Update creg_r2 = cr(0,3); crmax(0,3) = max(crmax(0,3),cr(0,3)); caddr[0] = max(caddr[0],0); if(cr(0,3) < cw(0,3)) { r2 = buff(0,3); } else { if(pw(0,3) != co(3,cr(0,3))) { ASSUME(cr(0,3) >= old_cr); } pw(0,3) = co(3,cr(0,3)); r2 = mem(3,cr(0,3)); } ASSUME(creturn[0] >= cr(0,3)); // %call6 = call i32 @pthread_join(i64 noundef %2, i8** noundef null), !dbg !82 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[1]); // %3 = load i64, i64* %thr1, align 8, !dbg !83, !tbaa !78 // LD: Guess old_cr = cr(0,4); cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,4)] == 0); ASSUME(cr(0,4) >= iw(0,4)); ASSUME(cr(0,4) >= 0); ASSUME(cr(0,4) >= cdy[0]); ASSUME(cr(0,4) >= cisb[0]); ASSUME(cr(0,4) >= cdl[0]); ASSUME(cr(0,4) >= cl[0]); // Update creg_r3 = cr(0,4); crmax(0,4) = max(crmax(0,4),cr(0,4)); caddr[0] = max(caddr[0],0); if(cr(0,4) < cw(0,4)) { r3 = buff(0,4); } else { if(pw(0,4) != co(4,cr(0,4))) { ASSUME(cr(0,4) >= old_cr); } pw(0,4) = co(4,cr(0,4)); r3 = mem(4,cr(0,4)); } ASSUME(creturn[0] >= cr(0,4)); // %call7 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !84 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[2]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !104, metadata !DIExpression()), !dbg !134 // %4 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) seq_cst, align 8, !dbg !86 // LD: Guess old_cr = cr(0,0); cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,0)] == 0); ASSUME(cr(0,0) >= iw(0,0)); ASSUME(cr(0,0) >= 0); ASSUME(cr(0,0) >= cdy[0]); ASSUME(cr(0,0) >= cisb[0]); ASSUME(cr(0,0) >= cdl[0]); ASSUME(cr(0,0) >= cl[0]); // Update creg_r4 = cr(0,0); crmax(0,0) = max(crmax(0,0),cr(0,0)); caddr[0] = max(caddr[0],0); if(cr(0,0) < cw(0,0)) { r4 = buff(0,0); } else { if(pw(0,0) != co(0,cr(0,0))) { ASSUME(cr(0,0) >= old_cr); } pw(0,0) = co(0,cr(0,0)); r4 = mem(0,cr(0,0)); } ASSUME(creturn[0] >= cr(0,0)); // call void @llvm.dbg.value(metadata i64 %4, metadata !106, metadata !DIExpression()), !dbg !134 // %conv = trunc i64 %4 to i32, !dbg !87 // call void @llvm.dbg.value(metadata i32 %conv, metadata !103, metadata !DIExpression()), !dbg !113 // %cmp = icmp eq i32 %conv, 2, !dbg !88 // %conv8 = zext i1 %cmp to i32, !dbg !88 // call void @llvm.dbg.value(metadata i32 %conv8, metadata !107, metadata !DIExpression()), !dbg !113 // call void @llvm.dbg.value(metadata i64* @atom_1_X0_1, metadata !109, metadata !DIExpression()), !dbg !138 // %5 = load atomic i64, i64* @atom_1_X0_1 seq_cst, align 8, !dbg !90 // LD: Guess old_cr = cr(0,2); cr(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,2)] == 0); ASSUME(cr(0,2) >= iw(0,2)); ASSUME(cr(0,2) >= 0); ASSUME(cr(0,2) >= cdy[0]); ASSUME(cr(0,2) >= cisb[0]); ASSUME(cr(0,2) >= cdl[0]); ASSUME(cr(0,2) >= cl[0]); // Update creg_r5 = cr(0,2); crmax(0,2) = max(crmax(0,2),cr(0,2)); caddr[0] = max(caddr[0],0); if(cr(0,2) < cw(0,2)) { r5 = buff(0,2); } else { if(pw(0,2) != co(2,cr(0,2))) { ASSUME(cr(0,2) >= old_cr); } pw(0,2) = co(2,cr(0,2)); r5 = mem(2,cr(0,2)); } ASSUME(creturn[0] >= cr(0,2)); // call void @llvm.dbg.value(metadata i64 %5, metadata !111, metadata !DIExpression()), !dbg !138 // %conv12 = trunc i64 %5 to i32, !dbg !91 // call void @llvm.dbg.value(metadata i32 %conv12, metadata !108, metadata !DIExpression()), !dbg !113 // %and = and i32 %conv8, %conv12, !dbg !92 creg_r6 = max(max(creg_r4,0),creg_r5); ASSUME(active[creg_r6] == 0); r6 = (r4==2) & r5; // call void @llvm.dbg.value(metadata i32 %and, metadata !112, metadata !DIExpression()), !dbg !113 // %cmp13 = icmp eq i32 %and, 1, !dbg !93 // br i1 %cmp13, label %if.then, label %if.end, !dbg !95 old_cctrl = cctrl[0]; cctrl[0] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[0] >= old_cctrl); ASSUME(cctrl[0] >= creg_r6); ASSUME(cctrl[0] >= 0); if((r6==1)) { goto T0BLOCK1; } else { goto T0BLOCK2; } T0BLOCK1: // call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([100 x i8], [100 x i8]* @.str.1, i64 0, i64 0), i32 noundef 53, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #7, !dbg !96 // unreachable, !dbg !96 r7 = 1; T0BLOCK2: // %6 = bitcast i64* %thr1 to i8*, !dbg !99 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %6) #6, !dbg !99 // %7 = bitcast i64* %thr0 to i8*, !dbg !99 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %7) #6, !dbg !99 // ret i32 0, !dbg !100 ret_thread_0 = 0; ASSERT(r7== 0); }
13cfaa639ec29c7590f65d6a1334583e19e328ff
61e4fa969cd7c5cfb2ae7cd3df076b94db4c611f
/Client/CommandBars/XTPCustomizeOptionsPage.h
2f73291140c2e4a741d28d4a674bd0fe3c3b5344
[]
no_license
wonderkun/star_Rat_3.1
95135dd0bf6c3c9b1767367faa4092b75bf2555f
3037ebcff27832914b396bc1459913fd3640f4b1
refs/heads/master
2023-04-20T08:31:56.841790
2021-05-08T10:14:09
2021-05-08T10:14:09
338,203,129
2
2
null
null
null
null
UTF-8
C++
false
false
5,246
h
// XTPCustomizeOptionsPage.h : interface for the CXTPCustomizeOptionsPage class. // // This file is a part of the XTREME COMMANDBARS MFC class library. // (c)1998-2011 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN // CONSENT OF CODEJOCK SOFTWARE. // // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A // SINGLE COMPUTER. // // CONTACT INFORMATION: // [email protected] // http://www.codejock.com // ///////////////////////////////////////////////////////////////////////////// //{{AFX_CODEJOCK_PRIVATE #if !defined(__XTPCUSTOMIZEOPTIONSPAGE_H__) #define __XTPCUSTOMIZEOPTIONSPAGE_H__ //}}AFX_CODEJOCK_PRIVATE #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CXTPCustomizeSheet; class CXTPCommandBars; #include "Common/XTPWinThemeWrapper.h" #include "../Controls/Resize/XTPResizeRect.h" #include "../Controls/Resize/XTPResizePoint.h" #include "../Controls/Resize/XTPResize.h" #include "../Controls/Dialog/XTPPropertyPage.h" //=========================================================================== // Summary: // CXTPGroupLine is a CStatic derived class. // It used in CXTPCustomizeOptionsPage page to draw group line static control. //=========================================================================== class _XTP_EXT_CLASS CXTPGroupLine : public CStatic { public: //----------------------------------------------------------------------- // Summary: // Constructs a CXTPGroupLine object //----------------------------------------------------------------------- CXTPGroupLine(); protected: //{{AFX_CODEJOCK_PRIVATE DECLARE_MESSAGE_MAP() //{{AFX_MSG(CXTPGroupLine) void OnPaint(); //}}AFX_MSG //}}AFX_CODEJOCK_PRIVATE private: CXTPWinThemeWrapper m_themeButton; }; //=========================================================================== // Summary: // CXTPCustomizeOptionsPage is a CPropertyPage derived class. // It represents the Options page of the Customize dialog. //=========================================================================== class _XTP_EXT_CLASS CXTPCustomizeOptionsPage : public CXTPPropertyPage { public: //----------------------------------------------------------------------- // Summary: // Constructs a CXTPCustomizeOptionsPage object // Parameters: // pSheet - Points to a CXTPCustomizeSheet object that this page // belongs to. //----------------------------------------------------------------------- CXTPCustomizeOptionsPage(CXTPCustomizeSheet* pSheet); //----------------------------------------------------------------------- // Summary: // Destroys a CXTPCustomizeOptionsPage object, handles cleanup // and deallocation. //----------------------------------------------------------------------- ~CXTPCustomizeOptionsPage(); public: //----------------------------------------------------------------------- // Summary: // Retrieves parent command bars. // Returns: // A pointer to a CXTPCommandBars object //----------------------------------------------------------------------- CXTPCommandBars* GetCommandBars() const; protected: //----------------------------------------------------------------------- // Summary: // Adds animation string from resource // Parameters: // nIDResource - Specifies the string resource ID to add. //----------------------------------------------------------------------- void AddComboString(UINT nIDResource); protected: //{{AFX_CODEJOCK_PRIVATE DECLARE_MESSAGE_MAP() //{{AFX_VIRTUAL(CXTPCustomizeOptionsPage) virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL //{{AFX_MSG(CXTPCustomizeOptionsPage) afx_msg void OnCheckFullMenus(); virtual BOOL OnInitDialog(); afx_msg void OnCheckAfterdelay(); afx_msg void OnCheckLargeicons(); afx_msg void OnCheckScreenttips(); afx_msg void OnCheckShortcuts(); afx_msg void OnResetData(); afx_msg void OnAnimationChanged(); //}}AFX_MSG //}}AFX_CODEJOCK_PRIVATE public: enum { IDD = XTP_IDD_PAGE_OPTIONS // Property page identifier }; BOOL m_bAlwaysShowFullMenus; // TRUE to show full menus always BOOL m_bShowFullAfterDelay; // TRUE to show menus after delay BOOL m_bLargeIcons; // TRUE to show large icons BOOL m_bToolBarScreenTips; // TRUE to show tool tips BOOL m_bToolBarAccelTips; // TRUE to show accelerators with tool tips CComboBox m_comboAnimationType; // Animation combo box int m_nAnimationType; // Selected animation type CXTPGroupLine m_wndPersonalizedGroup; // Personalized group line CXTPGroupLine m_wndOtherGroup; // Other group line protected: CXTPCustomizeSheet* m_pSheet; // Parent sheet. }; #endif // !defined(__XTPCUSTOMIZEOPTIONSPAGE_H__)
f736fe4ac21280afc69a18f86e0f59e49cd94668
88ae8695987ada722184307301e221e1ba3cc2fa
/components/security_interstitials/content/security_interstitial_controller_client.cc
fc14782508ca68b30f7ae9d3bfa195e49b6ba22e
[ "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
5,464
cc
// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/security_interstitials/content/security_interstitial_controller_client.h" #include <utility> #include "components/prefs/pref_service.h" #include "components/safe_browsing/core/common/features.h" #include "components/safe_browsing/core/common/safe_browsing_prefs.h" #include "components/safe_browsing/core/common/safe_browsing_settings_metrics.h" #include "components/security_interstitials/content/settings_page_helper.h" #include "components/security_interstitials/core/metrics_helper.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" #include "content/public/common/referrer.h" using content::Referrer; namespace security_interstitials { SecurityInterstitialControllerClient::SecurityInterstitialControllerClient( content::WebContents* web_contents, std::unique_ptr<MetricsHelper> metrics_helper, PrefService* prefs, const std::string& app_locale, const GURL& default_safe_page, std::unique_ptr<SettingsPageHelper> settings_page_helper) : ControllerClient(std::move(metrics_helper)), web_contents_(web_contents), prefs_(prefs), app_locale_(app_locale), default_safe_page_(default_safe_page), settings_page_helper_(std::move(settings_page_helper)) {} SecurityInterstitialControllerClient::~SecurityInterstitialControllerClient() {} void SecurityInterstitialControllerClient::GoBack() { // TODO(crbug.com/1077074): This method is left so class can be non abstract // since it is still instantiated in tests. This can be cleaned up by having // tests use a subclass. NOTREACHED(); } bool SecurityInterstitialControllerClient::CanGoBack() { return web_contents_->GetController().CanGoBack(); } void SecurityInterstitialControllerClient::GoBackAfterNavigationCommitted() { // If the offending entry has committed, go back or to a safe page without // closing the error page. This error page will be closed when the new page // commits. if (web_contents_->GetController().CanGoBack()) { web_contents_->GetController().GoBack(); } else { // For <webview> tags (also known as guests), use about:blank as the // default safe page. This is because unlike a normal WebContents, guests // cannot load pages like WebUI, including the NTP, which is often used as // the default safe page here. GURL url_to_load = web_contents_->GetSiteInstance()->IsGuest() ? GURL(url::kAboutBlankURL) : default_safe_page_; web_contents_->GetController().LoadURL(url_to_load, content::Referrer(), ui::PAGE_TRANSITION_AUTO_TOPLEVEL, std::string()); } } void SecurityInterstitialControllerClient::Proceed() { // TODO(crbug.com/1077074): This method is left so class can be non abstract // since it is still instantiated in tests. This can be cleaned up by having // tests use a subclass. NOTREACHED(); } void SecurityInterstitialControllerClient::Reload() { web_contents_->GetController().Reload(content::ReloadType::NORMAL, true); } void SecurityInterstitialControllerClient::OpenUrlInCurrentTab( const GURL& url) { content::OpenURLParams params(url, Referrer(), WindowOpenDisposition::CURRENT_TAB, ui::PAGE_TRANSITION_LINK, false); web_contents_->OpenURL(params); } void SecurityInterstitialControllerClient::OpenUrlInNewForegroundTab( const GURL& url) { content::OpenURLParams params(url, Referrer(), WindowOpenDisposition::NEW_FOREGROUND_TAB, ui::PAGE_TRANSITION_LINK, false); web_contents_->OpenURL(params); } void SecurityInterstitialControllerClient::OpenEnhancedProtectionSettings() { #if BUILDFLAG(IS_ANDROID) settings_page_helper_->OpenEnhancedProtectionSettings(web_contents_); #else if (safe_browsing::kEsbIphBubbleAndCollapseSettingsEnableIph.Get()) { safe_browsing::LogShowEnhancedProtectionAction(); settings_page_helper_->OpenEnhancedProtectionSettingsWithIph(web_contents_); } else { settings_page_helper_->OpenEnhancedProtectionSettings(web_contents_); } #endif } const std::string& SecurityInterstitialControllerClient::GetApplicationLocale() const { return app_locale_; } PrefService* SecurityInterstitialControllerClient::GetPrefService() { return prefs_; } const std::string SecurityInterstitialControllerClient::GetExtendedReportingPrefName() const { return prefs::kSafeBrowsingScoutReportingEnabled; } bool SecurityInterstitialControllerClient::CanLaunchDateAndTimeSettings() { NOTREACHED(); return false; } void SecurityInterstitialControllerClient::LaunchDateAndTimeSettings() { NOTREACHED(); } bool SecurityInterstitialControllerClient::CanGoBackBeforeNavigation() { // If checking before navigating to the interstitial, back to safety is // possible if the current entry is not the initial NavigationEtry. This // preserves old behavior to when we return nullptr instead of the initial // entry when no navigation has committed. return !web_contents_->GetController() .GetLastCommittedEntry() ->IsInitialEntry(); } } // namespace security_interstitials
43c50342a8b5a275204eea09cecb80a7bfd67c3d
530484f29dd881501aa0cc6549af507568079ae3
/Paycheck.cpp
0951e16dadeeda90fa4bc7c1b9d1edd0a5f620e2
[]
no_license
marko1597/Programming-competitions
c89500b7d9747290247e95268727bafa947a7b50
192574924fee8c2a5b2e229ad23c8e8c02d7fc66
refs/heads/master
2016-08-09T21:03:53.044305
2015-11-07T16:40:34
2015-11-07T16:40:34
44,918,803
0
0
null
null
null
null
UTF-8
C++
false
false
271
cpp
#include <cstdio> using namespace std; int main(){ int n,lj,p; unsigned long long plac=0,ljud=0; double ans; scanf("%d",&n); for(int x=0;x<n;x++){ scanf("%d %d",&lj,&p); plac+=lj*p; ljud+=lj; } ans=double(plac)/double(ljud); printf("%.2f",ans); }
955c76b32ecf028bb28bb26a6b04c21700c57527
673d6511f4a7d596a00f1dee70cbf056e514781a
/Projects/proj_4_JRA_V1.0/proj_4_JRA/mainHeader.h
a4577373ca9033eba830260a886c396927ce3945
[]
no_license
WizardRyan/CS1410
1d747b8e59d33b2d86e597e76d6d486a5ba79ada
65d223dce4cdc3442766798869b2d5444f032f68
refs/heads/master
2021-01-20T12:54:58.623751
2018-05-05T22:55:38
2018-05-05T22:55:38
101,715,422
0
0
null
null
null
null
UTF-8
C++
false
false
614
h
//I declare that the following source code was written solely by me. //I understand that copying any source code, in whole or in part, // constitutes cheating, and that I will receive a zero on this project // if I am found in violation of this policy. #pragma once #include <iostream> using namespace std; //prints out the paycheck of an employee //accepts e, an employee object, by constant reference //no return void printCheck(const Employee& e); //prints out a character iteravely //accepts c, the character to be printed, and num, the amount of times to print //no return void drawChar(char c, int num);
df5374d8a83d359108715f1146a48f0415dac1d1
2d7e2307a685d1fdbd6fff978f5be0a372df53b0
/PDFParser/PDFParser/VdpTemplateWriter.cpp
c186581acf2098103658c7b51ec192b40b74c36c
[]
no_license
arcreyes/podofo_x64
f385b43184a590dfaf82083752242cae3c2cee38
2f8673e9508e7fc3604b9b16968851e7a3f1fc66
refs/heads/master
2021-01-10T13:52:08.242763
2016-01-27T23:30:22
2016-01-27T23:30:22
47,912,828
0
0
null
null
null
null
UTF-8
C++
false
false
3,840
cpp
#include "VdpTemplateWriter.h" VdpTemplateWriter::VdpTemplateWriter(PdfMemDocument *pSourceDocument) : m_pSourceDocument(pSourceDocument) { m_pTargetDocument = new PdfMemDocument(); m_pTargetDocument->SetPdfVersion(m_pSourceDocument->GetPdfVersion()); PdfInfo *sInfo(m_pSourceDocument->GetInfo()); PdfInfo *tInfo(m_pTargetDocument->GetInfo()); if (sInfo->GetAuthor() != PdfString::StringNull) tInfo->SetAuthor(sInfo->GetAuthor()); if (sInfo->GetCreator() != PdfString::StringNull) tInfo->SetCreator(sInfo->GetCreator()); if (sInfo->GetSubject() != PdfString::StringNull) tInfo->SetSubject(sInfo->GetSubject()); if (sInfo->GetTitle() != PdfString::StringNull) tInfo->SetTitle(sInfo->GetTitle()); if (sInfo->GetKeywords() != PdfString::StringNull) tInfo->SetKeywords(sInfo->GetKeywords()); if (sInfo->GetTrapped() != PdfName::KeyNull) tInfo->SetTrapped(sInfo->GetTrapped()); } VdpTemplateWriter::~VdpTemplateWriter() { if (m_pTargetDocument) delete m_pTargetDocument; } int VdpTemplateWriter::Write(const char *pszTemplateFilePath, VdpDocument *pVdpDocument, int templatePageCount) { int iRet = 0; int pageCount = m_pSourceDocument->GetPageCount(); if (templatePageCount > pageCount) { return -1; } for (int i = 0; i < templatePageCount; i++) { PdfPage *pSrcPage = m_pSourceDocument->GetPage(i); if (pSrcPage == NULL) { return -2; } PdfPage *pDestPage = m_pTargetDocument->CreatePage(pSrcPage->GetPageSize()); if (pDestPage == NULL) { return -2; } iRet = this->CopyPage(pSrcPage, pDestPage); if (iRet < 0) { break; } //iRet = this->RemoveVariableData(pDestPage, pVdpDocument->GetPage(i)); //if (iRet < 0) //{ // break; //} } m_pTargetDocument->Write(pszTemplateFilePath); return iRet; } int VdpTemplateWriter::CopyPage(PdfPage *pSrcPage, PdfPage *pDestPage) { int iRet = 0; if (pSrcPage->GetObject()->IsDictionary()) { TKeyMap resmap = pSrcPage->GetObject()->GetDictionary().GetKeys(); for (TCIKeyMap itres = resmap.begin(); itres != resmap.end(); ++itres) { if (itres->first == PdfName("Parent")) continue; PdfObject *o = itres->second; pDestPage->GetObject()->GetDictionary().AddKey(itres->first, this->MigrateResource(o)); } if (pSrcPage->GetObject()->HasStream()) { *(pDestPage->GetObject()->GetStream()) = *(pSrcPage->GetObject()->GetStream()); } } else { iRet = -3; //This is not possible! } return iRet; } PdfObject* VdpTemplateWriter::MigrateResource(PdfObject * obj) { PdfObject *ret(0); if (obj->IsDictionary()) { ret = m_pTargetDocument->GetObjects().CreateObject(*obj); TKeyMap resmap = obj->GetDictionary().GetKeys(); for (TCIKeyMap itres = resmap.begin(); itres != resmap.end(); ++itres) { PdfObject *o = itres->second; ret->GetDictionary().AddKey(itres->first, this->MigrateResource(o)); } if (obj->HasStream()) { *(ret->GetStream()) = *(obj->GetStream()); } } else if (obj->IsArray()) { PdfArray carray(obj->GetArray()); PdfArray narray; for (unsigned int ci = 0; ci < carray.GetSize(); ++ci) { PdfObject *co(this->MigrateResource(&carray[ci])); narray.push_back(*co); } ret = m_pTargetDocument->GetObjects().CreateObject(narray); } else if (obj->IsReference()) { if (m_map.find(obj->GetReference().ToString()) != m_map.end()) { return new PdfObject(m_map[obj->GetReference().ToString()]->Reference()); } PdfObject * o(this->MigrateResource(m_pSourceDocument->GetObjects().GetObject(obj->GetReference()))); ret = new PdfObject(o->Reference()); } else { ret = new PdfObject(*obj); } m_map.insert(std::pair<std::string, PdfObject*>(obj->Reference().ToString(), ret)); return ret; } int VdpTemplateWriter::RemoveVariableData(PdfPage *pPdfPage, VdpPage *pVdpPage) { int iRet = 0; return iRet; }
39c8e2fbbbc73adc8cff9afbc5be18b2b140299b
05b5fbf24c6cc8046b7e9807089aff58a344c4d5
/UserLevelUpTable.cpp
05e63b7b6d8e69de418e71f3be0d3882bed9cc6d
[]
no_license
xiamingxing/maya
50687354706d3fd041fb362b06eb705e838eed04
ffb2e6583a75c894884fea46b19bea8ed1a590a5
refs/heads/master
2020-04-02T04:42:44.355405
2016-07-19T04:42:59
2016-07-19T04:42:59
63,661,214
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
// UserLevelUpTable.cpp: implementation of the CUserLevelUpTable class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "server.h" #include "UserLevelUpTable.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CUserLevelUpTable::CUserLevelUpTable() { m_sLevel = 0; m_sHP = 0; m_sPP = 0; m_sDamage = 0; m_sDefense = 0; m_sWeight = 0; } CUserLevelUpTable::~CUserLevelUpTable() { }
ef050d2bf67be128ea23a33b7cd7f87f54f8a93a
3ec3b97044e4e6a87125470cfa7eef535f26e376
/darkbits-secret_of_fantasy_2/src/ActionTriggerLibrary.hpp
86677e5e663a7dd7a7f10a93bbd090aed7ce1202
[]
no_license
strategist922/TINS-Is-not-speedhack-2010
6d7a43ebb9ab3b24208b3a22cbcbb7452dae48af
718b9d037606f0dbd9eb6c0b0e021eeb38c011f9
refs/heads/master
2021-01-18T14:14:38.724957
2010-10-17T14:04:40
2010-10-17T14:04:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
314
hpp
#pragma once class ActionTrigger; class ActionTriggerLibrary { public: static void init(); static const ActionTrigger &find(const std::string &name); private: ActionTriggerLibrary() {}; static void add(ActionTrigger &trigger); static std::map<std::string, ActionTrigger> myTriggers; };
a61452e234b6c759bdb5296181647f13bfcdcc7f
84db845cc485c91e6dbc44e4944a85d27518c9a8
/2018/2018_Aug/Week5/CF655E.cpp
f29a3078abdea3b62a0622a3e39b11c46b213c08
[]
no_license
sunyinkai/ACM_ICPC
c13398c6963f0267db282e71d11baaf7ff619c71
8e54240df29b4a722efd27b5866384ba84f859a4
refs/heads/master
2021-07-07T07:39:36.553203
2020-07-26T06:50:54
2020-07-26T06:50:54
158,057,635
2
0
null
null
null
null
UTF-8
C++
false
false
988
cpp
#include<cstdio> #include<cstring> const int MAXN=1e6+7; const long long mod=1e9+7; char s[MAXN]; int id[27];//某字符最早出现的位置 long long dp[26]; //dp[i][j]:当前处理到i位置,以j结尾的子序列有多少个 int main(){ int N,M;scanf("%d%d",&N,&M); scanf("%s",s); int len=strlen(s); long long sum=1; for(int i=0;i<len;++i){ int x=s[i]-'a'; id[x]=i+1; long long next=0; for(int j=0;j<26;++j){ if(j==x){ dp[j]=sum; }else{ dp[j]=dp[j]; } next=(next+dp[j])%mod; } sum=(next+1)%mod;//1为空字符 } //printf("%d\n",sum); //枚举加的字母?不可行,因为数值已经取过模,无法枚举 //选最久没有出现的那个? for(int i=0;i<N;++i){ int mx=-1; for(int j=0;j<M;++j){ if(mx==-1||id[j]<id[mx])mx=j; } id[mx]=len+i+1; long long next=0; for(int j=0;j<26;++j){ if(j==mx)dp[j]=sum; else dp[j]=dp[j]; next=(next+dp[j])%mod; } sum=(next+1)%mod; } printf("%lld\n",sum); return 0; }
40535dd557f37a9fb0e53d77532416e0dcd571ab
ba225468ef163528ea48b091b5d5e3255ff888cb
/ToolCode/TblDef.cpp
3ead50abd6fe5c98fa99e663d16226efe3511c96
[]
no_license
presscad/ToolKits-1
aef98bfbce74cfe999a6faa1da83502685366cc3
29c38e692d04a78ab5d31c28d9602cfb1a5db1b5
refs/heads/master
2021-02-15T20:00:57.339658
2020-03-04T08:12:02
2020-03-04T08:12:02
244,927,268
0
1
null
2020-03-04T14:52:44
2020-03-04T14:52:44
null
GB18030
C++
false
false
18,843
cpp
#include "stdafx.h" #include "TblDef.h" GRID_DATA_TYPE IntToGridDataType(int nType) { switch(nType) { case GRID_VT_EMPTY: return GRID_VT_EMPTY; case GRID_VT_NULL: return GRID_VT_NULL; case GRID_VT_I2: return GRID_VT_I2; case GRID_VT_I4: return GRID_VT_I4; case GRID_VT_R4: return GRID_VT_R4; case GRID_VT_R8: return GRID_VT_R8; case GRID_VT_DATE: return GRID_VT_DATE; case GRID_VT_STRING: return GRID_VT_STRING; case GRID_VT_POINTER: return GRID_VT_POINTER; case GRID_VT_BOOL: return GRID_VT_BOOL; default: return GRID_VT_EMPTY; } } //----------------异构单元格内容类型类------------------------------- CGridVariant::CGridVariant() { memset(this,0,sizeof(CGridVariant)); vType = GRID_VT_EMPTY; //未指定数据类型 } CGridVariant::CGridVariant(CGridVariant& SourceObj) { *this = SourceObj; } CGridVariant::~CGridVariant() { ClearVariant(); } void CGridVariant::ClearVariant() //清空异构变量所控内存并清零存储区 { GRID_DATA_TYPE old_type = vType; if(vType==GRID_VT_STRING&&sVal) free(sVal); //清空字符串空间 memset(this,0,sizeof(CGridVariant)); //清零存储区 vType = old_type; //恢得原数据类型 } void CGridVariant::ChangeToType(GRID_DATA_TYPE data_type) { if(vType==data_type) return; else { ClearVariant(); vType = data_type; } } //重载赋值操作符以防赋值时内存泄漏 CGridVariant& CGridVariant::operator = (const CGridVariant &var) { if(var.vType==GRID_VT_STRING) SetGridString(var.sVal); else memcpy(this,&var,sizeof(CGridVariant)); return *this; } BOOL CGridVariant::SetGridString(char *string, BOOL bForceToString/*=TRUE*/) { if(vType!=GRID_VT_STRING&&!bForceToString||string==NULL) return FALSE; //类型不匹配 else if(vType!=GRID_VT_STRING) { ChangeToType(GRID_VT_STRING); sVal = (char*)realloc(sVal,strlen(string)+2); strcpy(sVal,string); return TRUE; } else { sVal = (char*)realloc(sVal,strlen(string)+2); strcpy(sVal,string); return TRUE; } } //----------------表格单元格类--------------------------------------- #ifdef __DRAWING_CONTEXT_ double CGrid::PREFER_TEXT_SIZE=2; #endif CGrid::CGrid() { grid_mode = STRING_GRID; feature = iRow = iColumn = 0; m_bVGridVirtual = m_bHGridVirtual = FALSE; m_bSelectStatus = FALSE; data.vType = GRID_VT_STRING; //data.SetGridString("我是好人!"); mark.bTitle = FALSE; mark.ext_feature = mark.type_id = 0; #ifdef __DRAWING_CONTEXT_ textsize = PREFER_TEXT_SIZE;//字高sys.dim_map.fNumericTextSize; text_angle = 0; #endif } CGrid::~CGrid() { } CGrid& CGrid::operator = (CGrid& grid) { Copy(grid); return *this; } void CGrid::Copy(const CGrid &grid) { m_bHGridVirtual = grid.m_bHGridVirtual; m_bVGridVirtual = grid.m_bVGridVirtual; data = grid.data; feature = grid.feature; grid_mode = grid.grid_mode; #ifndef __DRAWING_CONTEXT_ font_style = grid.font_style; #else textsize = grid.textsize; #endif; iRow = grid.iRow; iColumn = grid.iColumn; } void CGrid::Export(FILE *fp) { fprintf(fp,"GridMode=%d\n",grid_mode); fprintf(fp,"HorizonVirtual=%d\n",m_bHGridVirtual); fprintf(fp,"VerticalVirtual=%d\n",m_bVGridVirtual); fprintf(fp,"Feature=%ld\n",feature); fprintf(fp,"\n--FontStyleStart\n"); #ifndef __DRAWING_CONTEXT_ font_style.Export(fp); #else fprintf(fp,"%.1f\n",textsize); #endif fprintf(fp,"\n--GridDataStart\n"); data.Export(fp); if(mark.bTitle) fprintf(fp,"IsTitle=1\n"); else fprintf(fp,"IsTitle=0\n"); fprintf(fp,"TypeId=%ld\n",mark.type_id); fprintf(fp,"ExtFeature=%ld\n",mark.ext_feature); fprintf(fp,"--NewGridEnd\n"); } void CGrid::Import(FILE *fp) { char sLineText[200],*sToken=NULL,separator[]=" =,\r\n"; while(feof(fp)==0) { fgets(sLineText,200,fp); sToken = strtok(sLineText,separator); if(sToken&&stricmp(sToken,"GridMode")==0) { int mode; sToken = strtok(NULL,separator); if(sToken) { mode = atoi(sToken); if(mode==STRING_GRID) grid_mode = STRING_GRID; else if(mode==GRAPH_BLOCK_GRID) grid_mode = GRAPH_BLOCK_GRID; else if(mode==GRAPH_BLOCK_GRID) grid_mode = GRAPH_BLOCK_GRID; } } else if(sToken&&stricmp(sToken,"HorizonVirtual")==0) { sToken = strtok(NULL,separator); if(sToken) m_bHGridVirtual = atoi(sToken); } else if(sToken&&stricmp(sToken,"VerticalVirtual")==0) { sToken = strtok(NULL,separator); if(sToken) m_bVGridVirtual = atoi(sToken); } else if(sToken&&stricmp(sToken,"Feature")==0) { sToken = strtok(NULL,separator); if(sToken) feature = atoi(sToken); } else if(sToken&&stricmp(sToken,"--FontStyleStart")==0) { #ifndef __DRAWING_CONTEXT_ font_style.Import(fp); #else sToken = strtok(NULL,separator); if(sToken) textsize = atof(sToken); #endif } else if(sToken&&stricmp(sToken,"--GridDataStart")==0) { data.Import(fp); } else if(sToken&&stricmp(sToken,"IsTitle")==0) { sToken = strtok(NULL,separator); if(sToken) mark.bTitle = atoi(sToken); } else if(sToken&&stricmp(sToken,"TypeId")==0) { sToken = strtok(NULL,separator); if(sToken) mark.type_id = atoi(sToken); } else if(sToken&&stricmp(sToken,"ExtFeature")==0) { sToken = strtok(NULL,separator); if(sToken) mark.ext_feature = atoi(sToken); break; } else if(sToken&&stricmp(sToken,"--NewGridEnd")==0) break; } } CGrid::CFontStyle& CGrid::CFontStyle::operator =(const CGrid::CFontStyle& fontstyle) { CoTaskMemFree(lfFaceName); //清除以前的字样名称空间 memcpy(this,&fontstyle,sizeof(CFontStyle)); lfFaceName=NULL; //赋为空指针 SetFaceName(fontstyle.lfFaceName); return *this; } CGrid::CFontStyle& CGrid::CFontStyle::operator =(const LOGFONT& fontstyle) { CopyFromLOGFONT(fontstyle); return *this; } CGrid::CFontStyle::operator LOGFONT()const { LOGFONT logfont; CopyToLOGFONT(logfont); return logfont; } CGrid::CFontStyle::CFontStyle() { lfHeight =-13; lfWidth = 0; lfEscapement = 0; lfOrientation = 0; lfWeight = 400; lfItalic = 0; lfUnderline = 0; lfStrikeOut = 0; lfCharSet = 134; //CHARSET_GB132 lfOutPrecision = 3; lfClipPrecision = 2; lfQuality = 1; lfPitchAndFamily= 2; lfFaceName = NULL; crTextColor = 0; //文本颜色为黑色 SetFaceName(_T("宋体")); m_nTextAlignFlags = DT_CENTER|DT_VCENTER|DT_SINGLELINE; //文字对齐方式 m_fLeftDist=m_fRightDist=0.1; //左右内边距----cm为单位 m_fTopDist=m_fBottomDist=0.05; //上下内边距----cm为单位 } CGrid::CFontStyle::~CFontStyle() { if(lfFaceName) CoTaskMemFree(lfFaceName); } int CGrid::CFontStyle::SetFaceName(const TCHAR *face_name) { if(face_name==NULL) return 0; int n = (int)_tcslen(face_name); if(lfFaceName) { if(32>=n) { for(int i=0;i<32;i++) lfFaceName[i] = face_name[i]; } else { CoTaskMemFree(lfFaceName); lfFaceName = (TCHAR*)CoTaskMemAlloc(sizeof(TCHAR)*n); for(int i=0;i<32;i++) lfFaceName[i] = face_name[i]; } } else { lfFaceName = (TCHAR*)CoTaskMemAlloc(sizeof(TCHAR)*128); //最小是64,否则跳错 for(int i=0;i<32;i++) lfFaceName[i] = face_name[i]; } return n; } void CGrid::CFontStyle::CopyFromLOGFONT(const LOGFONT &logfont) { lfHeight =logfont.lfHeight; lfWidth =logfont.lfWidth; lfEscapement =logfont.lfEscapement; lfOrientation =logfont.lfOrientation; lfWeight =logfont.lfWeight; lfItalic =logfont.lfItalic; lfUnderline =logfont.lfUnderline; lfStrikeOut =logfont.lfStrikeOut; lfCharSet =logfont.lfCharSet; lfOutPrecision =logfont.lfOutPrecision; lfClipPrecision =logfont.lfClipPrecision; lfQuality =logfont.lfQuality; lfPitchAndFamily =logfont.lfPitchAndFamily; SetFaceName(logfont.lfFaceName); } void CGrid::CFontStyle::CopyToLOGFONT(LOGFONT &logfont)const { logfont.lfHeight =lfHeight; logfont.lfWidth =lfWidth; logfont.lfEscapement =lfEscapement; logfont.lfOrientation =lfOrientation; logfont.lfWeight =lfWeight; logfont.lfItalic =lfItalic; logfont.lfUnderline =lfUnderline; logfont.lfStrikeOut =lfStrikeOut; logfont.lfCharSet =lfCharSet; logfont.lfOutPrecision =lfOutPrecision; logfont.lfClipPrecision =lfClipPrecision; logfont.lfQuality =lfQuality; logfont.lfPitchAndFamily=lfPitchAndFamily; if(lfFaceName==NULL) strcpy(logfont.lfFaceName,""); else strcpy(logfont.lfFaceName, lfFaceName); } BOOL CGrid::CFontStyle::operator ==(const CFontStyle& fontstyle)const { if(*this!=fontstyle) return FALSE; else return TRUE; } BOOL CGrid::CFontStyle::operator !=(const CFontStyle& fontstyle)const { if(lfHeight!=fontstyle.lfHeight) return TRUE; else if(lfWidth!=fontstyle.lfWidth) return TRUE; else if(lfEscapement!=fontstyle.lfEscapement) return TRUE; else if(lfOrientation!=fontstyle.lfOrientation) return TRUE; else if(lfWeight!=fontstyle.lfWeight) return TRUE; else if(lfItalic!=fontstyle.lfItalic) return TRUE; else if(lfUnderline!=fontstyle.lfUnderline) return TRUE; else if(lfStrikeOut!=fontstyle.lfStrikeOut) return TRUE; else if(lfCharSet!=fontstyle.lfCharSet) return TRUE; else if(lfOutPrecision!=fontstyle.lfOutPrecision) return TRUE; else if(lfClipPrecision!=fontstyle.lfClipPrecision) return TRUE; else if(lfQuality!=fontstyle.lfQuality) return TRUE; else if(lfPitchAndFamily!=fontstyle.lfPitchAndFamily) return TRUE; else if(crTextColor!=fontstyle.crTextColor) return TRUE; else if(lfFaceName&&fontstyle.lfFaceName) { if(_tcsicmp(lfFaceName,fontstyle.lfFaceName)!=0) return TRUE; else return FALSE; } else if((lfFaceName!=NULL&&_tcslen(lfFaceName)>0)||(fontstyle.lfFaceName!=NULL&&_tcslen(fontstyle.lfFaceName)>0)) return TRUE; else return FALSE; } void CGrid::CFontStyle::Import(FILE* fp) { char sLineText[200],*sToken=NULL,separator[]=" =,\r\n"; while(feof(fp)==0) { fgets(sLineText,200,fp); sToken = strtok(sLineText,separator); if(sToken&&stricmp(sToken,"TextColor")==0) { sToken = strtok(NULL,separator); if(sToken) crTextColor = atoi(sToken); } else if(sToken&&stricmp(sToken,"CharSet")==0) { sToken = strtok(NULL,separator); if(sToken) lfCharSet = atoi(sToken); } else if(sToken&&stricmp(sToken,"ClipPrecision")==0) { sToken = strtok(NULL,separator); if(sToken) lfClipPrecision = atoi(sToken); } else if(sToken&&stricmp(sToken,"OutPrecision")==0) { sToken = strtok(NULL,separator); if(sToken) lfOutPrecision = atoi(sToken); } else if(sToken&&stricmp(sToken,"Escapement")==0) { sToken = strtok(NULL,separator); if(sToken) lfEscapement = atoi(sToken); } else if(sToken&&stricmp(sToken,"Orientation")==0) { sToken = strtok(NULL,separator); if(sToken) lfOrientation = atoi(sToken); } else if(sToken&&stricmp(sToken,"FaceName")==0) { size_t n=32; sToken = strtok(NULL,separator); n = min(32,strlen(sToken)); if(sToken) SetFaceName(sToken); } else if(sToken&&stricmp(sToken,"Height")==0) { sToken = strtok(NULL,separator); if(sToken) lfHeight = atoi(sToken); } else if(sToken&&stricmp(sToken,"Width")==0) { sToken = strtok(NULL,separator); if(sToken) lfWidth = atoi(sToken); fprintf(fp,"Width=%d\n",lfWidth); } else if(sToken&&stricmp(sToken,"Weight")==0) { sToken = strtok(NULL,separator); if(sToken) lfWeight = atoi(sToken); } else if(sToken&&stricmp(sToken,"Italic")==0) { int key; sToken = strtok(NULL,separator); if(sToken) key = atoi(sToken); if(key) lfItalic = 1; else lfItalic = 0; } else if(sToken&&stricmp(sToken,"StrikeOut")==0) { sToken = strtok(NULL,separator); if(sToken) lfCharSet = atoi(sToken); if(lfStrikeOut) fprintf(fp,"StrikeOut=1\n"); else fprintf(fp,"StrikeOut=0\n"); } else if(sToken&&stricmp(sToken,"Underline")==0) { int key; sToken = strtok(NULL,separator); if(sToken) key = atoi(sToken); if(key) lfUnderline=1; else lfUnderline=0; } else if(sToken&&stricmp(sToken,"LeftDist")==0) { sToken = strtok(NULL,separator); if(sToken) m_fLeftDist = atof(sToken); } else if(sToken&&stricmp(sToken,"TopDist")==0) { sToken = strtok(NULL,separator); if(sToken) m_fTopDist = atof(sToken); fprintf(fp,"TopDist=%.f\n",m_fTopDist); } else if(sToken&&stricmp(sToken,"RightDist")==0) { sToken = strtok(NULL,separator); if(sToken) m_fRightDist = atof(sToken); } else if(sToken&&stricmp(sToken,"BottomDist")==0) { sToken = strtok(NULL,separator); if(sToken) m_fBottomDist = atof(sToken); } else if(sToken&&stricmp(sToken,"TextAlignFlag")==0) { sToken = strtok(NULL,separator); if(sToken) m_nTextAlignFlags = atoi(sToken); } else if(sToken&&strstr(sToken,"FontStyleEnd")==0) break; } } void CGrid::CFontStyle::Export(FILE* fp) { fprintf(fp,"TextColor=%ld\n",crTextColor); fprintf(fp,"CharSet=%d\n",lfCharSet); fprintf(fp,"ClipPrecision=%d\n",lfClipPrecision); fprintf(fp,"OutPrecision=%d\n",lfOutPrecision); fprintf(fp,"Escapement=%d\n",lfEscapement); fprintf(fp,"Orientation=%d\n",lfOrientation); fprintf(fp,"FaceName=%s\n",lfFaceName); fprintf(fp,"Height=%d\n",lfHeight); fprintf(fp,"Width=%d\n",lfWidth); fprintf(fp,"Weight=%d\n",lfWeight); if(lfItalic) fprintf(fp,"Italic=1\n"); else fprintf(fp,"Italic=0\n"); if(lfStrikeOut) fprintf(fp,"StrikeOut=1\n"); else fprintf(fp,"StrikeOut=0\n"); if(lfUnderline) fprintf(fp,"Underline=1\n"); else fprintf(fp,"Underline=0\n"); fprintf(fp,"LeftDist=%.f\n",m_fLeftDist); fprintf(fp,"TopDist=%.f\n",m_fTopDist); fprintf(fp,"RightDist=%.f\n",m_fRightDist); fprintf(fp,"BottomDist=%.f\n",m_fBottomDist); fprintf(fp,"TextAlignFlag=%d\n",m_nTextAlignFlags); fprintf(fp,"--FontStyleEnd\n\n"); } void CGridVariant::Export(FILE *fp) { CString sLineText; COleDateTime datetime; fprintf(fp,"DataType=%d\n",vType); switch(vType) { case GRID_VT_EMPTY : // 未指定 case GRID_VT_NULL : // 空(暂保留) break; case GRID_VT_I2 : // 2字节带符号整数 sLineText.Format("%d",iVal); break; case GRID_VT_I4 : // 4字节带符号整数 sLineText.Format("%ld",lVal); break; case GRID_VT_R4 : // 4字节浮点数 sLineText.Format("%f",fltVal); break; case GRID_VT_R8 : // 8字节浮点数 sLineText.Format("%lf",dblVal); break; case GRID_VT_DATE : // 日期 datetime = date; sLineText.Format("%d/%d/%d",datetime.GetYear(),datetime.GetMonth(),datetime.GetDay()); break; case GRID_VT_STRING : // 字符串 if(sVal==NULL) sLineText.Empty(); else sLineText.Format("%s",sVal); break; case GRID_VT_POINTER: // 指针 case GRID_VT_BOOL : // 布尔数; TRUE=1, FALSE=0 if(bVal) sLineText = "1"; else sLineText = "0"; break; default: break; } sLineText.Replace("\r","`"); sLineText.Replace("\n","`"); fprintf(fp,"DataValue=%s\n",sLineText); fprintf(fp,"--GridDataEnd\n\n"); } void CGridVariant::Import(FILE *fp) { COleDateTime datetime; int nYear=2000,nMonth=1,nDay=1; char sLineText[500],*sToken=NULL,separator[]=" -/=,"; while(feof(fp)==0) { fgets(sLineText,500,fp); CString ss = sLineText; ss.Replace("`","\n"); ss.Replace("``","\r\n"); sprintf(sLineText,"%s",ss); sToken = strtok(sLineText,separator); if(sToken&&stricmp(sToken,"DataType")==0) { int iType; sToken = strtok(NULL,separator); if(sToken) { iType = atoi(sToken); vType = IntToGridDataType(iType); sToken = strtok(NULL,separator); } } else if(sToken&&stricmp(sToken,"DataValue")==0) { sToken = strtok(NULL,separator); if(sToken==NULL) continue; switch(vType) { case GRID_VT_EMPTY : // 未指定 case GRID_VT_NULL : // 空(暂保留) break; case GRID_VT_I2 : // 2字节带符号整数 iVal = atoi(sToken); break; case GRID_VT_I4 : // 4字节带符号整数 lVal = atoi(sToken); break; case GRID_VT_R4 : // 4字节浮点数 fltVal = (float)atof(sToken); break; case GRID_VT_R8 : // 8字节浮点数 dblVal = atof(sToken); break; case GRID_VT_DATE : // 日期 nYear = atoi(sToken); sToken = strtok(NULL,separator); if(sToken) { nMonth = atoi(sToken); sToken = strtok(NULL,separator); if(sToken) nDay = atoi(sToken); } datetime.SetDate(nYear,nMonth,nDay); date = datetime; break; case GRID_VT_STRING : // 字符串 SetGridString(sToken); break; case GRID_VT_POINTER: // 指针 case GRID_VT_BOOL : // 布尔数; TRUE=1, FALSE=0 bVal = atoi(sToken); break; default: break; } } else if(sToken&&strstr(sToken,"GridDataEnd")!=NULL) break; } } #ifndef __DRAWING_CONTEXT_ HRESULT CGrid::WriteGridToStream(IStream *pStream) { WORD w; DWORD dw; w = grid_mode; pStream->Write(&w,sizeof(WORD),NULL); w = (WORD)m_bHGridVirtual; pStream->Write(&w,sizeof(WORD),NULL); w = (WORD)m_bVGridVirtual; pStream->Write(&w,sizeof(WORD),NULL); w = (WORD)feature; pStream->Write(&w,sizeof(WORD),NULL); pStream->Write(&font_style,sizeof(CFontStyle),NULL); pStream->Write(font_style.lfFaceName,32,NULL); w = (WORD)data.vType; pStream->Write(&w,sizeof(WORD),NULL); if(w!=GRID_VT_STRING) pStream->Write(&data,sizeof(CGridVariant),NULL); else { if(data.sVal) { w = (WORD)strlen(data.sVal); pStream->Write(&w,sizeof(WORD),NULL); pStream->Write(data.sVal,w,NULL); } else { w = 0; pStream->Write(&w,sizeof(WORD),NULL); } } w = (WORD)mark.bTitle; pStream->Write(&w,sizeof(WORD),NULL); dw = (DWORD)mark.type_id; pStream->Write(&dw,sizeof(DWORD),NULL); dw = (DWORD)mark.ext_feature; pStream->Write(&dw,sizeof(DWORD),NULL); return S_OK; } HRESULT CGrid::ReadGridFromStream(IStream *pStream) { WORD w; DWORD dw; pStream->Read(&w,sizeof(WORD),NULL); if(w==STRING_GRID) grid_mode = STRING_GRID; else if(w==GRAPH_BLOCK_GRID) grid_mode = GRAPH_BLOCK_GRID; else if(w==PIC_BLOCK_GRID) grid_mode = PIC_BLOCK_GRID; pStream->Read(&w,sizeof(WORD),NULL); m_bHGridVirtual = w; pStream->Read(&w,sizeof(WORD),NULL); m_bVGridVirtual = w; pStream->Read(&w,sizeof(WORD),NULL); feature = w; pStream->Read(&font_style,sizeof(CFontStyle),NULL); font_style.lfFaceName = NULL; char face_name[33]={'\0'}; pStream->Read(face_name,32,NULL); font_style.SetFaceName(face_name); w = (WORD)data.vType; pStream->Read(&w,sizeof(WORD),NULL); data.vType = IntToGridDataType(w); if(w!=GRID_VT_STRING) pStream->Read(&data,sizeof(CGridVariant),NULL); else { pStream->Read(&w,sizeof(WORD),NULL); if(w>0) { char *pStr = new char[w+1]; pStr[w]='\0'; pStream->Read(pStr,w,NULL); data.SetGridString(pStr); delete []pStr; } } pStream->Read(&w,sizeof(WORD),NULL); mark.bTitle = w; pStream->Read(&dw,sizeof(DWORD),NULL); mark.type_id = dw; pStream->Read(&dw,sizeof(DWORD),NULL); mark.ext_feature = dw; return S_OK; } #endif
6f4e3a684264589ecabc65b4fe1aa16da4a95988
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE762_Mismatched_Memory_Management_Routines/s07/CWE762_Mismatched_Memory_Management_Routines__new_free_int_22a.cpp
1121e6f918ca0cdf76c89d25e54203d7c06ba3a6
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
3,635
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE762_Mismatched_Memory_Management_Routines__new_free_int_22a.cpp Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_free.label.xml Template File: sources-sinks-22a.tmpl.cpp */ /* * @description * CWE: 762 Mismatched Memory Management Routines * BadSource: Allocate data using new * GoodSource: Allocate data using malloc() * Sinks: * GoodSink: Deallocate data using delete * BadSink : Deallocate data using free() * Flow Variant: 22 Control flow: Flow controlled by value of a global variable. Sink functions are in a separate file from sources. * * */ #include "std_testcase.h" namespace CWE762_Mismatched_Memory_Management_Routines__new_free_int_22 { #ifndef OMITBAD /* The global variable below is used to drive control flow in the sink function. Since it is in a C++ namespace, it doesn't need a globally unique name. */ int badGlobal = 0; void badSink(int * data); void bad() { int * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */ data = new int; badGlobal = 1; /* true */ badSink(data); } #endif /* OMITBAD */ #ifndef OMITGOOD /* The global variables below are used to drive control flow in the sink functions. Since they are in a C++ namespace, they don't need globally unique names. */ int goodB2G1Global = 0; int goodB2G2Global = 0; int goodG2B1Global = 0; /* goodB2G1() - use badsource and goodsink by setting the static variable to false instead of true */ void goodB2G1Sink(int * data); static void goodB2G1() { int * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */ data = new int; goodB2G1Global = 0; /* false */ goodB2G1Sink(data); } /* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */ void goodB2G2Sink(int * data); static void goodB2G2() { int * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */ data = new int; goodB2G2Global = 1; /* true */ goodB2G2Sink(data); } /* goodG2B1() - use goodsource and badsink */ void goodG2B1Sink(int * data); static void goodG2B1() { int * data; /* Initialize data*/ data = NULL; /* FIX: Allocate memory from the heap using malloc() */ data = (int *)malloc(100*sizeof(int)); goodG2B1Global = 1; /* true */ goodG2B1Sink(data); } void good() { goodB2G1(); goodB2G2(); goodG2B1(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE762_Mismatched_Memory_Management_Routines__new_free_int_22; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
25ba9eed43ee5ca4944d7aded9ca33f16aa61457
e858606ccacb9a78bfb48ca90b56d9469cff7a09
/RImageBook/src/thirdparty/x64/VTK/include/vtkRenderedTreeAreaRepresentation.h
946a2839a81ca4d85d3e7faee9db2adca84d8669
[]
no_license
tkatsuki/rimagebook
51f41166e98d442f7b9e2226b65046586f95dfc8
d26a1502faf39804bf8cb06d1699de24e6d53d58
refs/heads/master
2021-01-19T17:59:07.539596
2015-06-29T21:12:57
2015-06-29T21:12:57
38,264,836
1
2
null
null
null
null
UTF-8
C++
false
false
11,983
h
/*========================================================================= Program: Visualization Toolkit Module: vtkRenderedTreeAreaRepresentation.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /*------------------------------------------------------------------------- Copyright 2008 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. -------------------------------------------------------------------------*/ // .NAME vtkRenderedTreeAreaRepresentation - // // .SECTION Description #ifndef __vtkRenderedTreeAreaRepresentation_h #define __vtkRenderedTreeAreaRepresentation_h #include "vtkRenderedRepresentation.h" class vtkActor; class vtkActor2D; class vtkAreaLayout; class vtkAreaLayoutStrategy; class vtkConvertSelection; class vtkEdgeCenters; class vtkExtractSelectedPolyDataIds; class vtkLabeledDataMapper; class vtkPointSetToLabelHierarchy; class vtkPolyData; class vtkPolyDataAlgorithm; class vtkPolyDataMapper; class vtkScalarBarWidget; class vtkTextProperty; class vtkTreeFieldAggregator; class vtkTreeLevelsFilter; class vtkVertexDegree; class vtkWorldPointPicker; class VTK_VIEWS_EXPORT vtkRenderedTreeAreaRepresentation : public vtkRenderedRepresentation { public: static vtkRenderedTreeAreaRepresentation* New(); vtkTypeMacro(vtkRenderedTreeAreaRepresentation, vtkRenderedRepresentation); void PrintSelf(ostream& os, vtkIndent indent); // Description: // Set the label render mode. // QT - Use vtkQtTreeRingLabeler with fitted labeling // and unicode support. Requires VTK_USE_QT to be on. // FREETYPE - Use standard freetype text rendering. virtual void SetLabelRenderMode(int mode); // Description: // The array to use for area labeling. Default is "label". virtual void SetAreaLabelArrayName(const char* name); virtual const char* GetAreaLabelArrayName(); // Description: // The array to use for area sizes. Default is "size". virtual void SetAreaSizeArrayName(const char* name); virtual const char* GetAreaSizeArrayName(); // Description: // The array to use for area labeling priority. // Default is "GraphVertexDegree". virtual void SetAreaLabelPriorityArrayName(const char* name); virtual const char* GetAreaLabelPriorityArrayName(); // Description: // The array to use for edge labeling. Default is "label". virtual void SetGraphEdgeLabelArrayName(const char* name) { this->SetGraphEdgeLabelArrayName(name, 0); } virtual void SetGraphEdgeLabelArrayName(const char* name, int idx); virtual const char* GetGraphEdgeLabelArrayName() { return this->GetGraphEdgeLabelArrayName(0); } virtual const char* GetGraphEdgeLabelArrayName(int idx); // Description: // The text property for the graph edge labels. virtual void SetGraphEdgeLabelTextProperty(vtkTextProperty* tp) { this->SetGraphEdgeLabelTextProperty(tp, 0); } virtual void SetGraphEdgeLabelTextProperty(vtkTextProperty* tp, int idx); virtual vtkTextProperty* GetGraphEdgeLabelTextProperty() { return this->GetGraphEdgeLabelTextProperty(0); } virtual vtkTextProperty* GetGraphEdgeLabelTextProperty(int idx); // Description: // The name of the array whose value appears when the mouse hovers // over a rectangle in the treemap. vtkSetStringMacro(AreaHoverArrayName); vtkGetStringMacro(AreaHoverArrayName); // Description: // Whether to show area labels. Default is off. virtual void SetAreaLabelVisibility(bool vis); virtual bool GetAreaLabelVisibility(); vtkBooleanMacro(AreaLabelVisibility, bool); // Description: // The text property for the area labels. virtual void SetAreaLabelTextProperty(vtkTextProperty* tp); virtual vtkTextProperty* GetAreaLabelTextProperty(); // Description: // Whether to show edge labels. Default is off. virtual void SetGraphEdgeLabelVisibility(bool vis) { this->SetGraphEdgeLabelVisibility(vis, 0); } virtual void SetGraphEdgeLabelVisibility(bool vis, int idx); virtual bool GetGraphEdgeLabelVisibility() { return this->GetGraphEdgeLabelVisibility(0); } virtual bool GetGraphEdgeLabelVisibility(int idx); vtkBooleanMacro(GraphEdgeLabelVisibility, bool); // Description: // The array to use for coloring vertices. Default is "color". void SetAreaColorArrayName(const char* name); const char* GetAreaColorArrayName(); // Description: // Whether to color vertices. Default is off. virtual void SetColorAreasByArray(bool vis); virtual bool GetColorAreasByArray(); vtkBooleanMacro(ColorAreasByArray, bool); // Description: // The array to use for coloring edges. Default is "color". virtual void SetGraphEdgeColorArrayName(const char* name) { this->SetGraphEdgeColorArrayName(name, 0); } virtual void SetGraphEdgeColorArrayName(const char* name, int idx); virtual const char* GetGraphEdgeColorArrayName() { return this->GetGraphEdgeColorArrayName(0); } virtual const char* GetGraphEdgeColorArrayName(int idx); // Description: // Set the color to be the spline fraction virtual void SetGraphEdgeColorToSplineFraction() { this->SetGraphEdgeColorToSplineFraction(0); } virtual void SetGraphEdgeColorToSplineFraction(int idx); // Description: // Whether to color edges. Default is off. virtual void SetColorGraphEdgesByArray(bool vis) { this->SetColorGraphEdgesByArray(vis, 0); } virtual void SetColorGraphEdgesByArray(bool vis, int idx); virtual bool GetColorGraphEdgesByArray() { return this->GetColorGraphEdgesByArray(0); } virtual bool GetColorGraphEdgesByArray(int idx); vtkBooleanMacro(ColorGraphEdgesByArray, bool); // Description: // The name of the array whose value appears when the mouse hovers // over a graph edge. virtual void SetGraphHoverArrayName(const char* name) { this->SetGraphHoverArrayName(name, 0); } virtual void SetGraphHoverArrayName(const char* name, int idx); virtual const char* GetGraphHoverArrayName() { return this->GetGraphHoverArrayName(0); } virtual const char* GetGraphHoverArrayName(int idx); // Description: // Set the region shrink percentage between 0.0 and 1.0. virtual void SetShrinkPercentage(double value); virtual double GetShrinkPercentage(); // Description: // Set the bundling strength. virtual void SetGraphBundlingStrength(double strength) { this->SetGraphBundlingStrength(strength, 0); } virtual void SetGraphBundlingStrength(double strength, int idx); virtual double GetGraphBundlingStrength() { return this->GetGraphBundlingStrength(0); } virtual double GetGraphBundlingStrength(int idx); // Description: // Sets the spline type for the graph edges. // vtkSplineGraphEdges::CUSTOM uses a vtkCardinalSpline. // vtkSplineGraphEdges::BSPLINE uses a b-spline. // The default is CUSTOM. virtual void SetGraphSplineType(int type, int idx); virtual int GetGraphSplineType(int idx); // Description: // The layout strategy for producing spatial regions for the tree. virtual void SetAreaLayoutStrategy(vtkAreaLayoutStrategy* strategy); virtual vtkAreaLayoutStrategy* GetAreaLayoutStrategy(); // Description: // The filter for converting areas to polydata. This may e.g. be // vtkTreeMapToPolyData or vtkTreeRingToPolyData. // The filter must take a vtkTree as input and produce vtkPolyData. virtual void SetAreaToPolyData(vtkPolyDataAlgorithm* areaToPoly); vtkGetObjectMacro(AreaToPolyData, vtkPolyDataAlgorithm); // Description: // Whether the area represents radial or rectangular coordinates. vtkSetMacro(UseRectangularCoordinates, bool); vtkGetMacro(UseRectangularCoordinates, bool); vtkBooleanMacro(UseRectangularCoordinates, bool); // Description: // The mapper for rendering labels on areas. This may e.g. be // vtkDynamic2DLabelMapper or vtkTreeMapLabelMapper. virtual void SetAreaLabelMapper(vtkLabeledDataMapper* mapper); vtkGetObjectMacro(AreaLabelMapper, vtkLabeledDataMapper); // Description: // Apply the theme to this view. virtual void ApplyViewTheme(vtkViewTheme* theme); // Description: // Visibility of scalar bar actor for edges. virtual void SetEdgeScalarBarVisibility(bool b); virtual bool GetEdgeScalarBarVisibility(); protected: vtkRenderedTreeAreaRepresentation(); ~vtkRenderedTreeAreaRepresentation(); // Description: // Called by the view to add/remove this representation. virtual bool AddToView(vtkView* view); virtual bool RemoveFromView(vtkView* view); virtual vtkSelection* ConvertSelection(vtkView* view, vtkSelection* sel); virtual int FillInputPortInformation(int port, vtkInformation* info); virtual int RequestData( vtkInformation*, vtkInformationVector**, vtkInformationVector*); virtual void PrepareForRendering(vtkRenderView* view); bool ValidIndex(int idx); void UpdateHoverHighlight(vtkView* view, int x, int y); virtual vtkUnicodeString GetHoverTextInternal(vtkSelection* sel); //BTX class Internals; Internals* Implementation; //ETX //BTX vtkSmartPointer<vtkWorldPointPicker> Picker; vtkSmartPointer<vtkApplyColors> ApplyColors; vtkSmartPointer<vtkTreeLevelsFilter> TreeLevels; vtkSmartPointer<vtkVertexDegree> VertexDegree; vtkSmartPointer<vtkTreeFieldAggregator> TreeAggregation; vtkSmartPointer<vtkAreaLayout> AreaLayout; vtkSmartPointer<vtkPolyDataMapper> AreaMapper; vtkSmartPointer<vtkActor> AreaActor; vtkSmartPointer<vtkActor2D> AreaLabelActor; vtkSmartPointer<vtkPolyData> HighlightData; vtkSmartPointer<vtkPolyDataMapper> HighlightMapper; vtkSmartPointer<vtkActor> HighlightActor; vtkPolyDataAlgorithm* AreaToPolyData; vtkLabeledDataMapper* AreaLabelMapper; vtkSmartPointer<vtkScalarBarWidget> EdgeScalarBar; vtkSmartPointer<vtkPointSetToLabelHierarchy> AreaLabelHierarchy; vtkSmartPointer<vtkPolyData> EmptyPolyData; //ETX vtkSetStringMacro(AreaSizeArrayNameInternal); vtkGetStringMacro(AreaSizeArrayNameInternal); char* AreaSizeArrayNameInternal; vtkSetStringMacro(AreaColorArrayNameInternal); vtkGetStringMacro(AreaColorArrayNameInternal); char* AreaColorArrayNameInternal; vtkSetStringMacro(AreaLabelArrayNameInternal); vtkGetStringMacro(AreaLabelArrayNameInternal); char* AreaLabelArrayNameInternal; vtkSetStringMacro(AreaLabelPriorityArrayNameInternal); vtkGetStringMacro(AreaLabelPriorityArrayNameInternal); char* AreaLabelPriorityArrayNameInternal; vtkSetStringMacro(GraphEdgeColorArrayNameInternal); vtkGetStringMacro(GraphEdgeColorArrayNameInternal); char* GraphEdgeColorArrayNameInternal; vtkGetStringMacro(AreaHoverTextInternal); vtkSetStringMacro(AreaHoverTextInternal); char* AreaHoverTextInternal; char* AreaHoverArrayName; bool UseRectangularCoordinates; private: vtkRenderedTreeAreaRepresentation(const vtkRenderedTreeAreaRepresentation&); // Not implemented void operator=(const vtkRenderedTreeAreaRepresentation&); // Not implemented }; #endif
46e7ec84c072d2a9d0befe64f2ffe2f2596ebc85
fcaa0e79865839eb41fbf084d0a0492e72d4a6d4
/src/accumulatormap.h
91a507e2e380bb057a37663ccb22468423ed9fe8
[ "MIT", "GPL-1.0-or-later", "GPL-3.0-only" ]
permissive
THETCR/rpicore
48c04aba62ddd9cdf6fb9c8da113f10af789dff0
6824677551a48acd03275e85350a70fc977b601f
refs/heads/master
2021-06-12T15:29:22.356966
2018-11-14T03:01:29
2018-11-14T03:01:29
164,421,379
0
0
MIT
2019-01-07T11:15:45
2019-01-07T11:15:44
null
UTF-8
C++
false
false
1,141
h
// Copyright (c) 2017 The PIVX developers // Copyright (c) 2018 The WISPR developers // Copyright (c) 2018-2019 The RPICoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef RPICoin_ACCUMULATORMAP_H #define RPICoin_ACCUMULATORMAP_H #include "libzerocoin/Accumulator.h" #include "libzerocoin/Coin.h" #include "accumulatorcheckpoints.h" //A map with an accumulator for each denomination class AccumulatorMap { private: libzerocoin::ZerocoinParams* params; std::map<libzerocoin::CoinDenomination, std::unique_ptr<libzerocoin::Accumulator> > mapAccumulators; public: explicit AccumulatorMap(libzerocoin::ZerocoinParams* params); bool Load(uint256 nCheckpoint); void Load(const AccumulatorCheckpoints::Checkpoint& checkpoint); bool Accumulate(const libzerocoin::PublicCoin& pubCoin, bool fSkipValidation = false); CBigNum GetValue(libzerocoin::CoinDenomination denom); uint256 GetCheckpoint(); void Reset(); void Reset(libzerocoin::ZerocoinParams* params2); }; #endif //RPICoin_ACCUMULATORMAP_H
a4c5f0a1f22290566798f6adf6e18d949b4936d1
54c2ac08523e8cdc2d3a7cfb53507e1aa3ae07da
/Godot/modules/bitshift/bsurface_tool.cpp
2177321c523a00193791513d2d21a276c69fc28a
[]
no_license
bit-shift-io/rapel
650b2aa960331aee5248016bd6ccbe68cc9abdcd
056912ba74daf1bc02d3d6ec4747be26a1a6c385
refs/heads/master
2023-02-22T20:58:57.074064
2019-01-06T04:26:14
2019-01-06T04:26:14
330,272,494
1
0
null
null
null
null
UTF-8
C++
false
false
4,140
cpp
/*************************************************************************/ /* This file is part of: */ /* BITSHIFT GODOT PLUGIN */ /* http://bit-shift.io */ /*************************************************************************/ /* Copyright (c) 2017 Fabian Mathews. */ /* */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "bsurface_tool.h" uint32_t BSurfaceTool::VectorHasher::hash(const Vector3 &p_vector) { uint32_t h = hash_djb2_buffer((const uint8_t *)&p_vector, sizeof(real_t) * 3); //print_line("vertex: (" + rtos(p_vector.x) + "," + rtos(p_vector.y) + "," + rtos(p_vector.z) + ") -> hash: " + itos(h)); return h; } // mofidied version of SurfaceTool::generate_normals to force all normals to be generated and smoothed void BSurfaceTool::generate_smooth_normals() { ERR_FAIL_COND(primitive != Mesh::PRIMITIVE_TRIANGLES); bool was_indexed = index_array.size(); deindex(); index_array.clear(); // so reindexing works HashMap<Vector3, Vector3, VectorHasher> vertex_hash; //int count = 0; List<Vertex>::Element *B = vertex_array.front(); // generate a normal for each face and add it to the cached vector for (List<Vertex>::Element *E = B; E;) { List<Vertex>::Element *v[3]; v[0] = E; v[1] = v[0]->next(); ERR_FAIL_COND(!v[1]); v[2] = v[1]->next(); ERR_FAIL_COND(!v[2]); E = v[2]->next(); Vector3 normal = Plane(v[0]->get().vertex, v[1]->get().vertex, v[2]->get().vertex).normal; for (int i = 0; i < 3; i++) { Vector3 *lv = vertex_hash.getptr(v[i]->get().vertex); if (!lv) { vertex_hash.set(v[i]->get().vertex, normal); } else { (*lv) += normal; } } } //print_line("smoothing result:"); int i = 0; // apply smoothed normals from normal cache for (List<Vertex>::Element *E = B; E;) { Vector3 *lv = vertex_hash.getptr(E->get().vertex); if (lv) { Vector3 new_norm = lv->normalized(); //print_line(itos(i) + ": vertex: (" + rtos(E->get().vertex.x) + "," + rtos(E->get().vertex.y) + "," + rtos(E->get().vertex.z) + ")"); //print_line(itos(i) + ": normal from: (" + rtos(E->get().normal.x) + "," + rtos(E->get().normal.y) + "," + rtos(E->get().normal.z) + ") -> (" + rtos(new_norm.x) + "," + rtos(new_norm.y) + "," + rtos(new_norm.z) + ")"); E->get().normal = new_norm; } else { // oh dear?! ERR_FAIL_COND(true); } E = E->next(); ++i; } //print_line("--------"); format |= Mesh::ARRAY_FORMAT_NORMAL; if (was_indexed) { index(); } } void BSurfaceTool::_bind_methods() { ClassDB::bind_method(D_METHOD("generate_smooth_normals"), &BSurfaceTool::generate_smooth_normals); ClassDB::bind_method(D_METHOD("create_from:Mesh", "existing:Mesh", "surface"), &GSurfaceTool::create_from); ClassDB::bind_method(D_METHOD("append_from:Mesh", "existing:Mesh", "surface", "transform:Transform"), &GSurfaceTool::append_from); } BSurfaceTool::BSurfaceTool() { }
5009b36e03a0f1f208f914f34ddba72d28ed4ff2
41b4adb10cc86338d85db6636900168f55e7ff18
/aws-cpp-sdk-ec2/source/model/SecurityGroupReference.cpp
adc3660335691f21b4809388fd8da6e66d5cc432
[ "JSON", "MIT", "Apache-2.0" ]
permissive
totalkyos/AWS
1c9ac30206ef6cf8ca38d2c3d1496fa9c15e5e80
7cb444814e938f3df59530ea4ebe8e19b9418793
refs/heads/master
2021-01-20T20:42:09.978428
2016-07-16T00:03:49
2016-07-16T00:03:49
63,465,708
1
1
null
null
null
null
UTF-8
C++
false
false
3,514
cpp
/* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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 <aws/ec2/model/SecurityGroupReference.h> #include <aws/core/utils/xml/XmlSerializer.h> #include <aws/core/utils/StringUtils.h> #include <aws/core/utils/memory/stl/AWSStringStream.h> #include <utility> using namespace Aws::Utils::Xml; using namespace Aws::Utils; namespace Aws { namespace EC2 { namespace Model { SecurityGroupReference::SecurityGroupReference() : m_groupIdHasBeenSet(false), m_referencingVpcIdHasBeenSet(false), m_vpcPeeringConnectionIdHasBeenSet(false) { } SecurityGroupReference::SecurityGroupReference(const XmlNode& xmlNode) : m_groupIdHasBeenSet(false), m_referencingVpcIdHasBeenSet(false), m_vpcPeeringConnectionIdHasBeenSet(false) { *this = xmlNode; } SecurityGroupReference& SecurityGroupReference::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode groupIdNode = resultNode.FirstChild("groupId"); if(!groupIdNode.IsNull()) { m_groupId = StringUtils::Trim(groupIdNode.GetText().c_str()); m_groupIdHasBeenSet = true; } XmlNode referencingVpcIdNode = resultNode.FirstChild("referencingVpcId"); if(!referencingVpcIdNode.IsNull()) { m_referencingVpcId = StringUtils::Trim(referencingVpcIdNode.GetText().c_str()); m_referencingVpcIdHasBeenSet = true; } XmlNode vpcPeeringConnectionIdNode = resultNode.FirstChild("vpcPeeringConnectionId"); if(!vpcPeeringConnectionIdNode.IsNull()) { m_vpcPeeringConnectionId = StringUtils::Trim(vpcPeeringConnectionIdNode.GetText().c_str()); m_vpcPeeringConnectionIdHasBeenSet = true; } } return *this; } void SecurityGroupReference::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_groupIdHasBeenSet) { oStream << location << index << locationValue << ".GroupId=" << StringUtils::URLEncode(m_groupId.c_str()) << "&"; } if(m_referencingVpcIdHasBeenSet) { oStream << location << index << locationValue << ".ReferencingVpcId=" << StringUtils::URLEncode(m_referencingVpcId.c_str()) << "&"; } if(m_vpcPeeringConnectionIdHasBeenSet) { oStream << location << index << locationValue << ".VpcPeeringConnectionId=" << StringUtils::URLEncode(m_vpcPeeringConnectionId.c_str()) << "&"; } } void SecurityGroupReference::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_groupIdHasBeenSet) { oStream << location << ".GroupId=" << StringUtils::URLEncode(m_groupId.c_str()) << "&"; } if(m_referencingVpcIdHasBeenSet) { oStream << location << ".ReferencingVpcId=" << StringUtils::URLEncode(m_referencingVpcId.c_str()) << "&"; } if(m_vpcPeeringConnectionIdHasBeenSet) { oStream << location << ".VpcPeeringConnectionId=" << StringUtils::URLEncode(m_vpcPeeringConnectionId.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws
5622cabce6e40667726b01e7d47ca7136b2619ad
824380c43a380f144ae6bd4dcaf5849a8b713774
/Zara/gkit2light/src/master_MecaSim/src-etudiant/Viewer.cpp
84b3f70f7988b13b76a85f47aa4c06369df08b72
[]
no_license
HuynhCongLap/PhysicalModel
aba2c9793d3ecb6d4e12d9f21ec950064a7073c3
f979e0411273139df65618df2e9eef68a93fb62c
refs/heads/master
2020-04-16T05:35:51.304631
2019-01-29T07:10:46
2019-01-29T07:10:46
165,312,232
1
0
null
null
null
null
UTF-8
C++
false
false
11,846
cpp
/** \file Viewer.cpp * \brief Viewer de l application. */ #include <cassert> #include <cmath> #include <cstdio> #include <iostream> #include "draw.h" // pour dessiner du point de vue d'une camera #include "Viewer.h" #include "Scene.h" #include "ObjetSimule.h" #include "ObjetSimuleMSS.h" #include "ObjetSimuleRigidBody.h" #include "ObjetSimuleParticule.h" #include "ObjetSimuleSPH.h" /* * Constructeur. */ Viewer::Viewer() : App(1024, 768), mb_cullface(true), // Par defaut - gestion des faces cachees mb_wireframe(false), // Par defaut - affiche plein b_draw_grid(true), // Par defaut - affiche la grille b_draw_axe(true) // Par defaut - affiche les axes { } /* * Constructeur dans le cas ou il y a une simulation mecanique. */ Viewer::Viewer(string *Fichier_Param, int NbObj) : App(1024, 768), mb_cullface(true), // Par defaut - gestion des faces cachees mb_wireframe(false), // Par defaut - affiche plein b_draw_grid(true), // Par defaut - affiche la grille b_draw_axe(true) // Par defaut - affiche les axes { /** Declaration du graphe de scene pour la simulation mecanique **/ /// Scene construite a partir des parametres mis dans le fichier de parametres de la simulation _Simu = new Scene(Fichier_Param[0], NbObj); /// Ajoute les objets de la simulation au graphe de scene /// Objets construits a partir des parametres mis dans les fichiers de parametres des objets for (int i=1; i<=_Simu->_NbObj ; i++) { cout << "Creation de l objet " << i << " de type : " << _Simu->_type_objet[i-1] << endl; if (_Simu->_type_objet[i-1] == "mss") _Simu->attache(new ObjetSimuleMSS(Fichier_Param[i])); else if (_Simu->_type_objet[i-1] == "particule") _Simu->attache(new ObjetSimuleParticule(Fichier_Param[i])); else if (_Simu->_type_objet[i-1] == "rigid") _Simu->attache(new ObjetSimuleRigidBody(Fichier_Param[i])); else if(_Simu->_type_objet[i-1] == "sph") _Simu->attache(new ObjetSimuleSPH(Fichier_Param[i])); } /// Initialisation des objets pour l'animation _Simu->initObjetSimule(); /// Creation des maillages (de type Mesh) des objets de la scene _Simu->initMeshObjet(); } /* * Aide de la fenetre d affichage. */ void Viewer::help() { cout << "-------- HELP: -------"<< endl<< endl; cout << " h: help" << endl << endl; cout << " c: (des)active GL_CULL_FACE" << endl; cout << " w: (des)active wireframe" << endl; cout << " a: (des)active l'affichage de l'axe" << endl; cout << " g: (des)active l'affichage de la grille" << endl << endl; cout << " m+fleche/pageUp/pageDown: pour bouger point interaction" << endl << endl; cout << " fleches/pageUp/pageDown: bouge la camera"<< endl << endl; cout << " Ctrl+fleche/pageUp/pageDown: bouge la source de lumiere" << endl<< endl; cout << " Souris+bouton gauche: rotation" << endl << endl; cout << " Souris mouvement vertical+bouton droit: (de)zoom" << endl << endl; } /* * Affichage de la scene. */ int Viewer::render( ) { // Efface l'ecran glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Deplace la camera, lumiere, etc. manageCameraLight(); // donne notre camera au shader gl.camera(m_camera); // Afichage d un cube avec texture //gl.texture(m_cube_texture); //gl.model(Translation( -3, 5, 0 )); //gl.draw(m_cube); // Rajouter ici les appels pour afficher votre objet non simule // Exemple : //gl.texture(m_votreObjet_texture); //gl.model(...); //gl.draw(m_votreObjet); // Gestion de la lumiere //gl.lighting(false); //gl.lighting(true); /**********************************************************************/ /* Affichage des objets du graphe de scene de la simulation mecanique */ /**********************************************************************/ /* Gestion interaction avec la touche m */ const float step_i = 0.01f; if (key_state(SDLK_RIGHT) && key_state(SDLK_m)) {MousePos = MousePos+Vector(step_i,0,0); } if (key_state(SDLK_LEFT) && key_state(SDLK_m)) {MousePos = MousePos+Vector(-step_i,0,0); } if (key_state(SDLK_UP) && key_state(SDLK_m)) {MousePos = MousePos+Vector(0,0,-step_i); } if (key_state(SDLK_DOWN) && key_state(SDLK_m)) {MousePos = MousePos+Vector(0,0,step_i); } if (key_state(SDLK_PAGEUP) && key_state(SDLK_m)) {MousePos = MousePos+Vector(0,step_i,0); } if (key_state(SDLK_PAGEDOWN) && key_state(SDLK_m)) {MousePos = MousePos+Vector(0,-step_i,0); } /// Interaction avec l utilisateur _Simu->Interaction(MousePos); MousePos = Vector(0,0,0); /* Affichage des objets */ Transform T; T = Translation( 0, 3, 0 ); ListeNoeuds::iterator e; int num=0; for(e=_Simu->_enfants.begin(); e!=_Simu->_enfants.end(); e++) { // Cas systeme masses-ressorts if (_Simu->_type_objet[num] == "mss") { // Specification de la texture de l objet simule if ((*e)->_use_texture) gl.texture(m_tissu_texture); // Transformation geometrique appliquee a l objet //gl.model(Translation( 0, 3, 1 ) * Scale(3, 3, 3)); // pour le drap10 gl.model( T * Scale(0.3, 0.3, 0.3)) ; // pour le drap70 //gl.model( T ) ; // pour le drap70 // Affichage du Mesh de l objet du graphe de scene gl.draw((*e)->m_ObjetSimule); // Affichage d un cube au point d interaction // !TODO : pb avec le scale - cube plus sur le point 0 qd bouge gl.texture(0); gl.model((Translation( Vector((*e)->Coord_Point_Inter)) * T ) * Scale(0.03, 0.03, 0.03)); gl.draw(m_cube); }//mss // Cas systeme de particules non connectees else if (_Simu->_type_objet[num] == "particule" || _Simu->_type_objet[num] == "sph") { // Affichage des particules for (int i =0; i<(*e)->_Nb_Sommets; i++) { // Positionnement en fonction de la position de la particule gl.model(Translation( Vector((*e)->P[i]))); // Affichage d une sphere pour modeliser une particule gl.draw(m_sphere); } }//particule // Cas systeme de particules non connectees else if (_Simu->_type_objet[num] == "rigid") { // Specification de la texture de l objet simule if ((*e)->_use_texture) gl.texture(m_tissu_texture); // Transformation geometrique appliquee a l objet //gl.model(T * Scale(0.05, 0.05, 0.05)); gl.model(Identity()); // Affichage du Mesh de l objet du graphe de scene gl.draw((*e)->m_ObjetSimule); }//rigid // Affichage du plan ou se produisent les collisions // gl.model(Identity()); // gl.draw(m_plan); // Passage a l objet suivant num++; } return 1; } /* * Mise a jour de la scene. */ int Viewer::update( const float time, const float delta ) { // Mettre ici le code pour modifier votre objet au cours du temps //std::cout << " Viewer::update ...." << std::endl; /***************************************************************************/ /* Mise a jour du maillage des objets du graphe de scene de la simulation */ /***************************************************************************/ /// Calcul de l animation _Simu->Simulation(Tps); /// Mise a jour du Mesh en fct des positions calculees ListeNoeuds::iterator e; int num=0; for(e=_Simu->_enfants.begin(); e!=_Simu->_enfants.end(); e++) { // Cas systeme masses-ressorts ou objet rigide if ((_Simu->_type_objet[num] == "mss") || (_Simu->_type_objet[num] == "rigid")) { // Mise a jour du Mesh des objets (*e)->updateVertex(); } // Passage a l objet suivant num++; } /// Le temps qui passe... Tps = Tps + 1; //cout << "Temps : " << Tps << endl; return 1; } /* * Gestion de la camera et de la lumiere. */ void Viewer::manageCameraLight() { // Recupere les mouvements de la souris pour deplacer la camera, cf tutos/tuto6.cpp int mx, my; unsigned int mb= SDL_GetRelativeMouseState(&mx, &my); // Deplace la camera avec la souris // Si le bouton du milieu est enfonce if((mb & SDL_BUTTON(1)) && (mb& SDL_BUTTON(3))) { // deplace le point de rotation m_camera.translation( (float) mx / (float) window_width(), (float) my / (float) window_height()); } else if(mb & SDL_BUTTON(1)) // le bouton gauche est enfonce m_camera.rotation( mx, my); // tourne autour de l'objet else if(mb & SDL_BUTTON(3)) // le bouton droit est enfonce m_camera.move( my); // approche / eloigne l'objet // Deplace la camera avec le clavier if (key_state(SDLK_PAGEUP) && (!key_state(SDLK_LCTRL)) && (!key_state(SDLK_m)) ) { m_camera.translation( 0,0.01); } if (key_state(SDLK_PAGEDOWN) && (!key_state(SDLK_LCTRL)) && (!key_state(SDLK_m))) { m_camera.translation( 0,-0.01); } if (key_state(SDLK_LEFT) && (!key_state(SDLK_LCTRL))&& (!key_state(SDLK_m))) { m_camera.translation( 0.01,0); } if (key_state(SDLK_RIGHT) && (!key_state(SDLK_LCTRL))&& (!key_state(SDLK_m))) { m_camera.translation( -0.01,0); } if (key_state(SDLK_UP) && (!key_state(SDLK_LCTRL))&& (!key_state(SDLK_m))) { m_camera.move( 1); } if (key_state(SDLK_DOWN) && (!key_state(SDLK_LCTRL))&& (!key_state(SDLK_m))) { m_camera.move( -1); } // Deplace la lumiere avec le clavier const float step = 0.1f; if (key_state(SDLK_RIGHT) && key_state(SDLK_LCTRL)&& (!key_state(SDLK_m))) { gl.light( gl.light()+Vector(step,0,0)); } if (key_state(SDLK_LEFT) && key_state(SDLK_LCTRL)&& (!key_state(SDLK_m))) { gl.light( gl.light()+Vector(-step,0,0)); } if (key_state(SDLK_UP) && key_state(SDLK_LCTRL)&& (!key_state(SDLK_m))) { gl.light( gl.light()+Vector(0,0,-step)); } if (key_state(SDLK_DOWN) && key_state(SDLK_LCTRL)&& (!key_state(SDLK_m))) { gl.light( gl.light()+Vector(0,0,step)); } if (key_state(SDLK_PAGEUP) && key_state(SDLK_LCTRL)&& (!key_state(SDLK_m))) { gl.light( gl.light()+Vector(0,step,0)); } if (key_state(SDLK_PAGEDOWN) && key_state(SDLK_LCTRL)&& (!key_state(SDLK_m))) { gl.light( gl.light()+Vector(0,-step,0)); } // Afichage de l aide if (key_state('h')) help(); // Affichage des faces cachees ou non if (key_state('c')) { clear_key_state('c'); mb_cullface=!mb_cullface; if (mb_cullface) glEnable(GL_CULL_FACE); else glDisable(GL_CULL_FACE); } // Affichage filaire ou plein if (key_state('w')) { clear_key_state('w'); mb_wireframe=!mb_wireframe; if (mb_wireframe) glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); else glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); } // Grille : oui/non if (key_state('g')) { b_draw_grid = !b_draw_grid; clear_key_state('g'); } // Axe : oui/non if (key_state('a')) { b_draw_axe = !b_draw_axe; clear_key_state('a'); } // Camera gl.camera(m_camera); // Affichage de AXE et GRILLE gl.model( Identity() ); if (b_draw_grid) gl.draw(m_grid); if (b_draw_axe) gl.draw(m_axe); // Affichage d un cube representant la position de la LIGHT gl.texture( 0 ); gl.model( Translation( Vector( gl.light())) * Scale(0.3, 0.3, 0.3) ); gl.draw(m_cube); } int Viewer::quit( ) { return 0; }
e3f0a3e496d29a0cd540ecbf214d4f521dd5b3b3
fcc3667f85e27f4f842e026990f7e3c64669e839
/DEV/include/Dissolve.h
cba6b884d658d8743b648f76073683f83ba32acb
[]
no_license
tmizutani/m-fit
e17d1767dffe0a33d7359f484c57da0be3b0ba4c
8fc887a99203653e79d5fc379232047a4c35f3f6
refs/heads/main
2023-09-04T05:45:44.627764
2021-11-07T08:35:50
2021-11-07T08:35:50
425,447,127
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
516
h
#include <QThread> #include <QObject> #include <vector> #include "../include/Interface.h" #include "../include/DetectTransitions.h" /** *Classe responsável por detectar *o dissolve. */ class Dissolve: public DetectTransitions { Q_OBJECT signals: void sendMessage(char*,uint,int); public: void detectTransitions(Video* vdo, std::vector<Transition>*); /** *Calcula a primeira derivada de *uma curva. */ int calcFirstDerivative(double , double, double, double); protected: void run(); };
139770690b636ee1ee522459634be53a1f31ead4
04facfc8b44b1ccdaaeadc2793d981af285f5df3
/LeetCode/C++/General/Hard/SlidingWindowMaximum/main.cpp
cb0bd51890cc5e796f3637c19116d2246fc92e8e
[ "MIT" ]
permissive
busebd12/InterviewPreparation
4423d72d379eb55bd9930685b12fcecc7046354b
78c9caca7b208ec54f6d9fa98304c7f90fe9f603
refs/heads/master
2022-11-02T23:51:46.335420
2022-10-29T06:45:40
2022-10-29T06:45:40
46,381,491
0
0
null
null
null
null
UTF-8
C++
false
false
3,406
cpp
#include <algorithm> #include <deque> #include <iostream> #include <vector> /* * Solutions: * * 1. Brute force. Loop through all size k sliding windows and take the maximum number from each. * * Time complexity: O((n-k) * k) => O(nk-k^2) [where n is the length of the input vector and k is the sliding window size] * Space complexity: O(1) * * 2. For each index in the input vector, maintain a window of k indices starting from that index. * Take the maximum number from each of those sliding windows. * * Time complexity: O(n * k) [where n is the length of the input vector and k is the sliding window size] * Space complexity: O(k) * * 3. Maintain a monotonically increasing queue of possible maximum values for each sliding window. * The current maximum will always be at the front of the queue. * * Time complexity: O(n) [where n is the length of the input vector] * Space complexity: O(n) */ std::vector<int> maxSlidingWindow(std::vector<int> & nums, int k) { std::vector<int> result; if(nums.empty() || k <= 0) { return result; } auto n=int(nums.size()); int sum=0; int back=0; int front=0; for(auto start=0;start<=n-k;++start) { int windowMaximum=std::numeric_limits<int>::min(); for(auto current=start,count=0;count<k;++count,++current) { windowMaximum=std::max(windowMaximum, nums[current]); } result.emplace_back(windowMaximum); } return result; } std::vector<int> maxSlidingWindow(std::vector<int> & nums, int k) { std::vector<int> result; if(nums.empty()) { return result; } auto n=int(nums.size()); std::deque<int> window; int back=0; int front=0; for(;front<k;++front) { if(result.empty()) { result.emplace_back(nums[front]); } else { if(nums[front] > result.back()) { result.pop_back(); result.emplace_back(nums[front]); } } window.emplace_back(front); } while(front > k-1) { front--; } for(;front<n-1;) { int windowMax=std::numeric_limits<int>::min(); if(!window.empty()) { window.pop_front(); } front++; window.emplace_back(front); for(auto & index : window) { windowMax=std::max(windowMax, nums[index]); } result.emplace_back(windowMax); } return result; } std::vector<int> maxSlidingWindow(std::vector<int> & nums, int k) { std::vector<int> result; if(nums.empty()) { return result; } auto n=int(nums.size()); std::deque<int> monotonicallyIncreasingQueue; for(auto i=0;i<n;++i) { int slidingWindowStartIndex=i-(k-1); while(!monotonicallyIncreasingQueue.empty() && nums[monotonicallyIncreasingQueue.back()] <= nums[i]) { monotonicallyIncreasingQueue.pop_back(); } monotonicallyIncreasingQueue.emplace_back(i); if(monotonicallyIncreasingQueue.front() < slidingWindowStartIndex) { monotonicallyIncreasingQueue.pop_front(); } if(i >= k-1) { result.emplace_back(nums[monotonicallyIncreasingQueue.front()]); } } return result; }
b17dc40d05162dd2d220a34e9ff001374a66ce50
4ac26d566316584ead2685cd5664c704e45e63b7
/IniFileSTL/IniFileSTL.h
f931497bb9aacb2a0404e82c6cf62f25cad4a0b3
[]
no_license
2217936322/IniFileSTL-
ce3649012d6273155b808823928ebdd3934f5482
c00258d59b443c3336a1fc90faf4107fd17d55de
refs/heads/master
2023-02-14T02:33:18.716707
2021-01-11T12:01:44
2021-01-11T12:01:44
null
0
0
null
null
null
null
GB18030
C++
false
false
1,657
h
#pragma once #ifndef _FISH_INI_FILE_ #define _FISH_INI_FILE_ #include <string> #include <vector> namespace fish { using namespace std; class IniFileSTL { public: explicit IniFileSTL(const string& fileName); ~IniFileSTL(void); bool ReadFile(void); string ReadString(const string& section, const string& key, const string& value); int ReadInt(const string& section, const string& key, int value); bool WriteString(const string& section, const string& key, const string& value); bool WriteInt(const string& section, const string& key, int value); bool RemoveSection(const string& section); bool RemoveKey(const string& section, const string& key); bool WriteFile(void); //获取当前可执行文件的路径(不包含EXE文件名) static string GetExeDir(); //宽字节转多字节(wchar-char) static char* WcharToChar(const wchar_t* wp); //多字节转宽字节(char-wchar) static wchar_t* CharToWchar(const char* cp); private: static string Trim(const string& str); static string LTrim(const string& str); static string RTrim(const string& str); private: string m_fileName; vector<string> m_vctLine; }; } #endif //简单使用例子 //#include <stdio.h> //#include <iostream> //#include "IniFile.h" // //using namespace fish; // //int main(int argc, char **argv) //{ // IniFile ini("./test.ini"); // cout<<ini.ReadString("system","ipaddr", "10.70.101.134")<<endl; // cout<<ini.ReadInt("system","tcpport", 7050 )<<endl; // return 0; // // //string str; //fish::IniFileSTL ini(fish::IniFileSTL::GetExeDir() + "\\cfglocal.ini"); //str = ini.ReadString("OccMarkShow", "Showflag", "0"); //}
ef1c507db91ddbe38a5007d2f0558ce121095957
c7c4d1c0da3a4f6f181727fa0907bf8b4325c5d3
/core/io/TCPClientSession.h
c81aa6551ea9593977783a8cda30e46de131634c
[]
no_license
ayubsayyad/TradeInfra
aaced6095e53ea97dad0802690e289ccce41cd6e
a85bfbb93bac7eca740506e71bb9a4e6317f9b83
refs/heads/master
2023-07-17T13:45:22.893406
2021-09-05T05:43:12
2021-09-05T05:43:12
272,014,020
0
0
null
null
null
null
UTF-8
C++
false
false
1,030
h
#pragma once #include <memory> #include <cstdlib> #include <cstring> #include <sys/socket.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <unistd.h> #include <fcntl.h> #include <sys/epoll.h> #include <errno.h> #include <netinet/in.h> #include <arpa/inet.h> #include "core/config/Config.h" #include "TCPBuffer.h" namespace core::io{ class TCPClientSession{ public: TCPClientSession() {} bool init(const core::config::Config& config); bool connectSession(); bool readAndProcessData(); void processData(); bool write(char* msg, size_t length); void setPortNumber(uint16_t port){ port_number_ = port; } bool closeSession(){ shutdown(socket_fd_, SHUT_RDWR); return true; } bool onReadReady(){ return readAndProcessData(); } int getSocketFd(){ return socket_fd_; } private: Buffer buffer_; int socket_fd_; std::string host_name_; uint16_t port_number_; }; }
0debe901eb883949a95d6f1c250f5ee312ae69a5
fd8fdf41880f3f67f8e6413c297b5144097b50ad
/trunk/src/cgi/pa/huxiaojiaoshi/feeds_cgi/cgi_check_listen.cpp
f46559e8efb9d7b6cba1e70c73a5928ea52e2e3c
[]
no_license
liuxuanhai/CGI_Web
c67d4db6a3a4de3714babbd31f095d2285545aac
273343bb06a170ac3086d633435e7bcaaa81e8c5
refs/heads/master
2020-03-18T12:27:40.035442
2016-09-28T11:18:26
2016-09-28T11:18:26
134,727,689
1
1
null
null
null
null
UTF-8
C++
false
false
1,482
cpp
#include "cgi_feeds_base.h" class CgiCheckListen: public CgiFeedsBase { public: CgiCheckListen(): CgiFeedsBase(0, "config.ini", "logger.properties", true) { } bool InnerProcess() { //get HTTP params std::string strOpenid = m_cookie_value_key; std::string strFollowIdList = GetInput().GetValue("follow_id_list"); std::vector<string> vecFollowIdList; lce::cgi::Split(strFollowIdList, "|", vecFollowIdList); uint64_t qwErrcode = 0; std::string strErrMsg = ""; std::vector<hoosho::j::commstruct::CheckListenInfo> vecCheckListen; ::hoosho::j::commstruct::CheckListenInfo stCheckListenInfo; stCheckListenInfo.set_openid(strOpenid); stCheckListenInfo.set_listen(false); for(size_t i = 0; i < vecFollowIdList.size(); i++) { stCheckListenInfo.set_follow_id(strtoul(vecFollowIdList[i].c_str(), NULL, 10)); vecCheckListen.push_back(stCheckListenInfo); } if(CheckListen(m_feeds_server_ip, m_feeds_server_port, vecCheckListen, qwErrcode, strErrMsg) < 0) { LOG4CPLUS_ERROR(logger, strErrMsg); DoReply(CGI_RET_CODE_SERVER_BUSY); return true; } SERVER_NOT_OK_RETURN(qwErrcode); for(size_t i = 0; i < vecCheckListen.size(); i++) { GetAnyValue()[int_2_str(vecCheckListen[i].follow_id())] = vecCheckListen[i].listen(); } DoReply(CGI_RET_CODE_OK); return true; } }; int main() { CgiCheckListen cgi; if(!cgi.Run()) { return -1; } return 0; }
8d59f397e6db9a34df40de52c682154970674e9d
c41d891b12da67fcb502d939381ced1afc48eb8f
/dataHandler/genNumberExecutor.h
c9d93adaa05da52bb2077f3e253fcf783d1c6e9f
[]
no_license
meteorgan/muduo-exercises
145e855690387b543a1c573374ed5c9a6d6055d2
2a43dab659bd44e48e40bdb45afb0c1b4f9490e0
refs/heads/master
2021-01-10T07:33:05.755334
2016-03-29T09:16:41
2016-03-29T09:16:41
50,555,660
0
0
null
null
null
null
UTF-8
C++
false
false
471
h
#ifndef GEN_NUMBER_EXECUTOR_H #define GEN_NUMBER_EXECUTOR_H #include "dataExecutor.h" class GenNumberExecutor : public DataExecutor { public: GenNumberExecutor(std::map<std::string, muduo::net::TcpConnectionPtr>& conns) : DataExecutor(conns) {} void execute(int64_t number, char mode); virtual void onMessage(const muduo::net::TcpConnectionPtr& conn, muduo::net::Buffer* buf, muduo::Timestamp time); }; #endif
5527633a2e06767976f489eeb33108a24cf5e56e
375ed6c0680cbf20abdd7ddcef3a828787a268f2
/p8/progChip.cc
79a6c1ea9d1041796c6925f9e1692f981ae8fd02
[]
no_license
arellanoemilio/CSE109
8b1657eb0aac039ba79be42e3ff660752db7026a
cb79f6692331134bdd27e5a6167b63b727b91ebd
refs/heads/master
2020-04-06T03:37:42.906331
2016-08-03T18:22:39
2016-08-03T18:22:39
64,868,554
0
0
null
null
null
null
UTF-8
C++
false
false
5,728
cc
#include "progChip.h" ProgChip::ProgChip():Chip(),lex(),lexInput(){ inputTok = progSize = pc =tok =varCounter = 0; } void ProgChip::load(ifstream &in){ check(in.good(),"Error: ProgChip: load: file cannot be read"); cout<<"Declaring variables"<<endl; runDeclaration(in); cout<<"loading Program"<<endl; loadProgram(in); setInput(in); cout<<"Program succesfully loaded...\n----------------------------"<<endl; } void ProgChip::runDeclaration(ifstream &in){ readLine(in); while(in.good() && tok != Lex::BEGIN){ if(tok == Lex::IDENTIFIER) if(lex.peek() == Lex::EOLN){ cout<<lex.word()<<endl; check(!var.inTable(lex.word()),"Error: ProgChip: runDeclaration():Duplicate identifier"); addVar(); } readLine(in); } check(tok == Lex::BEGIN, "Error: ProgChip: runDeclaration(): invalid syntax, BEGIN expected"); tok = lex.next(); check(tok == Lex::EOLN,"Error: ProgChip: runDeclaration(): invalid Syntax, EOLN expected"); } void ProgChip::readLine(ifstream &in){ in >> program[progSize]; lex.setString(program[progSize]); tok = lex.next(); } void ProgChip::addVar(){ check(varCounter < 100,"Error: ProgChip: addVar():Heap Overflow"); var[lex.word()] = varCounter; memory[varCounter].set(0); varCounter++; } void ProgChip::loadProgram(ifstream &in){ progSize =0; readLine(in); while(in.good() && progSize<MAX_SIZE && tok != Lex::END){ if(tok != Lex::EOLN){ cout<<progSize<<":"<<program[progSize]<<endl; checkLable(); } progSize++; readLine(in); }check(tok == Lex::END,"Error: ProgChip: loadProgram():program expects missing 'end'"); } void ProgChip::checkLable(){ if(tok == Lex::IDENTIFIER && lex.peek() == Lex::COLON){ check(!lables.inTable(lex.word()),"Error: ProgChip: runDeclaration():Duplicate identifier"); lables[lex.word()] = progSize; } } void ProgChip:: setInput(ifstream &in){ Word w; in >> w; lexInput.setString(w); inputTok = lexInput.next(); } void ProgChip::run(bool verbose){ step = pc = 0; cout<<"Running...\n"<<endl; lex.setString(program[pc]); tok = lex.next(); skipLable(); while(tok != Lex::END && tok != Lex::HALT){ doLine(); if(verbose) cout<<"[Step= "<<step<<", line= "<< pc <<"]:"<<program[pc]<<endl; lex.setString(program[++pc]); tok = lex.next(); skipLable(); }check(tok == Lex::HALT,"ERROR: progChip: run(); program ran past 'end'"); } void ProgChip:: skipLable(){ // cout<<"skip lable"<<endl; if(tok == Lex::IDENTIFIER && lex.peek() == Lex::COLON){ tok = lex.next(); tok = lex.next(); } } void ProgChip::doLine(){ // cout<<"pc = "<<pc<<endl; step++; switch(tok){ case Lex::IDENTIFIER: doEqual(); break; case Lex::IF: doIf(); break; case Lex::READ: doRead(); break; case Lex::WRITE: doWrite(); break; case Lex::GOTO: doGoTo(); break; case Lex::EOLN: break; default: check(false,"Error: ProgChip():doLine():Line is not syntactically correct"); } } void ProgChip::doEqual(){ // cout<<"start do equal"<<endl; check(var.inTable(lex.word()),"Error: ProgChip: doEqual():Identifier not found in table"); int memLoc = var[lex.word()]; if(lex.next() == Lex::SETEQ){ tok = lex.next(); runExpression(); store(memLoc); }else check(false,"Error:ProgChip: doEqual():invalid syntax, = expected"); } void ProgChip::runExpression(){ // cout<<"start run expression"<<endl; if(tok == Lex::NUMBER) accu = lex.word().toInt(); else if(tok == Lex::IDENTIFIER){ check(var.inTable(lex.word()),"Error: ProgChip: doEqual():Identifier not found in table"); accu = memory[var[lex.word()]].get(); }else check(false,"Error: ProgChip: runExpression(): Invalid syntax"); tok = lex.next(); } void ProgChip::doIf(){ // cout<<"start do if"<<endl; tok = lex.next(); runExpression(); push(); int boolOpt = tok; tok = lex.next(); runExpression(); push(); top(-2); pop(); top(-1); pop(); bool flag; switch(boolOpt){ case Lex::LT:flag = (register1 < register2);break; case Lex::GT:flag = (register1 > register2);break; case Lex::LE:flag = (register1 <= register2);break; case Lex::GE:flag = (register1 >= register2);break; case Lex::EQ:flag = (register1 == register2);break; case Lex::NE:flag = (register1 != register2);break; default: check(false,"Error: ProgChip: doIf():Invalid Syntax"); } if(flag) doGoTo(); tok = lex.next(); } void ProgChip::doGoTo(){ // cout<<"start go to"<<endl; check(tok == Lex::GOTO, "Error: ProgChip: doGoTo():invalid syntax"); tok = lex.next(); check(tok == Lex::IDENTIFIER, "Error: ProgChip: doGoTo():invalid syntax"); pc = lables[lex.word()]-1; } void ProgChip::doRead(){ // cout<<"start do read"<<endl; tok = lex.next(); check(tok ==Lex::IDENTIFIER,"Error: ProgChip: doRead(): invalid syntax,IDENTIFIER expected"); int memLoc = var[lex.word()]; getInput(); store(memLoc); cout<<"INPUT<---"<<memory[memLoc].get()<<endl; tok = lex.next(); } void ProgChip:: doWrite(){ // cout<<"start do write"<<endl; tok = lex.next(); runExpression(); cout << "\tOUTPUT--->"<<accu<<endl; tok = lex.next(); } void ProgChip:: getInput(){ check(inputTok == Lex::NUMBER ||inputTok == Lex::MINUS, "Error: ProgChip: getInput():invalid input"); if(inputTok == Lex::NUMBER) accu = lexInput.word().toInt(); else if(inputTok == Lex::MINUS){ inputTok = lexInput.next(); check(inputTok == Lex::NUMBER, "Error: ProgChip: getInput():invalid input"); accu = lexInput.word().toInt()*(-1); } inputTok = lexInput.next(); } void ProgChip::check(bool flag, string mess1,string mess2){ if(!flag){ cout<<mess1<<mess2<<endl; exit(0); } }
7090296cb1e334b63d53730afded5b7ea0c0ce2e
ecb2798c0529d23ed7e32f28578b23affd180ce1
/Assignment 1/src/Demos/StackOverflowGUI.cpp
884d2d89bfec53313ed0fda49bf222f1bede4c59
[]
no_license
zjulsh/cs106b_2019
259305efbfce685ab91d5b771653a011b3aac478
9cd4a107fc24edfda18dc67372ce370b957d0404
refs/heads/master
2021-04-10T19:26:49.398285
2020-03-21T11:15:13
2020-03-21T11:15:13
248,958,721
1
0
null
null
null
null
UTF-8
C++
false
false
580
cpp
#include "StackOverflowGUI.h" #include "StackOverflow.h" #include "goptionpane.h" using namespace std; namespace { const string kWarningMessage = R"(Warning! This is going to crash your program. Make sure you ran your program using the "Debug" option, the green triangle with the little bug icon on it.)"; } StackOverflowGUI::StackOverflowGUI(GWindow &) { GOptionPane::showMessageDialog(kWarningMessage, "Warning!"); triggerStackOverflow(137); } shared_ptr<ProblemHandler> makeStackOverflowGUI(GWindow& window) { return make_shared<StackOverflowGUI>(window); }
03d2ecd6497bc3d4e4e8e980b599157aa988e2c2
8601aa04eedda23a5a42cde56ac4ebea843fac0d
/src/agent/ncp_wpantund.cpp
819f247b1a96ef0b7eb8d254fc462957238f5bf5
[ "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
ptone/borderrouter
c79fd90cfe2e02938035f2ae005e58d244a51215
68acf651f4c57f62a861f5ae9288150c41f9a4d2
refs/heads/master
2021-01-25T04:35:58.698763
2017-06-05T05:21:36
2017-06-05T05:21:36
93,453,911
0
0
null
2017-06-05T22:50:01
2017-06-05T22:50:01
null
UTF-8
C++
false
false
14,807
cpp
/* * Copyright (c) 2017, The OpenThread Authors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include "ncp_wpantund.hpp" #include <stdexcept> #include <vector> #include <string.h> #include <stdio.h> #include <syslog.h> #include <sys/time.h> extern "C" { #include "wpanctl-utils.h" #include "wpan-dbus-v1.h" } #include "spinel.h" #include "common/code_utils.hpp" namespace ot { namespace BorderAgent { namespace Ncp { /** * This string is used to filter the property changed signal from wpantund. */ const char *kDBusMatchPropChanged = "type='signal',interface='"WPANTUND_DBUS_APIv1_INTERFACE "'," "member='"WPANTUND_IF_SIGNAL_PROP_CHANGED "'"; #define BORDER_AGENT_DBUS_NAME "otbr.agent" DBusHandlerResult ControllerWpantund::HandleProperyChangedSignal(DBusConnection *aConnection, DBusMessage *aMessage, void *aContext) { return static_cast<ControllerWpantund *>(aContext)->HandleProperyChangedSignal(*aConnection, *aMessage); } DBusHandlerResult ControllerWpantund::HandleProperyChangedSignal(DBusConnection &aConnection, DBusMessage &aMessage) { DBusMessageIter iter; DBusHandlerResult result = DBUS_HANDLER_RESULT_HANDLED; const char *key = NULL; const uint8_t *pskc = NULL; const char *sender = dbus_message_get_sender(&aMessage); const char *path = dbus_message_get_path(&aMessage); syslog(LOG_DEBUG, "dbus message received"); if (sender && path && strcmp(sender, mInterfaceDBusName) && strstr(path, mInterfaceName)) { // DBus name of the interface has changed, possibly caused by wpantund restarted, // We have to restart the border agent proxy. syslog(LOG_DEBUG, "dbus name changed"); BorderAgentProxyStart(); } VerifyOrExit(dbus_message_is_signal(&aMessage, WPANTUND_DBUS_APIv1_INTERFACE, WPANTUND_IF_SIGNAL_PROP_CHANGED), result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED); VerifyOrExit(dbus_message_iter_init(&aMessage, &iter)); dbus_message_iter_get_basic(&iter, &key); VerifyOrExit(key != NULL, result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED); dbus_message_iter_next(&iter); syslog(LOG_INFO, "property %s changed", key); if (!strcmp(key, kWPANTUNDProperty_NetworkPSKc)) { int count = 0; DBusMessageIter subIter; dbus_message_iter_recurse(&iter, &subIter); dbus_message_iter_get_fixed_array(&subIter, &pskc, &count); mPSKcHandler(pskc, mContext); } else if (!strcmp(key, kWPANTUNDProperty_BorderAgentProxyStream)) { const uint8_t *buf = NULL; uint16_t locator = 0; uint16_t port = 0; uint16_t len = 0; { DBusMessageIter sub_iter; int nelements = 0; dbus_message_iter_recurse(&iter, &sub_iter); dbus_message_iter_get_fixed_array(&sub_iter, &buf, &nelements); len = (uint16_t)nelements; } // both port and locator are encoded in network endian. port = buf[--len]; port |= buf[--len] << 8; locator = buf[--len]; locator |= buf[--len] << 8; mPacketHandler(buf, len, locator, port, mContext); } else { result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED; } exit: return result; } dbus_bool_t ControllerWpantund::AddDBusWatch(struct DBusWatch *aWatch, void *aContext) { static_cast<ControllerWpantund *>(aContext)->mWatches[aWatch] = true; return TRUE; } void ControllerWpantund::RemoveDBusWatch(struct DBusWatch *aWatch, void *aContext) { static_cast<ControllerWpantund *>(aContext)->mWatches.erase(aWatch); } void ControllerWpantund::ToggleDBusWatch(struct DBusWatch *aWatch, void *aContext) { static_cast<ControllerWpantund *>(aContext)->mWatches[aWatch] = (dbus_watch_get_enabled(aWatch) ? true : false); } int ControllerWpantund::BorderAgentProxyEnable(dbus_bool_t aEnable) { int ret = 0; DBusMessage *message = NULL; const char *key = kWPANTUNDProperty_BorderAgentProxyEnabled; message = dbus_message_new_method_call( mInterfaceDBusName, mInterfaceDBusPath, WPANTUND_DBUS_APIv1_INTERFACE, WPANTUND_IF_CMD_PROP_SET); VerifyOrExit(message != NULL, ret = -1); VerifyOrExit(dbus_message_append_args( message, DBUS_TYPE_STRING, &key, DBUS_TYPE_BOOLEAN, &aEnable, DBUS_TYPE_INVALID), ret = -1); VerifyOrExit(dbus_connection_send(mDBus, message, NULL), ret = -1); exit: if (message != NULL) { dbus_message_unref(message); } return ret; } ControllerWpantund::ControllerWpantund(const char *aInterfaceName, PSKcHandler aPSKcHandler, PacketHandler aPacketHandler, void *aContext) : mPacketHandler(aPacketHandler), mPSKcHandler(aPSKcHandler), mContext(aContext) { int ret = 0; DBusError error; strncpy(mInterfaceName, aInterfaceName, sizeof(mInterfaceName)); dbus_error_init(&error); mDBus = dbus_bus_get(DBUS_BUS_STARTER, &error); if (!mDBus) { dbus_error_free(&error); mDBus = dbus_bus_get(DBUS_BUS_SYSTEM, &error); } VerifyOrExit(mDBus != NULL, ret = -1); VerifyOrExit(dbus_bus_register(mDBus, &error), ret = -1); VerifyOrExit(dbus_bus_request_name(mDBus, BORDER_AGENT_DBUS_NAME, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error) == DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER, ret = -1); VerifyOrExit(dbus_connection_set_watch_functions( mDBus, AddDBusWatch, RemoveDBusWatch, ToggleDBusWatch, this, NULL), ret = -1); dbus_bus_add_match(mDBus, kDBusMatchPropChanged, &error); VerifyOrExit(!dbus_error_is_set(&error), ret = -1); VerifyOrExit(dbus_connection_add_filter(mDBus, HandleProperyChangedSignal, this, NULL), ret = -1); exit: if (dbus_error_is_set(&error)) { syslog(LOG_ERR, "DBus error: %s", error.message); dbus_error_free(&error); } if (ret) { if (mDBus) { dbus_connection_unref(mDBus); } syslog(LOG_ERR, "Failed to initialize ncp controller. error=%d", ret); throw std::runtime_error("Failed to create ncp controller"); } } ControllerWpantund::~ControllerWpantund(void) { BorderAgentProxyStop(); } int ControllerWpantund::BorderAgentProxyStart(void) { int ret = 0; SuccessOrExit(ret = lookup_dbus_name_from_interface(mInterfaceDBusName, mInterfaceName)); // according to source code of wpanctl, better to export a function. snprintf(mInterfaceDBusPath, sizeof(mInterfaceDBusPath), "%s/%s", WPANTUND_DBUS_PATH, mInterfaceName); BorderAgentProxyEnable(TRUE); exit: return ret; } int ControllerWpantund::BorderAgentProxySend(const uint8_t *aBuffer, uint16_t aLength, uint16_t aLocator, uint16_t aPort) { int ret = 0; DBusMessage *message = NULL; std::vector<uint8_t> data(aLength + sizeof(aLocator) + sizeof(aPort)); const uint8_t *value = data.data(); const char *key = kWPANTUNDProperty_BorderAgentProxyStream; memcpy(data.data(), aBuffer, aLength); data[aLength] = (aLocator >> 8); data[aLength + 1] = (aLocator & 0xff); data[aLength + 2] = (aPort >> 8); data[aLength + 3] = (aPort & 0xff); message = dbus_message_new_method_call( mInterfaceDBusName, mInterfaceDBusPath, WPANTUND_DBUS_APIv1_INTERFACE, WPANTUND_IF_CMD_PROP_SET); VerifyOrExit(message != NULL, ret = -1); VerifyOrExit(dbus_message_append_args( message, DBUS_TYPE_STRING, &key, DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE, &value, data.size(), DBUS_TYPE_INVALID), ret = -1); VerifyOrExit(dbus_connection_send(mDBus, message, NULL), ret = -1); exit: if (message) { dbus_message_unref(message); } return ret; } int ControllerWpantund::BorderAgentProxyStop(void) { BorderAgentProxyEnable(FALSE); if (mDBus) { dbus_connection_unref(mDBus); mDBus = NULL; } return 0; } void ControllerWpantund::UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, fd_set &aErrorFdSet, int &aMaxFd) { for (WatchMap::iterator it = mWatches.begin(); it != mWatches.end(); ++it) { if (!it->second) continue; DBusWatch *watch = it->first; unsigned int flags = dbus_watch_get_flags(watch); int fd = dbus_watch_get_unix_fd(watch); if (fd < 0) continue; if (flags & DBUS_WATCH_READABLE) { FD_SET(fd, &aReadFdSet); } if ((flags & DBUS_WATCH_WRITABLE) && dbus_connection_has_messages_to_send(mDBus)) { FD_SET(fd, &aWriteFdSet); } FD_SET(fd, &aErrorFdSet); if (fd > aMaxFd) { aMaxFd = fd; } } } void ControllerWpantund::Process(const fd_set &aReadFdSet, const fd_set &aWriteFdSet, const fd_set &aErrorFdSet) { for (WatchMap::iterator it = mWatches.begin(); it != mWatches.end(); ++it) { if (!it->second) continue; DBusWatch *watch = it->first; unsigned int flags = dbus_watch_get_flags(watch); int fd = dbus_watch_get_unix_fd(watch); if (fd < 0) continue; if ((flags & DBUS_WATCH_READABLE) && !FD_ISSET(fd, &aReadFdSet)) { flags &= ~DBUS_WATCH_READABLE; } if ((flags & DBUS_WATCH_WRITABLE) && !FD_ISSET(fd, &aWriteFdSet)) { flags &= ~DBUS_WATCH_WRITABLE; } if (FD_ISSET(fd, &aErrorFdSet)) { flags |= DBUS_WATCH_ERROR; } dbus_watch_handle(watch, flags); } while (DBUS_DISPATCH_DATA_REMAINS == dbus_connection_get_dispatch_status(mDBus) && dbus_connection_read_write_dispatch(mDBus, 0)) ; } DBusMessage *ControllerWpantund::RequestProperty(const char *aKey) { DBusMessage *message = NULL; DBusMessage *reply = NULL; int timeout = DEFAULT_TIMEOUT_IN_SECONDS * 1000; DBusError error; dbus_error_init(&error); VerifyOrExit((message = dbus_message_new_method_call(mInterfaceDBusName, mInterfaceDBusPath, WPANTUND_DBUS_APIv1_INTERFACE, WPANTUND_IF_CMD_PROP_GET)) != NULL); VerifyOrExit(dbus_message_append_args(message, DBUS_TYPE_STRING, &aKey, DBUS_TYPE_INVALID)); reply = dbus_connection_send_with_reply_and_block(mDBus, message, timeout, &error); exit: if (dbus_error_is_set(&error)) { syslog(LOG_ERR, "DBus error: %s", error.message); dbus_error_free(&error); } if (message) { dbus_message_unref(message); } return reply; } int ControllerWpantund::GetProperty(const char *aKey, uint8_t *aBuffer, size_t &aSize) { int ret = 0; DBusMessage *reply = NULL; DBusError error; VerifyOrExit(reply = RequestProperty(aKey), ret = -1, syslog(LOG_ERR, "No reply")); { uint8_t *buffer = NULL; int count = 0; dbus_error_init(&error); VerifyOrExit(dbus_message_get_args(reply, &error, DBUS_TYPE_INT32, &ret, DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE, &buffer, &count, DBUS_TYPE_INVALID), ret = -1, syslog(LOG_ERR, "Failed to parse")); VerifyOrExit(ret == 0); aSize = static_cast<size_t>(count); memcpy(aBuffer, buffer, count); } exit: if (reply) { dbus_message_unref(reply); } return ret; } const uint8_t *ControllerWpantund::GetPSKc(void) { size_t size = 0; VerifyOrExit(0 == GetProperty(kWPANTUNDProperty_NetworkPSKc, mPSKc, size), memset(mPSKc, 0, sizeof(mPSKc))); exit: return mPSKc; } const uint8_t *ControllerWpantund::GetEui64(void) { size_t size = 0; VerifyOrExit(0 == GetProperty(kWPANTUNDProperty_NCPHardwareAddress, mEui64, size), memset(mEui64, 0, sizeof(mEui64))); exit: return mEui64; } Controller *Controller::Create(const char *aInterfaceName, PSKcHandler aPSKcHandler, PacketHandler aPacketHandler, void *aContext) { return new ControllerWpantund(aInterfaceName, aPSKcHandler, aPacketHandler, aContext); } void Controller::Destroy(Controller *aController) { delete static_cast<ControllerWpantund *>(aController); } } // Ncp } // namespace BorderAgent } // namespace ot
250e5d49e738abe3dbee8d75a8be66d6b95f4d19
cd363186bf6620261c5bee7e8ce4427519e5135c
/tests/diagnostics_test.cc
d73f7c4499ecf9fbf43d13c15fe10204d06f2800
[ "MIT" ]
permissive
alexandreofbh/libclangmm
817554cafb894e3031df05016dff91c7bb205bd9
c624c7233c437c9301db8a3dc3952a33d000cc08
refs/heads/master
2020-04-05T03:58:51.849726
2018-06-11T18:04:50
2018-06-11T18:04:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
997
cc
#include "clangmm.h" #include <iostream> #include <fstream> #include <cassert> #include <regex> using namespace std; int main() { std::string tests_path=LIBCLANGMM_TESTS_PATH; std::string path(tests_path+"/case/main_error.cpp"); clangmm::Index index(0, 0); std::vector<std::string> arguments; auto clang_version_string=clangmm::to_string(clang_getClangVersion()); const static std::regex clang_version_regex("^[A-Za-z ]+([0-9.]+).*$"); std::smatch sm; if(std::regex_match(clang_version_string, sm, clang_version_regex)) { auto clang_version=sm[1].str(); arguments.emplace_back("-I/usr/lib/clang/"+clang_version+"/include"); arguments.emplace_back("-I/usr/lib64/clang/"+clang_version+"/include"); // For Fedora } clangmm::TranslationUnit tu(index, path, arguments); auto diagnostics=tu.get_diagnostics(); assert(diagnostics.size()>0); assert(!diagnostics[0].spelling.empty()); assert(diagnostics[0].severity==clangmm::Diagnostic::Severity::Error); }
00877b38886b3cfc42a58745583d2f55a02f2b45
0ddef9349665b87490ee89bc7a560a54b14a63df
/utils/string_utils.cpp
35610c01e0881131870f30a91131a6908bc41560
[]
no_license
aticie/ReplayAnalyzer
4920166eba59161744e1869c0d3b234def1d967b
6460ed3e003840edb79f9682f24617a97006ccb7
refs/heads/master
2022-12-06T13:25:35.622422
2020-08-07T23:23:48
2020-08-07T23:23:48
290,017,528
0
0
null
null
null
null
UTF-8
C++
false
false
1,560
cpp
#include "string_utils.h" bool endsWith(const std::string& str, const char* suffix, unsigned suffixLen) { return str.size() >= suffixLen && 0 == str.compare(str.size() - suffixLen, suffixLen, suffix, suffixLen); } bool endsWith(const std::string& str, const char* suffix) { return endsWith(str, suffix, std::string::traits_type::length(suffix)); } bool startsWith(const std::string& str, const char* prefix, unsigned prefixLen) { return str.size() >= prefixLen && 0 == str.compare(0, prefixLen, prefix, prefixLen); } bool startsWith(const std::string& str, const char* prefix) { return startsWith(str, prefix, std::string::traits_type::length(prefix)); } std::vector<std::string> splitString(const std::string& str, const std::string& delim) { std::vector<std::string> tokens; size_t prev = 0, pos; do { pos = str.find(delim, prev); if (pos == std::string::npos) pos = str.length(); std::string token = str.substr(prev, pos - prev); if (!token.empty()) tokens.push_back(token); prev = pos + delim.length(); } while (pos < str.length() && prev < str.length()); return tokens; } std::vector<std::wstring> splitString(const std::wstring& str, const std::wstring& delim) { std::vector<std::wstring> tokens; size_t prev = 0, pos; do { pos = str.find(delim, prev); if (pos == std::string::npos) pos = str.length(); std::wstring token = str.substr(prev, pos - prev); if (!token.empty()) tokens.push_back(token); prev = pos + delim.length(); } while (pos < str.length() && prev < str.length()); return tokens; }
08311f11f3f00c75503509c23356a0a4d8d8af5f
6613336ad4075de0a72d8c0465f6e61e804df1ff
/hdu5380.cpp
cd4047fa50cc8343ccf7fe37c9f2dbb3cee3b802
[]
no_license
cordercorder/HDUOJ
9e43939973862c3bfd472ec4886a836749f0fdfc
f2ac49dc026dcb1aedd7459640b828edad7cbaf8
refs/heads/master
2020-03-27T04:22:02.049610
2018-08-24T02:41:48
2018-08-24T02:41:48
145,933,400
14
3
null
null
null
null
UTF-8
C++
false
false
905
cpp
#include<iostream> #include<algorithm> #include<cstring> #include<string> #include<cmath> #include<queue> #include<stack> #include<set> #include<vector> #include<cstdio> #include<cstdlib> #include<map> #include<deque> #include<limits.h> #include<bitset> #include<ctime> #define deb(x) cout<<"#---"<<#x<<"=="<<x<<endl using namespace std; const long double PI=acos(-1.0); const long double eps=1e-6; const long long maxw=1e17+10; typedef long long ll; typedef pair<int,int> pii; /*head------[@cordercorder]*/ const int maxn=2e5+10; struct node{ ll num; ll pos; }; node Q[maxn]; ll n,c; ll t; ll buy[maxn],sell[maxn]; ll a[maxn]; void solve(){ } int main(void){ scanf("%lld",&t); while(t--){ scanf("%lld %lld",&n,&c); a[0]=0; for(ll i=1;i<=n;i++){ scanf("%lld",&a[i]); } for(ll i=0;i<=n;i++){ scanf("%lld %lld",&buy[i],&sell[i]); } } return 0; }
3ed3015112417194ab9eed745e5662f16d817995
169d9587b3c439f1a34038730f0df4dfd06ef0ee
/2021/day10/main.cpp
e3a91872974f8a89dd16b1812d06c04d2428b49b
[]
no_license
duchonic/aoc
4a58966175e385ee5caf1b9f7982fedc403dfcb6
6f0b6fb9d6e4bc4b6b53ca32cb819bcb44122037
refs/heads/master
2022-02-13T12:29:24.079227
2022-01-20T12:24:58
2022-01-20T12:24:58
164,295,011
1
0
null
2021-12-08T19:59:11
2019-01-06T10:00:29
C++
UTF-8
C++
false
false
2,499
cpp
/** _ _ _ _ ___ | |_ __ _ | |_ (_) ___ _ _ __ ___ __| | ___ ___ (_-< | _| / _` | | _| | | / _ \ | ' \ _ / _| / _ \ / _` | / -_) (_-< /__/_ _\__| \__,_| _\__| _|_|_ \___/ |_||_| _(_)_ \__|_ \___/ \__,_| \___| /__/_ _|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""_|"""""| "`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-"`-0-0-' */ #include "help/help.h" #include "help/math.h" #include "help/prime.h" #include "help/geometry.h" #include "help/string.h" #include "help/file.h" #include "help/log.h" #include "help/string.h" #include <cstdlib> #include <map> int main() { //std::vector<std::string> data = readFile("W:/work/hack/aoc/2021/day09/data.txt"); //std::vector<std::string> data = readFile("../data.txt"); std::vector<std::string> data = readstuff(); int part1 = 0; std::vector<uint64_t> part2; if (data.size() == 0) { return 1; } for (auto &line : data) { std::size_t removed = 1; logger(line); while (removed) { removed = replace_all(line, "()", "") ; removed += replace_all(line, "{}", "") ; removed += replace_all(line, "[]", "") ; removed += replace_all(line, "<>", "") ; } int index = 0; logger(line); bool incomplete = true; for (auto ch : line) { if (ch == ')' || ch == '}' || ch == ']' or ch == '>') { switch(ch) { case ')': part1+=3; break; case ']': part1+=57; break; case '}': part1+=1197; break; case '>': part1+=25137; break; default: logger("EEEERRRROOOORR"); break; } incomplete = false; logger("expected " << line.at(index-1) << " but found " << line.at(index)); break; } index++; } if (incomplete) { logger("do part2 with incomplete line: " << line); uint64_t sum = 0; for (int index = line.size()-1 ; index>=0 ; index--) { sum *= 5; switch(line.at(index)) { case '(': sum+=1; break; case '[': sum+=2; break; case '{': sum+=3; break; case '<': sum+=4; break; default: logger("EEEERRRROOOORR"); break; } } logger("sum : " << sum); part2.push_back(sum); } } std::cout << "part1 : " << part1 << std::endl; std::cout << "part2 : " << median(part2) << std::endl; return 0; }
cb926a431f1ab5399e38a1def3a43dfb551fb9f0
464aa9d7d6c4906b083e6c3da12341504b626404
/src/tools/worldeditor/misc/dirty_chunk_list.cpp
0da1bc3dfa1d80f5dc7b1f19677d0cae31c16c02
[]
no_license
v2v3v4/BigWorld-Engine-2.0.1
3a6fdbb7e08a3e09bcf1fd82f06c1d3f29b84f7d
481e69a837a9f6d63f298a4f24d423b6329226c6
refs/heads/master
2023-01-13T03:49:54.244109
2022-12-25T14:21:30
2022-12-25T14:21:30
163,719,991
182
167
null
null
null
null
UTF-8
C++
false
false
3,921
cpp
/****************************************************************************** BigWorld Technology Copyright BigWorld Pty, Ltd. All Rights Reserved. Commercial in confidence. WARNING: This computer program is protected by copyright law and international treaties. Unauthorized use, reproduction or distribution of this program, or any portion of this program, may result in the imposition of civil and criminal penalties as provided by law. ******************************************************************************/ #include "pch.hpp" #include "dirty_chunk_list.hpp" /////////////////////////////////////////////////////////////////////////////// // Section: DirtyChunkList (1 list) /////////////////////////////////////////////////////////////////////////////// DirtyChunkList::DirtyChunkList( const std::string& type ) : type_( type ) { } bool DirtyChunkList::isDirty( const std::string& chunkName ) const { BW_GUARD; return chunks_.find( chunkName ) != chunks_.end(); } void DirtyChunkList::dirty( Chunk* pChunk ) { BW_GUARD; chunks_[ pChunk->identifier() ] = pChunk; } void DirtyChunkList::clean( const std::string& chunkName ) { BW_GUARD; chunks_.erase( chunkName ); } bool DirtyChunkList::any() const { BW_GUARD; for (ChunkMap::const_iterator iter = chunks_.begin(); iter != chunks_.end(); ++iter) { return true; } return false; } int DirtyChunkList::num() const { return (int)chunks_.size(); } DirtyChunkList::iterator DirtyChunkList::begin() { return chunks_.begin(); } DirtyChunkList::iterator DirtyChunkList::end() { return chunks_.end(); } DirtyChunkList::iterator DirtyChunkList::erase( iterator iter ) { return chunks_.erase( iter ); } DirtyChunkList::const_iterator DirtyChunkList::begin() const { return chunks_.begin(); } DirtyChunkList::const_iterator DirtyChunkList::end() const { return chunks_.end(); } bool DirtyChunkList::empty() const { return chunks_.empty(); } void DirtyChunkList::clear() { BW_GUARD; chunks_.clear(); } /////////////////////////////////////////////////////////////////////////////// // Section: DirtyChunkLists (all the lists) /////////////////////////////////////////////////////////////////////////////// DirtyChunkList& DirtyChunkLists::operator[]( const std::string& type ) { BW_GUARD; DirtyLists::iterator iter = dirtyLists_.find( type ); if (iter != dirtyLists_.end()) { return iter->second; } return dirtyLists_.insert( DirtyLists::value_type( type, DirtyChunkList( type ) ) ).first->second; } const DirtyChunkList& DirtyChunkLists::operator[]( const std::string& type ) const { BW_GUARD; DirtyLists::const_iterator iter = dirtyLists_.find( type ); if (iter != dirtyLists_.end()) { return iter->second; } static DirtyChunkList dummy( "dummy" ); return dummy; } bool DirtyChunkLists::empty() const { BW_GUARD; bool result = true; for (DirtyLists::const_iterator iter = dirtyLists_.begin(); iter != dirtyLists_.end(); ++iter) { if (!iter->second.empty()) { result = false; break; } } return result; } bool DirtyChunkLists::any() const { BW_GUARD; bool result = false; for (DirtyLists::const_iterator iter = dirtyLists_.begin(); iter != dirtyLists_.end(); ++iter) { if (iter->second.any()) { result = true; break; } } return result; } bool DirtyChunkLists::isDirty( const std::string& chunkName ) const { BW_GUARD; bool result = false; for (DirtyLists::const_iterator iter = dirtyLists_.begin(); iter != dirtyLists_.end(); ++iter) { if (iter->second.isDirty( chunkName )) { result = true; break; } } return result; } void DirtyChunkLists::clean( const std::string& chunkName ) { BW_GUARD; for (DirtyLists::iterator iter = dirtyLists_.begin(); iter != dirtyLists_.end(); ++iter) { iter->second.clean( chunkName ); } } void DirtyChunkLists::clear() { BW_GUARD; dirtyLists_.clear(); }
0442211191d1a4413dafa83ca414a9ecea55f458
0bc5e6d1bebe3131f3654409f682cad899c78536
/BRLADDER.cpp
89eee307b80f50979ebfd90598bce0200aa8a207
[]
no_license
sureshpodeti/codechef
410670839f9e09c2eb1220578901146f2e943da4
e13cb64ffb29b84ad3ddaf0fdd440c3bb6caf733
refs/heads/master
2020-04-24T07:19:11.279526
2019-02-21T14:33:58
2019-02-21T14:33:58
171,795,575
0
0
null
2019-02-21T14:17:22
2019-02-21T03:45:24
C++
UTF-8
C++
false
false
697
cpp
#include<iostream> using namespace std; int main(){ int Q; long long int a, b; cin >> Q; while(Q--){ cin.ignore(); cin >> a >> b; // sorting; swapping if(a>b){ //swapping is needed // to ensure a<b a = a+b; b = a-b; a = a-b; } int status = 0; if(a%2==0){ if(b==a+2) status = 1; else status = 0; }else{ if(b==a+1 || b==a+2) status = 1; else status = 0; } if(status) cout << "YES" << endl; else cout << "NO" << endl; } return 0; }
e9612e705211d39e506bbacdab5c01000ba59288
9332137e23a3dcb56804371cf1580f1fd988c1aa
/stk/stk/container/icl/interval_combining_style.hpp
7fa3a26534ba0a632ae79aba30a49dded3d494f1
[ "BSL-1.0" ]
permissive
brandon-kohn/simulation_toolkit
5c590030a6b46b1722d3e1417505118e04f4f1c6
8a772f336701d0cdc66d386c4e0927325089b10a
refs/heads/master
2023-09-01T15:37:02.517027
2023-08-16T15:17:55
2023-08-16T15:17:55
85,863,362
0
1
null
2018-05-09T15:45:58
2017-03-22T18:37:51
C++
UTF-8
C++
false
false
939
hpp
/*-----------------------------------------------------------------------------+ Copyright (c) 2010-2010: Joachim Faulhaber +------------------------------------------------------------------------------+ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENCE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +-----------------------------------------------------------------------------*/ #ifndef STK_ICL_INTERVAL_COMBINING_STYLE_HPP_JOFA_100906 #define STK_ICL_INTERVAL_COMBINING_STYLE_HPP_JOFA_100906 namespace stk { namespace icl { namespace interval_combine { BOOST_STATIC_CONSTANT(int, unknown = 0); BOOST_STATIC_CONSTANT(int, joining = 1); BOOST_STATIC_CONSTANT(int, separating = 2); BOOST_STATIC_CONSTANT(int, splitting = 3); BOOST_STATIC_CONSTANT(int, elemental = 4); } // namespace interval_combine }} // namespace boost icl #endif
60a1c58b3cc24aabaf7285a2720d9805633df298
67be94dcfaff3d818037be4c655fef94362c1f49
/Src/Modules/wxLua/bindings/wxwidgets/wxbase_override.hpp
219a4af412feae5b3d56e68be8f793615ab7167a
[ "MIT" ]
permissive
wyrover/luaplus51-all
b32453b7b69060b53d6e91f98a32b972783c4912
43936c1430f124be62ed4983f55df1e56068dfa7
refs/heads/master
2021-01-18T05:25:22.325866
2013-08-27T06:42:23
2013-08-27T06:42:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
38,674
hpp
// ---------------------------------------------------------------------------- // Overridden functions for the wxWidgets binding for wxLua // // Please keep these functions in the same order as the .i file and in the // same order as the listing of the functions in that file. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // Overrides for wxbase_base.i // ---------------------------------------------------------------------------- %override wxLua_wxLog_SetTimestamp // static void SetTimestamp(const wxString& ts) static int LUACALL wxLua_wxLog_SetTimestamp(lua_State *L) { // docs say that using NULL will disable time stamping. The actual arg is "const wxChar* ts" if (lua_isnoneornil(L, 1)) { #if wxCHECK_VERSION(2, 9, 0) wxLog::SetTimestamp(wxEmptyString); #else wxLog::SetTimestamp(NULL); #endif } else { // const wxString ts const wxString ts = wxlua_getwxStringtype(L, 1); // call SetTimestamp wxLog::SetTimestamp(ts); } return 0; } %end %override wxLua_function_wxGetOsVersion // %function int wxGetOsVersion(int *major = NULL, int *minor = NULL) static int LUACALL wxLua_function_wxGetOsVersion(lua_State *L) { // int *minor = NULL int minor= 0; // int *major = NULL int major = 0; // call wxGetOsVersion int returns = wxGetOsVersion(&major, &minor); // push the result numbers lua_pushnumber(L, returns); lua_pushnumber(L, major); lua_pushnumber(L, minor); // return the number of parameters return 3; } %end %override wxLua_function_wxGetEnv // %function bool wxGetEnv(const wxString& var, wxString *value) static int LUACALL wxLua_function_wxGetEnv(lua_State *L) { wxString var = wxlua_getwxStringtype(L, 1); wxString value; // call wxGetEnv bool returns = wxGetEnv(var, &value); // push the result number lua_pushboolean(L, returns); wxlua_pushwxString(L, value); // return the number of parameters return 2; } %end %override wxLua_wxStandardPaths_Get // static wxStandardPaths& Get(); static int LUACALL wxLua_wxStandardPaths_Get(lua_State *L) { // call Get wxStandardPathsBase *returns = &wxStandardPaths::Get(); // push the result datatype wxluaT_pushuserdatatype(L, returns, wxluatype_wxStandardPaths); return 1; } %end %override wxLua_wxRegEx_GetMatchIndexes // %rename GetMatchPointer bool GetMatch(size_t* start, size_t* len, size_t index = 0) const static int LUACALL wxLua_wxRegEx_GetMatchIndexes(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // size_t index = 0 size_t index = (argCount >= 2 ? (size_t)wxlua_getintegertype(L, 2) : 0); // size_t* len size_t len = 0; // size_t* start size_t start = 0; // get this wxRegEx *self = (wxRegEx *)wxluaT_getuserdatatype(L, 1, wxluatype_wxRegEx); // call GetMatch bool returns = self->GetMatch(&start, &len, index); // push the result number lua_pushboolean(L, returns); // push the match start and length indexes lua_pushnumber(L, start); lua_pushnumber(L, len); // return the number of parameters return 3; } %end %override wxLua_wxRegEx_Replace // int Replace(wxString* text, const wxString& replacement, size_t maxMatches = 0) const static int LUACALL wxLua_wxRegEx_Replace(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // size_t maxMatches = 0 size_t maxMatches = (argCount >= 4 ? (size_t)wxlua_getintegertype(L, 4) : 0); // const wxString& replacement wxString replacement = wxlua_getwxStringtype(L, 3); // wxString* text wxString text = wxlua_getwxStringtype(L, 2); // get this wxRegEx *self = (wxRegEx *)wxluaT_getuserdatatype(L, 1, wxluatype_wxRegEx); // call Replace int returns = self->Replace(&text, replacement, maxMatches); // push the result number lua_pushnumber(L, returns); // push the result text wxlua_pushwxString(L, text); // return the number of parameters return 2; } %end %override wxLua_wxRegEx_ReplaceAll // int ReplaceAll(wxString* text, const wxString& replacement) const static int LUACALL wxLua_wxRegEx_ReplaceAll(lua_State *L) { // const wxString& replacement wxString replacement = wxlua_getwxStringtype(L, 3); // wxString* text wxString text = wxlua_getwxStringtype(L, 2); // get this wxRegEx *self = (wxRegEx *)wxluaT_getuserdatatype(L, 1, wxluatype_wxRegEx); // call ReplaceAll int returns = self->ReplaceAll(&text, replacement); // push the result number lua_pushnumber(L, returns); // push the result text wxlua_pushwxString(L, text); // return the number of parameters return 2; } %end %override wxLua_wxRegEx_ReplaceFirst // int ReplaceFirst(wxString* text, const wxString& replacement) const static int LUACALL wxLua_wxRegEx_ReplaceFirst(lua_State *L) { // const wxString& replacement wxString replacement = wxlua_getwxStringtype(L, 3); // wxString* text wxString text = wxlua_getwxStringtype(L, 2); // get this wxRegEx *self = (wxRegEx *)wxluaT_getuserdatatype(L, 1, wxluatype_wxRegEx); // call ReplaceFirst int returns = self->ReplaceFirst(&text, replacement); // push the result number lua_pushnumber(L, returns); // push the result text wxlua_pushwxString(L, text); // return the number of parameters return 2; } %end // ---------------------------------------------------------------------------- // Overrides for wxbase_config.i // ---------------------------------------------------------------------------- %override wxLua_wxConfigBase_delete // void delete() static int LUACALL wxLua_wxConfigBase_delete(lua_State *L) { // get this wxConfigBase *self = (wxConfigBase *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); if (wxConfigBase::Get(false) == self) // clear us from the wxConfigBase wxConfigBase::Set(NULL); // we may not be tracked, but delete us anyway if (!wxluaO_deletegcobject(L, 1, WXLUA_DELETE_OBJECT_ALL)) delete self; // return the number of parameters return 0; } %end %override wxLua_wxConfigBase_Read // bool Read(const wxString& key, wxString* str, const wxString& defaultVal = wxEmptyString) const static int LUACALL wxLua_wxConfigBase_Read(lua_State *L) { wxString returns; // get number of arguments int argCount = lua_gettop(L); // wxString defaultVal wxString defaultVal = (argCount >= 3 ? wxlua_getwxStringtype(L, 3) : wxString(wxEmptyString)); // const wxString& key wxString key = wxlua_getwxStringtype(L, 2); // get this wxConfigBase *self = (wxConfigBase *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call Read bool ret = self->Read(key, &returns, defaultVal); // push the result bool lua_pushboolean(L, ret); // push the result string wxlua_pushwxString(L, returns); // return the number of parameters return 2; } %end %override wxLua_wxConfigBase_ReadInt // %rename ReadInt bool Read(const wxString& key, long* l, long defaultVal = 0) const static int LUACALL wxLua_wxConfigBase_ReadInt(lua_State *L) { long returns = 0; // get number of arguments int argCount = lua_gettop(L); // double defaultVal = 0 long defaultVal = (argCount >= 3 ? (long)wxlua_getnumbertype(L, 3) : 0); // const wxString& key wxString key = wxlua_getwxStringtype(L, 2); // get this wxConfigBase *self = (wxConfigBase *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call Read bool ret = self->Read(key, &returns, defaultVal); // push the result bool lua_pushboolean(L, ret); // push the result number lua_pushnumber(L, returns); // return the number of parameters return 2; } %end %override wxLua_wxConfigBase_ReadFloat // %rename ReadFloat bool Read(const wxString& key, double* d, double defaultVal = 0) const static int LUACALL wxLua_wxConfigBase_ReadFloat(lua_State *L) { double returns = 0; // get number of arguments int argCount = lua_gettop(L); // double defaultVal = 0 double defaultVal = (argCount >= 3 ? (double)wxlua_getnumbertype(L, 3) : 0); // const wxString& key wxString key = wxlua_getwxStringtype(L, 2); // get this wxConfigBase *self = (wxConfigBase *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call Read bool ret = self->Read(key, &returns, defaultVal); // push the result bool lua_pushboolean(L, ret); // push the result number lua_pushnumber(L, returns); // return the number of parameters return 2; } %end %override wxLua_wxConfigBase_GetFirstGroup // bool GetFirstGroup(wxString& str, long& index) const static int LUACALL wxLua_wxConfigBase_GetFirstGroup(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // these are optional and are not used anyway long index = (argCount >= 3 ? (long)wxlua_getintegertype(L, 3) : 0); wxString str = (argCount >= 2 ? wxlua_getwxStringtype(L, 2) : wxString(wxEmptyString)); // get this wxConfig *self = (wxConfig *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call GetFirstGroup bool returns = self->GetFirstGroup(str, index); // push the result number lua_pushboolean(L, returns); // push the result string wxlua_pushwxString(L, str); // push the next index lua_pushnumber(L, index); // return the number of parameters return 3; } %end %override wxLua_wxConfigBase_GetFirstEntry // bool GetFirstEntry(wxString& str, long& index) const static int LUACALL wxLua_wxConfigBase_GetFirstEntry(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // these are optional and are not used anyway long index = (argCount >= 3 ? (long)wxlua_getintegertype(L, 3) : 0); wxString str = (argCount >= 2 ? wxlua_getwxStringtype(L, 2) : wxString(wxEmptyString)); // get this wxConfig *self = (wxConfig *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call GetFirstEntry bool returns = self->GetFirstEntry(str, index); // push the result number lua_pushboolean(L, returns); // push the next string wxlua_pushwxString(L, str); // push the next index lua_pushnumber(L, index); // return the number of parameters return 3; } %end %override wxLua_wxConfigBase_GetNextGroup // bool GetNextGroup(wxString& str, long& index) const static int LUACALL wxLua_wxConfigBase_GetNextGroup(lua_State *L) { // only the number is needed long index = (long)wxlua_getintegertype(L, 2); wxString str; // get this wxConfig *self = (wxConfig *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call GetNextGroup bool returns = self->GetNextGroup(str, index); // push the result number lua_pushboolean(L, returns); // push the next result string wxlua_pushwxString(L, str); // push the next index lua_pushnumber(L, index); // return the number of parameters return 3; } %end %override wxLua_wxConfigBase_GetNextEntry // bool GetNextEntry(wxString& str, long& index) const static int LUACALL wxLua_wxConfigBase_GetNextEntry(lua_State *L) { // only the number is needed long index = (long)wxlua_getintegertype(L, 2); wxString str; // get this wxConfig *self = (wxConfig *)wxluaT_getuserdatatype(L, 1, wxluatype_wxConfigBase); // call GetNextEntry bool returns = self->GetNextEntry(str, index); // push the result number lua_pushboolean(L, returns); // push the result string wxlua_pushwxString(L, str); // push the next index lua_pushnumber(L, index); // return the number of parameters return 3; } %end // ---------------------------------------------------------------------------- // Overrides for wxbase_data.i // ---------------------------------------------------------------------------- %override wxLua_wxString_constructor // wxString(const wxString& str = "") static int LUACALL wxLua_wxString_constructor(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // const wxString str = "" const wxString str = (argCount >= 1 ? wxlua_getwxStringtype(L, 1) : wxString(wxEmptyString)); // call constructor wxString* returns = new wxString(str); // add to tracked memory list wxluaO_addgcobject(L, returns, wxluatype_wxString); // push the constructed class pointer wxluaT_pushuserdatatype(L, returns, wxluatype_wxString); return 1; } %end %override wxLua_wxClassInfo_constructor // wxClassInfo(const wxString &name) static int LUACALL wxLua_wxClassInfo_constructor(lua_State *L) { // const wxString &name wxString name = wxlua_getwxStringtype(L, 1); // call constructor #if wxCHECK_VERSION(2, 9, 0) wxClassInfo *returns = wxClassInfo::FindClass(name); #else wxClassInfo *returns = wxClassInfo::FindClass(name.wx_str()); #endif // push the constructed class pointer wxluaT_pushuserdatatype(L, returns, wxluatype_wxClassInfo); // return the number of parameters return 1; } %end %override wxLua_wxObjectRefData_delete_function #if wxCHECK_VERSION(2,9,0) void wxLua_wxObjectRefData_delete_function(void** p) { wxObjectRefData* o = (wxObjectRefData*)(*p); o->DecRef(); } #else void wxLua_wxObjectRefData_delete_function(void** p) { wxObjectRefData* o = (wxObjectRefData*)(*p); delete o; } #endif %end %override wxLua_wxObject_DynamicCast // void *DynamicCast(const char *class) // Attempt to cast an object reference (the first parameter) to another type. // The type requested is specified by the second parameter. Presumably the // type requested will be derived from the supplied object, otherwise // bad things will happen. static int LUACALL wxLua_wxObject_DynamicCast(lua_State *L) { int iResult = 0; const char *className = lua_tostring(L, 2); if (className != NULL) { // The userdata object must be derived from a wxObject for this // function be be called. wxObject *pObject = (wxObject *)wxlua_touserdata(L, 1, false); //wxObject *pObject = (wxObject *)wxluaT_getuserdatatype(L, 1, wxluatype_wxObject); const wxLuaBindClass *wxlClass = wxluaT_getclass(L, className); if (pObject && wxlClass && wxlClass->classInfo) { if (pObject->IsKindOf(wxlClass->classInfo)) { if (*wxlClass->wxluatype != wxluaT_type(L, 1)) wxluaT_pushuserdatatype(L, pObject, *wxlClass->wxluatype); else lua_pushvalue(L, 1); // return same userdata iResult = 1; } else wxlua_argerrormsg(L, wxString::Format(wxT("wxLua: wxObject::DynamicCast() Unable to cast a '%s' to a '%s' with wxClassInfo '%s'."), pObject->GetClassInfo()->GetClassName(), lua2wx(className).c_str(), wxString(wxlClass ? wxlClass->classInfo->GetClassName() : wxT("Unknown")).c_str())); } if (iResult == 0) wxlua_argerrormsg(L, wxString::Format(wxT("wxLua: wxObject::DynamicCast() Cannot cast a wxLua type '%s' with wxClassInfo '%s' to a '%s'."), wxluaT_gettypename(L, 1).c_str(), wxString(pObject ? pObject->GetClassInfo()->GetClassName() : wxT("Unknown")).c_str(), lua2wx(className).c_str())); } else wxlua_argerror(L, 2, wxT("a 'string name of the class'")); return iResult; } %end %override wxLua_wxArrayInt_ToLuaTable // int ToLuaTable() const static int LUACALL wxLua_wxArrayInt_ToLuaTable(lua_State *L) { wxArrayInt * self = (wxArrayInt *)wxluaT_getuserdatatype(L, 1, wxluatype_wxArrayInt); wxlua_pushwxArrayInttable(L, *self); return 1; } %end %override wxLua_wxArrayString_ToLuaTable // int ToLuaTable() const static int LUACALL wxLua_wxArrayString_ToLuaTable(lua_State *L) { wxArrayString * self = (wxArrayString *)wxluaT_getuserdatatype(L, 1, wxluatype_wxArrayString); wxlua_pushwxArrayStringtable(L, *self); return 1; } %end %override wxLua_wxStringList_constructor // wxStringList() static int LUACALL wxLua_wxStringList_constructor(lua_State *L) { // call constructor wxStringList *returns = new wxStringList(); int argCount = lua_gettop(L); if (argCount > 0) { int idx; if (argCount == 1 && lua_istable(L, 1)) { int count = 0; wxLuaSmartStringArray choices = wxlua_getwxStringarray(L, 1, count); for (idx = 0; idx < count; ++idx) returns->Add(choices[idx]); } else { for (idx = 1; idx < argCount; ++idx) returns->Add(wxlua_getwxStringtype(L, idx)); } } // push the constructed class pointer wxluaT_pushuserdatatype(L, returns, wxluatype_wxStringList); // return the number of parameters return 1; } %end // ---------------------------------------------------------------------------- // Overrides for wxbase_datetime.i // ---------------------------------------------------------------------------- %override wxLua_wxDateTime_ParseRfc822Date // %wxchkver_2_9 bool ParseRfc822Date(const wxString& date) static int LUACALL wxLua_wxDateTime_ParseRfc822Date(lua_State *L) { // const wxString date const wxString date = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(date.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseRfc822Date bool returns = (self->ParseRfc822Date(date, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != date.end())) { wxlua_pushwxString(L, wxString(it, date.end())); return 2; } return 1; } %end %override wxLua_wxDateTime_ParseFormat2 // %wxchkver_2_9 bool ParseFormat(const wxString& date) static int LUACALL wxLua_wxDateTime_ParseFormat2(lua_State *L) { // const wxString date const wxString date = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(date.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseFormat bool returns = (self->ParseFormat(date, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != date.end())) { wxlua_pushwxString(L, wxString(it, date.end())); return 2; } return 1; } %end %override wxLua_wxDateTime_ParseFormat1 // %wxchkver_2_9 bool ParseFormat(const wxString& date, wxString format) static int LUACALL wxLua_wxDateTime_ParseFormat1(lua_State *L) { // wxString format wxString format = wxlua_getwxStringtype(L, 3); // const wxString date const wxString date = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(date.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseFormat bool returns = (self->ParseFormat(date, format, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != date.end())) { wxlua_pushwxString(L, wxString(it, date.end())); return 2; } return 1; } %end %override wxLua_wxDateTime_ParseFormat // %wxchkver_2_9 bool ParseFormat(const wxString& date, wxString format, const wxDateTime& dateDef) static int LUACALL wxLua_wxDateTime_ParseFormat(lua_State *L) { // const wxDateTime dateDef const wxDateTime * dateDef = (const wxDateTime *)wxluaT_getuserdatatype(L, 4, wxluatype_wxDateTime); // wxString format wxString format = wxlua_getwxStringtype(L, 3); // const wxString date const wxString date = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(date.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseFormat bool returns = (self->ParseFormat(date, format, *dateDef, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != date.end())) { wxlua_pushwxString(L, wxString(it, date.end())); return 2; } return 1; } %end %override wxLua_wxDateTime_ParseDateTime // %wxchkver_2_9 bool ParseDateTime(const wxString& datetime) static int LUACALL wxLua_wxDateTime_ParseDateTime(lua_State *L) { // const wxString datetime const wxString datetime = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(datetime.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseDateTime bool returns = (self->ParseDateTime(datetime, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != datetime.end())) { wxlua_pushwxString(L, wxString(it, datetime.end())); return 2; } return 1; } %end %override wxLua_wxDateTime_ParseDate // %wxchkver_2_9 bool ParseDate(const wxString& date) static int LUACALL wxLua_wxDateTime_ParseDate(lua_State *L) { // const wxString date const wxString date = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(date.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseDate bool returns = (self->ParseDate(date, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != date.end())) { wxlua_pushwxString(L, wxString(it, date.end())); return 2; } return 1; } %end %override wxLua_wxDateTime_ParseTime // %wxchkver_2_9 bool ParseTime(const wxString& time) static int LUACALL wxLua_wxDateTime_ParseTime(lua_State *L) { // const wxString time const wxString time = wxlua_getwxStringtype(L, 2); wxString::const_iterator it(time.begin()); // get this wxDateTime * self = (wxDateTime *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDateTime); // call ParseTime bool returns = (self->ParseTime(time, &it)); // push the result flag lua_pushboolean(L, returns); if (!returns && (it != time.end())) { wxString s(it, time.end()); wxlua_pushwxString(L, s); return 2; } return 1; } %end // ---------------------------------------------------------------------------- // Overrides for wxbase_file.i // ---------------------------------------------------------------------------- %override wxLua_function_wxDos2UnixFilename // %function wxString wxDos2UnixFilename(const wxString& s) static int LUACALL wxLua_function_wxDos2UnixFilename(lua_State *L) { wxString str = lua2wx(lua_tostring(L, 1)); if (!str.IsEmpty()) { // call wxDos2UnixFilename wxDos2UnixFilename((wxChar*)str.GetData()); // push the result string wxlua_pushwxString(L, str); return 1; } return 0; } %end %override wxLua_function_wxUnix2DosFilename // %function wxString wxUnix2DosFilename(const wxString& s) static int LUACALL wxLua_function_wxUnix2DosFilename(lua_State *L) { wxString str = lua2wx(lua_tostring(L, 1)); if (!str.IsEmpty()) { // call wxUnix2DosFilename wxUnix2DosFilename((wxChar*)str.GetData()); // push the result string wxlua_pushwxString(L, str); return 1; } return 0; } %end %override wxLua_function_wxGetTempFileName // %function char* wxGetTempFileName(const wxString& prefix, char* buf=NULL) static int LUACALL wxLua_function_wxGetTempFileName(lua_State *L) { // const wxString& prefix wxString prefix = lua2wx(wxlua_getstringtype(L, 1)); // call wxGetTempFileName wxString returns = wxGetTempFileName(prefix, NULL); // push the result number wxlua_pushwxString(L, returns); // return the number of parameters return 1; } %end %override wxLua_function_wxFileSize // %function long wxFileSize(const wxString& fileName) static int LUACALL wxLua_function_wxFileSize(lua_State *L) { wxString str = lua2wx(lua_tostring(L, 1)); if (!str.IsEmpty()) { wxStructStat statstr; wxStat(str, &statstr); // push the result string lua_pushnumber(L, (int)statstr.st_size); return 1; } return 0; } %end %override wxLua_wxFileName_GetDirs // const wxArrayString& GetDirs() const static int LUACALL wxLua_wxFileName_GetDirs(lua_State *L) { // get this wxFileName * self = (wxFileName *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFileName); // call GetDirs wxArrayString returns = self->GetDirs(); // push the result datatype wxlua_pushwxArrayStringtable(L, returns); return 1; } %end %override wxLua_wxFileName_GetTimes // bool GetTimes(wxDateTime* dtAccess, wxDateTime* dtMod, wxDateTime* dtCreate) const static int LUACALL wxLua_wxFileName_GetTimes(lua_State *L) { wxDateTime *dtCreate = new wxDateTime(); wxDateTime *dtMod = new wxDateTime(); wxDateTime *dtAccess= new wxDateTime(); // get this wxFileName *self = (wxFileName *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFileName); // call GetTimes bool returns = self->GetTimes(dtAccess, dtMod, dtCreate); // add to tracked memory list wxluaO_addgcobject(L, (void*)dtAccess, wxluatype_wxDateTime); wxluaO_addgcobject(L, (void*)dtMod, wxluatype_wxDateTime); wxluaO_addgcobject(L, (void*)dtCreate, wxluatype_wxDateTime); // push the constructed class pointers wxluaT_pushuserdatatype(L, dtAccess, wxluatype_wxDateTime); wxluaT_pushuserdatatype(L, dtMod, wxluatype_wxDateTime); wxluaT_pushuserdatatype(L, dtCreate, wxluatype_wxDateTime); // push the result flag lua_pushboolean(L, returns); // return the number of parameters return 4; } %end %override wxLua_wxFileName_SplitPath // static void SplitPath(const wxString& fullpath, wxString* volume, wxString* path, wxString* name, wxString* ext, wxPathFormat format = wxPATH_NATIVE) static int LUACALL wxLua_wxFileName_SplitPath(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // wxPathFormat format = wxPATH_NATIVE wxPathFormat format = (argCount >= 2 ? (wxPathFormat)wxlua_getenumtype(L, 2) : wxPATH_NATIVE); wxString ext; wxString name; wxString path; // const wxString& fullpath wxString fullpath = wxlua_getwxStringtype(L, 1); // call SplitPath wxFileName::SplitPath(fullpath, &path, &name, &ext, format); // push the result strings wxlua_pushwxString(L, path); wxlua_pushwxString(L, name); wxlua_pushwxString(L, ext); // return the number of parameters return 3; } %end %override wxLua_wxFileName_SplitPathVolume // static void SplitPath(const wxString& fullpath, wxString* volume, wxString* path, wxString* name, wxString* ext, wxPathFormat format = wxPATH_NATIVE) static int LUACALL wxLua_wxFileName_SplitPathVolume(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // wxPathFormat format = wxPATH_NATIVE wxPathFormat format = (argCount >= 2 ? (wxPathFormat)wxlua_getenumtype(L, 2) : wxPATH_NATIVE); wxString ext; wxString name; wxString path; wxString volume; // const wxString& fullpath wxString fullpath = wxlua_getwxStringtype(L, 1); // call SplitPath wxFileName::SplitPath(fullpath, &volume, &path, &name, &ext, format); // push the result strings wxlua_pushwxString(L, volume); wxlua_pushwxString(L, path); wxlua_pushwxString(L, name); wxlua_pushwxString(L, ext); // return the number of parameters return 4; } %end %override wxLua_wxFileName_SplitVolume // static void SplitVolume(const wxString& fullpath, wxString* volume, wxString* path, wxPathFormat format = wxPATH_NATIVE) static int LUACALL wxLua_wxFileName_SplitVolume(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // wxPathFormat format = wxPATH_NATIVE wxPathFormat format = (argCount >= 2 ? (wxPathFormat)wxlua_getenumtype(L, 2) : wxPATH_NATIVE); // const wxString fullpath const wxString fullpath = wxlua_getwxStringtype(L, 1); wxString volume; wxString path; // call SplitVolume wxFileName::SplitVolume(fullpath, &volume, &path, format); // push the result strings wxlua_pushwxString(L, volume); wxlua_pushwxString(L, path); return 2; } %end %override wxLua_wxDir_GetFirst // bool GetFirst(wxString * filename, const wxString& filespec = "", int flags = wxDIR_DEFAULT) const static int LUACALL wxLua_wxDir_GetFirst(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // int flags = wxDIR_DEFAULT int flags = (argCount >= 3 ? (int)wxlua_getintegertype(L, 3) : wxDIR_DEFAULT); // const wxString& filespec = "" wxString filespec = (argCount >= 2 ? wxlua_getwxStringtype(L, 2) : wxString(wxT(""))); // wxString * filename wxString filename; // get this wxDir *self = (wxDir *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDir); // call GetFirst bool returns = self->GetFirst(&filename, filespec, flags); lua_pushboolean(L, returns); // push the result number wxlua_pushwxString(L, filename); // return the number of parameters return 2; } %end %override wxLua_wxDir_GetNext // bool GetNext(wxString * filename) const static int LUACALL wxLua_wxDir_GetNext(lua_State *L) { // wxString * filename wxString filename; // get this wxDir *self = (wxDir *)wxluaT_getuserdatatype(L, 1, wxluatype_wxDir); // call GetNext bool returns = self->GetNext(&filename); lua_pushboolean(L, returns); // push the result number wxlua_pushwxString(L, filename); // return the number of parameters return 2; } %end %override wxLua_wxDir_GetAllFiles // static unsigned int GetAllFiles(const wxString& dirname, wxArrayString *files, const wxString& filespec = "", int flags = wxDIR_DEFAULT) static int LUACALL wxLua_wxDir_GetAllFiles(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // int flags = wxDIR_DEFAULT int flags = (argCount >= 3 ? (int)wxlua_getintegertype(L, 3) : wxDIR_DEFAULT); // const wxString& filespec = "" wxString filespec = (argCount >= 2 ? wxlua_getwxStringtype(L, 2) : wxString(wxT(""))); // wxArrayString *files wxArrayString files; // const wxString& dirname wxString dirname = wxlua_getwxStringtype(L, 1); // call GetAllFiles unsigned int returns = wxDir::GetAllFiles(dirname, &files, filespec, flags); // push the result number lua_pushnumber(L, returns); wxlua_pushwxArrayStringtable(L, files); // return the number of parameters return 2; } %end %override wxLua_wxFile_Read // unsigned int Read(void * buffer, unsigned int count) static int LUACALL wxLua_wxFile_Read(lua_State *L) { // unsigned int count unsigned int count = (unsigned int)wxlua_getintegertype(L, 2); // void * buffer void *buffer = malloc(count); if (buffer != NULL) { // get this wxFile *self = (wxFile *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFile); // call Read unsigned int returns = self->Read(buffer, count); // push the result number lua_pushnumber(L, returns); lua_pushlstring(L, (const char *) buffer, returns); free(buffer); // return the number of parameters return 2; } return 0; } %end %override wxLua_wxFile_Write // unsigned int Write(const void * buffer, unsigned int nbytes) static int LUACALL wxLua_wxFile_Write(lua_State *L) { // get number of arguments int argCount = lua_gettop(L); // unsigned long nbytes unsigned long nbytes = (argCount >= 3 ? (unsigned long)wxlua_getintegertype(L, 3) : lua_strlen(L, 2)); // const void * buffer const void *buffer = (const void *)lua_tostring(L, 2); // get this wxFile *self = (wxFile *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFile); // call Write unsigned int returns = self->Write(buffer, nbytes); // push the result number lua_pushnumber(L, returns); // return the number of parameters return 1; } %end %override wxLua_wxFileType_GetDescription // bool GetDescription(wxString *desc) const; static int LUACALL wxLua_wxFileType_GetDescription(lua_State *L) { // wxString desc wxString desc; // = wxlua_getwxStringtype(L, 2); // get this wxFileType * self = (wxFileType *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFileType); // call GetDescription bool returns = (self->GetDescription(&desc)); // push the result flag lua_pushboolean(L, returns); wxlua_pushwxString(L, desc); return 2; } %end %override wxLua_wxFileType_GetPrintCommand // bool GetPrintCommand(wxString *printCmd, const wxFileType::MessageParameters& params) const; static int LUACALL wxLua_wxFileType_GetPrintCommand(lua_State *L) { // const wxFileType::MessageParameters params const wxFileType::MessageParameters * params = (const wxFileType::MessageParameters *)wxluaT_getuserdatatype(L, 3, wxluatype_wxFileType_MessageParameters); // wxString printCmd wxString printCmd; // = wxlua_getwxStringtype(L, 2); // get this wxFileType * self = (wxFileType *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFileType); // call GetPrintCommand bool returns = (self->GetPrintCommand(&printCmd, *params)); // push the result flag lua_pushboolean(L, returns); wxlua_pushwxString(L, printCmd); return 2; } %end %override wxLua_wxInputStream_Read // wxInputStream& Read(void *buffer, size_t size) static int LUACALL wxLua_wxInputStream_Read(lua_State *L) { // size_t size size_t size = (size_t)wxlua_getintegertype(L, 2); // void *buffer void *buffer = malloc(size); // get this wxInputStream *self = (wxInputStream *)wxluaT_getuserdatatype(L, 1, wxluatype_wxInputStream); if (buffer != NULL) { // call Read // wxInputStream *returns = & // we don't return wxInputStream self->Read(buffer, size); // only return the data that was read, they already have self //wxluaT_pushuserdatatype(L, returns, wxluatype_wxInputStream); lua_pushlstring(L, (const char *)buffer, size); free(buffer); return 1; } return 0; } %end %override wxLua_wxInputStream_UngetchString // size_t Ungetch(const char* buffer, size_t size) static int LUACALL wxLua_wxInputStream_UngetchString(lua_State *L) { // size_t size size_t size = (size_t)wxlua_getintegertype(L, 3); // const char* buffer const char *buffer = (const char *)lua_tostring(L, 2); // get this wxInputStream *self = (wxInputStream *)wxluaT_getuserdatatype(L, 1, wxluatype_wxInputStream); // call Ungetch size_t returns = self->Ungetch(buffer, size); // push the result number lua_pushnumber(L, returns); // return the number of parameters return 1; } %end %override wxLua_wxOutputStream_Write // wxOutputStream& Write(const void *buffer, size_t size) static int LUACALL wxLua_wxOutputStream_Write(lua_State *L) { // size_t size size_t size = (size_t)wxlua_getintegertype(L, 3); // const void *buffer const void *buffer = (void *)lua_tostring(L, 2); // get this wxOutputStream *self = (wxOutputStream *)wxluaT_getuserdatatype(L, 1, wxluatype_wxOutputStream); // call Write wxOutputStream *returns = &self->Write(buffer, size); // push the result datatype wxluaT_pushuserdatatype(L, returns, wxluatype_wxOutputStream); // return the number of parameters return 1; } %end %override wxLua_wxMemoryInputStream_constructor // wxMemoryInputStream(const char *data, size_t length) static int LUACALL wxLua_wxMemoryInputStream_constructor(lua_State *L) { // size_t length size_t length = (size_t)wxlua_getnumbertype(L, 2); // const char data const char* data = (const char*)wxlua_getstringtype(L, 1); // call constructor wxMemoryInputStream* returns = new wxMemoryInputStream(data, length); // add to tracked memory list wxluaO_addgcobject(L, returns, wxluatype_wxMemoryInputStream); // push the constructed class pointer wxluaT_pushuserdatatype(L, returns, wxluatype_wxMemoryInputStream); return 1; } %end %override wxLua_wxFileSystem_FindFileInPath // bool FindFileInPath(wxString *pStr, const wxChar *path, const wxChar *file); // bool FindFileInPath(const wxString& path, const wxString& file); static int LUACALL wxLua_wxFileSystem_FindFileInPath(lua_State *L) { // const wxString file const wxString file_ = wxlua_getwxStringtype(L, 3); // const wxString path const wxString path = wxlua_getwxStringtype(L, 2); // get this wxFileSystem * self = (wxFileSystem *)wxluaT_getuserdatatype(L, 1, wxluatype_wxFileSystem); // call FindFileInPath wxString str; bool returns = (self->FindFileInPath(&str, path, file_)); // push the result flag lua_pushboolean(L, returns); wxlua_pushwxString(L, str); return 2; } %end
e6ec6b6ff6df1531f810523a0665bbe882791cf5
b22819d39a788b046e9a475f655b005ac478b1ef
/src/551.Student_Attendance_Record_I.cpp
b9b036ee8a1ed9b397cce5bb4afbf95ed77e08db
[]
no_license
chouchoudiudiu/LeetCode
81424dd12c6ec7ff0c801b6c4786a6e567b1cdec
a5af14f948db04a2e5a1adfefe033a872fd8f0ed
refs/heads/master
2021-01-11T07:45:53.672062
2019-05-14T21:26:35
2019-05-14T21:26:35
72,676,179
1
0
null
null
null
null
UTF-8
C++
false
false
1,424
cpp
class Solution { public: bool checkRecord(string s) { int a = 0, l = 0; for(auto c : s) { if(c == 'A') ++a; if(c == 'L') //注意这里不是else if....因为下一个语句!只要不是l(a or p) 则l全部清0 ++l; else l = 0; if(a >= 2 || l > 2) return false; } return true; } }; class Solution { public: bool checkRecord(string s) { int Acnt = 0; for(int i = 0; i < s.length(); ++i) { if(s[i] == 'A') ++Acnt; if(Acnt > 1) return false; if(i >= 2 && s[i] == 'L' && s[i - 1] == 'L' && s[i - 2] == 'L') //not adaptable! return false; } return true; } }; ===== 太啰嗦 class Solution { public: bool checkRecord(string s) { int start = -1, cnt = 0; for(int i = 0; i < s.length(); ++i) { if(s[i] == 'A') { ++cnt; if(cnt == 2) return false; start = -1; } else if(s[i] == 'L') { if(start == -1) start = i; if(i - start == 2) return false; } else start = -1; } return true; } };
0a649b62dc06bca394469616e851df522cba81e0
ae966c81c2de5af22680d4c9ec15d0b84499d260
/my/CapWindow.h
135687041d292b779b64d7db5f06c814abd8f7ee
[]
no_license
kkHAIKE/codestore
f4a8020200a8071c3b53610a388a1b1776cfb375
593e3e27ca01237112021bee4d50f47033a79d59
refs/heads/master
2022-11-09T07:05:18.681248
2020-06-28T06:19:42
2020-06-28T06:19:42
275,519,887
0
0
null
null
null
null
GB18030
C++
false
false
6,137
h
#pragma once #include <Debug.h> typedef void (CALLBACK *CBFORRGB24)(BYTE* buf,int width,int height); #import <qedit.dll> rename_namespace("QEdit") raw_interfaces_only named_guids #include <comdef.h> #include <dshow.h> #include <dshowasf.h> #define COM_SMARTPTR_TYPEDEF(x) _COM_SMARTPTR_TYPEDEF(x,__uuidof(x)) COM_SMARTPTR_TYPEDEF(IBaseFilter); COM_SMARTPTR_TYPEDEF(IGraphBuilder); COM_SMARTPTR_TYPEDEF(IPin); COM_SMARTPTR_TYPEDEF(ICreateDevEnum); COM_SMARTPTR_TYPEDEF(IEnumMoniker); COM_SMARTPTR_TYPEDEF(IMoniker); COM_SMARTPTR_TYPEDEF(IPropertyBag); COM_SMARTPTR_TYPEDEF(IEnumPins); COM_SMARTPTR_TYPEDEF(IVideoWindow); COM_SMARTPTR_TYPEDEF(IEnumFilters); COM_SMARTPTR_TYPEDEF(IMediaControl); COM_SMARTPTR_TYPEDEF(ICaptureGraphBuilder2); COM_SMARTPTR_TYPEDEF(IFileSinkFilter); COM_SMARTPTR_TYPEDEF(IWMProfile); COM_SMARTPTR_TYPEDEF(IConfigAsfWriter); COM_SMARTPTR_TYPEDEF(IAMStreamConfig); COM_SMARTPTR_TYPEDEF(IKsPropertySet); COM_SMARTPTR_TYPEDEF(IWMProfileManager); COM_SMARTPTR_TYPEDEF(IMediaEvent); COM_SMARTPTR_TYPEDEF(IMediaEventEx); COM_SMARTPTR_TYPEDEF(IAMVideoControl); #if !defined(__CSTRINGT_H__) && !defined(_WTL_USE_CSTRING) #include <StdString.h> #define CSTRING CStdString #else #define CSTRING CString #endif #include <vector_ptr.h> class CVideoDevice { friend class CCapWindow; public: static CVideoDevice& Instance(); const CSTRING& GetFiendlyName(int id) { ASSERT(id>=0 && id<GetCount()); return m_DeviceList[id]->friendlyName; } const CSTRING& GetDisplayName(int id) { ASSERT(id>=0 && id<GetCount()); return m_DeviceList[id]->displayName; } int GetCount() const { return m_DeviceList.size(); } void InitMedialist(int id); int GetCountCapt() const { return static_cast<int>(m_MediaListCapt.size()); } const CSTRING& GetMediaContCapt(int id) { ASSERT(id>=0 && id<GetCountCapt()); return m_MediaListCapt[id]->mediaCont; } int GetCountPrev() const { return static_cast<int>(m_MediaListPrev.size()); } const CSTRING& GetMediaContPrev(int id) { ASSERT(id>=0 && id<GetCountPrev()); return m_MediaListPrev[id]->mediaCont; } const std::vector<float>& GetFPSCapt(int id) { ASSERT(id>=0 && id<GetCountCapt()); return m_MediaListCapt[id]->rateList; } const std::vector<float>& GetFPSPrev(int id) { ASSERT(id>=0 && id<GetCountPrev()); return m_MediaListPrev[id]->rateList; } void SetFPSCapt(int id,float fps) { SetFPS(m_MediaListCapt[id],fps); } void SetFPSPrev(int id,float fps) { SetFPS(m_MediaListPrev[id],fps); } protected: CVideoDevice(void); void Pass(IPinPtr &pin,bool bCapt,IAMVideoControlPtr &vctrl); IBaseFilterPtr& GetFilter(int id) { ASSERT(id>=0 && id<GetCount()); return m_DeviceList[id]->filter; } AM_MEDIA_TYPE* GetMediaTypeCapt(int id) { ASSERT(id>=0 && id<GetCountCapt()); return m_MediaListCapt[id]->pMedia; } AM_MEDIA_TYPE* GetMediaTypePrev(int id) { ASSERT(id>=0 && id<GetCountPrev()); return m_MediaListPrev[id]->pMedia; } class MYDEVICE { public: ~MYDEVICE() { //com会先释放,所以这里直接分离避免出错 filter.Detach(); } CSTRING friendlyName; CSTRING displayName; IBaseFilterPtr filter; }; class MYMEDIA { public: MYMEDIA():pMedia(NULL){} ~MYMEDIA(); CSTRING mediaCont; AM_MEDIA_TYPE *pMedia; std::vector<float> rateList; private: MYMEDIA(const MYMEDIA&); void operator=(const MYMEDIA&); }; vector_ptr<MYDEVICE> m_DeviceList; vector_ptr<MYMEDIA> m_MediaListCapt; vector_ptr<MYMEDIA> m_MediaListPrev; void SetFPS(MYMEDIA *media,float fps); private: CVideoDevice(const CVideoDevice &); void operator=(const CVideoDevice &); }; ////////////////////////////////////////////////////////////////////////// class CCapWindow { public: explicit CCapWindow(bool bNullRender=false); ~CCapWindow(void); bool Conn(int id,int captmt=-1,int prevmt=-1); bool Open(const WCHAR * filepath); void SetPos(HWND parent,int x,int y,int witdh,int height);//,bool after=false void Start(); void Stop(); void Shot(BYTE *&buf,DWORD &bufsize); int GetWidth() const {return m_iWidth;} int GetHeight() const {return m_iHeight;} void SetCallBack(CBFORRGB24 cb){m_SampleGrabCB.cb=cb;} void StartCapture(const WCHAR* filepath,bool bUseHD=false); void StopCapture(){ControlStream(true,true);} void StartPreview(){ControlStream(false,false);} void StopPreview(){ControlStream(false,true);} void Wait(int time=INFINITE); void SetNotify(HWND hWnd,long msg); HRESULT GetNotify(long *lEventCode,long *lParam1,long *lParam2,long msTimeout=0); void FreeNotify(long lEventCode,long lParam1,long lParam2); protected: void ControlStream( bool bCapt,bool bStop ); void RemoveAllFilters(); bool ConnBuilder(IBaseFilterPtr &infilter,bool preview,int captmt,int prevmt); void SetPos(); int m_iWidth,m_iHeight; int m_x,m_y,m_cx,m_cy; HWND m_hParentHwnd; bool m_bNullVR; ICaptureGraphBuilder2Ptr m_pBuilder; IGraphBuilderPtr m_pGraphBuilder; IBaseFilterPtr m_pSampleGrabber; IBaseFilterPtr m_pVR; bool m_bInitCapt; IFileSinkFilterPtr m_pFileSink; class CSampleGrabberCB : public QEdit::ISampleGrabberCB { public: CSampleGrabberCB():Width(0),Height(0),cb(NULL){}; long Width; long Height; CBFORRGB24 cb; STDMETHODIMP QueryInterface(REFIID riid, void ** ppv) { if (ppv==NULL) { return E_POINTER; } if( riid == QEdit::IID_ISampleGrabberCB||riid == IID_IUnknown) { *ppv =static_cast<QEdit::ISampleGrabberCB*> ( this ); return NOERROR; } return E_NOINTERFACE; } STDMETHODIMP BufferCB( double SampleTime, BYTE * pBuffer, long BufferSize ) { if(cb) cb(pBuffer,Width,Height); return S_OK; } STDMETHODIMP SampleCB( double SampleTime, QEdit::IMediaSample * pSample ) { return 0; } STDMETHODIMP_(ULONG) AddRef() { return 2; } STDMETHODIMP_(ULONG) Release() { return 1; } }; CSampleGrabberCB m_SampleGrabCB; };
4c4fb2c8b74c20cdb4c44dfb4017f0955c0f607f
1b4d749541a8dc6359ee3c053d058789347b8508
/src/windows/main_window.h
dbf3350e0b0348cce46d15426c30e1b0160c6721
[ "MIT" ]
permissive
djeada/FullScreen-Pencil-Draw
3f23320c4df08d51cbea661d878adc93c7981efb
4f4cc43977ccb5717b19efc0b0ea2f319d847513
refs/heads/main
2023-08-08T00:05:58.776681
2023-08-02T19:35:02
2023-08-02T19:35:02
310,934,894
0
0
null
null
null
null
UTF-8
C++
false
false
280
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include "../widgets/canvas.h" #include <QMainWindow> class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr); ~MainWindow(); private: Canvas *canvas; }; #endif // MAINWINDOW_H
89d41e6a47e305456e2fb4df8a6260bfa69b484f
afcb363029dcadfd6fa22156cc46bb96ce7fa058
/Modules/Functions/ImageFunctions/AJEnhancementDiffusion/include/tttHessianSmoothed3DToObjectnessMeasureImageFilter.h
0eb58d98a1d48b4830e7877dc2f6cbdadd2479dd
[]
no_license
HatiniLab/ttt
7a92f47323c9018b3b8ec4541436bb2e88439922
0497ce94b5faa50ddadb7c757f86933b2fc555c3
refs/heads/master
2020-04-15T17:28:30.414467
2016-07-20T20:57:57
2016-07-20T20:57:57
35,853,033
3
1
null
null
null
null
UTF-8
C++
false
false
5,287
h
// This file is part of TTT Tissue Tracker. // // TTT Tissue Tracker is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // TTT Tissue Tracker is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with TTT Tissue Tracker. If not, see <http://www.gnu.org/licenses/>. /** \addtogroup TTTObjectnessMeasurementBase * @{ */ #ifndef __itkHessianSmoothed3DToObjectnessMeasureImageFilter_h #define __itkHessianSmoothed3DToObjectnessMeasureImageFilter_h #include "itkSymmetricSecondRankTensor.h" #include "itkSymmetricEigenAnalysisImageFilter.h" #include "tttObjectnessMeasurementFunction.h" namespace ttt { /** \class HessianSmoothed3DToVesselnessMeasureImageFilter * \brief A filter to enhance 3D vascular structures * * The vesselness measure is based on the analysis of the the Hessian * eigen system. The vesseleness function is a smoothed (continuous) * version of the Frang's vesselness function. The filter takes an * image of a Hessian pixels ( SymmetricSecondRankTensor pixels ) and * produces an enhanced image. The Hessian input image can be produced using * itkHessianSmoothedRecursiveGaussianImageFilter. * * * \par References * Manniesing, R, Viergever, MA, & Niessen, WJ (2006). Vessel Enhancing * Diffusion: A Scale Space Representation of Vessel Structures. Medical * Image Analysis, 10(6), 815-825. * * \sa MultiScaleHessianSmoothed3DToVesselnessMeasureImageFilter * \sa Hessian3DToVesselnessMeasureImageFilter * \sa HessianSmoothedRecursiveGaussianImageFilter * \sa SymmetricEigenAnalysisImageFilter * \sa SymmetricSecondRankTensor * * \ingroup IntensityImageFilters TensorObjects * */ template <class TObjectnessMeasurementFunction,typename TPixel > class HessianSmoothed3DToObjectnessMeasureImageFilter : public ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > > { public: /** Standard class typedefs. */ typedef HessianSmoothed3DToObjectnessMeasureImageFilter Self; typedef ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > > Superclass; typedef SmartPointer<Self> Pointer; typedef SmartPointer<const Self> ConstPointer; typedef typename Superclass::InputImageType InputImageType; typedef typename Superclass::OutputImageType OutputImageType; typedef typename InputImageType::PixelType InputPixelType; typedef TPixel OutputPixelType; typedef TObjectnessMeasurementFunction ObjectnessMeasurementFunctionType; /** Image dimension = 3. */ itkStaticConstMacro(ImageDimension, unsigned int, InputImageType::ImageDimension); itkStaticConstMacro(InputPixelDimension, unsigned int, InputPixelType::Dimension); typedef FixedArray< double, itkGetStaticConstMacro(InputPixelDimension) > EigenValueArrayType; typedef Image< EigenValueArrayType, itkGetStaticConstMacro(ImageDimension) > EigenValueImageType; typedef SymmetricEigenAnalysisImageFilter< InputImageType, EigenValueImageType > EigenAnalysisFilterType; typedef Image< TPixel, 3 > OuputImageType; typedef typename OutputImageType::RegionType OutputRegionType; /** Method for creation through the object factory. */ itkNewMacro(Self); itkSetObjectMacro(ObjectnessMeasurementFunction,ObjectnessMeasurementFunctionType); #ifdef ITK_USE_CONCEPT_CHECKING /** Begin concept checking */ itkConceptMacro(DoubleConvertibleToOutputCheck, (Concept::Convertible<double, OutputPixelType>)); /** End concept checking */ #endif protected: HessianSmoothed3DToObjectnessMeasureImageFilter(); ~HessianSmoothed3DToObjectnessMeasureImageFilter() {}; void PrintSelf(std::ostream& os, Indent indent) const; virtual void EnlargeOutputRequestedRegion(DataObject *output); virtual void GenerateInputRequestedRegion(); virtual void BeforeThreadedGenerateData(); /** Generate Data */ virtual void ThreadedGenerateData(const OutputRegionType& windowRegion, ThreadIdType threadId); virtual void AfterThreadedGenerateData(); private: //purposely not implemented HessianSmoothed3DToObjectnessMeasureImageFilter(const Self&); void operator=(const Self&); //purposely not implemented typename EigenAnalysisFilterType::Pointer m_SymmetricEigenValueFilter; typename ObjectnessMeasurementFunctionType::Pointer m_ObjectnessMeasurementFunction; }; } // end namespace itk #ifndef ITK_MANUAL_INSTANTIATION #include "tttHessianSmoothed3DToObjectnessMeasureImageFilter.hxx" #endif #endif /** @}*/
b4a7b40c8ed173fb8891ae1bff9b9118f4ab9f8c
81d19db4aa9b243bb94ee04178faf1171dfd9a50
/37.cpp
87a74c0f97ae668cf3e964119db3454ae538a3a9
[]
no_license
Zhangtd/DamnOffer_NK
63b1edcfec1b94af1dce2a6506cc6126a6f206a5
1c4c3812a8eac9427bc0f7924fcfd19fc022032b
refs/heads/master
2020-04-05T20:06:31.305562
2018-12-24T04:01:54
2018-12-24T04:01:54
157,164,359
0
0
null
null
null
null
UTF-8
C++
false
false
705
cpp
#include<iostream> #include<vector> using namespace std; class Solution { public: int GetNumberOfK(vector<int> data ,int k) { int res = 0; int flag = 0; if(data[0]<=data[data.size()-1]) flag = 1; else flag = -1; for(int i=0; i<data.size(); i++) { if(data[i]==k) res += 1; else if(flag==1 && data[i]>k) break; else if(flag==-1 && data[i]<k) break; } return res; } }; int main() { int a[] = {1,2,3,3,3,4,4,5,7}; vector<int> arr(a, a+9); Solution solution; cout<<solution.GetNumberOfK(arr, 0); return 0; }
b6a8feffe655cce7a4921f64ea0aa18fac2728db
8dc84558f0058d90dfc4955e905dab1b22d12c08
/android_webview/browser/aw_url_checker_delegate_impl.cc
0de75e67a24240e9908b57f7b12f1545ded133fe
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
6,791
cc
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "android_webview/browser/aw_url_checker_delegate_impl.h" #include "android_webview/browser/aw_contents_client_bridge.h" #include "android_webview/browser/aw_contents_io_thread_client.h" #include "android_webview/browser/aw_safe_browsing_ui_manager.h" #include "android_webview/browser/aw_safe_browsing_whitelist_manager.h" #include "android_webview/browser/net/aw_web_resource_request.h" #include "base/bind.h" #include "components/safe_browsing/db/database_manager.h" #include "components/safe_browsing/db/v4_protocol_manager_util.h" #include "components/security_interstitials/content/unsafe_resource.h" #include "components/security_interstitials/core/urls.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" namespace android_webview { AwUrlCheckerDelegateImpl::AwUrlCheckerDelegateImpl( scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> database_manager, scoped_refptr<AwSafeBrowsingUIManager> ui_manager, AwSafeBrowsingWhitelistManager* whitelist_manager) : database_manager_(std::move(database_manager)), ui_manager_(std::move(ui_manager)), threat_types_(safe_browsing::CreateSBThreatTypeSet( {safe_browsing::SB_THREAT_TYPE_URL_MALWARE, safe_browsing::SB_THREAT_TYPE_URL_PHISHING})), whitelist_manager_(whitelist_manager) {} AwUrlCheckerDelegateImpl::~AwUrlCheckerDelegateImpl() = default; void AwUrlCheckerDelegateImpl::MaybeDestroyPrerenderContents( const base::Callback<content::WebContents*()>& web_contents_getter) {} void AwUrlCheckerDelegateImpl::StartDisplayingBlockingPageHelper( const security_interstitials::UnsafeResource& resource, const std::string& method, const net::HttpRequestHeaders& headers, bool is_main_frame, bool has_user_gesture) { AwWebResourceRequest request(resource.url.spec(), method, is_main_frame, has_user_gesture, headers); content::BrowserThread::PostTask( content::BrowserThread::UI, FROM_HERE, base::BindOnce(&AwUrlCheckerDelegateImpl::StartApplicationResponse, ui_manager_, resource, std::move(request))); } bool AwUrlCheckerDelegateImpl::IsUrlWhitelisted(const GURL& url) { return whitelist_manager_->IsURLWhitelisted(url); } bool AwUrlCheckerDelegateImpl::ShouldSkipRequestCheck( content::ResourceContext* resource_context, const GURL& original_url, int frame_tree_node_id, int render_process_id, int render_frame_id, bool originated_from_service_worker) { std::unique_ptr<AwContentsIoThreadClient> client; if (originated_from_service_worker) client = AwContentsIoThreadClient::GetServiceWorkerIoThreadClient(); else if (render_process_id == -1 || render_frame_id == -1) { client = AwContentsIoThreadClient::FromID(frame_tree_node_id); } else { client = AwContentsIoThreadClient::FromID(render_process_id, render_frame_id); } // Consider the request as whitelisted, if SafeBrowsing is not enabled. return client && !client->GetSafeBrowsingEnabled(); } void AwUrlCheckerDelegateImpl::NotifySuspiciousSiteDetected( const base::RepeatingCallback<content::WebContents*()>& web_contents_getter) {} const safe_browsing::SBThreatTypeSet& AwUrlCheckerDelegateImpl::GetThreatTypes() { return threat_types_; } safe_browsing::SafeBrowsingDatabaseManager* AwUrlCheckerDelegateImpl::GetDatabaseManager() { return database_manager_.get(); } safe_browsing::BaseUIManager* AwUrlCheckerDelegateImpl::GetUIManager() { return ui_manager_.get(); } // static void AwUrlCheckerDelegateImpl::StartApplicationResponse( scoped_refptr<AwSafeBrowsingUIManager> ui_manager, const security_interstitials::UnsafeResource& resource, const AwWebResourceRequest& request) { content::WebContents* web_contents = resource.web_contents_getter.Run(); AwContentsClientBridge* client = AwContentsClientBridge::FromWebContents(web_contents); if (client) { base::OnceCallback<void(SafeBrowsingAction, bool)> callback = base::BindOnce(&AwUrlCheckerDelegateImpl::DoApplicationResponse, ui_manager, resource); client->OnSafeBrowsingHit(request, resource.threat_type, std::move(callback)); } } // static void AwUrlCheckerDelegateImpl::DoApplicationResponse( scoped_refptr<AwSafeBrowsingUIManager> ui_manager, const security_interstitials::UnsafeResource& resource, SafeBrowsingAction action, bool reporting) { if (!reporting) ui_manager->SetExtendedReportingAllowed(false); // TODO(ntfschr): fully handle reporting once we add support (crbug/688629) bool proceed; switch (action) { case SafeBrowsingAction::SHOW_INTERSTITIAL: content::BrowserThread::PostTask( content::BrowserThread::UI, FROM_HERE, base::BindOnce( &AwUrlCheckerDelegateImpl::StartDisplayingDefaultBlockingPage, ui_manager, resource)); return; case SafeBrowsingAction::PROCEED: proceed = true; break; case SafeBrowsingAction::BACK_TO_SAFETY: proceed = false; break; default: NOTREACHED(); } content::WebContents* web_contents = resource.web_contents_getter.Run(); content::NavigationEntry* entry = resource.GetNavigationEntryForResource(); GURL main_frame_url = entry ? entry->GetURL() : GURL(); // Navigate back for back-to-safety on subresources if (!proceed && resource.is_subframe) { if (web_contents->GetController().CanGoBack()) { web_contents->GetController().GoBack(); } else { web_contents->GetController().LoadURL( ui_manager->default_safe_page(), content::Referrer(), ui::PAGE_TRANSITION_AUTO_TOPLEVEL, std::string()); } } ui_manager->OnBlockingPageDone( std::vector<security_interstitials::UnsafeResource>{resource}, proceed, web_contents, main_frame_url); } // static void AwUrlCheckerDelegateImpl::StartDisplayingDefaultBlockingPage( scoped_refptr<AwSafeBrowsingUIManager> ui_manager, const security_interstitials::UnsafeResource& resource) { content::WebContents* web_contents = resource.web_contents_getter.Run(); if (web_contents) { ui_manager->DisplayBlockingPage(resource); return; } // Reporting back that it is not okay to proceed with loading the URL. content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, base::BindOnce(resource.callback, false)); } } // namespace android_webview
517a23b6a43d0067650f26e1e9006c11ba31fb17
4122acc5bd9ee517fdfd1307bf8a04cc7c95599c
/mindspore/ccsrc/backend/kernel_compiler/cpu/resize_nearest_neighbor_cpu_kernel.h
4f83b002da6bbdbac00dea9e9fa25a108fad1fd1
[ "Apache-2.0", "MIT", "Libpng", "LicenseRef-scancode-proprietary-license", "LGPL-2.1-only", "AGPL-3.0-only", "MPL-2.0-no-copyleft-exception", "IJG", "Zlib", "MPL-1.1", "BSD-3-Clause", "BSD-3-Clause-Open-MPI", "MPL-1.0", "GPL-2.0-only", "MPL-2.0", "BSL-1.0", "LicenseRef-scancode-unknown-license-reference", "Unlicense", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
limberc/mindspore
655bb4fc582a85711e70c31e12f611cf1a0f422e
e294acdffc9246cb6d77ea18ea00d08244d30c59
refs/heads/master
2023-02-18T20:10:22.588348
2021-01-23T15:33:01
2021-01-23T15:33:01
322,821,027
0
0
Apache-2.0
2021-01-18T14:07:45
2020-12-19T10:27:43
null
UTF-8
C++
false
false
2,581
h
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_RESIZE_NEAREST_NEIGHBOR_CPU_KERNEL_H_ #define MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_RESIZE_NEAREST_NEIGHBOR_CPU_KERNEL_H_ #include <memory> #include <unordered_map> #include <vector> #include <algorithm> #include "backend/kernel_compiler/cpu/cpu_kernel.h" #include "backend/kernel_compiler/cpu/cpu_kernel_factory.h" namespace mindspore { namespace kernel { class ResizeNearestNeighborCPUKernel : public CPUKernel { public: ResizeNearestNeighborCPUKernel() = default; ~ResizeNearestNeighborCPUKernel() override = default; void InitKernel(const CNodePtr &kernel_node) override; bool Launch(const std::vector<AddressPtr> &inputs, const std::vector<AddressPtr> &workspace, const std::vector<AddressPtr> &outputs) override; template <typename T> void LaunchKernel(const std::vector<AddressPtr> &inputs, const std::vector<AddressPtr> &outputs); private: void CheckParam(const CNodePtr &kernel_node); TypeId dtype_{kTypeUnknown}; bool align_corners_{false}; size_t batch_size_{0}; size_t channel_{0}; size_t in_height_{0}; size_t in_width_{0}; size_t out_height_{0}; size_t out_width_{0}; size_t output_size_{0}; float height_scale_{1.0}; float width_scale_{1.0}; }; MS_REG_CPU_KERNEL(ResizeNearestNeighbor, KernelAttr().AddInputAttr(kNumberTypeFloat16).AddOutputAttr(kNumberTypeFloat16), ResizeNearestNeighborCPUKernel); MS_REG_CPU_KERNEL(ResizeNearestNeighbor, KernelAttr().AddInputAttr(kNumberTypeFloat32).AddOutputAttr(kNumberTypeFloat32), ResizeNearestNeighborCPUKernel); MS_REG_CPU_KERNEL(ResizeNearestNeighbor, KernelAttr().AddInputAttr(kNumberTypeInt32).AddOutputAttr(kNumberTypeInt32), ResizeNearestNeighborCPUKernel); } // namespace kernel } // namespace mindspore #endif // MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_RESIZE_NEAREST_NEIGHBOR_CPU_KERNEL_H_
aa7a28c70523c5521960c34852544794a122073e
fb0dfda388ec858045ceec4745ab81274cf49c4b
/ecs/SpriteComponent.cpp
c854cdbfc33fab7c3443102b2c304f84bbf69295
[]
no_license
fahivets/SadCatsonLand
c9f123c26436d3ef7c044d2547f1302373ec44d3
a8c3a2f76825fa76915cf5396e5fd62cfc44e8d7
refs/heads/master
2022-11-24T16:22:44.953761
2020-07-29T15:50:50
2020-07-29T15:50:50
282,267,470
0
0
null
null
null
null
UTF-8
C++
false
false
1,256
cpp
#include "stdafx.h" #include "SpriteComponent.h" #include "Entity.h" SpriteComponent::SpriteComponent(SDL_Renderer& rRenderer, const char* spriteName) { ResourceHolder::get().textures.set(rRenderer, spriteName); m_spriteTexture = ResourceHolder::get().textures.get(spriteName); Vector2f textureSize = ResourceHolder::get().textures.queryTexture(m_spriteTexture); m_srcRect = { 0, 0, static_cast<int>(textureSize.x), static_cast<int>(textureSize.y) }; } SpriteComponent::SpriteComponent(SDL_Renderer& rRenderer, const std::string& spriteName) { ResourceHolder::get().textures.set(rRenderer, spriteName); m_spriteTexture = ResourceHolder::get().textures.get(spriteName.c_str()); Vector2f textureSize = ResourceHolder::get().textures.queryTexture(m_spriteTexture); m_srcRect = { 0, 0, static_cast<int>(textureSize.x), static_cast<int>(textureSize.y) }; } void SpriteComponent::init() { m_pBoxComp = &m_entity->getComponent<BoxComponent>(); m_dstFRect = m_pBoxComp->m_fRect; } void SpriteComponent::render(SDL_Renderer& rRender) { SDL_RenderCopyExF(&rRender, m_spriteTexture, &m_srcRect, &m_dstFRect, m_angle, nullptr, m_flip); } void SpriteComponent::update(const float& deltaTime) { m_dstFRect = m_pBoxComp->m_fRect; }
1c89656477934df0706059ba45eaa4ae9742096b
e06541cb227a10d8a266f8454160d75e14c8cd01
/src/envoy/auth/extauth.h
dfe1459b769666b397a9506b62f7e72bcfae1f0a
[ "Apache-2.0" ]
permissive
ashutosh-narkar/proxy
8b6fd83b9046dff6022b72be11cf09127caa18e9
b76f4bb9c111d946be492419cd5464baa1eb53e2
refs/heads/master
2021-05-02T16:33:49.631531
2018-02-14T06:52:09
2018-02-14T06:52:09
120,678,083
0
0
null
2018-02-12T06:17:14
2018-02-07T22:10:18
C++
UTF-8
C++
false
false
2,354
h
#pragma once #include "envoy/http/filter.h" #include "envoy/upstream/cluster_manager.h" #include "common/common/logger.h" namespace Envoy { namespace Http { /** * All stats for the extauth filter. @see stats_macros.h */ // clang-format off #define ALL_EXTAUTH_STATS(COUNTER) \ COUNTER(rq_failed) \ COUNTER(rq_passed) \ COUNTER(rq_rejected) \ COUNTER(rq_redirected) // clang-format on /** * Wrapper struct for extauth filter stats. @see stats_macros.h */ struct ExtAuthStats { ALL_EXTAUTH_STATS(GENERATE_COUNTER_STRUCT) }; /** * Configuration for the extauth filter. */ struct ExtAuthConfig { Upstream::ClusterManager& cm_; ExtAuthStats stats_; std::string cluster_; std::chrono::milliseconds timeout_; }; typedef std::shared_ptr<const ExtAuthConfig> ExtAuthConfigConstSharedPtr; /** * A pass-through filter that talks to an external authn/authz service (or will soon...) */ class ExtAuth : Logger::Loggable<Logger::Id::filter>, public StreamDecoderFilter, public Http::AsyncClient::Callbacks { public: ExtAuth(ExtAuthConfigConstSharedPtr config); ~ExtAuth(); //static ExtAuthStats generateStats(const std::string& prefix, Stats::Store& store); static ExtAuthStats generateStats(const std::string& prefix, Stats::Scope& scope); // Http::StreamFilterBase void onDestroy() override; // Http::StreamDecoderFilter FilterHeadersStatus decodeHeaders(HeaderMap& headers, bool end_stream) override; FilterDataStatus decodeData(Buffer::Instance& data, bool end_stream) override; FilterTrailersStatus decodeTrailers(HeaderMap& trailers) override; void setDecoderFilterCallbacks(StreamDecoderFilterCallbacks& callbacks) override; // Http::AsyncClient::Callbacks void onSuccess(Http::MessagePtr&& response) override; void onFailure(Http::AsyncClient::FailureReason reason) override; private: ExtAuthConfigConstSharedPtr config_; StreamDecoderFilterCallbacks* callbacks_{}; bool auth_complete_; Http::AsyncClient::Request* auth_request_{}; }; } // Http } // Envoy
2038b1d900fa658457135e8baddfd9025a48d273
b0dd7779c225971e71ae12c1093dc75ed9889921
/boost/phoenix/operator/detail/preprocessed/mem_fun_ptr_gen_50.hpp
80542356ebe227cd2378478439053ef14529bd4b
[ "LicenseRef-scancode-warranty-disclaimer", "BSL-1.0" ]
permissive
blackberry/Boost
6e653cd91a7806855a162347a5aeebd2a8c055a2
fc90c3fde129c62565c023f091eddc4a7ed9902b
refs/heads/1_48_0-gnu
2021-01-15T14:31:33.706351
2013-06-25T16:02:41
2013-06-25T16:02:41
2,599,411
244
154
BSL-1.0
2018-10-13T18:35:09
2011-10-18T14:25:18
C++
UTF-8
C++
false
false
216,858
hpp
/*============================================================================== Copyright (c) 2001-2010 Joel de Guzman Copyright (c) 2010 Thomas Heller Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ namespace boost { namespace phoenix { namespace tag { struct mem_fun_ptr {}; template <typename Ostream> inline Ostream &operator<<( Ostream & os , mem_fun_ptr) { os << "mem_fun_ptr"; return os; } } namespace expression { template < typename A0 = void , typename A1 = void , typename A2 = void , typename A3 = void , typename A4 = void , typename A5 = void , typename A6 = void , typename A7 = void , typename A8 = void , typename A9 = void , typename A10 = void , typename A11 = void , typename A12 = void , typename A13 = void , typename A14 = void , typename A15 = void , typename A16 = void , typename A17 = void , typename A18 = void , typename A19 = void , typename A20 = void , typename A21 = void , typename A22 = void , typename A23 = void , typename A24 = void , typename A25 = void , typename A26 = void , typename A27 = void , typename A28 = void , typename A29 = void , typename A30 = void , typename A31 = void , typename A32 = void , typename A33 = void , typename A34 = void , typename A35 = void , typename A36 = void , typename A37 = void , typename A38 = void , typename A39 = void , typename A40 = void , typename A41 = void , typename A42 = void , typename A43 = void , typename A44 = void , typename A45 = void , typename A46 = void , typename A47 = void , typename A48 = void , typename A49 = void , typename A50 = void , typename Dummy = void > struct mem_fun_ptr; template < typename A0 , typename A1 > struct mem_fun_ptr< A0 , A1 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 > {}; template < typename A0 , typename A1 , typename A2 > struct mem_fun_ptr< A0 , A1 , A2 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 > struct mem_fun_ptr< A0 , A1 , A2 , A3 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 , typename A48 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 , typename A48 , typename A49 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 , A49 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 , A49 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 , typename A48 , typename A49 , typename A50 > struct mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 , A49 , A50 > : boost::phoenix::expr< tag:: mem_fun_ptr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 , A49 , A50 > {}; } namespace rule { struct mem_fun_ptr : expression:: mem_fun_ptr < meta_grammar , boost::proto::vararg< meta_grammar > > {}; } namespace functional { typedef boost::proto::functional::make_expr< tag:: mem_fun_ptr > make_mem_fun_ptr; } namespace result_of { template <typename A0 = void , typename A1 = void , typename A2 = void , typename A3 = void , typename A4 = void , typename A5 = void , typename A6 = void , typename A7 = void , typename A8 = void , typename A9 = void , typename A10 = void , typename A11 = void , typename A12 = void , typename A13 = void , typename A14 = void , typename A15 = void , typename A16 = void , typename A17 = void , typename A18 = void , typename A19 = void , typename A20 = void , typename A21 = void , typename A22 = void , typename A23 = void , typename A24 = void , typename A25 = void , typename A26 = void , typename A27 = void , typename A28 = void , typename A29 = void , typename A30 = void , typename A31 = void , typename A32 = void , typename A33 = void , typename A34 = void , typename A35 = void , typename A36 = void , typename A37 = void , typename A38 = void , typename A39 = void , typename A40 = void , typename A41 = void , typename A42 = void , typename A43 = void , typename A44 = void , typename A45 = void , typename A46 = void , typename A47 = void , typename A48 = void , typename A49 = void, typename Dummy = void> struct make_mem_fun_ptr; template <typename A0> struct make_mem_fun_ptr <A0> : boost::result_of< functional:: make_mem_fun_ptr( A0 ) > {}; template <typename A0 , typename A1> struct make_mem_fun_ptr <A0 , A1> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 ) > {}; template <typename A0 , typename A1 , typename A2> struct make_mem_fun_ptr <A0 , A1 , A2> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3> struct make_mem_fun_ptr <A0 , A1 , A2 , A3> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 ) > {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 , typename A48> struct make_mem_fun_ptr <A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48> : boost::result_of< functional:: make_mem_fun_ptr( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 ) > {}; } template <typename A0> inline typename result_of:: make_mem_fun_ptr< A0 >::type make_mem_fun_ptr(A0 const& a0) { return functional::make_mem_fun_ptr()(a0); } template <typename A0 , typename A1> inline typename result_of:: make_mem_fun_ptr< A0 , A1 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1) { return functional::make_mem_fun_ptr()(a0 , a1); } template <typename A0 , typename A1 , typename A2> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2) { return functional::make_mem_fun_ptr()(a0 , a1 , a2); } template <typename A0 , typename A1 , typename A2 , typename A3> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45 , A46 const& a46) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45 , a46); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45 , A46 const& a46 , A47 const& a47) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45 , a46 , a47); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 , typename A48> inline typename result_of:: make_mem_fun_ptr< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 >::type make_mem_fun_ptr(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45 , A46 const& a46 , A47 const& a47 , A48 const& a48) { return functional::make_mem_fun_ptr()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45 , a46 , a47 , a48); } } } namespace boost { namespace phoenix { template <typename Dummy> struct meta_grammar::case_< :: boost :: phoenix :: tag:: mem_fun_ptr , Dummy > : enable_rule< :: boost :: phoenix :: rule:: mem_fun_ptr , Dummy > {}; } } namespace boost { namespace phoenix { namespace detail { template <typename Object, typename MemPtr> struct mem_fun_ptr_gen { mem_fun_ptr_gen(Object const& obj, MemPtr ptr) : obj(obj) , ptr(ptr) {} typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const operator()() const { return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); } template <typename A0> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 >::type const operator()(A0 const& a0) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 >::make(obj, ptr, a0); } template <typename A0 , typename A1> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 >::type const operator()(A0 const& a0 , A1 const& a1) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 >::make(obj, ptr, a0 , a1); } template <typename A0 , typename A1 , typename A2> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 >::make(obj, ptr, a0 , a1 , a2); } template <typename A0 , typename A1 , typename A2 , typename A3> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 >::make(obj, ptr, a0 , a1 , a2 , a3); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45 , A46 const& a46) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45 , a46); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45 , A46 const& a46 , A47 const& a47) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45 , a46 , a47); } template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19 , typename A20 , typename A21 , typename A22 , typename A23 , typename A24 , typename A25 , typename A26 , typename A27 , typename A28 , typename A29 , typename A30 , typename A31 , typename A32 , typename A33 , typename A34 , typename A35 , typename A36 , typename A37 , typename A38 , typename A39 , typename A40 , typename A41 , typename A42 , typename A43 , typename A44 , typename A45 , typename A46 , typename A47 , typename A48> typename phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 >::type const operator()(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 , A20 const& a20 , A21 const& a21 , A22 const& a22 , A23 const& a23 , A24 const& a24 , A25 const& a25 , A26 const& a26 , A27 const& a27 , A28 const& a28 , A29 const& a29 , A30 const& a30 , A31 const& a31 , A32 const& a32 , A33 const& a33 , A34 const& a34 , A35 const& a35 , A36 const& a36 , A37 const& a37 , A38 const& a38 , A39 const& a39 , A40 const& a40 , A41 const& a41 , A42 const& a42 , A43 const& a43 , A44 const& a44 , A45 const& a45 , A46 const& a46 , A47 const& a47 , A48 const& a48) const { return phoenix::expression::mem_fun_ptr< Object , MemPtr , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19 , A20 , A21 , A22 , A23 , A24 , A25 , A26 , A27 , A28 , A29 , A30 , A31 , A32 , A33 , A34 , A35 , A36 , A37 , A38 , A39 , A40 , A41 , A42 , A43 , A44 , A45 , A46 , A47 , A48 >::make(obj, ptr, a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9 , a10 , a11 , a12 , a13 , a14 , a15 , a16 , a17 , a18 , a19 , a20 , a21 , a22 , a23 , a24 , a25 , a26 , a27 , a28 , a29 , a30 , a31 , a32 , a33 , a34 , a35 , a36 , a37 , a38 , a39 , a40 , a41 , a42 , a43 , a44 , a45 , a46 , a47 , a48); } Object const& obj; MemPtr ptr; }; struct make_mem_fun_ptr_gen : proto::callable { template<typename Sig> struct result; template<typename This, typename Object, typename MemPtr> struct result<This(Object, MemPtr)> { typedef mem_fun_ptr_gen< typename remove_const<typename remove_reference<Object>::type>::type , typename remove_const<typename remove_reference<MemPtr>::type>::type > type; }; template<typename Object, typename MemPtr> mem_fun_ptr_gen<Object, MemPtr> operator()(Object const & obj, MemPtr ptr) const { return mem_fun_ptr_gen<Object, MemPtr>(obj, ptr); } }; } }}
a1b2d5c9a46d933c98a40520361c8e5419c452d4
38c10c01007624cd2056884f25e0d6ab85442194
/media/base/user_input_monitor_linux.cc
2be9b18e1b9cf876be2c7f8b4f891f874a560d1c
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
12,896
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/base/user_input_monitor.h" #include <sys/select.h> #include <unistd.h> #define XK_MISCELLANY #include <X11/keysymdef.h> #include "base/basictypes.h" #include "base/bind.h" #include "base/callback.h" #include "base/compiler_specific.h" #include "base/location.h" #include "base/logging.h" #include "base/message_loop/message_loop.h" #include "base/message_loop/message_pump_libevent.h" #include "base/single_thread_task_runner.h" #include "base/synchronization/lock.h" #include "media/base/keyboard_event_counter.h" #include "third_party/skia/include/core/SkPoint.h" #include "ui/events/keycodes/keyboard_code_conversion_x.h" #include "ui/gfx/x/x11_types.h" // These includes need to be later than dictated by the style guide due to // Xlib header pollution, specifically the min, max, and Status macros. #include <X11/XKBlib.h> #include <X11/Xlibint.h> #include <X11/extensions/record.h> namespace media { namespace { // This is the actual implementation of event monitoring. It's separated from // UserInputMonitorLinux since it needs to be deleted on the IO thread. class UserInputMonitorLinuxCore : public base::MessagePumpLibevent::Watcher, public base::SupportsWeakPtr<UserInputMonitorLinuxCore>, public base::MessageLoop::DestructionObserver { public: enum EventType { MOUSE_EVENT, KEYBOARD_EVENT }; explicit UserInputMonitorLinuxCore( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner, const scoped_refptr<UserInputMonitor::MouseListenerList>& mouse_listeners); ~UserInputMonitorLinuxCore() override; // DestructionObserver overrides. void WillDestroyCurrentMessageLoop() override; size_t GetKeyPressCount() const; void StartMonitor(EventType type); void StopMonitor(EventType type); private: // base::MessagePumpLibevent::Watcher interface. void OnFileCanReadWithoutBlocking(int fd) override; void OnFileCanWriteWithoutBlocking(int fd) override; // Processes key and mouse events. void ProcessXEvent(xEvent* event); static void ProcessReply(XPointer self, XRecordInterceptData* data); scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; scoped_refptr<base::ObserverListThreadSafe< UserInputMonitor::MouseEventListener>> mouse_listeners_; // // The following members should only be accessed on the IO thread. // base::MessagePumpLibevent::FileDescriptorWatcher controller_; Display* x_control_display_; Display* x_record_display_; XRecordRange* x_record_range_[2]; XRecordContext x_record_context_; KeyboardEventCounter counter_; DISALLOW_COPY_AND_ASSIGN(UserInputMonitorLinuxCore); }; class UserInputMonitorLinux : public UserInputMonitor { public: explicit UserInputMonitorLinux( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); ~UserInputMonitorLinux() override; // Public UserInputMonitor overrides. size_t GetKeyPressCount() const override; private: // Private UserInputMonitor overrides. void StartKeyboardMonitoring() override; void StopKeyboardMonitoring() override; void StartMouseMonitoring() override; void StopMouseMonitoring() override; scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; UserInputMonitorLinuxCore* core_; DISALLOW_COPY_AND_ASSIGN(UserInputMonitorLinux); }; UserInputMonitorLinuxCore::UserInputMonitorLinuxCore( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner, const scoped_refptr<UserInputMonitor::MouseListenerList>& mouse_listeners) : io_task_runner_(io_task_runner), mouse_listeners_(mouse_listeners), x_control_display_(NULL), x_record_display_(NULL), x_record_context_(0) { x_record_range_[0] = NULL; x_record_range_[1] = NULL; } UserInputMonitorLinuxCore::~UserInputMonitorLinuxCore() { DCHECK(!x_control_display_); DCHECK(!x_record_display_); DCHECK(!x_record_range_[0]); DCHECK(!x_record_range_[1]); DCHECK(!x_record_context_); } void UserInputMonitorLinuxCore::WillDestroyCurrentMessageLoop() { DCHECK(io_task_runner_->BelongsToCurrentThread()); StopMonitor(MOUSE_EVENT); StopMonitor(KEYBOARD_EVENT); } size_t UserInputMonitorLinuxCore::GetKeyPressCount() const { return counter_.GetKeyPressCount(); } void UserInputMonitorLinuxCore::StartMonitor(EventType type) { DCHECK(io_task_runner_->BelongsToCurrentThread()); if (type == KEYBOARD_EVENT) counter_.Reset(); // TODO(jamiewalch): We should pass the display in. At that point, since // XRecord needs a private connection to the X Server for its data channel // and both channels are used from a separate thread, we'll need to duplicate // them with something like the following: // XOpenDisplay(DisplayString(display)); if (!x_control_display_) x_control_display_ = gfx::OpenNewXDisplay(); if (!x_record_display_) x_record_display_ = gfx::OpenNewXDisplay(); if (!x_control_display_ || !x_record_display_) { LOG(ERROR) << "Couldn't open X display"; StopMonitor(type); return; } int xr_opcode, xr_event, xr_error; if (!XQueryExtension( x_control_display_, "RECORD", &xr_opcode, &xr_event, &xr_error)) { LOG(ERROR) << "X Record extension not available."; StopMonitor(type); return; } if (!x_record_range_[type]) x_record_range_[type] = XRecordAllocRange(); if (!x_record_range_[type]) { LOG(ERROR) << "XRecordAllocRange failed."; StopMonitor(type); return; } if (type == MOUSE_EVENT) { x_record_range_[type]->device_events.first = MotionNotify; x_record_range_[type]->device_events.last = MotionNotify; } else { DCHECK_EQ(KEYBOARD_EVENT, type); x_record_range_[type]->device_events.first = KeyPress; x_record_range_[type]->device_events.last = KeyRelease; } if (x_record_context_) { XRecordDisableContext(x_control_display_, x_record_context_); XFlush(x_control_display_); XRecordFreeContext(x_record_display_, x_record_context_); x_record_context_ = 0; } XRecordRange** record_range_to_use = (x_record_range_[0] && x_record_range_[1]) ? x_record_range_ : &x_record_range_[type]; int number_of_ranges = (x_record_range_[0] && x_record_range_[1]) ? 2 : 1; XRecordClientSpec client_spec = XRecordAllClients; x_record_context_ = XRecordCreateContext(x_record_display_, 0, &client_spec, 1, record_range_to_use, number_of_ranges); if (!x_record_context_) { LOG(ERROR) << "XRecordCreateContext failed."; StopMonitor(type); return; } if (!XRecordEnableContextAsync(x_record_display_, x_record_context_, &UserInputMonitorLinuxCore::ProcessReply, reinterpret_cast<XPointer>(this))) { LOG(ERROR) << "XRecordEnableContextAsync failed."; StopMonitor(type); return; } if (!x_record_range_[0] || !x_record_range_[1]) { // Register OnFileCanReadWithoutBlocking() to be called every time there is // something to read from |x_record_display_|. base::MessageLoopForIO* message_loop = base::MessageLoopForIO::current(); int result = message_loop->WatchFileDescriptor(ConnectionNumber(x_record_display_), true, base::MessageLoopForIO::WATCH_READ, &controller_, this); if (!result) { LOG(ERROR) << "Failed to create X record task."; StopMonitor(type); return; } // Start observing message loop destruction if we start monitoring the first // event. base::MessageLoop::current()->AddDestructionObserver(this); } // Fetch pending events if any. OnFileCanReadWithoutBlocking(ConnectionNumber(x_record_display_)); } void UserInputMonitorLinuxCore::StopMonitor(EventType type) { DCHECK(io_task_runner_->BelongsToCurrentThread()); if (x_record_range_[type]) { XFree(x_record_range_[type]); x_record_range_[type] = NULL; } if (x_record_range_[0] || x_record_range_[1]) return; // Context must be disabled via the control channel because we can't send // any X protocol traffic over the data channel while it's recording. if (x_record_context_) { XRecordDisableContext(x_control_display_, x_record_context_); XFlush(x_control_display_); XRecordFreeContext(x_record_display_, x_record_context_); x_record_context_ = 0; controller_.StopWatchingFileDescriptor(); } if (x_record_display_) { XCloseDisplay(x_record_display_); x_record_display_ = NULL; } if (x_control_display_) { XCloseDisplay(x_control_display_); x_control_display_ = NULL; } // Stop observing message loop destruction if no event is being monitored. base::MessageLoop::current()->RemoveDestructionObserver(this); } void UserInputMonitorLinuxCore::OnFileCanReadWithoutBlocking(int fd) { DCHECK(io_task_runner_->BelongsToCurrentThread()); XEvent event; // Fetch pending events if any. while (XPending(x_record_display_)) { XNextEvent(x_record_display_, &event); } } void UserInputMonitorLinuxCore::OnFileCanWriteWithoutBlocking(int fd) { NOTREACHED(); } void UserInputMonitorLinuxCore::ProcessXEvent(xEvent* event) { DCHECK(io_task_runner_->BelongsToCurrentThread()); if (event->u.u.type == MotionNotify) { SkIPoint position(SkIPoint::Make(event->u.keyButtonPointer.rootX, event->u.keyButtonPointer.rootY)); mouse_listeners_->Notify( FROM_HERE, &UserInputMonitor::MouseEventListener::OnMouseMoved, position); } else { ui::EventType type; if (event->u.u.type == KeyPress) { type = ui::ET_KEY_PRESSED; } else if (event->u.u.type == KeyRelease) { type = ui::ET_KEY_RELEASED; } else { NOTREACHED(); return; } KeySym key_sym = XkbKeycodeToKeysym(x_control_display_, event->u.u.detail, 0, 0); ui::KeyboardCode key_code = ui::KeyboardCodeFromXKeysym(key_sym); counter_.OnKeyboardEvent(type, key_code); } } // static void UserInputMonitorLinuxCore::ProcessReply(XPointer self, XRecordInterceptData* data) { if (data->category == XRecordFromServer) { xEvent* event = reinterpret_cast<xEvent*>(data->data); reinterpret_cast<UserInputMonitorLinuxCore*>(self)->ProcessXEvent(event); } XRecordFreeData(data); } // // Implementation of UserInputMonitorLinux. // UserInputMonitorLinux::UserInputMonitorLinux( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner) : io_task_runner_(io_task_runner), core_(new UserInputMonitorLinuxCore(io_task_runner, mouse_listeners())) {} UserInputMonitorLinux::~UserInputMonitorLinux() { if (!io_task_runner_->DeleteSoon(FROM_HERE, core_)) delete core_; } size_t UserInputMonitorLinux::GetKeyPressCount() const { return core_->GetKeyPressCount(); } void UserInputMonitorLinux::StartKeyboardMonitoring() { io_task_runner_->PostTask( FROM_HERE, base::Bind(&UserInputMonitorLinuxCore::StartMonitor, core_->AsWeakPtr(), UserInputMonitorLinuxCore::KEYBOARD_EVENT)); } void UserInputMonitorLinux::StopKeyboardMonitoring() { io_task_runner_->PostTask( FROM_HERE, base::Bind(&UserInputMonitorLinuxCore::StopMonitor, core_->AsWeakPtr(), UserInputMonitorLinuxCore::KEYBOARD_EVENT)); } void UserInputMonitorLinux::StartMouseMonitoring() { io_task_runner_->PostTask(FROM_HERE, base::Bind(&UserInputMonitorLinuxCore::StartMonitor, core_->AsWeakPtr(), UserInputMonitorLinuxCore::MOUSE_EVENT)); } void UserInputMonitorLinux::StopMouseMonitoring() { io_task_runner_->PostTask(FROM_HERE, base::Bind(&UserInputMonitorLinuxCore::StopMonitor, core_->AsWeakPtr(), UserInputMonitorLinuxCore::MOUSE_EVENT)); } } // namespace scoped_ptr<UserInputMonitor> UserInputMonitor::Create( const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner, const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner) { return scoped_ptr<UserInputMonitor>( new UserInputMonitorLinux(io_task_runner)); } } // namespace media
7cf445afeb7c239c82d26c48e10f3c98da62e43d
52d41eb2683f9f831786a5df9b1125130978f405
/spline/basis.cpp
9df1541d69a36af790abd4cb39c020843e506949
[]
permissive
krishauser/KrisLibrary
5c4ba10bbefd317f39bc52f73cd88cb820dd614d
63eb06cc1b3f62b94504e715449de09397751dea
refs/heads/master
2022-08-27T11:10:45.214050
2022-08-09T21:40:25
2022-08-09T21:40:25
10,486,267
64
38
BSD-3-Clause
2021-12-12T22:14:46
2013-06-04T18:55:11
C++
UTF-8
C++
false
false
3,039
cpp
#include "basis.h" typedef Real realMat44 [4][4]; const Real Three = 3.0; const Real Four = 4.0; const Real Six = 6.0; const realMat44 hermiteBasis = { { 1, 0,-3, 2}, //x0 { 0, 0, 3,-2}, //x1 { 0, 1,-2, 1}, //t0 { 0, 0,-1, 1}, //t1 }; inline void cardinalBasis(Real s, realMat44 C) { C[0][3]=-s; C[0][2]=s*Two; C[0][1] = -s; C[0][0] = Zero; //x-1 C[1][3]=(Two-s); C[1][2]=s-Three; C[1][1] = Zero; C[1][0] = One; //x0 C[2][3]=(s-Two); C[2][2]=Three-Two*s;C[2][1] = s; C[2][0] = Zero; //x1 C[3][3]=s; C[3][2]=-s; C[3][1] = Zero; C[3][0] = Zero; //x2 } const realMat44 cubicBezierBasis = { { 1,-3, 3,-1}, { 0, 3,-6, 3}, { 0, 0, 3,-3}, { 0, 0, 0, 1}, }; inline void hermite_coeffs(Real t, Real H []) { Real t2 = t*t, t3 = t2*t; H[1]=-Two*t3 + Three*t2; H[0]=-H[1] + One; H[2]=t3 - Two*t2 + t; H[3]=t3 - t2; } inline void hermite_tangent_coeffs(Real t, Real T[]) { Real t2 = t*t; T[0]=Six*t2 - Six*t; T[1]= -T[0]; T[2]=Three*t2 - Four*t + One; T[3]=Three*t2 - Two*t; } inline void cardinal_coeffs(Real t, Real s, Real C[]) { Real t2 = t*t, t3 = t2*t; C[0]=s*(-t3 + Two*t2 - t); C[1]=(Two-s)*t3 + (s-Three)*t2 + One; C[2]=(s-Two)*t3 + (Three-Two*s)*t2 + s*t; C[3]=s*(t3 - t2); } inline void cardinal_tangent_coeffs(Real t, Real s, Real T[]) { Real t2 = t*t; T[0]=s*(-Three*t2 + Four*t - One); T[1]=(Six-Three*s)*t2 + (Two*s-Six)*t; T[2]=(Three*s-Six)*t2 + (Six-Four*s)*t + s; T[3]=s*(Three*t2 - Two*t); } inline void cubic_bezier_coeffs(Real t, Real C[]) { Real t2 = t*t, t3 = t2*t; C[0]=One-Three*t+Three*t2-t3; C[1]=Three*(t-Two*t2+t3); C[2]=Three*(t2-t3); C[3]=t3; } void LinearSplineBasis::EvalBasis(Real u, Real* vals) const { vals[0] = u; vals[1] = One - u; } void LinearSplineBasis::EvalBasisDeriv(Real u, int deriv, Real* vals) const { switch(deriv) { case 0: EvalBasis(u,vals); break; case 1: vals[0] = One; vals[1] = -One; break; default: vals[0] = vals[1] = Zero; } } void CubicSplineBasis::EvalBasis(Real u, Real* vals) const { Real u2 = u*u; Real u3 = u*u2; for(int i=0; i<=3; i++) { const Real* b = BasisCoeffs(i); vals[i] = u3*b[3] + u2*b[2] + u*b[1] + b[0]; } } void CubicSplineBasis::EvalBasisDeriv(Real u, int deriv, Real* vals) const { Real u2 = u*u; int i; //Real u3 = u*u2; switch(deriv) { case 0: EvalBasis(u,vals); break; case 1: for(i=0; i<=3; i++) { const Real* b = BasisCoeffs(i); vals[i] = Three*u2*b[3] + Two*u*b[2] + b[1]; } break; case 2: for(i=0; i<=3; i++) { const Real* b = BasisCoeffs(i); vals[i] = Six*u*b[3] + Two*b[2]; } break; case 3: for(i=0; i<=3; i++) { const Real* b = BasisCoeffs(i); vals[i] = Six*b[3]; } break; default: for(int i=0; i<=3; i++) vals[i] = Zero; } } const Real* HermiteSplineBasis::BasisCoeffs(int i) const { return hermiteBasis[i]; }; void CardinalSplineBasis::SetTension(Real tension) { cardinalBasis(tension, B); }; const Real* BezierCubicSplineBasis::BasisCoeffs(int i) const { return cubicBezierBasis[i]; }
[ "hauser@hauser-THINK.(none)" ]
hauser@hauser-THINK.(none)
fe2b3281028adda38f28a5a52e3a67b087bed683
ca11e5ad13abadd8c73eb2fcc2d6d9ca3dc16d88
/src/qt/walletmodel.cpp
337e8586685eadaed83e0716e9d64490bce1daf1
[ "MIT" ]
permissive
bitcointurbokoin/btkblockchain
fd2d9341ebfdd9f7ece079e16ebff320afdebf4b
623d3128c8841d781bd46ac38d23cfae23a38e5d
refs/heads/master
2020-08-22T05:24:32.166451
2019-11-27T23:01:32
2019-11-27T23:01:32
216,326,408
2
0
null
null
null
null
UTF-8
C++
false
false
27,800
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2018 The PIVX developers // Copyright (c) 2019 The Bitcoin Turbo Koin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "walletmodel.h" #include "addresstablemodel.h" #include "guiconstants.h" #include "recentrequeststablemodel.h" #include "transactiontablemodel.h" #include "base58.h" #include "db.h" #include "keystore.h" #include "main.h" #include "spork.h" #include "sync.h" #include "ui_interface.h" #include "wallet.h" #include "walletdb.h" // for BackupWallet #include <stdint.h> #include <QDebug> #include <QSet> #include <QTimer> using namespace std; WalletModel::WalletModel(CWallet* wallet, OptionsModel* optionsModel, QObject* parent) : QObject(parent), wallet(wallet), optionsModel(optionsModel), addressTableModel(0), transactionTableModel(0), recentRequestsTableModel(0), cachedBalance(0), cachedUnconfirmedBalance(0), cachedImmatureBalance(0), cachedZerocoinBalance(0), cachedUnconfirmedZerocoinBalance(0), cachedImmatureZerocoinBalance(0), cachedEncryptionStatus(Unencrypted), cachedNumBlocks(0) { fHaveWatchOnly = wallet->HaveWatchOnly(); fHaveMultiSig = wallet->HaveMultiSig(); fForceCheckBalanceChanged = false; addressTableModel = new AddressTableModel(wallet, this); transactionTableModel = new TransactionTableModel(wallet, this); recentRequestsTableModel = new RecentRequestsTableModel(wallet, this); // This timer will be fired repeatedly to update the balance pollTimer = new QTimer(this); connect(pollTimer, SIGNAL(timeout()), this, SLOT(pollBalanceChanged())); pollTimer->start(MODEL_UPDATE_DELAY); subscribeToCoreSignals(); } WalletModel::~WalletModel() { unsubscribeFromCoreSignals(); } CAmount WalletModel::getBalance(const CCoinControl* coinControl) const { if (coinControl) { CAmount nBalance = 0; std::vector<COutput> vCoins; wallet->AvailableCoins(vCoins, true, coinControl); BOOST_FOREACH (const COutput& out, vCoins) if (out.fSpendable) nBalance += out.tx->vout[out.i].nValue; return nBalance; } return wallet->GetBalance(); } CAmount WalletModel::getUnconfirmedBalance() const { return wallet->GetUnconfirmedBalance(); } CAmount WalletModel::getImmatureBalance() const { return wallet->GetImmatureBalance(); } CAmount WalletModel::getLockedBalance() const { return wallet->GetLockedCoins(); } CAmount WalletModel::getZerocoinBalance() const { return 0; } CAmount WalletModel::getUnconfirmedZerocoinBalance() const { return 0; } CAmount WalletModel::getImmatureZerocoinBalance() const { return 0; } bool WalletModel::haveWatchOnly() const { return fHaveWatchOnly; } CAmount WalletModel::getWatchBalance() const { return wallet->GetWatchOnlyBalance(); } CAmount WalletModel::getWatchUnconfirmedBalance() const { return wallet->GetUnconfirmedWatchOnlyBalance(); } CAmount WalletModel::getWatchImmatureBalance() const { return wallet->GetImmatureWatchOnlyBalance(); } void WalletModel::updateStatus() { EncryptionStatus newEncryptionStatus = getEncryptionStatus(); if (cachedEncryptionStatus != newEncryptionStatus) emit encryptionStatusChanged(newEncryptionStatus); } void WalletModel::pollBalanceChanged() { // Get required locks upfront. This avoids the GUI from getting stuck on // periodical polls if the core is holding the locks for a longer time - // for example, during a wallet rescan. TRY_LOCK(cs_main, lockMain); if (!lockMain) return; TRY_LOCK(wallet->cs_wallet, lockWallet); if (!lockWallet) return; if (fForceCheckBalanceChanged || chainActive.Height() != cachedNumBlocks || nZeromintPercentage != cachedZeromintPercentage || cachedTxLocks != nCompleteTXLocks) { fForceCheckBalanceChanged = false; // Balance and number of transactions might have changed cachedNumBlocks = chainActive.Height(); cachedZeromintPercentage = nZeromintPercentage; checkBalanceChanged(); if (transactionTableModel) { transactionTableModel->updateConfirmations(); } // Address in receive tab may have been used emit notifyReceiveAddressChanged(); } } void WalletModel::emitBalanceChanged() { // Force update of UI elements even when no values have changed emit balanceChanged(cachedBalance, cachedUnconfirmedBalance, cachedImmatureBalance, cachedZerocoinBalance, cachedUnconfirmedZerocoinBalance, cachedImmatureZerocoinBalance, cachedWatchOnlyBalance, cachedWatchUnconfBalance, cachedWatchImmatureBalance); } void WalletModel::checkBalanceChanged() { TRY_LOCK(cs_main, lockMain); if (!lockMain) return; CAmount newBalance = getBalance(); CAmount newUnconfirmedBalance = getUnconfirmedBalance(); CAmount newImmatureBalance = getImmatureBalance(); CAmount newZerocoinBalance = getZerocoinBalance(); CAmount newUnconfirmedZerocoinBalance = getUnconfirmedZerocoinBalance(); CAmount newImmatureZerocoinBalance = getImmatureZerocoinBalance(); CAmount newWatchOnlyBalance = 0; CAmount newWatchUnconfBalance = 0; CAmount newWatchImmatureBalance = 0; if (haveWatchOnly()) { newWatchOnlyBalance = getWatchBalance(); newWatchUnconfBalance = getWatchUnconfirmedBalance(); newWatchImmatureBalance = getWatchImmatureBalance(); } if (cachedBalance != newBalance || cachedUnconfirmedBalance != newUnconfirmedBalance || cachedImmatureBalance != newImmatureBalance || cachedZerocoinBalance != newZerocoinBalance || cachedUnconfirmedZerocoinBalance != newUnconfirmedZerocoinBalance || cachedImmatureZerocoinBalance != newImmatureZerocoinBalance || cachedWatchOnlyBalance != newWatchOnlyBalance || cachedWatchUnconfBalance != newWatchUnconfBalance || cachedWatchImmatureBalance != newWatchImmatureBalance || cachedTxLocks != nCompleteTXLocks ) { cachedBalance = newBalance; cachedUnconfirmedBalance = newUnconfirmedBalance; cachedImmatureBalance = newImmatureBalance; cachedZerocoinBalance = newZerocoinBalance; cachedUnconfirmedZerocoinBalance = newUnconfirmedZerocoinBalance; cachedImmatureZerocoinBalance = newImmatureZerocoinBalance; cachedTxLocks = nCompleteTXLocks; cachedWatchOnlyBalance = newWatchOnlyBalance; cachedWatchUnconfBalance = newWatchUnconfBalance; cachedWatchImmatureBalance = newWatchImmatureBalance; emit balanceChanged(newBalance, newUnconfirmedBalance, newImmatureBalance, newZerocoinBalance, newUnconfirmedZerocoinBalance, newImmatureZerocoinBalance, newWatchOnlyBalance, newWatchUnconfBalance, newWatchImmatureBalance); } } void WalletModel::updateTransaction() { // Balance and number of transactions might have changed fForceCheckBalanceChanged = true; } void WalletModel::updateAddressBook(const QString& address, const QString& label, bool isMine, const QString& purpose, int status) { if (addressTableModel) addressTableModel->updateEntry(address, label, isMine, purpose, status); } void WalletModel::updateAddressBook(const QString &pubCoin, const QString &isUsed, int status) { if(addressTableModel) addressTableModel->updateEntry(pubCoin, isUsed, status); } void WalletModel::updateWatchOnlyFlag(bool fHaveWatchonly) { fHaveWatchOnly = fHaveWatchonly; emit notifyWatchonlyChanged(fHaveWatchonly); } void WalletModel::updateMultiSigFlag(bool fHaveMultiSig) { this->fHaveMultiSig = fHaveMultiSig; emit notifyMultiSigChanged(fHaveMultiSig); } bool WalletModel::validateAddress(const QString& address) { CBitcoinAddress addressParsed(address.toStdString()); return addressParsed.IsValid(); } void WalletModel::updateAddressBookLabels(const CTxDestination& dest, const string& strName, const string& strPurpose) { LOCK(wallet->cs_wallet); std::map<CTxDestination, CAddressBookData>::iterator mi = wallet->mapAddressBook.find(dest); // Check if we have a new address or an updated label if (mi == wallet->mapAddressBook.end()) { wallet->SetAddressBook(dest, strName, strPurpose); } else if (mi->second.name != strName) { wallet->SetAddressBook(dest, strName, ""); // "" means don't change purpose } } WalletModel::SendCoinsReturn WalletModel::prepareTransaction(WalletModelTransaction& transaction, const CCoinControl* coinControl) { CAmount total = 0; QList<SendCoinsRecipient> recipients = transaction.getRecipients(); std::vector<std::pair<CScript, CAmount> > vecSend; if (recipients.empty()) { return OK; } if (isAnonymizeOnlyUnlocked()) { return AnonymizeOnlyUnlocked; } QSet<QString> setAddress; // Used to detect duplicates int nAddresses = 0; // Pre-check input data for validity foreach (const SendCoinsRecipient& rcp, recipients) { if (rcp.paymentRequest.IsInitialized()) { // PaymentRequest... CAmount subtotal = 0; const payments::PaymentDetails& details = rcp.paymentRequest.getDetails(); for (int i = 0; i < details.outputs_size(); i++) { const payments::Output& out = details.outputs(i); if (out.amount() <= 0) continue; subtotal += out.amount(); const unsigned char* scriptStr = (const unsigned char*)out.script().data(); CScript scriptPubKey(scriptStr, scriptStr + out.script().size()); vecSend.push_back(std::pair<CScript, CAmount>(scriptPubKey, out.amount())); } if (subtotal <= 0) { return InvalidAmount; } total += subtotal; } else { // User-entered btk address / amount: if (!validateAddress(rcp.address)) { return InvalidAddress; } if (rcp.amount <= 0) { return InvalidAmount; } setAddress.insert(rcp.address); ++nAddresses; CScript scriptPubKey = GetScriptForDestination(CBitcoinAddress(rcp.address.toStdString()).Get()); vecSend.push_back(std::pair<CScript, CAmount>(scriptPubKey, rcp.amount)); total += rcp.amount; } } if (setAddress.size() != nAddresses) { return DuplicateAddress; } CAmount nBalance = getBalance(coinControl); if (total > nBalance) { return AmountExceedsBalance; } { LOCK2(cs_main, wallet->cs_wallet); transaction.newPossibleKeyChange(wallet); CAmount nFeeRequired = 0; std::string strFailReason; CWalletTx* newTx = transaction.getTransaction(); CReserveKey* keyChange = transaction.getPossibleKeyChange(); if (recipients[0].useSwiftTX && total > GetSporkValue(SPORK_5_MAX_VALUE) * COIN) { emit message(tr("Send Coins"), tr("SwiftX doesn't support sending values that high yet. Transactions are currently limited to %1 BTK.").arg(GetSporkValue(SPORK_5_MAX_VALUE)), CClientUIInterface::MSG_ERROR); return TransactionCreationFailed; } bool fCreated = wallet->CreateTransaction(vecSend, *newTx, *keyChange, nFeeRequired, strFailReason, coinControl, recipients[0].inputType, recipients[0].useSwiftTX); transaction.setTransactionFee(nFeeRequired); if (recipients[0].useSwiftTX && newTx->GetValueOut() > GetSporkValue(SPORK_5_MAX_VALUE) * COIN) { emit message(tr("Send Coins"), tr("SwiftX doesn't support sending values that high yet. Transactions are currently limited to %1 BTK.").arg(GetSporkValue(SPORK_5_MAX_VALUE)), CClientUIInterface::MSG_ERROR); return TransactionCreationFailed; } if (!fCreated) { if ((total + nFeeRequired) > nBalance) { return SendCoinsReturn(AmountWithFeeExceedsBalance); } emit message(tr("Send Coins"), QString::fromStdString(strFailReason), CClientUIInterface::MSG_ERROR); return TransactionCreationFailed; } // reject insane fee if (nFeeRequired > ::minRelayTxFee.GetFee(transaction.getTransactionSize()) * 10000) return InsaneFee; } return SendCoinsReturn(OK); } WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction& transaction) { QByteArray transaction_array; /* store serialized transaction */ if (isAnonymizeOnlyUnlocked()) { return AnonymizeOnlyUnlocked; } { LOCK2(cs_main, wallet->cs_wallet); CWalletTx* newTx = transaction.getTransaction(); QList<SendCoinsRecipient> recipients = transaction.getRecipients(); // Store PaymentRequests in wtx.vOrderForm in wallet. foreach (const SendCoinsRecipient& rcp, recipients) { if (rcp.paymentRequest.IsInitialized()) { std::string key("PaymentRequest"); std::string value; rcp.paymentRequest.SerializeToString(&value); newTx->vOrderForm.push_back(make_pair(key, value)); } else if (!rcp.message.isEmpty()) // Message from normal btk:URI (btk:XyZ...?message=example) { newTx->vOrderForm.push_back(make_pair("Message", rcp.message.toStdString())); } } CReserveKey* keyChange = transaction.getPossibleKeyChange(); transaction.getRecipients(); if (!wallet->CommitTransaction(*newTx, *keyChange, (recipients[0].useSwiftTX) ? "ix" : "tx")) return TransactionCommitFailed; CTransaction* t = (CTransaction*)newTx; CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION); ssTx << *t; transaction_array.append(&(ssTx[0]), ssTx.size()); } // Add addresses / update labels that we've sent to to the address book, // and emit coinsSent signal for each recipient foreach (const SendCoinsRecipient& rcp, transaction.getRecipients()) { // Don't touch the address book when we have a payment request if (!rcp.paymentRequest.IsInitialized()) { std::string strAddress = rcp.address.toStdString(); CTxDestination dest = CBitcoinAddress(strAddress).Get(); std::string strLabel = rcp.label.toStdString(); updateAddressBookLabels(dest, strLabel, "send"); } emit coinsSent(wallet, rcp, transaction_array); } checkBalanceChanged(); // update balance immediately, otherwise there could be a short noticeable delay until pollBalanceChanged hits return SendCoinsReturn(OK); } OptionsModel* WalletModel::getOptionsModel() { return optionsModel; } AddressTableModel* WalletModel::getAddressTableModel() { return addressTableModel; } TransactionTableModel* WalletModel::getTransactionTableModel() { return transactionTableModel; } RecentRequestsTableModel* WalletModel::getRecentRequestsTableModel() { return recentRequestsTableModel; } WalletModel::EncryptionStatus WalletModel::getEncryptionStatus() const { if (!wallet->IsCrypted()) { return Unencrypted; } else if (wallet->fWalletUnlockAnonymizeOnly) { return UnlockedForAnonymizationOnly; } else if (wallet->IsLocked()) { return Locked; } else { return Unlocked; } } bool WalletModel::setWalletEncrypted(bool encrypted, const SecureString& passphrase) { if (encrypted) { // Encrypt return wallet->EncryptWallet(passphrase); } else { // Decrypt -- TODO; not supported yet return false; } } bool WalletModel::setWalletLocked(bool locked, const SecureString& passPhrase, bool anonymizeOnly) { if (locked) { // Lock wallet->fWalletUnlockAnonymizeOnly = false; return wallet->Lock(); } else { // Unlock return wallet->Unlock(passPhrase, anonymizeOnly); } } bool WalletModel::isAnonymizeOnlyUnlocked() { return wallet->fWalletUnlockAnonymizeOnly; } bool WalletModel::changePassphrase(const SecureString& oldPass, const SecureString& newPass) { bool retval; { LOCK(wallet->cs_wallet); wallet->Lock(); // Make sure wallet is locked before attempting pass change retval = wallet->ChangeWalletPassphrase(oldPass, newPass); } return retval; } bool WalletModel::backupWallet(const QString& filename) { //attempt regular backup if(!BackupWallet(*wallet, filename.toLocal8Bit().data())) { return error("ERROR: Failed to backup wallet!"); } return true; } // Handlers for core signals static void NotifyKeyStoreStatusChanged(WalletModel* walletmodel, CCryptoKeyStore* wallet) { qDebug() << "NotifyKeyStoreStatusChanged"; QMetaObject::invokeMethod(walletmodel, "updateStatus", Qt::QueuedConnection); } static void NotifyAddressBookChanged(WalletModel* walletmodel, CWallet* wallet, const CTxDestination& address, const std::string& label, bool isMine, const std::string& purpose, ChangeType status) { QString strAddress = QString::fromStdString(CBitcoinAddress(address).ToString()); QString strLabel = QString::fromStdString(label); QString strPurpose = QString::fromStdString(purpose); qDebug() << "NotifyAddressBookChanged : " + strAddress + " " + strLabel + " isMine=" + QString::number(isMine) + " purpose=" + strPurpose + " status=" + QString::number(status); QMetaObject::invokeMethod(walletmodel, "updateAddressBook", Qt::QueuedConnection, Q_ARG(QString, strAddress), Q_ARG(QString, strLabel), Q_ARG(bool, isMine), Q_ARG(QString, strPurpose), Q_ARG(int, status)); } // queue notifications to show a non freezing progress dialog e.g. for rescan static bool fQueueNotifications = false; static std::vector<std::pair<uint256, ChangeType> > vQueueNotifications; static void NotifyTransactionChanged(WalletModel* walletmodel, CWallet* wallet, const uint256& hash, ChangeType status) { if (fQueueNotifications) { vQueueNotifications.push_back(make_pair(hash, status)); return; } QString strHash = QString::fromStdString(hash.GetHex()); qDebug() << "NotifyTransactionChanged : " + strHash + " status= " + QString::number(status); QMetaObject::invokeMethod(walletmodel, "updateTransaction", Qt::QueuedConnection /*, Q_ARG(QString, strHash), Q_ARG(int, status)*/); } static void ShowProgress(WalletModel* walletmodel, const std::string& title, int nProgress) { // emits signal "showProgress" QMetaObject::invokeMethod(walletmodel, "showProgress", Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(title)), Q_ARG(int, nProgress)); } static void NotifyWatchonlyChanged(WalletModel* walletmodel, bool fHaveWatchonly) { QMetaObject::invokeMethod(walletmodel, "updateWatchOnlyFlag", Qt::QueuedConnection, Q_ARG(bool, fHaveWatchonly)); } static void NotifyMultiSigChanged(WalletModel* walletmodel, bool fHaveMultiSig) { QMetaObject::invokeMethod(walletmodel, "updateMultiSigFlag", Qt::QueuedConnection, Q_ARG(bool, fHaveMultiSig)); } static void NotifyWalletBacked(WalletModel* model, const bool& fSuccess, const string& filename) { string message; string title = "Backup "; CClientUIInterface::MessageBoxFlags method; if (fSuccess) { message = "The wallet data was successfully saved to "; title += "Successful: "; method = CClientUIInterface::MessageBoxFlags::MSG_INFORMATION; } else { message = "There was an error trying to save the wallet data to "; title += "Failed: "; method = CClientUIInterface::MessageBoxFlags::MSG_ERROR; } message += _(filename.data()); QMetaObject::invokeMethod(model, "message", Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(title)), Q_ARG(QString, QString::fromStdString(message)), Q_ARG(unsigned int, (unsigned int)method)); } void WalletModel::subscribeToCoreSignals() { // Connect signals to wallet wallet->NotifyStatusChanged.connect(boost::bind(&NotifyKeyStoreStatusChanged, this, _1)); wallet->NotifyAddressBookChanged.connect(boost::bind(NotifyAddressBookChanged, this, _1, _2, _3, _4, _5, _6)); wallet->NotifyTransactionChanged.connect(boost::bind(NotifyTransactionChanged, this, _1, _2, _3)); wallet->ShowProgress.connect(boost::bind(ShowProgress, this, _1, _2)); wallet->NotifyWatchonlyChanged.connect(boost::bind(NotifyWatchonlyChanged, this, _1)); wallet->NotifyMultiSigChanged.connect(boost::bind(NotifyMultiSigChanged, this, _1)); wallet->NotifyWalletBacked.connect(boost::bind(NotifyWalletBacked, this, _1, _2)); } void WalletModel::unsubscribeFromCoreSignals() { // Disconnect signals from wallet wallet->NotifyStatusChanged.disconnect(boost::bind(&NotifyKeyStoreStatusChanged, this, _1)); wallet->NotifyAddressBookChanged.disconnect(boost::bind(NotifyAddressBookChanged, this, _1, _2, _3, _4, _5, _6)); wallet->NotifyTransactionChanged.disconnect(boost::bind(NotifyTransactionChanged, this, _1, _2, _3)); wallet->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); wallet->NotifyWatchonlyChanged.disconnect(boost::bind(NotifyWatchonlyChanged, this, _1)); wallet->NotifyMultiSigChanged.disconnect(boost::bind(NotifyMultiSigChanged, this, _1)); wallet->NotifyWalletBacked.disconnect(boost::bind(NotifyWalletBacked, this, _1, _2)); } // WalletModel::UnlockContext implementation WalletModel::UnlockContext WalletModel::requestUnlock(AskPassphraseDialog::Context context, bool relock) { bool was_locked = getEncryptionStatus() == Locked; if (!was_locked && isAnonymizeOnlyUnlocked()) { setWalletLocked(true); wallet->fWalletUnlockAnonymizeOnly = false; was_locked = getEncryptionStatus() == Locked; } if (was_locked) { // Request UI to unlock wallet emit requireUnlock(context); } // If wallet is still locked, unlock was failed or cancelled, mark context as invalid bool valid = getEncryptionStatus() != Locked; return UnlockContext(valid, relock); // return UnlockContext(this, valid, was_locked && !isAnonymizeOnlyUnlocked()); } WalletModel::UnlockContext::UnlockContext(bool valid, bool relock) : valid(valid), relock(relock) { } WalletModel::UnlockContext::~UnlockContext() { /* if (valid && relock) { wallet->setWalletLocked(true); } */ } void WalletModel::UnlockContext::CopyFrom(const UnlockContext& rhs) { // Transfer context; old object no longer relocks wallet *this = rhs; rhs.relock = false; } bool WalletModel::getPubKey(const CKeyID& address, CPubKey& vchPubKeyOut) const { return wallet->GetPubKey(address, vchPubKeyOut); } // returns a list of COutputs from COutPoints void WalletModel::getOutputs(const std::vector<COutPoint>& vOutpoints, std::vector<COutput>& vOutputs) { LOCK2(cs_main, wallet->cs_wallet); BOOST_FOREACH (const COutPoint& outpoint, vOutpoints) { if (!wallet->mapWallet.count(outpoint.hash)) continue; int nDepth = wallet->mapWallet[outpoint.hash].GetDepthInMainChain(); if (nDepth < 0) continue; COutput out(&wallet->mapWallet[outpoint.hash], outpoint.n, nDepth, true); vOutputs.push_back(out); } } bool WalletModel::isSpent(const COutPoint& outpoint) const { LOCK2(cs_main, wallet->cs_wallet); return wallet->IsSpent(outpoint.hash, outpoint.n); } // AvailableCoins + LockedCoins grouped by wallet address (put change in one group with wallet address) void WalletModel::listCoins(std::map<QString, std::vector<COutput> >& mapCoins) const { std::vector<COutput> vCoins; wallet->AvailableCoins(vCoins); LOCK2(cs_main, wallet->cs_wallet); // ListLockedCoins, mapWallet std::vector<COutPoint> vLockedCoins; wallet->ListLockedCoins(vLockedCoins); // add locked coins BOOST_FOREACH (const COutPoint& outpoint, vLockedCoins) { if (!wallet->mapWallet.count(outpoint.hash)) continue; int nDepth = wallet->mapWallet[outpoint.hash].GetDepthInMainChain(); if (nDepth < 0) continue; COutput out(&wallet->mapWallet[outpoint.hash], outpoint.n, nDepth, true); if (outpoint.n < out.tx->vout.size() && wallet->IsMine(out.tx->vout[outpoint.n]) == ISMINE_SPENDABLE) vCoins.push_back(out); } BOOST_FOREACH (const COutput& out, vCoins) { COutput cout = out; while (wallet->IsChange(cout.tx->vout[cout.i]) && cout.tx->vin.size() > 0 && wallet->IsMine(cout.tx->vin[0])) { if (!wallet->mapWallet.count(cout.tx->vin[0].prevout.hash)) break; cout = COutput(&wallet->mapWallet[cout.tx->vin[0].prevout.hash], cout.tx->vin[0].prevout.n, 0, true); } CTxDestination address; if (!out.fSpendable || !ExtractDestination(cout.tx->vout[cout.i].scriptPubKey, address)) continue; mapCoins[QString::fromStdString(CBitcoinAddress(address).ToString())].push_back(out); } } bool WalletModel::isLockedCoin(uint256 hash, unsigned int n) const { LOCK2(cs_main, wallet->cs_wallet); return wallet->IsLockedCoin(hash, n); } void WalletModel::lockCoin(COutPoint& output) { LOCK2(cs_main, wallet->cs_wallet); wallet->LockCoin(output); } void WalletModel::unlockCoin(COutPoint& output) { LOCK2(cs_main, wallet->cs_wallet); wallet->UnlockCoin(output); } void WalletModel::listLockedCoins(std::vector<COutPoint>& vOutpts) { LOCK2(cs_main, wallet->cs_wallet); wallet->ListLockedCoins(vOutpts); } void WalletModel::loadReceiveRequests(std::vector<std::string>& vReceiveRequests) { LOCK(wallet->cs_wallet); BOOST_FOREACH (const PAIRTYPE(CTxDestination, CAddressBookData) & item, wallet->mapAddressBook) BOOST_FOREACH (const PAIRTYPE(std::string, std::string) & item2, item.second.destdata) if (item2.first.size() > 2 && item2.first.substr(0, 2) == "rr") // receive request vReceiveRequests.push_back(item2.second); } bool WalletModel::saveReceiveRequest(const std::string& sAddress, const int64_t nId, const std::string& sRequest) { CTxDestination dest = CBitcoinAddress(sAddress).Get(); std::stringstream ss; ss << nId; std::string key = "rr" + ss.str(); // "rr" prefix = "receive request" in destdata LOCK(wallet->cs_wallet); if (sRequest.empty()) return wallet->EraseDestData(dest, key); else return wallet->AddDestData(dest, key, sRequest); } bool WalletModel::isMine(CBitcoinAddress address) { return IsMine(*wallet, address.Get()); } bool WalletModel::isUsed(CBitcoinAddress address) { return wallet->IsUsed(address); }
6219757f024d1c3982add2e378797b8ec71e34a2
9398b13b58ca2353f88a40c1adb0c73a9514f926
/Prepaid_Meter_GSM_SMS/Prepaid_Meter_GSM_SMS/Blank/Lib/GSM/GSM3ShieldV1DataNetworkProvider.cpp
2d668c9c3211bcb18ddc4620496e108338da9eaf
[]
no_license
esarearthur/ECG-Prepaid-Meter
923aa0d8daf35a203115f46f1be5e3c2872e5030
54c816629afeadac47bed7baed2e900b175ca921
refs/heads/master
2021-01-10T23:32:45.925102
2016-10-09T22:53:40
2016-10-09T22:53:40
70,430,923
0
0
null
2016-10-09T22:53:40
2016-10-09T21:16:40
C++
UTF-8
C++
false
false
12,977
cpp
/* This file is part of the GSM3 communications library for Arduino -- Multi-transport communications platform -- Fully asynchronous -- Includes code for the Arduino-Telefonica GSM/GPRS Shield V1 -- Voice calls -- SMS -- TCP/IP connections -- HTTP basic clients This library has been developed by Telefónica Digital - PDI - - Physical Internet Lab, as part as its collaboration with Arduino and the Open Hardware Community. September-December 2012 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA The latest version of this library can always be found at https://github.com/BlueVia/Official-Arduino */ #include <GSM3ShieldV1DataNetworkProvider.h> #include <Arduino.h> const char _command_CGATT[] PROGMEM = "AT+CGATT="; const char _command_SEPARATOR[] PROGMEM = "\",\""; //Attach GPRS main function. GSM3_NetworkStatus_t GSM3ShieldV1DataNetworkProvider::attachGPRS(char* apn, char* user_name, char* password, bool synchronous) { user = user_name; passwd = password; // A sad use of byte reuse theGSM3ShieldV1ModemCore.setPhoneNumber(apn); theGSM3ShieldV1ModemCore.openCommand(this,ATTACHGPRS); theGSM3ShieldV1ModemCore.setStatus(CONNECTING); attachGPRSContinue(); // If synchronous, wait till attach is over, or not. if(synchronous) { // if we shorten this delay, the command fails while(ready()==0) delay(100); } return theGSM3ShieldV1ModemCore.getStatus(); } //Atthach GPRS continue function. void GSM3ShieldV1DataNetworkProvider::attachGPRSContinue() { bool resp; char auxLocate1 [12]; char auxLocate2 [12]; // 1: Attach to GPRS service "AT+CGATT=1" // 2: Wait attach OK and Set the context 0 as FGCNT "AT+QIFGCNT=0" // 3: Wait context OK and Set bearer type as GPRS, APN, user name and pasword "AT+QICSGP=1..." // 4: Wait bearer OK and Enable the function of MUXIP "AT+QIMUX=1" // 5: Wait for disable MUXIP OK and Set the session mode as non transparent "AT+QIMODE=0" // 6: Wait for session mode OK and Enable notification when data received "AT+QINDI=1" // 8: Wait domain name OK and Register the TCP/IP stack "AT+QIREGAPP" // 9: Wait for Register OK and Activate FGCNT "AT+QIACT" // 10: Wait for activate OK //theGSM3ShieldV1ModemCore.setCommandCounter(0); int ct=theGSM3ShieldV1ModemCore.getCommandCounter(); if(ct==1) { //AT+CGATT theGSM3ShieldV1ModemCore.genericCommand_rq(_command_CGATT,false); theGSM3ShieldV1ModemCore.print(0); theGSM3ShieldV1ModemCore.print('\r'); theGSM3ShieldV1ModemCore.setCommandCounter(2); } else if(ct==2) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { //AT+QIFGCNT //theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QIFGCNT=0")); theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIPSHUT")); theGSM3ShieldV1ModemCore.setCommandCounter(3); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==3) { //prepareAuxLocate(PSTR("+CGACT: 1,0"), auxLocate1); //prepareAuxLocate(PSTR("+CGACT: 2,0"), auxLocate2); if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { // Great. Go for the next step //DEBUG //Serial.println("AT+QICSGP."); /*theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QICSGP=1,\""),false); theGSM3ShieldV1ModemCore.print(theGSM3ShieldV1ModemCore.getPhoneNumber()); theGSM3ShieldV1ModemCore.genericCommand_rq(_command_SEPARATOR,false); theGSM3ShieldV1ModemCore.print(user); theGSM3ShieldV1ModemCore.genericCommand_rq(_command_SEPARATOR,false); theGSM3ShieldV1ModemCore.print(passwd); theGSM3ShieldV1ModemCore.print("\"\r");*/ theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIPMUX=0")); theGSM3ShieldV1ModemCore.setCommandCounter(4); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==4) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { // AT+QIMUX=1 for multisocket //theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QIMUX=0")); theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIPSTATUS")); theGSM3ShieldV1ModemCore.setCommandCounter(5); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==5) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { //AT+QIMODE=0 for multisocket //theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QIMODE=1")); theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CGDCONT=1,\"IP\",\""),false); theGSM3ShieldV1ModemCore.print(theGSM3ShieldV1ModemCore.getPhoneNumber()); theGSM3ShieldV1ModemCore.print("\""); theGSM3ShieldV1ModemCore.print("\r\n"); theGSM3ShieldV1ModemCore.setCommandCounter(6); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==6) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { // AT+QINDI=1 //theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QINDI=1")); theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CGACT=1,1")); theGSM3ShieldV1ModemCore.setCommandCounter(8); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==8) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { // AT+QIREGAPP //theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QIREGAPP")); theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CGATT=1")); theGSM3ShieldV1ModemCore.setCommandCounter(9); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==9) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if(resp) { // AT+QIACT //theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QIACT")); theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIPSTATUS")); theGSM3ShieldV1ModemCore.setCommandCounter(10); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==10) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if (resp) { theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CSTT")); theGSM3ShieldV1ModemCore.setCommandCounter(11); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==11) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if (resp) { theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIPSTATUS")); theGSM3ShieldV1ModemCore.setCommandCounter(12); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==12) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if (resp) { theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIICR")); theGSM3ShieldV1ModemCore.setCommandCounter(13); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==13) { if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { if (resp) { theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+CIFSR")); theGSM3ShieldV1ModemCore.setCommandCounter(14); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } else if(ct==14) { prepareAuxLocate(PSTR("."), auxLocate1); if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp, auxLocate1)) { if (resp) { theGSM3ShieldV1ModemCore.setStatus(GPRS_READY); theGSM3ShieldV1ModemCore.closeCommand(1); } else theGSM3ShieldV1ModemCore.closeCommand(3); } } } //Detach GPRS main function. GSM3_NetworkStatus_t GSM3ShieldV1DataNetworkProvider::detachGPRS(bool synchronous) { theGSM3ShieldV1ModemCore.openCommand(this,DETACHGPRS); theGSM3ShieldV1ModemCore.setStatus(CONNECTING); detachGPRSContinue(); if(synchronous) { while(ready()==0) delay(1); } return theGSM3ShieldV1ModemCore.getStatus(); } void GSM3ShieldV1DataNetworkProvider::detachGPRSContinue() { bool resp; // 1: Detach to GPRS service "AT+CGATT=0" // 2: Wait dettach +PDP DEACT // 3: Wait for OK switch (theGSM3ShieldV1ModemCore.getCommandCounter()) { case 1: //AT+CGATT=0 theGSM3ShieldV1ModemCore.genericCommand_rq(_command_CGATT,false); theGSM3ShieldV1ModemCore.print(0); theGSM3ShieldV1ModemCore.print('\r'); theGSM3ShieldV1ModemCore.setCommandCounter(2); break; case 2: char auxLocate[12]; prepareAuxLocate(PSTR("+PDP DEACT"), auxLocate); if(theGSM3ShieldV1ModemCore.theBuffer().locate(auxLocate)) { if(resp) { // Received +PDP DEACT; theGSM3ShieldV1ModemCore.setCommandCounter(3); } else theGSM3ShieldV1ModemCore.closeCommand(3); } break; case 3: if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp)) { // OK received if (resp) { theGSM3ShieldV1ModemCore.setStatus(GSM_READY); theGSM3ShieldV1ModemCore.closeCommand(1); } else theGSM3ShieldV1ModemCore.closeCommand(3); } theGSM3ShieldV1ModemCore.theBuffer().flush(); theGSM3ShieldV1ModemCore.gss.spaceAvailable(); break; } } //QILOCIP parse. bool GSM3ShieldV1DataNetworkProvider::parseQILOCIP_rsp(char* LocalIP, int LocalIPlength, bool& rsp) { if (!(theGSM3ShieldV1ModemCore.theBuffer().extractSubstring("\r\n","\r\n", LocalIP, LocalIPlength))) rsp = false; else rsp = true; return true; } //Get IP main function. int GSM3ShieldV1DataNetworkProvider::getIP(char* LocalIP, int LocalIPlength) { theGSM3ShieldV1ModemCore.setPhoneNumber(LocalIP); theGSM3ShieldV1ModemCore.setPort(LocalIPlength); theGSM3ShieldV1ModemCore.openCommand(this,GETIP); getIPContinue(); return theGSM3ShieldV1ModemCore.getCommandError(); } void GSM3ShieldV1DataNetworkProvider::getIPContinue() { bool resp; // 1: Read Local IP "AT+QILOCIP" // 2: Waiting for IP. switch (theGSM3ShieldV1ModemCore.getCommandCounter()) { case 1: //AT+QILOCIP theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QILOCIP")); theGSM3ShieldV1ModemCore.setCommandCounter(2); break; case 2: if(parseQILOCIP_rsp(theGSM3ShieldV1ModemCore.getPhoneNumber(), theGSM3ShieldV1ModemCore.getPort(), resp)) { if (resp) theGSM3ShieldV1ModemCore.closeCommand(1); else theGSM3ShieldV1ModemCore.closeCommand(3); } theGSM3ShieldV1ModemCore.theBuffer().flush(); theGSM3ShieldV1ModemCore.gss.spaceAvailable(); break; } } //Get IP with IPAddress object IPAddress GSM3ShieldV1DataNetworkProvider::getIPAddress() { char ip_temp[15]=""; getIP(ip_temp, 15); unsigned long m=millis(); while((millis()-m)<10*1000 && (!ready())){ // wait for a response from the modem: delay(100); } IPAddress ip; inet_aton(ip_temp, ip); return ip; } int GSM3ShieldV1DataNetworkProvider::inet_aton(const char* aIPAddrString, IPAddress& aResult) { // See if we've been given a valid IP address const char* p =aIPAddrString; while (*p && ( (*p == '.') || (*p >= '0') || (*p <= '9') )) { p++; } if (*p == '\0') { // It's looking promising, we haven't found any invalid characters p = aIPAddrString; int segment =0; int segmentValue =0; while (*p && (segment < 4)) { if (*p == '.') { // We've reached the end of a segment if (segmentValue > 255) { // You can't have IP address segments that don't fit in a byte return 0; } else { aResult[segment] = (byte)segmentValue; segment++; segmentValue = 0; } } else { // Next digit segmentValue = (segmentValue*10)+(*p - '0'); } p++; } // We've reached the end of address, but there'll still be the last // segment to deal with if ((segmentValue > 255) || (segment > 3)) { // You can't have IP address segments that don't fit in a byte, // or more than four segments return 0; } else { aResult[segment] = (byte)segmentValue; return 1; } } else { return 0; } } //Response management. void GSM3ShieldV1DataNetworkProvider::manageResponse(byte from, byte to) { switch(theGSM3ShieldV1ModemCore.getOngoingCommand()) { case ATTACHGPRS: attachGPRSContinue(); break; case DETACHGPRS: detachGPRSContinue(); break; case GETIP: getIPContinue(); break; } }