System.Buffers.cpp 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. template <typename R, typename T1>
  10. struct VirtualFuncInvoker1
  11. {
  12. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  13. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  14. {
  15. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  16. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  17. }
  18. };
  19. // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>
  20. struct Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E;
  21. // System.Byte[]
  22. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  23. // System.Char[]
  24. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  25. // System.IntPtr[]
  26. struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
  27. // System.Diagnostics.StackTrace[]
  28. struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
  29. // System.Type[]
  30. struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
  31. // System.Buffers.ArrayPoolEventSource
  32. struct ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358;
  33. // System.Reflection.Assembly
  34. struct Assembly_t;
  35. // System.Reflection.Binder
  36. struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
  37. // System.Globalization.CultureInfo
  38. struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98;
  39. // System.Diagnostics.Tracing.EventSource
  40. struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A;
  41. // System.Collections.Hashtable
  42. struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC;
  43. // System.Collections.IDictionary
  44. struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
  45. // System.Resources.IResourceGroveler
  46. struct IResourceGroveler_tD738FE6B83F63AC66FDD73BCD3193016FDEBFAB0;
  47. // System.Reflection.MemberFilter
  48. struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
  49. // System.Security.Cryptography.RandomNumberGenerator
  50. struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
  51. // System.Resources.ResourceManager
  52. struct ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A;
  53. // System.Reflection.RuntimeAssembly
  54. struct RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56;
  55. // System.Runtime.Serialization.SafeSerializationManager
  56. struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
  57. // System.String
  58. struct String_t;
  59. // System.Type
  60. struct Type_t;
  61. // System.Version
  62. struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C;
  63. // System.Void
  64. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  65. // System.Resources.ResourceManager/CultureNameResourceSetPair
  66. struct CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84;
  67. IL2CPP_EXTERN_C RuntimeClass* ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var;
  68. IL2CPP_EXTERN_C RuntimeClass* EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var;
  69. IL2CPP_EXTERN_C RuntimeClass* MissingManifestResourceException_tAC74F21ADC46CCB2BCC710464434E3B97F72FACB_il2cpp_TypeInfo_var;
  70. IL2CPP_EXTERN_C RuntimeClass* ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_il2cpp_TypeInfo_var;
  71. IL2CPP_EXTERN_C RuntimeClass* SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var;
  72. IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  73. IL2CPP_EXTERN_C String_t* _stringLiteral727FAFFC692D108CBB9ED57B1C150923409C145B;
  74. IL2CPP_EXTERN_C const RuntimeType* SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC_0_0_0_var;
  75. struct Exception_t_marshaled_com;
  76. struct Exception_t_marshaled_pinvoke;
  77. IL2CPP_EXTERN_C_BEGIN
  78. IL2CPP_EXTERN_C_END
  79. #ifdef __clang__
  80. #pragma clang diagnostic push
  81. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  82. #pragma clang diagnostic ignored "-Wunused-variable"
  83. #endif
  84. // <Module>
  85. struct U3CModuleU3E_t714CE6A82874DDA5AE2A392795BDDA5CC05C3CD0
  86. {
  87. public:
  88. public:
  89. };
  90. // System.Object
  91. struct Il2CppArrayBounds;
  92. // System.Array
  93. // System.Reflection.MemberInfo
  94. struct MemberInfo_t : public RuntimeObject
  95. {
  96. public:
  97. public:
  98. };
  99. // FxResources.System.Buffers.SR
  100. struct SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC : public RuntimeObject
  101. {
  102. public:
  103. public:
  104. };
  105. // System.SR
  106. struct SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A : public RuntimeObject
  107. {
  108. public:
  109. public:
  110. };
  111. struct SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields
  112. {
  113. public:
  114. // System.Resources.ResourceManager System.SR::s_resourceManager
  115. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * ___s_resourceManager_0;
  116. // System.Type System.SR::<ResourceType>k__BackingField
  117. Type_t * ___U3CResourceTypeU3Ek__BackingField_1;
  118. public:
  119. inline static int32_t get_offset_of_s_resourceManager_0() { return static_cast<int32_t>(offsetof(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields, ___s_resourceManager_0)); }
  120. inline ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * get_s_resourceManager_0() const { return ___s_resourceManager_0; }
  121. inline ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A ** get_address_of_s_resourceManager_0() { return &___s_resourceManager_0; }
  122. inline void set_s_resourceManager_0(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * value)
  123. {
  124. ___s_resourceManager_0 = value;
  125. Il2CppCodeGenWriteBarrier((void**)(&___s_resourceManager_0), (void*)value);
  126. }
  127. inline static int32_t get_offset_of_U3CResourceTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields, ___U3CResourceTypeU3Ek__BackingField_1)); }
  128. inline Type_t * get_U3CResourceTypeU3Ek__BackingField_1() const { return ___U3CResourceTypeU3Ek__BackingField_1; }
  129. inline Type_t ** get_address_of_U3CResourceTypeU3Ek__BackingField_1() { return &___U3CResourceTypeU3Ek__BackingField_1; }
  130. inline void set_U3CResourceTypeU3Ek__BackingField_1(Type_t * value)
  131. {
  132. ___U3CResourceTypeU3Ek__BackingField_1 = value;
  133. Il2CppCodeGenWriteBarrier((void**)(&___U3CResourceTypeU3Ek__BackingField_1), (void*)value);
  134. }
  135. };
  136. // System.String
  137. struct String_t : public RuntimeObject
  138. {
  139. public:
  140. // System.Int32 System.String::m_stringLength
  141. int32_t ___m_stringLength_0;
  142. // System.Char System.String::m_firstChar
  143. Il2CppChar ___m_firstChar_1;
  144. public:
  145. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  146. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  147. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  148. inline void set_m_stringLength_0(int32_t value)
  149. {
  150. ___m_stringLength_0 = value;
  151. }
  152. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  153. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  154. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  155. inline void set_m_firstChar_1(Il2CppChar value)
  156. {
  157. ___m_firstChar_1 = value;
  158. }
  159. };
  160. struct String_t_StaticFields
  161. {
  162. public:
  163. // System.String System.String::Empty
  164. String_t* ___Empty_5;
  165. public:
  166. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  167. inline String_t* get_Empty_5() const { return ___Empty_5; }
  168. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  169. inline void set_Empty_5(String_t* value)
  170. {
  171. ___Empty_5 = value;
  172. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  173. }
  174. };
  175. // System.Buffers.Utilities
  176. struct Utilities_tE53ADF500ED6EDD1A665BE9231DE9F5AE3B51DD9 : public RuntimeObject
  177. {
  178. public:
  179. public:
  180. };
  181. // System.ValueType
  182. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  183. {
  184. public:
  185. public:
  186. };
  187. // Native definition for P/Invoke marshalling of System.ValueType
  188. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  189. {
  190. };
  191. // Native definition for COM marshalling of System.ValueType
  192. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  193. {
  194. };
  195. // System.Boolean
  196. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  197. {
  198. public:
  199. // System.Boolean System.Boolean::m_value
  200. bool ___m_value_0;
  201. public:
  202. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  203. inline bool get_m_value_0() const { return ___m_value_0; }
  204. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  205. inline void set_m_value_0(bool value)
  206. {
  207. ___m_value_0 = value;
  208. }
  209. };
  210. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  211. {
  212. public:
  213. // System.String System.Boolean::TrueString
  214. String_t* ___TrueString_5;
  215. // System.String System.Boolean::FalseString
  216. String_t* ___FalseString_6;
  217. public:
  218. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  219. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  220. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  221. inline void set_TrueString_5(String_t* value)
  222. {
  223. ___TrueString_5 = value;
  224. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  225. }
  226. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  227. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  228. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  229. inline void set_FalseString_6(String_t* value)
  230. {
  231. ___FalseString_6 = value;
  232. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  233. }
  234. };
  235. // System.Enum
  236. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  237. {
  238. public:
  239. public:
  240. };
  241. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  242. {
  243. public:
  244. // System.Char[] System.Enum::enumSeperatorCharArray
  245. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  246. public:
  247. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  248. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  249. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  250. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  251. {
  252. ___enumSeperatorCharArray_0 = value;
  253. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  254. }
  255. };
  256. // Native definition for P/Invoke marshalling of System.Enum
  257. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  258. {
  259. };
  260. // Native definition for COM marshalling of System.Enum
  261. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  262. {
  263. };
  264. // System.Guid
  265. struct Guid_t
  266. {
  267. public:
  268. // System.Int32 System.Guid::_a
  269. int32_t ____a_1;
  270. // System.Int16 System.Guid::_b
  271. int16_t ____b_2;
  272. // System.Int16 System.Guid::_c
  273. int16_t ____c_3;
  274. // System.Byte System.Guid::_d
  275. uint8_t ____d_4;
  276. // System.Byte System.Guid::_e
  277. uint8_t ____e_5;
  278. // System.Byte System.Guid::_f
  279. uint8_t ____f_6;
  280. // System.Byte System.Guid::_g
  281. uint8_t ____g_7;
  282. // System.Byte System.Guid::_h
  283. uint8_t ____h_8;
  284. // System.Byte System.Guid::_i
  285. uint8_t ____i_9;
  286. // System.Byte System.Guid::_j
  287. uint8_t ____j_10;
  288. // System.Byte System.Guid::_k
  289. uint8_t ____k_11;
  290. public:
  291. inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
  292. inline int32_t get__a_1() const { return ____a_1; }
  293. inline int32_t* get_address_of__a_1() { return &____a_1; }
  294. inline void set__a_1(int32_t value)
  295. {
  296. ____a_1 = value;
  297. }
  298. inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
  299. inline int16_t get__b_2() const { return ____b_2; }
  300. inline int16_t* get_address_of__b_2() { return &____b_2; }
  301. inline void set__b_2(int16_t value)
  302. {
  303. ____b_2 = value;
  304. }
  305. inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
  306. inline int16_t get__c_3() const { return ____c_3; }
  307. inline int16_t* get_address_of__c_3() { return &____c_3; }
  308. inline void set__c_3(int16_t value)
  309. {
  310. ____c_3 = value;
  311. }
  312. inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
  313. inline uint8_t get__d_4() const { return ____d_4; }
  314. inline uint8_t* get_address_of__d_4() { return &____d_4; }
  315. inline void set__d_4(uint8_t value)
  316. {
  317. ____d_4 = value;
  318. }
  319. inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
  320. inline uint8_t get__e_5() const { return ____e_5; }
  321. inline uint8_t* get_address_of__e_5() { return &____e_5; }
  322. inline void set__e_5(uint8_t value)
  323. {
  324. ____e_5 = value;
  325. }
  326. inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
  327. inline uint8_t get__f_6() const { return ____f_6; }
  328. inline uint8_t* get_address_of__f_6() { return &____f_6; }
  329. inline void set__f_6(uint8_t value)
  330. {
  331. ____f_6 = value;
  332. }
  333. inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
  334. inline uint8_t get__g_7() const { return ____g_7; }
  335. inline uint8_t* get_address_of__g_7() { return &____g_7; }
  336. inline void set__g_7(uint8_t value)
  337. {
  338. ____g_7 = value;
  339. }
  340. inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
  341. inline uint8_t get__h_8() const { return ____h_8; }
  342. inline uint8_t* get_address_of__h_8() { return &____h_8; }
  343. inline void set__h_8(uint8_t value)
  344. {
  345. ____h_8 = value;
  346. }
  347. inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
  348. inline uint8_t get__i_9() const { return ____i_9; }
  349. inline uint8_t* get_address_of__i_9() { return &____i_9; }
  350. inline void set__i_9(uint8_t value)
  351. {
  352. ____i_9 = value;
  353. }
  354. inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
  355. inline uint8_t get__j_10() const { return ____j_10; }
  356. inline uint8_t* get_address_of__j_10() { return &____j_10; }
  357. inline void set__j_10(uint8_t value)
  358. {
  359. ____j_10 = value;
  360. }
  361. inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
  362. inline uint8_t get__k_11() const { return ____k_11; }
  363. inline uint8_t* get_address_of__k_11() { return &____k_11; }
  364. inline void set__k_11(uint8_t value)
  365. {
  366. ____k_11 = value;
  367. }
  368. };
  369. struct Guid_t_StaticFields
  370. {
  371. public:
  372. // System.Guid System.Guid::Empty
  373. Guid_t ___Empty_0;
  374. // System.Object System.Guid::_rngAccess
  375. RuntimeObject * ____rngAccess_12;
  376. // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
  377. RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
  378. // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
  379. RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14;
  380. public:
  381. inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
  382. inline Guid_t get_Empty_0() const { return ___Empty_0; }
  383. inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
  384. inline void set_Empty_0(Guid_t value)
  385. {
  386. ___Empty_0 = value;
  387. }
  388. inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
  389. inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
  390. inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
  391. inline void set__rngAccess_12(RuntimeObject * value)
  392. {
  393. ____rngAccess_12 = value;
  394. Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
  395. }
  396. inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
  397. inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
  398. inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
  399. inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
  400. {
  401. ____rng_13 = value;
  402. Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
  403. }
  404. inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
  405. inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; }
  406. inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; }
  407. inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
  408. {
  409. ____fastRng_14 = value;
  410. Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
  411. }
  412. };
  413. // System.Int32
  414. struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
  415. {
  416. public:
  417. // System.Int32 System.Int32::m_value
  418. int32_t ___m_value_0;
  419. public:
  420. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
  421. inline int32_t get_m_value_0() const { return ___m_value_0; }
  422. inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
  423. inline void set_m_value_0(int32_t value)
  424. {
  425. ___m_value_0 = value;
  426. }
  427. };
  428. // System.IntPtr
  429. struct IntPtr_t
  430. {
  431. public:
  432. // System.Void* System.IntPtr::m_value
  433. void* ___m_value_0;
  434. public:
  435. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  436. inline void* get_m_value_0() const { return ___m_value_0; }
  437. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  438. inline void set_m_value_0(void* value)
  439. {
  440. ___m_value_0 = value;
  441. }
  442. };
  443. struct IntPtr_t_StaticFields
  444. {
  445. public:
  446. // System.IntPtr System.IntPtr::Zero
  447. intptr_t ___Zero_1;
  448. public:
  449. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  450. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  451. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  452. inline void set_Zero_1(intptr_t value)
  453. {
  454. ___Zero_1 = value;
  455. }
  456. };
  457. // System.UInt32
  458. struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
  459. {
  460. public:
  461. // System.UInt32 System.UInt32::m_value
  462. uint32_t ___m_value_0;
  463. public:
  464. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); }
  465. inline uint32_t get_m_value_0() const { return ___m_value_0; }
  466. inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
  467. inline void set_m_value_0(uint32_t value)
  468. {
  469. ___m_value_0 = value;
  470. }
  471. };
  472. // System.Void
  473. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  474. {
  475. public:
  476. union
  477. {
  478. struct
  479. {
  480. };
  481. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  482. };
  483. public:
  484. };
  485. // System.Reflection.BindingFlags
  486. struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
  487. {
  488. public:
  489. // System.Int32 System.Reflection.BindingFlags::value__
  490. int32_t ___value___2;
  491. public:
  492. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
  493. inline int32_t get_value___2() const { return ___value___2; }
  494. inline int32_t* get_address_of_value___2() { return &___value___2; }
  495. inline void set_value___2(int32_t value)
  496. {
  497. ___value___2 = value;
  498. }
  499. };
  500. // System.Diagnostics.Tracing.EventSource
  501. struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A : public RuntimeObject
  502. {
  503. public:
  504. public:
  505. };
  506. struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields
  507. {
  508. public:
  509. // System.Byte[] System.Diagnostics.Tracing.EventSource::namespaceBytes
  510. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___namespaceBytes_1;
  511. // System.Guid System.Diagnostics.Tracing.EventSource::AspNetEventSourceGuid
  512. Guid_t ___AspNetEventSourceGuid_2;
  513. public:
  514. inline static int32_t get_offset_of_namespaceBytes_1() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields, ___namespaceBytes_1)); }
  515. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_namespaceBytes_1() const { return ___namespaceBytes_1; }
  516. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_namespaceBytes_1() { return &___namespaceBytes_1; }
  517. inline void set_namespaceBytes_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  518. {
  519. ___namespaceBytes_1 = value;
  520. Il2CppCodeGenWriteBarrier((void**)(&___namespaceBytes_1), (void*)value);
  521. }
  522. inline static int32_t get_offset_of_AspNetEventSourceGuid_2() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields, ___AspNetEventSourceGuid_2)); }
  523. inline Guid_t get_AspNetEventSourceGuid_2() const { return ___AspNetEventSourceGuid_2; }
  524. inline Guid_t * get_address_of_AspNetEventSourceGuid_2() { return &___AspNetEventSourceGuid_2; }
  525. inline void set_AspNetEventSourceGuid_2(Guid_t value)
  526. {
  527. ___AspNetEventSourceGuid_2 = value;
  528. }
  529. };
  530. struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_ThreadStaticFields
  531. {
  532. public:
  533. // System.Byte System.Diagnostics.Tracing.EventSource::m_EventSourceExceptionRecurenceCount
  534. uint8_t ___m_EventSourceExceptionRecurenceCount_0;
  535. public:
  536. inline static int32_t get_offset_of_m_EventSourceExceptionRecurenceCount_0() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_ThreadStaticFields, ___m_EventSourceExceptionRecurenceCount_0)); }
  537. inline uint8_t get_m_EventSourceExceptionRecurenceCount_0() const { return ___m_EventSourceExceptionRecurenceCount_0; }
  538. inline uint8_t* get_address_of_m_EventSourceExceptionRecurenceCount_0() { return &___m_EventSourceExceptionRecurenceCount_0; }
  539. inline void set_m_EventSourceExceptionRecurenceCount_0(uint8_t value)
  540. {
  541. ___m_EventSourceExceptionRecurenceCount_0 = value;
  542. }
  543. };
  544. // System.Exception
  545. struct Exception_t : public RuntimeObject
  546. {
  547. public:
  548. // System.String System.Exception::_className
  549. String_t* ____className_1;
  550. // System.String System.Exception::_message
  551. String_t* ____message_2;
  552. // System.Collections.IDictionary System.Exception::_data
  553. RuntimeObject* ____data_3;
  554. // System.Exception System.Exception::_innerException
  555. Exception_t * ____innerException_4;
  556. // System.String System.Exception::_helpURL
  557. String_t* ____helpURL_5;
  558. // System.Object System.Exception::_stackTrace
  559. RuntimeObject * ____stackTrace_6;
  560. // System.String System.Exception::_stackTraceString
  561. String_t* ____stackTraceString_7;
  562. // System.String System.Exception::_remoteStackTraceString
  563. String_t* ____remoteStackTraceString_8;
  564. // System.Int32 System.Exception::_remoteStackIndex
  565. int32_t ____remoteStackIndex_9;
  566. // System.Object System.Exception::_dynamicMethods
  567. RuntimeObject * ____dynamicMethods_10;
  568. // System.Int32 System.Exception::_HResult
  569. int32_t ____HResult_11;
  570. // System.String System.Exception::_source
  571. String_t* ____source_12;
  572. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  573. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  574. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  575. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  576. // System.IntPtr[] System.Exception::native_trace_ips
  577. IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
  578. public:
  579. inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
  580. inline String_t* get__className_1() const { return ____className_1; }
  581. inline String_t** get_address_of__className_1() { return &____className_1; }
  582. inline void set__className_1(String_t* value)
  583. {
  584. ____className_1 = value;
  585. Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
  586. }
  587. inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
  588. inline String_t* get__message_2() const { return ____message_2; }
  589. inline String_t** get_address_of__message_2() { return &____message_2; }
  590. inline void set__message_2(String_t* value)
  591. {
  592. ____message_2 = value;
  593. Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
  594. }
  595. inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
  596. inline RuntimeObject* get__data_3() const { return ____data_3; }
  597. inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
  598. inline void set__data_3(RuntimeObject* value)
  599. {
  600. ____data_3 = value;
  601. Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
  602. }
  603. inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
  604. inline Exception_t * get__innerException_4() const { return ____innerException_4; }
  605. inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
  606. inline void set__innerException_4(Exception_t * value)
  607. {
  608. ____innerException_4 = value;
  609. Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
  610. }
  611. inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
  612. inline String_t* get__helpURL_5() const { return ____helpURL_5; }
  613. inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
  614. inline void set__helpURL_5(String_t* value)
  615. {
  616. ____helpURL_5 = value;
  617. Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
  618. }
  619. inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
  620. inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
  621. inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
  622. inline void set__stackTrace_6(RuntimeObject * value)
  623. {
  624. ____stackTrace_6 = value;
  625. Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
  626. }
  627. inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
  628. inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
  629. inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
  630. inline void set__stackTraceString_7(String_t* value)
  631. {
  632. ____stackTraceString_7 = value;
  633. Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
  634. }
  635. inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
  636. inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
  637. inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
  638. inline void set__remoteStackTraceString_8(String_t* value)
  639. {
  640. ____remoteStackTraceString_8 = value;
  641. Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
  642. }
  643. inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
  644. inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
  645. inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
  646. inline void set__remoteStackIndex_9(int32_t value)
  647. {
  648. ____remoteStackIndex_9 = value;
  649. }
  650. inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
  651. inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
  652. inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
  653. inline void set__dynamicMethods_10(RuntimeObject * value)
  654. {
  655. ____dynamicMethods_10 = value;
  656. Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
  657. }
  658. inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
  659. inline int32_t get__HResult_11() const { return ____HResult_11; }
  660. inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
  661. inline void set__HResult_11(int32_t value)
  662. {
  663. ____HResult_11 = value;
  664. }
  665. inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
  666. inline String_t* get__source_12() const { return ____source_12; }
  667. inline String_t** get_address_of__source_12() { return &____source_12; }
  668. inline void set__source_12(String_t* value)
  669. {
  670. ____source_12 = value;
  671. Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
  672. }
  673. inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
  674. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
  675. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
  676. inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
  677. {
  678. ____safeSerializationManager_13 = value;
  679. Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
  680. }
  681. inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
  682. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
  683. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
  684. inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
  685. {
  686. ___captured_traces_14 = value;
  687. Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
  688. }
  689. inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
  690. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
  691. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
  692. inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
  693. {
  694. ___native_trace_ips_15 = value;
  695. Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
  696. }
  697. };
  698. struct Exception_t_StaticFields
  699. {
  700. public:
  701. // System.Object System.Exception::s_EDILock
  702. RuntimeObject * ___s_EDILock_0;
  703. public:
  704. inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
  705. inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
  706. inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
  707. inline void set_s_EDILock_0(RuntimeObject * value)
  708. {
  709. ___s_EDILock_0 = value;
  710. Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
  711. }
  712. };
  713. // Native definition for P/Invoke marshalling of System.Exception
  714. struct Exception_t_marshaled_pinvoke
  715. {
  716. char* ____className_1;
  717. char* ____message_2;
  718. RuntimeObject* ____data_3;
  719. Exception_t_marshaled_pinvoke* ____innerException_4;
  720. char* ____helpURL_5;
  721. Il2CppIUnknown* ____stackTrace_6;
  722. char* ____stackTraceString_7;
  723. char* ____remoteStackTraceString_8;
  724. int32_t ____remoteStackIndex_9;
  725. Il2CppIUnknown* ____dynamicMethods_10;
  726. int32_t ____HResult_11;
  727. char* ____source_12;
  728. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  729. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  730. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  731. };
  732. // Native definition for COM marshalling of System.Exception
  733. struct Exception_t_marshaled_com
  734. {
  735. Il2CppChar* ____className_1;
  736. Il2CppChar* ____message_2;
  737. RuntimeObject* ____data_3;
  738. Exception_t_marshaled_com* ____innerException_4;
  739. Il2CppChar* ____helpURL_5;
  740. Il2CppIUnknown* ____stackTrace_6;
  741. Il2CppChar* ____stackTraceString_7;
  742. Il2CppChar* ____remoteStackTraceString_8;
  743. int32_t ____remoteStackIndex_9;
  744. Il2CppIUnknown* ____dynamicMethods_10;
  745. int32_t ____HResult_11;
  746. Il2CppChar* ____source_12;
  747. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  748. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  749. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  750. };
  751. // System.RuntimeTypeHandle
  752. struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
  753. {
  754. public:
  755. // System.IntPtr System.RuntimeTypeHandle::value
  756. intptr_t ___value_0;
  757. public:
  758. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
  759. inline intptr_t get_value_0() const { return ___value_0; }
  760. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  761. inline void set_value_0(intptr_t value)
  762. {
  763. ___value_0 = value;
  764. }
  765. };
  766. // System.StringComparison
  767. struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998
  768. {
  769. public:
  770. // System.Int32 System.StringComparison::value__
  771. int32_t ___value___2;
  772. public:
  773. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); }
  774. inline int32_t get_value___2() const { return ___value___2; }
  775. inline int32_t* get_address_of_value___2() { return &___value___2; }
  776. inline void set_value___2(int32_t value)
  777. {
  778. ___value___2 = value;
  779. }
  780. };
  781. // System.Resources.UltimateResourceFallbackLocation
  782. struct UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B
  783. {
  784. public:
  785. // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
  786. int32_t ___value___2;
  787. public:
  788. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B, ___value___2)); }
  789. inline int32_t get_value___2() const { return ___value___2; }
  790. inline int32_t* get_address_of_value___2() { return &___value___2; }
  791. inline void set_value___2(int32_t value)
  792. {
  793. ___value___2 = value;
  794. }
  795. };
  796. // System.Buffers.ArrayPoolEventSource
  797. struct ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 : public EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A
  798. {
  799. public:
  800. public:
  801. };
  802. struct ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_StaticFields
  803. {
  804. public:
  805. // System.Buffers.ArrayPoolEventSource System.Buffers.ArrayPoolEventSource::Log
  806. ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * ___Log_3;
  807. public:
  808. inline static int32_t get_offset_of_Log_3() { return static_cast<int32_t>(offsetof(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_StaticFields, ___Log_3)); }
  809. inline ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * get_Log_3() const { return ___Log_3; }
  810. inline ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 ** get_address_of_Log_3() { return &___Log_3; }
  811. inline void set_Log_3(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * value)
  812. {
  813. ___Log_3 = value;
  814. Il2CppCodeGenWriteBarrier((void**)(&___Log_3), (void*)value);
  815. }
  816. };
  817. // System.Resources.ResourceManager
  818. struct ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A : public RuntimeObject
  819. {
  820. public:
  821. // System.String System.Resources.ResourceManager::BaseNameField
  822. String_t* ___BaseNameField_0;
  823. // System.Collections.Hashtable System.Resources.ResourceManager::ResourceSets
  824. Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___ResourceSets_1;
  825. // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet> System.Resources.ResourceManager::_resourceSets
  826. Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E * ____resourceSets_2;
  827. // System.String System.Resources.ResourceManager::moduleDir
  828. String_t* ___moduleDir_3;
  829. // System.Reflection.Assembly System.Resources.ResourceManager::MainAssembly
  830. Assembly_t * ___MainAssembly_4;
  831. // System.Type System.Resources.ResourceManager::_locationInfo
  832. Type_t * ____locationInfo_5;
  833. // System.Type System.Resources.ResourceManager::_userResourceSet
  834. Type_t * ____userResourceSet_6;
  835. // System.Globalization.CultureInfo System.Resources.ResourceManager::_neutralResourcesCulture
  836. CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____neutralResourcesCulture_7;
  837. // System.Resources.ResourceManager/CultureNameResourceSetPair System.Resources.ResourceManager::_lastUsedResourceCache
  838. CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 * ____lastUsedResourceCache_8;
  839. // System.Boolean System.Resources.ResourceManager::_ignoreCase
  840. bool ____ignoreCase_9;
  841. // System.Boolean System.Resources.ResourceManager::UseManifest
  842. bool ___UseManifest_10;
  843. // System.Boolean System.Resources.ResourceManager::UseSatelliteAssem
  844. bool ___UseSatelliteAssem_11;
  845. // System.Resources.UltimateResourceFallbackLocation System.Resources.ResourceManager::_fallbackLoc
  846. int32_t ____fallbackLoc_12;
  847. // System.Version System.Resources.ResourceManager::_satelliteContractVersion
  848. Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ____satelliteContractVersion_13;
  849. // System.Boolean System.Resources.ResourceManager::_lookedForSatelliteContractVersion
  850. bool ____lookedForSatelliteContractVersion_14;
  851. // System.Reflection.Assembly System.Resources.ResourceManager::_callingAssembly
  852. Assembly_t * ____callingAssembly_15;
  853. // System.Reflection.RuntimeAssembly System.Resources.ResourceManager::m_callingAssembly
  854. RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 * ___m_callingAssembly_16;
  855. // System.Resources.IResourceGroveler System.Resources.ResourceManager::resourceGroveler
  856. RuntimeObject* ___resourceGroveler_17;
  857. public:
  858. inline static int32_t get_offset_of_BaseNameField_0() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___BaseNameField_0)); }
  859. inline String_t* get_BaseNameField_0() const { return ___BaseNameField_0; }
  860. inline String_t** get_address_of_BaseNameField_0() { return &___BaseNameField_0; }
  861. inline void set_BaseNameField_0(String_t* value)
  862. {
  863. ___BaseNameField_0 = value;
  864. Il2CppCodeGenWriteBarrier((void**)(&___BaseNameField_0), (void*)value);
  865. }
  866. inline static int32_t get_offset_of_ResourceSets_1() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___ResourceSets_1)); }
  867. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_ResourceSets_1() const { return ___ResourceSets_1; }
  868. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_ResourceSets_1() { return &___ResourceSets_1; }
  869. inline void set_ResourceSets_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
  870. {
  871. ___ResourceSets_1 = value;
  872. Il2CppCodeGenWriteBarrier((void**)(&___ResourceSets_1), (void*)value);
  873. }
  874. inline static int32_t get_offset_of__resourceSets_2() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____resourceSets_2)); }
  875. inline Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E * get__resourceSets_2() const { return ____resourceSets_2; }
  876. inline Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E ** get_address_of__resourceSets_2() { return &____resourceSets_2; }
  877. inline void set__resourceSets_2(Dictionary_2_tF591ED968D904B93A92B04B711C65E797B9D6E5E * value)
  878. {
  879. ____resourceSets_2 = value;
  880. Il2CppCodeGenWriteBarrier((void**)(&____resourceSets_2), (void*)value);
  881. }
  882. inline static int32_t get_offset_of_moduleDir_3() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___moduleDir_3)); }
  883. inline String_t* get_moduleDir_3() const { return ___moduleDir_3; }
  884. inline String_t** get_address_of_moduleDir_3() { return &___moduleDir_3; }
  885. inline void set_moduleDir_3(String_t* value)
  886. {
  887. ___moduleDir_3 = value;
  888. Il2CppCodeGenWriteBarrier((void**)(&___moduleDir_3), (void*)value);
  889. }
  890. inline static int32_t get_offset_of_MainAssembly_4() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___MainAssembly_4)); }
  891. inline Assembly_t * get_MainAssembly_4() const { return ___MainAssembly_4; }
  892. inline Assembly_t ** get_address_of_MainAssembly_4() { return &___MainAssembly_4; }
  893. inline void set_MainAssembly_4(Assembly_t * value)
  894. {
  895. ___MainAssembly_4 = value;
  896. Il2CppCodeGenWriteBarrier((void**)(&___MainAssembly_4), (void*)value);
  897. }
  898. inline static int32_t get_offset_of__locationInfo_5() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____locationInfo_5)); }
  899. inline Type_t * get__locationInfo_5() const { return ____locationInfo_5; }
  900. inline Type_t ** get_address_of__locationInfo_5() { return &____locationInfo_5; }
  901. inline void set__locationInfo_5(Type_t * value)
  902. {
  903. ____locationInfo_5 = value;
  904. Il2CppCodeGenWriteBarrier((void**)(&____locationInfo_5), (void*)value);
  905. }
  906. inline static int32_t get_offset_of__userResourceSet_6() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____userResourceSet_6)); }
  907. inline Type_t * get__userResourceSet_6() const { return ____userResourceSet_6; }
  908. inline Type_t ** get_address_of__userResourceSet_6() { return &____userResourceSet_6; }
  909. inline void set__userResourceSet_6(Type_t * value)
  910. {
  911. ____userResourceSet_6 = value;
  912. Il2CppCodeGenWriteBarrier((void**)(&____userResourceSet_6), (void*)value);
  913. }
  914. inline static int32_t get_offset_of__neutralResourcesCulture_7() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____neutralResourcesCulture_7)); }
  915. inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__neutralResourcesCulture_7() const { return ____neutralResourcesCulture_7; }
  916. inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__neutralResourcesCulture_7() { return &____neutralResourcesCulture_7; }
  917. inline void set__neutralResourcesCulture_7(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
  918. {
  919. ____neutralResourcesCulture_7 = value;
  920. Il2CppCodeGenWriteBarrier((void**)(&____neutralResourcesCulture_7), (void*)value);
  921. }
  922. inline static int32_t get_offset_of__lastUsedResourceCache_8() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____lastUsedResourceCache_8)); }
  923. inline CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 * get__lastUsedResourceCache_8() const { return ____lastUsedResourceCache_8; }
  924. inline CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 ** get_address_of__lastUsedResourceCache_8() { return &____lastUsedResourceCache_8; }
  925. inline void set__lastUsedResourceCache_8(CultureNameResourceSetPair_t7DF2947B0015A29C8148DB0F32695ECB59369A84 * value)
  926. {
  927. ____lastUsedResourceCache_8 = value;
  928. Il2CppCodeGenWriteBarrier((void**)(&____lastUsedResourceCache_8), (void*)value);
  929. }
  930. inline static int32_t get_offset_of__ignoreCase_9() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____ignoreCase_9)); }
  931. inline bool get__ignoreCase_9() const { return ____ignoreCase_9; }
  932. inline bool* get_address_of__ignoreCase_9() { return &____ignoreCase_9; }
  933. inline void set__ignoreCase_9(bool value)
  934. {
  935. ____ignoreCase_9 = value;
  936. }
  937. inline static int32_t get_offset_of_UseManifest_10() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___UseManifest_10)); }
  938. inline bool get_UseManifest_10() const { return ___UseManifest_10; }
  939. inline bool* get_address_of_UseManifest_10() { return &___UseManifest_10; }
  940. inline void set_UseManifest_10(bool value)
  941. {
  942. ___UseManifest_10 = value;
  943. }
  944. inline static int32_t get_offset_of_UseSatelliteAssem_11() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___UseSatelliteAssem_11)); }
  945. inline bool get_UseSatelliteAssem_11() const { return ___UseSatelliteAssem_11; }
  946. inline bool* get_address_of_UseSatelliteAssem_11() { return &___UseSatelliteAssem_11; }
  947. inline void set_UseSatelliteAssem_11(bool value)
  948. {
  949. ___UseSatelliteAssem_11 = value;
  950. }
  951. inline static int32_t get_offset_of__fallbackLoc_12() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____fallbackLoc_12)); }
  952. inline int32_t get__fallbackLoc_12() const { return ____fallbackLoc_12; }
  953. inline int32_t* get_address_of__fallbackLoc_12() { return &____fallbackLoc_12; }
  954. inline void set__fallbackLoc_12(int32_t value)
  955. {
  956. ____fallbackLoc_12 = value;
  957. }
  958. inline static int32_t get_offset_of__satelliteContractVersion_13() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____satelliteContractVersion_13)); }
  959. inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get__satelliteContractVersion_13() const { return ____satelliteContractVersion_13; }
  960. inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of__satelliteContractVersion_13() { return &____satelliteContractVersion_13; }
  961. inline void set__satelliteContractVersion_13(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value)
  962. {
  963. ____satelliteContractVersion_13 = value;
  964. Il2CppCodeGenWriteBarrier((void**)(&____satelliteContractVersion_13), (void*)value);
  965. }
  966. inline static int32_t get_offset_of__lookedForSatelliteContractVersion_14() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____lookedForSatelliteContractVersion_14)); }
  967. inline bool get__lookedForSatelliteContractVersion_14() const { return ____lookedForSatelliteContractVersion_14; }
  968. inline bool* get_address_of__lookedForSatelliteContractVersion_14() { return &____lookedForSatelliteContractVersion_14; }
  969. inline void set__lookedForSatelliteContractVersion_14(bool value)
  970. {
  971. ____lookedForSatelliteContractVersion_14 = value;
  972. }
  973. inline static int32_t get_offset_of__callingAssembly_15() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ____callingAssembly_15)); }
  974. inline Assembly_t * get__callingAssembly_15() const { return ____callingAssembly_15; }
  975. inline Assembly_t ** get_address_of__callingAssembly_15() { return &____callingAssembly_15; }
  976. inline void set__callingAssembly_15(Assembly_t * value)
  977. {
  978. ____callingAssembly_15 = value;
  979. Il2CppCodeGenWriteBarrier((void**)(&____callingAssembly_15), (void*)value);
  980. }
  981. inline static int32_t get_offset_of_m_callingAssembly_16() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___m_callingAssembly_16)); }
  982. inline RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 * get_m_callingAssembly_16() const { return ___m_callingAssembly_16; }
  983. inline RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 ** get_address_of_m_callingAssembly_16() { return &___m_callingAssembly_16; }
  984. inline void set_m_callingAssembly_16(RuntimeAssembly_t799877C849878A70E10D25C690D7B0476DAF0B56 * value)
  985. {
  986. ___m_callingAssembly_16 = value;
  987. Il2CppCodeGenWriteBarrier((void**)(&___m_callingAssembly_16), (void*)value);
  988. }
  989. inline static int32_t get_offset_of_resourceGroveler_17() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A, ___resourceGroveler_17)); }
  990. inline RuntimeObject* get_resourceGroveler_17() const { return ___resourceGroveler_17; }
  991. inline RuntimeObject** get_address_of_resourceGroveler_17() { return &___resourceGroveler_17; }
  992. inline void set_resourceGroveler_17(RuntimeObject* value)
  993. {
  994. ___resourceGroveler_17 = value;
  995. Il2CppCodeGenWriteBarrier((void**)(&___resourceGroveler_17), (void*)value);
  996. }
  997. };
  998. struct ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields
  999. {
  1000. public:
  1001. // System.Int32 System.Resources.ResourceManager::MagicNumber
  1002. int32_t ___MagicNumber_18;
  1003. // System.Int32 System.Resources.ResourceManager::HeaderVersionNumber
  1004. int32_t ___HeaderVersionNumber_19;
  1005. // System.Type System.Resources.ResourceManager::_minResourceSet
  1006. Type_t * ____minResourceSet_20;
  1007. // System.String System.Resources.ResourceManager::ResReaderTypeName
  1008. String_t* ___ResReaderTypeName_21;
  1009. // System.String System.Resources.ResourceManager::ResSetTypeName
  1010. String_t* ___ResSetTypeName_22;
  1011. // System.String System.Resources.ResourceManager::MscorlibName
  1012. String_t* ___MscorlibName_23;
  1013. // System.Int32 System.Resources.ResourceManager::DEBUG
  1014. int32_t ___DEBUG_24;
  1015. public:
  1016. inline static int32_t get_offset_of_MagicNumber_18() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___MagicNumber_18)); }
  1017. inline int32_t get_MagicNumber_18() const { return ___MagicNumber_18; }
  1018. inline int32_t* get_address_of_MagicNumber_18() { return &___MagicNumber_18; }
  1019. inline void set_MagicNumber_18(int32_t value)
  1020. {
  1021. ___MagicNumber_18 = value;
  1022. }
  1023. inline static int32_t get_offset_of_HeaderVersionNumber_19() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___HeaderVersionNumber_19)); }
  1024. inline int32_t get_HeaderVersionNumber_19() const { return ___HeaderVersionNumber_19; }
  1025. inline int32_t* get_address_of_HeaderVersionNumber_19() { return &___HeaderVersionNumber_19; }
  1026. inline void set_HeaderVersionNumber_19(int32_t value)
  1027. {
  1028. ___HeaderVersionNumber_19 = value;
  1029. }
  1030. inline static int32_t get_offset_of__minResourceSet_20() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ____minResourceSet_20)); }
  1031. inline Type_t * get__minResourceSet_20() const { return ____minResourceSet_20; }
  1032. inline Type_t ** get_address_of__minResourceSet_20() { return &____minResourceSet_20; }
  1033. inline void set__minResourceSet_20(Type_t * value)
  1034. {
  1035. ____minResourceSet_20 = value;
  1036. Il2CppCodeGenWriteBarrier((void**)(&____minResourceSet_20), (void*)value);
  1037. }
  1038. inline static int32_t get_offset_of_ResReaderTypeName_21() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___ResReaderTypeName_21)); }
  1039. inline String_t* get_ResReaderTypeName_21() const { return ___ResReaderTypeName_21; }
  1040. inline String_t** get_address_of_ResReaderTypeName_21() { return &___ResReaderTypeName_21; }
  1041. inline void set_ResReaderTypeName_21(String_t* value)
  1042. {
  1043. ___ResReaderTypeName_21 = value;
  1044. Il2CppCodeGenWriteBarrier((void**)(&___ResReaderTypeName_21), (void*)value);
  1045. }
  1046. inline static int32_t get_offset_of_ResSetTypeName_22() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___ResSetTypeName_22)); }
  1047. inline String_t* get_ResSetTypeName_22() const { return ___ResSetTypeName_22; }
  1048. inline String_t** get_address_of_ResSetTypeName_22() { return &___ResSetTypeName_22; }
  1049. inline void set_ResSetTypeName_22(String_t* value)
  1050. {
  1051. ___ResSetTypeName_22 = value;
  1052. Il2CppCodeGenWriteBarrier((void**)(&___ResSetTypeName_22), (void*)value);
  1053. }
  1054. inline static int32_t get_offset_of_MscorlibName_23() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___MscorlibName_23)); }
  1055. inline String_t* get_MscorlibName_23() const { return ___MscorlibName_23; }
  1056. inline String_t** get_address_of_MscorlibName_23() { return &___MscorlibName_23; }
  1057. inline void set_MscorlibName_23(String_t* value)
  1058. {
  1059. ___MscorlibName_23 = value;
  1060. Il2CppCodeGenWriteBarrier((void**)(&___MscorlibName_23), (void*)value);
  1061. }
  1062. inline static int32_t get_offset_of_DEBUG_24() { return static_cast<int32_t>(offsetof(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_StaticFields, ___DEBUG_24)); }
  1063. inline int32_t get_DEBUG_24() const { return ___DEBUG_24; }
  1064. inline int32_t* get_address_of_DEBUG_24() { return &___DEBUG_24; }
  1065. inline void set_DEBUG_24(int32_t value)
  1066. {
  1067. ___DEBUG_24 = value;
  1068. }
  1069. };
  1070. // System.SystemException
  1071. struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
  1072. {
  1073. public:
  1074. public:
  1075. };
  1076. // System.Type
  1077. struct Type_t : public MemberInfo_t
  1078. {
  1079. public:
  1080. // System.RuntimeTypeHandle System.Type::_impl
  1081. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
  1082. public:
  1083. inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
  1084. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
  1085. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
  1086. inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
  1087. {
  1088. ____impl_9 = value;
  1089. }
  1090. };
  1091. struct Type_t_StaticFields
  1092. {
  1093. public:
  1094. // System.Reflection.MemberFilter System.Type::FilterAttribute
  1095. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
  1096. // System.Reflection.MemberFilter System.Type::FilterName
  1097. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
  1098. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  1099. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
  1100. // System.Object System.Type::Missing
  1101. RuntimeObject * ___Missing_3;
  1102. // System.Char System.Type::Delimiter
  1103. Il2CppChar ___Delimiter_4;
  1104. // System.Type[] System.Type::EmptyTypes
  1105. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
  1106. // System.Reflection.Binder System.Type::defaultBinder
  1107. Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
  1108. public:
  1109. inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
  1110. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
  1111. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
  1112. inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  1113. {
  1114. ___FilterAttribute_0 = value;
  1115. Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
  1116. }
  1117. inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
  1118. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
  1119. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
  1120. inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  1121. {
  1122. ___FilterName_1 = value;
  1123. Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
  1124. }
  1125. inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
  1126. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
  1127. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
  1128. inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  1129. {
  1130. ___FilterNameIgnoreCase_2 = value;
  1131. Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
  1132. }
  1133. inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
  1134. inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
  1135. inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
  1136. inline void set_Missing_3(RuntimeObject * value)
  1137. {
  1138. ___Missing_3 = value;
  1139. Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
  1140. }
  1141. inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
  1142. inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
  1143. inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
  1144. inline void set_Delimiter_4(Il2CppChar value)
  1145. {
  1146. ___Delimiter_4 = value;
  1147. }
  1148. inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
  1149. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
  1150. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
  1151. inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  1152. {
  1153. ___EmptyTypes_5 = value;
  1154. Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
  1155. }
  1156. inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
  1157. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
  1158. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
  1159. inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
  1160. {
  1161. ___defaultBinder_6 = value;
  1162. Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
  1163. }
  1164. };
  1165. // System.Resources.MissingManifestResourceException
  1166. struct MissingManifestResourceException_tAC74F21ADC46CCB2BCC710464434E3B97F72FACB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  1167. {
  1168. public:
  1169. public:
  1170. };
  1171. #ifdef __clang__
  1172. #pragma clang diagnostic pop
  1173. #endif
  1174. // System.Void System.Diagnostics.Tracing.EventSource::.ctor()
  1175. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_m269E04845C481161A894037B5656C992F0D49021 (EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A * __this, const RuntimeMethod* method);
  1176. // System.Void System.Buffers.ArrayPoolEventSource::.ctor()
  1177. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__ctor_mD1104A3392C287DC1B37430D004E36CCED62DC2E (ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * __this, const RuntimeMethod* method);
  1178. // System.Type System.SR::get_ResourceType()
  1179. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7_inline (const RuntimeMethod* method);
  1180. // System.Void System.Resources.ResourceManager::.ctor(System.Type)
  1181. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ResourceManager__ctor_mC8A203D5697A2FAD2B336CF3534C21276918BD25 (ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * __this, Type_t * ___resourceSource0, const RuntimeMethod* method);
  1182. // System.Resources.ResourceManager System.SR::get_ResourceManager()
  1183. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * SR_get_ResourceManager_mEC93DC61FEB777324823B4D16BE4B54480955947 (const RuntimeMethod* method);
  1184. // System.Boolean System.String::Equals(System.String,System.StringComparison)
  1185. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
  1186. // System.String System.SR::GetResourceString(System.String,System.String)
  1187. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetResourceString_m80874FE1DCB8E1B2F7B25D15F51219F5CADE4AD7 (String_t* ___resourceKey0, String_t* ___defaultString1, const RuntimeMethod* method);
  1188. // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
  1189. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
  1190. #ifdef __clang__
  1191. #pragma clang diagnostic push
  1192. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1193. #pragma clang diagnostic ignored "-Wunused-variable"
  1194. #endif
  1195. #ifdef __clang__
  1196. #pragma clang diagnostic pop
  1197. #endif
  1198. #ifdef __clang__
  1199. #pragma clang diagnostic push
  1200. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1201. #pragma clang diagnostic ignored "-Wunused-variable"
  1202. #endif
  1203. // System.Void System.Buffers.ArrayPoolEventSource::.ctor()
  1204. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__ctor_mD1104A3392C287DC1B37430D004E36CCED62DC2E (ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * __this, const RuntimeMethod* method)
  1205. {
  1206. static bool s_Il2CppMethodInitialized;
  1207. if (!s_Il2CppMethodInitialized)
  1208. {
  1209. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var);
  1210. s_Il2CppMethodInitialized = true;
  1211. }
  1212. {
  1213. IL2CPP_RUNTIME_CLASS_INIT(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var);
  1214. EventSource__ctor_m269E04845C481161A894037B5656C992F0D49021(__this, /*hidden argument*/NULL);
  1215. return;
  1216. }
  1217. }
  1218. // System.Void System.Buffers.ArrayPoolEventSource::.cctor()
  1219. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__cctor_m0C90DD30C25E1937DDCA282D02D3B1CD9A9B46EE (const RuntimeMethod* method)
  1220. {
  1221. static bool s_Il2CppMethodInitialized;
  1222. if (!s_Il2CppMethodInitialized)
  1223. {
  1224. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var);
  1225. s_Il2CppMethodInitialized = true;
  1226. }
  1227. {
  1228. ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 * L_0 = (ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358 *)il2cpp_codegen_object_new(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var);
  1229. ArrayPoolEventSource__ctor_mD1104A3392C287DC1B37430D004E36CCED62DC2E(L_0, /*hidden argument*/NULL);
  1230. ((ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_StaticFields*)il2cpp_codegen_static_fields_for(ArrayPoolEventSource_tABD175127F243608E84F150F56E7A00AA5103358_il2cpp_TypeInfo_var))->set_Log_3(L_0);
  1231. return;
  1232. }
  1233. }
  1234. #ifdef __clang__
  1235. #pragma clang diagnostic pop
  1236. #endif
  1237. #ifdef __clang__
  1238. #pragma clang diagnostic push
  1239. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1240. #pragma clang diagnostic ignored "-Wunused-variable"
  1241. #endif
  1242. #ifdef __clang__
  1243. #pragma clang diagnostic pop
  1244. #endif
  1245. #ifdef __clang__
  1246. #pragma clang diagnostic push
  1247. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1248. #pragma clang diagnostic ignored "-Wunused-variable"
  1249. #endif
  1250. // System.Resources.ResourceManager System.SR::get_ResourceManager()
  1251. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * SR_get_ResourceManager_mEC93DC61FEB777324823B4D16BE4B54480955947 (const RuntimeMethod* method)
  1252. {
  1253. static bool s_Il2CppMethodInitialized;
  1254. if (!s_Il2CppMethodInitialized)
  1255. {
  1256. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_il2cpp_TypeInfo_var);
  1257. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1258. s_Il2CppMethodInitialized = true;
  1259. }
  1260. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * G_B2_0 = NULL;
  1261. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * G_B1_0 = NULL;
  1262. {
  1263. IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1264. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_0 = ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->get_s_resourceManager_0();
  1265. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_1 = L_0;
  1266. G_B1_0 = L_1;
  1267. if (L_1)
  1268. {
  1269. G_B2_0 = L_1;
  1270. goto IL_0019;
  1271. }
  1272. }
  1273. {
  1274. IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1275. Type_t * L_2;
  1276. L_2 = SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7_inline(/*hidden argument*/NULL);
  1277. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_3 = (ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A *)il2cpp_codegen_object_new(ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A_il2cpp_TypeInfo_var);
  1278. ResourceManager__ctor_mC8A203D5697A2FAD2B336CF3534C21276918BD25(L_3, L_2, /*hidden argument*/NULL);
  1279. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_4 = L_3;
  1280. ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->set_s_resourceManager_0(L_4);
  1281. G_B2_0 = L_4;
  1282. }
  1283. IL_0019:
  1284. {
  1285. return G_B2_0;
  1286. }
  1287. }
  1288. // System.String System.SR::GetResourceString(System.String,System.String)
  1289. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetResourceString_m80874FE1DCB8E1B2F7B25D15F51219F5CADE4AD7 (String_t* ___resourceKey0, String_t* ___defaultString1, const RuntimeMethod* method)
  1290. {
  1291. static bool s_Il2CppMethodInitialized;
  1292. if (!s_Il2CppMethodInitialized)
  1293. {
  1294. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1295. s_Il2CppMethodInitialized = true;
  1296. }
  1297. String_t* V_0 = NULL;
  1298. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  1299. il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
  1300. {
  1301. V_0 = (String_t*)NULL;
  1302. }
  1303. IL_0002:
  1304. try
  1305. {// begin try (depth: 1)
  1306. IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1307. ResourceManager_t015B887ECBCB2AEE41F774C390F25EB507B06B8A * L_0;
  1308. L_0 = SR_get_ResourceManager_mEC93DC61FEB777324823B4D16BE4B54480955947(/*hidden argument*/NULL);
  1309. String_t* L_1 = ___resourceKey0;
  1310. NullCheck(L_0);
  1311. String_t* L_2;
  1312. L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(9 /* System.String System.Resources.ResourceManager::GetString(System.String) */, L_0, L_1);
  1313. V_0 = L_2;
  1314. goto IL_0013;
  1315. }// end try (depth: 1)
  1316. catch(Il2CppExceptionWrapper& e)
  1317. {
  1318. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MissingManifestResourceException_tAC74F21ADC46CCB2BCC710464434E3B97F72FACB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  1319. {
  1320. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1321. goto CATCH_0010;
  1322. }
  1323. throw e;
  1324. }
  1325. CATCH_0010:
  1326. {// begin catch(System.Resources.MissingManifestResourceException)
  1327. IL2CPP_POP_ACTIVE_EXCEPTION();
  1328. goto IL_0013;
  1329. }// end catch (depth: 1)
  1330. IL_0013:
  1331. {
  1332. String_t* L_3 = ___defaultString1;
  1333. if (!L_3)
  1334. {
  1335. goto IL_0022;
  1336. }
  1337. }
  1338. {
  1339. String_t* L_4 = ___resourceKey0;
  1340. String_t* L_5 = V_0;
  1341. NullCheck(L_4);
  1342. bool L_6;
  1343. L_6 = String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6(L_4, L_5, 4, /*hidden argument*/NULL);
  1344. if (!L_6)
  1345. {
  1346. goto IL_0022;
  1347. }
  1348. }
  1349. {
  1350. String_t* L_7 = ___defaultString1;
  1351. return L_7;
  1352. }
  1353. IL_0022:
  1354. {
  1355. String_t* L_8 = V_0;
  1356. return L_8;
  1357. }
  1358. }
  1359. // System.Type System.SR::get_ResourceType()
  1360. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7 (const RuntimeMethod* method)
  1361. {
  1362. static bool s_Il2CppMethodInitialized;
  1363. if (!s_Il2CppMethodInitialized)
  1364. {
  1365. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1366. s_Il2CppMethodInitialized = true;
  1367. }
  1368. {
  1369. IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1370. Type_t * L_0 = ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->get_U3CResourceTypeU3Ek__BackingField_1();
  1371. return L_0;
  1372. }
  1373. }
  1374. // System.String System.SR::get_ArgumentException_BufferNotFromPool()
  1375. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_get_ArgumentException_BufferNotFromPool_mF7E9FA1998CFF097C3844036F63685CE4927FD35 (const RuntimeMethod* method)
  1376. {
  1377. static bool s_Il2CppMethodInitialized;
  1378. if (!s_Il2CppMethodInitialized)
  1379. {
  1380. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1381. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral727FAFFC692D108CBB9ED57B1C150923409C145B);
  1382. s_Il2CppMethodInitialized = true;
  1383. }
  1384. {
  1385. IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1386. String_t* L_0;
  1387. L_0 = SR_GetResourceString_m80874FE1DCB8E1B2F7B25D15F51219F5CADE4AD7(_stringLiteral727FAFFC692D108CBB9ED57B1C150923409C145B, (String_t*)NULL, /*hidden argument*/NULL);
  1388. return L_0;
  1389. }
  1390. }
  1391. // System.Void System.SR::.cctor()
  1392. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SR__cctor_m18CAEA8A36502BED2DF824DBAE84AD86782EF211 (const RuntimeMethod* method)
  1393. {
  1394. static bool s_Il2CppMethodInitialized;
  1395. if (!s_Il2CppMethodInitialized)
  1396. {
  1397. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1398. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC_0_0_0_var);
  1399. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  1400. s_Il2CppMethodInitialized = true;
  1401. }
  1402. {
  1403. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (SR_tBEDF38F23AB51D7E5F70B7DF620E959CBB17F2CC_0_0_0_var) };
  1404. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  1405. Type_t * L_1;
  1406. L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL);
  1407. ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->set_U3CResourceTypeU3Ek__BackingField_1(L_1);
  1408. return;
  1409. }
  1410. }
  1411. #ifdef __clang__
  1412. #pragma clang diagnostic pop
  1413. #endif
  1414. #ifdef __clang__
  1415. #pragma clang diagnostic push
  1416. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1417. #pragma clang diagnostic ignored "-Wunused-variable"
  1418. #endif
  1419. // System.Int32 System.Buffers.Utilities::SelectBucketIndex(System.Int32)
  1420. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Utilities_SelectBucketIndex_m8A1B5269010C90973FDB9538193CBBBE26091969 (int32_t ___bufferSize0, const RuntimeMethod* method)
  1421. {
  1422. uint32_t V_0 = 0;
  1423. int32_t V_1 = 0;
  1424. {
  1425. int32_t L_0 = ___bufferSize0;
  1426. V_0 = ((int32_t)((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))>>4));
  1427. V_1 = 0;
  1428. uint32_t L_1 = V_0;
  1429. if ((!(((uint32_t)L_1) > ((uint32_t)((int32_t)65535)))))
  1430. {
  1431. goto IL_0018;
  1432. }
  1433. }
  1434. {
  1435. uint32_t L_2 = V_0;
  1436. V_0 = ((int32_t)((uint32_t)L_2>>((int32_t)16)));
  1437. V_1 = ((int32_t)16);
  1438. }
  1439. IL_0018:
  1440. {
  1441. uint32_t L_3 = V_0;
  1442. if ((!(((uint32_t)L_3) > ((uint32_t)((int32_t)255)))))
  1443. {
  1444. goto IL_0028;
  1445. }
  1446. }
  1447. {
  1448. uint32_t L_4 = V_0;
  1449. V_0 = ((int32_t)((uint32_t)L_4>>8));
  1450. int32_t L_5 = V_1;
  1451. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)8));
  1452. }
  1453. IL_0028:
  1454. {
  1455. uint32_t L_6 = V_0;
  1456. if ((!(((uint32_t)L_6) > ((uint32_t)((int32_t)15)))))
  1457. {
  1458. goto IL_0035;
  1459. }
  1460. }
  1461. {
  1462. uint32_t L_7 = V_0;
  1463. V_0 = ((int32_t)((uint32_t)L_7>>4));
  1464. int32_t L_8 = V_1;
  1465. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)4));
  1466. }
  1467. IL_0035:
  1468. {
  1469. uint32_t L_9 = V_0;
  1470. if ((!(((uint32_t)L_9) > ((uint32_t)3))))
  1471. {
  1472. goto IL_0041;
  1473. }
  1474. }
  1475. {
  1476. uint32_t L_10 = V_0;
  1477. V_0 = ((int32_t)((uint32_t)L_10>>2));
  1478. int32_t L_11 = V_1;
  1479. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)2));
  1480. }
  1481. IL_0041:
  1482. {
  1483. uint32_t L_12 = V_0;
  1484. if ((!(((uint32_t)L_12) > ((uint32_t)1))))
  1485. {
  1486. goto IL_004d;
  1487. }
  1488. }
  1489. {
  1490. uint32_t L_13 = V_0;
  1491. V_0 = ((int32_t)((uint32_t)L_13>>1));
  1492. int32_t L_14 = V_1;
  1493. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
  1494. }
  1495. IL_004d:
  1496. {
  1497. int32_t L_15 = V_1;
  1498. uint32_t L_16 = V_0;
  1499. return ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
  1500. }
  1501. }
  1502. // System.Int32 System.Buffers.Utilities::GetMaxSizeForBucket(System.Int32)
  1503. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Utilities_GetMaxSizeForBucket_m63505BFBAC122CFFE8E4D2EA257020DF5EDADBE7 (int32_t ___binIndex0, const RuntimeMethod* method)
  1504. {
  1505. int32_t V_0 = 0;
  1506. {
  1507. int32_t L_0 = ___binIndex0;
  1508. V_0 = ((int32_t)((int32_t)((int32_t)16)<<(int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)31)))));
  1509. int32_t L_1 = V_0;
  1510. return L_1;
  1511. }
  1512. }
  1513. #ifdef __clang__
  1514. #pragma clang diagnostic pop
  1515. #endif
  1516. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SR_get_ResourceType_mF148E26A9D2AA3BA0B98C21963449A5BA4E3CCA7_inline (const RuntimeMethod* method)
  1517. {
  1518. static bool s_Il2CppMethodInitialized;
  1519. if (!s_Il2CppMethodInitialized)
  1520. {
  1521. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1522. s_Il2CppMethodInitialized = true;
  1523. }
  1524. {
  1525. IL2CPP_RUNTIME_CLASS_INIT(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var);
  1526. Type_t * L_0 = ((SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_StaticFields*)il2cpp_codegen_static_fields_for(SR_t15071D91D4E6344AE2C2C7673AA40396F32DF07A_il2cpp_TypeInfo_var))->get_U3CResourceTypeU3Ek__BackingField_1();
  1527. return L_0;
  1528. }
  1529. }