18583 lines
1.4 MiB
18583 lines
1.4 MiB
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2Invoker;
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2Invoker<T1*, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1* p1, T2* p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
void* params[2] = { p1, p2 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
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);
|
|
}
|
|
};
|
|
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>
|
|
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);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1Invoker;
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1Invoker<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1* p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
void* params[1] = { p1 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, params[0]);
|
|
}
|
|
};
|
|
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 T1, typename T2>
|
|
struct GenericInterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1;
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[0]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2;
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2<T1*, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerActionInvoker4;
|
|
template <typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerActionInvoker4<T1*, T2*, T3*, T4*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4)
|
|
{
|
|
void* params[4] = { p1, p2, p3, p4 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[3]);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerFuncInvoker6;
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerFuncInvoker6<R, T1*, T2*, T3*, T4*, T5*, T6>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6 p6)
|
|
{
|
|
R ret;
|
|
void* params[6] = { p1, p2, p3, p4, p5, &p6 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerFuncInvoker7;
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerFuncInvoker7<R, T1*, T2*, T3*, T4*, T5*, T6*, T7>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7 p7)
|
|
{
|
|
R ret;
|
|
void* params[7] = { p1, p2, p3, p4, p5, p6, &p7 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
struct ConstrainedActionInvoker0
|
|
{
|
|
static inline void Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj)
|
|
{
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, NULL, NULL);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct ConstrainedActionInvoker2;
|
|
template <typename T1, typename T2>
|
|
struct ConstrainedActionInvoker2<T1*, T2*>
|
|
{
|
|
static inline void Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj, T1* p1, T2* p2)
|
|
{
|
|
void* params[2] = { p1, p2 };
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct ConstrainedFuncInvoker0
|
|
{
|
|
static inline R Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj)
|
|
{
|
|
R ret;
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, NULL, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
struct U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC;
|
|
struct U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590;
|
|
struct U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E;
|
|
struct U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3;
|
|
struct Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55;
|
|
struct Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879;
|
|
struct Dictionary_2_tA032486828C79558DA19404156CC68269F719C41;
|
|
struct FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2;
|
|
struct FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145;
|
|
struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1;
|
|
struct Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E;
|
|
struct Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4;
|
|
struct Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F;
|
|
struct Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706;
|
|
struct Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467;
|
|
struct Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7;
|
|
struct Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F;
|
|
struct Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609;
|
|
struct Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0;
|
|
struct Func_2_tB86D019F1289E2D123C00796B373933613385952;
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0;
|
|
struct Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1;
|
|
struct Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E;
|
|
struct Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D;
|
|
struct Func_4_t5BEC908E1F7894319A22CA9728A897FA95522DAD;
|
|
struct Func_4_t601AF6F2F5149E1FAFBFBEF804A1200A25072799;
|
|
struct Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4;
|
|
struct Func_5_tC9841A2BB550822F3D4C4B383D028E9875DF9C9D;
|
|
struct Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB;
|
|
struct Func_5_tD02E129BCD67EF3C2C268C78FD4614374A3597CA;
|
|
struct Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748;
|
|
struct Func_5_tBD83535470C7532DCD8D3FEC6FAAEABA156B6E6C;
|
|
struct Func_5_tEFCEEADE431DADF31E384EC513E2FE5E59197CE9;
|
|
struct IComparer_1_t2823311A1816BF1DC53D0C642C909DD5E1804382;
|
|
struct IComparer_1_tCA720E7837F12C38065A4AB632B5FAAD19EC30AA;
|
|
struct IEnumerable_1_tBA4259158757D7E9A55293191376A3C4C288D5DC;
|
|
struct IEnumerable_1_tBC34148702FF6BECFD37516307B03670E3ED630E;
|
|
struct IEnumerable_1_tEC612AE46C64B901EC8843E9C1B95C7484E2D334;
|
|
struct IEnumerable_1_tB7C9DCA4590B9A348E3CCCAC2B2452EADE240188;
|
|
struct IEnumerable_1_tFBE064108F6FBA7C779E1916D7E9CEFD842D8C17;
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
struct IEnumerable_1_t29E7244AE33B71FA0981E50D5BC73B7938F35C66;
|
|
struct IEnumerator_1_tFABD3B897F1296469E9A2DB9BCF6C89439049208;
|
|
struct IEnumerator_1_t75CB2681E18F7F2791528FA2CA60361FDB5DA08D;
|
|
struct IList_1_t8AC59FFD0F90EC2DAD4C3FA39B2A5851F9D2987A;
|
|
struct IMemoryPackFormatter_1_tFB2C06CE598958E256110F0ED11EE5200B408EF2;
|
|
struct IOrderedEnumerable_1_tF01059B4E37CC5D11A61FCA09D884F07708D5829;
|
|
struct IOrderedEnumerable_1_tE26ACB9A14E9C35CDE8E486B75A1DD6129E1ED80;
|
|
struct IOrderedEnumerable_1_t4F0E93FC73B2A232E559DBC210E06989FE75D9BA;
|
|
struct IOrderedEnumerable_1_tB74C5603ECCF64F2F2BDBF38659710AD0E9E317A;
|
|
struct IOrderedEnumerable_1_t0C163B6BB23AC87E89BC8AC3BED2881DF96AFF56;
|
|
struct IOrderedEnumerable_1_t0E680E8E1A4A676334F2A0C9A6F9B93135A65EAC;
|
|
struct IOrderedEnumerable_1_tEC69DE4EAD0C8A8943156A96E6B44A96825EBBB2;
|
|
struct IProperty_1_t47DF8E7CFAFA47596FCFDA6775C02B5B3C05AAE5;
|
|
struct KeyCollection_t206409CEE412703C2D493ED6595E03B9DBFA0C41;
|
|
struct KeyList_tBA55251CB1A0A55ACA878F6428E4E3A81466445A;
|
|
struct List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4;
|
|
struct List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct MemoryPoolFormatter_1_tD90AF821EFE0D7B9E9EC037E7405495BBBC72A55;
|
|
struct Node_tE9376A2A28891B4E8139BA9C0DD44F3C62C573E5;
|
|
struct Node_t2A8A2E5FDB8FFFF9A0226914D754049360D7CFBB;
|
|
struct NullableFormatter_1_tEA87E8072903C7F61821615A881B92DB189BC71D;
|
|
struct ObjectPool_1_t8123FF4D2297EA0DE0958F4C596EEC975EF91D69;
|
|
struct ObjectPool_1_t7DA0560ECC5DAE7E34FFF7A1C34B9DD85C9791BD;
|
|
struct ObjectPool_1_tD58E1ED886ED7E0B0E789C0540A06925FFFE3789;
|
|
struct ObjectPool_1_t6F911D0AABD1A10BC296F09B07186BDAA81C23CF;
|
|
struct ObjectPool_1_t7F354EE5339C321452CC8BDE1BBEB51C109F101F;
|
|
struct ObjectPool_1_t8F2D8ECC3F2A3F8557B78205355612D95DF19EE0;
|
|
struct ObjectPool_1_t97F13402A9436666FDB9A06B1274C59D75006F1C;
|
|
struct ObjectPool_1_tEB1EE3FCC53F5F7E6B87515C379719837D8BF3C6;
|
|
struct ObjectPool_1_t082FF340EE7F6811B66DEB049D0A8510464EF24B;
|
|
struct ObjectPool_1_t1258D5CAE21F7163A892F2AD7C928C81EBF6D0BC;
|
|
struct ObjectPool_1_t532B73346B73FED45FA938767ECF4F0837CBFF9E;
|
|
struct ObjectPool_1_t2FFDAE5CC715A6566DDF02685C09A7A6FE52F2B6;
|
|
struct ObjectPool_1_tE512FE8C23AFFAC42BE6502CB31360CBB50F5C4A;
|
|
struct ObjectPool_1_t28F249C599ED2EFD04F6B973FEFA2541B52062DF;
|
|
struct ObservableCollectionFormatter_1_t205D3F2D3A4E0790387EA3D293BAA4E0AE3BB35A;
|
|
struct ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8;
|
|
struct OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA;
|
|
struct OrderedEnumerable_1_t49A81D3EAEB40201506836E577654DE2F8EC8941;
|
|
struct OrderedEnumerable_1_tFFE2D41E419F999B45E7C9636190F547FE16EA00;
|
|
struct OrderedEnumerable_1_t2CA7B89590CC51BDE981B85FB02BE2FC4175E2D6;
|
|
struct OrderedEnumerable_1_tA6269C578EE7D3423C79F32258D574795AEF1151;
|
|
struct OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51;
|
|
struct OrderedEnumerable_1_t9FC254A996960AAA55B70FA7417B36D16C123B28;
|
|
struct OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546;
|
|
struct OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC;
|
|
struct OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692;
|
|
struct OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29;
|
|
struct OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA;
|
|
struct OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1;
|
|
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
|
|
struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED;
|
|
struct Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3;
|
|
struct QueueFormatter_1_t1A3EFCE5D331814DB263BAEE7689EE969E66F795;
|
|
struct Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41;
|
|
struct ReadOnlyCollectionFormatter_1_tAC85C30BCFD264529811EE9677E826C8D0D5E0ED;
|
|
struct ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8;
|
|
struct ReadOnlyMemoryFormatter_1_t74EE1C8181A5D7F40B969EE8BFAEB2225B79F2CF;
|
|
struct ReadOnlyMemoryPoolFormatter_1_tE2E949C916CC0FAA8E907B5866F4CC1486C2B6BD;
|
|
struct ReadOnlyObservableCollectionFormatter_1_t9CF1F49B787A2959F51A77EDC8204755AB519299;
|
|
struct ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6;
|
|
struct ReadOnlySequenceFormatter_1_t36266827034862726B67CEB00ADD4C21625BD5E7;
|
|
struct ReflectedPropertyBag_1_tE1C09DA96513A538F766F89263E88809EE14AF79;
|
|
struct SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC;
|
|
struct SetValueVisitor_1_t9F8375B4EA106BA863CE89AC21063AB486248660;
|
|
struct SimpleFSM_1_t7189BE3EE4E867D6B5132034F7212E9B016B94AC;
|
|
struct SimpleFSM_1_t9D1312E58D442B51EC901F9FCB7DC3045899599B;
|
|
struct SimpleMonitor_tB9FB1EDE482325676967121CD31A0F99524EEF7F;
|
|
struct SortedDictionaryFormatter_2_t4D5E96CEF7E8E5872D42687CBE04D187D247B596;
|
|
struct SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232;
|
|
struct SortedListFormatter_2_tE30F1FD2DB6BD5009D174F8BCB3283230BBA6767;
|
|
struct SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075;
|
|
struct SortedSetFormatter_1_t42D9B014E153433C50528B7EBB0CEEB10F1BBFD1;
|
|
struct SortedSet_1_tEA3CE7920D75541A3E5AF0A0F1D6C4BF387FBB73;
|
|
struct SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D;
|
|
struct StackFormatter_1_tF1C7B7935C317D571FB0E40F786A98200BC9B399;
|
|
struct Stack_1_t619480024DD1CBC06EAAC47D77F6949481D305DC;
|
|
struct Stack_1_tEDDC663FCEA0D04571EA6DC6475CCEB7F77D0D71;
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A;
|
|
struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3;
|
|
struct TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B;
|
|
struct TaskFactory_1_t998BD1F4A33BA4687E88533F2E186C74044C2B05;
|
|
struct TaskFactory_1_t4BEAD6CE2527DBE682C128CEAA0FF2A79483E96C;
|
|
struct TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D;
|
|
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
|
|
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2;
|
|
struct Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB;
|
|
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17;
|
|
struct Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9;
|
|
struct TreeSet_1_tE888958036347B1AF973DA4F1E92E9D54775F05C;
|
|
struct UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC;
|
|
struct UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7;
|
|
struct UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A;
|
|
struct UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC;
|
|
struct UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8;
|
|
struct UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB;
|
|
struct UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE;
|
|
struct UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C;
|
|
struct UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999;
|
|
struct UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184;
|
|
struct UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB;
|
|
struct UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718;
|
|
struct UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9;
|
|
struct UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D;
|
|
struct UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2;
|
|
struct UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29;
|
|
struct UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175;
|
|
struct UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B;
|
|
struct UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5;
|
|
struct UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34;
|
|
struct UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51;
|
|
struct UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84;
|
|
struct UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2;
|
|
struct UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E;
|
|
struct UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A;
|
|
struct UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C;
|
|
struct UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06;
|
|
struct UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC;
|
|
struct UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35;
|
|
struct UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6;
|
|
struct UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23;
|
|
struct UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98;
|
|
struct UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D;
|
|
struct UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA;
|
|
struct UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C;
|
|
struct UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7;
|
|
struct ValueCollection_tC2693A24609690E0B42B92AA2B66B6E4FDAB657E;
|
|
struct ValueList_t15327CBA3C2CCB5E21E15F51D1738CA283521D5A;
|
|
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PropertyPathPartU5BU5D_t7994D542F14DDDDEABB1792C335C20149399AEBB;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E;
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007;
|
|
struct ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A;
|
|
struct DebugOccluderStats_t7B4C48EC856FCC7FDF2811DF6C222E53DD80AD93;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct DrawBatch_t5B13B0C8AFD02B2878B6FA9ED48DDA1A0696F5FF;
|
|
struct DrawInstance_tBE712DD78F80BD1B66343AC3B9A55ACFE80E8AF8;
|
|
struct DrawRange_tFF5914E68DE5FBB5AE71F729F834D72149A6B010;
|
|
struct EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564;
|
|
struct GPUInstanceComponentDesc_tA386615944C32F7A0B71FF8B2F84E1A159C02E74;
|
|
struct GPUInstanceIndex_t1B73FC29B273B0470A8E186E3C2F19CA6D8FBA78;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697;
|
|
struct IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26;
|
|
struct IndirectBufferContext_tC867F1E4C07484F15773E7A382CCB107C57AC805;
|
|
struct InstanceCullerViewStats_tCFA9E28BF5D8B9489040BD5DDE21173331CE2173;
|
|
struct InstanceHandle_tE8D892B001AFFDB8FA53EB19F2B356436AC36C3B;
|
|
struct InstanceOcclusionEventStats_t39015A29B5AE8D08BF95679C8A25869BD8715AAD;
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C;
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C;
|
|
struct LODGroupCullingData_t511A004D7CBAE84368FCAA62A0348C24CB46EABF;
|
|
struct LODGroupData_t270D641C75EEBF4612A34E2398D4D0A10A5B1241;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct MemoryPackWriterOptionalState_t4FC6E1E800457B62DB3524E321732C50708E7547;
|
|
struct MetadataValue_tB24D1ECC62550B3B37D7BFA11B02907047E7F937;
|
|
struct MethodInfo_t;
|
|
struct NativePassData_tC0F1669A8ED49F7203325B91DF9C473D65AA9CD2;
|
|
struct NotifyCollectionChangedEventHandler_t521FADBD1190F88022BC2160A5F82FDFC08364AF;
|
|
struct PassData_t88911D47229A306D70A3F6A7D3B2FC8FF12F8BAD;
|
|
struct PassFragmentData_t67D0B4EC16AF3DBC4233CC7537B93A27C78BFA8C;
|
|
struct PassInputData_tA1B8624F31DDB24770D8E0C8FA54189A567FC2DE;
|
|
struct PassOutputData_t8EA364E560775D19D285839BA06710B337503E0D;
|
|
struct PassRandomWriteData_t5C298F6D2CA84B027F3D8A145304B0DCFDA1961B;
|
|
struct PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446;
|
|
struct Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C;
|
|
struct PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA;
|
|
struct ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C;
|
|
struct ResourceReaderData_t1B57A9C4CC76875899745E115AA53FF40C6412EC;
|
|
struct ResourceUnversionedData_t3F4B539E7806E513C53A94EAABF5F969AAA384CC;
|
|
struct ResourceVersionedData_tC935A106FCF6C0800974D2C98DBE14E19A19B1DC;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
|
|
struct StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352;
|
|
struct String_t;
|
|
struct SubPassDescriptor_t912FE0FF4C99BF293A1E4442353C35B2BB8997A9;
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
|
|
struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0;
|
|
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E;
|
|
struct Type_t;
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B;
|
|
struct UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
typedef Il2CppFullySharedGenericStruct Il2CppFullySharedGenericStruct;
|
|
struct PlanePacket4_t2954005DBF78AC180CF45B652536CC2F5158D54B;
|
|
struct SplitInfo_t708E0734C9BC407BA5882105A9721756605C913A;
|
|
struct Info_tA3039772991DEEDBC29A00439A055C5166133A27;
|
|
struct OccluderContextSlot_t963DBFFF1612E4108D0BEB42369F78758BE71D5D;
|
|
struct SplitInfo_tBD1436BC99CBBC9658FA9219EB22657F757C4A1A;
|
|
struct Slot_tA2F29CF08EAE46C3E2B6D96DCD7C96BF887A6127;
|
|
struct ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540;
|
|
struct ConverterKeyComparer_t4C6C81BD692F6EBB1BD4D6946B08DA25E11DBC16;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MemoryPackFormatterProvider_t1C8B25B7FBCD283CE0EC13F987A5A3219037B997_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeUtility_t62F146E51B66BB18FA0E1EFA84A564FF2B8AAD03_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0486DE6855E70A57C021FE842262A0AF7E3D00A0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral63887B421AFDD5DDA04AD3739FDBAC5D1461BE41;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77A4D95C5A66881369906720C24690D7097D85DC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral825FA1DD8AB4D9C138AF4C902F17201DA2CD593C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA3DC60AC845BB1AF7FF83CC77ACB0A5FBDD02044;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC52F77B7D44C96CE5B91F76A3587ACE8C88748FF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE7C7EB6D4B1A1BE6355C4EADB334269A56E2116D;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com;
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke;
|
|
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
struct U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC : public RuntimeObject
|
|
{
|
|
Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___endFunction;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___endAction;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___promise;
|
|
};
|
|
struct U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590 : public RuntimeObject
|
|
{
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* ___endFunction;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___endAction;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___promise;
|
|
};
|
|
struct U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E : public RuntimeObject
|
|
{
|
|
Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___endFunction;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___endAction;
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* ___promise;
|
|
};
|
|
struct U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3 : public RuntimeObject
|
|
{
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* ___endFunction;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___endAction;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___promise;
|
|
};
|
|
struct Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___items;
|
|
};
|
|
struct List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715 : public RuntimeObject
|
|
{
|
|
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct MemoryPackFormatter_1_t0D5E825078CC452DA05138B1B4E7B0D34034E748 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_tF3572A30FF61D088274445022014530D09C0BF77 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_tDD5A9ED7DE7360F867F5930D434EF804F41376C6 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t98DDF157991533CE86E5674C4A2D7BC7F2063338 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t0F922B7FEEE9FA4D282A5168F1A2D6F4CAF67A13 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t0512E56B0F692E02A1A0634945386D235D41C961 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_tA9AE375A861041AFE444BF815306505E51DD444F : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t7B07490D5A467B8465BC0D92961ADA0EE95C3B3A : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t61B678E39851ACF85975E47F1D63D3685F2A46D5 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_tF3380481053EFF96316D1D537D08160B530296A2 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t48CBDD02678BB890A93F6E00AC09C988FAB0F2D4 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t0CBFB14F4B7992139E1A5E0F4D6D798273F4E69C : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t89A70C9BBB703B43D5176D06744D027466483C66 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemoryPackFormatter_1_t59AD4B64A5F7DBB4EBE621E30C549B8181189A35 : public RuntimeObject
|
|
{
|
|
};
|
|
struct OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct OrderedEnumerable_1_t49A81D3EAEB40201506836E577654DE2F8EC8941 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct OrderedEnumerable_1_tFFE2D41E419F999B45E7C9636190F547FE16EA00 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct OrderedEnumerable_1_t2CA7B89590CC51BDE981B85FB02BE2FC4175E2D6 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct OrderedEnumerable_1_tA6269C578EE7D3423C79F32258D574795AEF1151 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct OrderedEnumerable_1_t9FC254A996960AAA55B70FA7417B36D16C123B28 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___source;
|
|
};
|
|
struct Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3 : public RuntimeObject
|
|
{
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* ___m_Attributes;
|
|
};
|
|
struct Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41 : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____array;
|
|
int32_t ____head;
|
|
int32_t ____tail;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___list;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC : public RuntimeObject {};
|
|
struct SimpleFSM_1_t9D1312E58D442B51EC901F9FCB7DC3045899599B : public RuntimeObject {};
|
|
struct SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232 : public RuntimeObject
|
|
{
|
|
KeyCollection_t206409CEE412703C2D493ED6595E03B9DBFA0C41* ____keys;
|
|
ValueCollection_tC2693A24609690E0B42B92AA2B66B6E4FDAB657E* ____values;
|
|
TreeSet_1_tE888958036347B1AF973DA4F1E92E9D54775F05C* ____set;
|
|
};
|
|
struct SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075 : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___keys;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___values;
|
|
int32_t ____size;
|
|
int32_t ___version;
|
|
RuntimeObject* ___comparer;
|
|
KeyList_tBA55251CB1A0A55ACA878F6428E4E3A81466445A* ___keyList;
|
|
ValueList_t15327CBA3C2CCB5E21E15F51D1738CA283521D5A* ___valueList;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D : public RuntimeObject
|
|
{
|
|
Node_t2A8A2E5FDB8FFFF9A0226914D754049360D7CFBB* ___root;
|
|
RuntimeObject* ___comparer;
|
|
int32_t ___count;
|
|
int32_t ___version;
|
|
RuntimeObject* ____syncRoot;
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___siInfo;
|
|
};
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____array;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 : public RuntimeObject
|
|
{
|
|
int32_t ___m_taskId;
|
|
Delegate_t* ___m_action;
|
|
RuntimeObject* ___m_stateObject;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_taskScheduler;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_parent;
|
|
int32_t ___m_stateFlags;
|
|
RuntimeObject* ___m_continuationObject;
|
|
ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540* ___m_contingentProperties;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____array;
|
|
int32_t ____offset;
|
|
int32_t ____count;
|
|
};
|
|
struct Enumerator_tF9BFB3693F73790EC6EAEDB86F72DD7F30172E22
|
|
{
|
|
SortedSet_1_tEA3CE7920D75541A3E5AF0A0F1D6C4BF387FBB73* ____tree;
|
|
int32_t ____version;
|
|
Stack_1_t619480024DD1CBC06EAAC47D77F6949481D305DC* ____stack;
|
|
Node_tE9376A2A28891B4E8139BA9C0DD44F3C62C573E5* ____current;
|
|
bool ____reverse;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C;
|
|
struct Enumerator_t71F09436B846CE1804083C9B36997E4573540582
|
|
{
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D* ____tree;
|
|
int32_t ____version;
|
|
Stack_1_tEDDC663FCEA0D04571EA6DC6475CCEB7F77D0D71* ____stack;
|
|
Node_t2A8A2E5FDB8FFFF9A0226914D754049360D7CFBB* ____current;
|
|
bool ____reverse;
|
|
};
|
|
struct HashCode64_1_tE17B8F4EB1955CE37A78FDA1D0940AD6B79DE88B
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t7D07C74DD41061E9ED06C78A82A6E8160CB46E07
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t45C902BA4A85819B6C31A686FF699BD734C810A3
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_tE592078EFC6F2A37620503BFAB99FEF70B71584A
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t843A0CF337E84638F3DEB38ADAFB4FC2204CA22F
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t6609EC1C8FD637D0704C9D40931A83EE7EBCA23D
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_tD3243DF9FA8B7B703E45F521152F4E500EAA808E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t6494BEDFB3823C50BCCE1457CC83EBABF9FC3718
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t1E9825203BCACDE03EA9806FA3B6D9667833FDB7
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t7F36E26E9C60DAE7E6BF03E72A6B9BEB0E70508E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t728259C125E4C28AE80A80B41491CF221EF1B9B7
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_tDA241AE7DD0993FBFA911AC316BB51A154854AC7
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
struct HashCode64_1_t09ABD1A71EC5CE3684E6F1DA80681B54DB1691B5
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t HashCode64_1_t086C964E863E63719ECA6ABCD86CF5F944BC12E8__padding[1];
|
|
};
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669;
|
|
struct MemoryPoolFormatter_1_tD90AF821EFE0D7B9E9EC037E7405495BBBC72A55 : public MemoryPackFormatter_1_t0D5E825078CC452DA05138B1B4E7B0D34034E748
|
|
{
|
|
};
|
|
struct Memory_1_t762D61B435521D1706EEDC25CA8C8EA1AE19AFEA
|
|
{
|
|
RuntimeObject* ____object;
|
|
int32_t ____index;
|
|
int32_t ____length;
|
|
};
|
|
#ifndef Memory_1_t56F63672B8E752B13E0BBBBD034BA3C1F6CFDC17_marshaled_pinvoke_define
|
|
#define Memory_1_t56F63672B8E752B13E0BBBBD034BA3C1F6CFDC17_marshaled_pinvoke_define
|
|
struct Memory_1_t56F63672B8E752B13E0BBBBD034BA3C1F6CFDC17_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____object;
|
|
int32_t ____index;
|
|
int32_t ____length;
|
|
};
|
|
#endif
|
|
#ifndef Memory_1_t56F63672B8E752B13E0BBBBD034BA3C1F6CFDC17_marshaled_com_define
|
|
#define Memory_1_t56F63672B8E752B13E0BBBBD034BA3C1F6CFDC17_marshaled_com_define
|
|
struct Memory_1_t56F63672B8E752B13E0BBBBD034BA3C1F6CFDC17_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____object;
|
|
int32_t ____index;
|
|
int32_t ____length;
|
|
};
|
|
#endif
|
|
struct NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB
|
|
{
|
|
UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373
|
|
{
|
|
UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30
|
|
{
|
|
UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0
|
|
{
|
|
UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89
|
|
{
|
|
UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A
|
|
{
|
|
UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB
|
|
{
|
|
UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075
|
|
{
|
|
UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0
|
|
{
|
|
UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC
|
|
{
|
|
UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08
|
|
{
|
|
UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213
|
|
{
|
|
UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C
|
|
{
|
|
UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD
|
|
{
|
|
UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB
|
|
{
|
|
UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB
|
|
{
|
|
UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129
|
|
{
|
|
UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7
|
|
{
|
|
UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1
|
|
{
|
|
UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735
|
|
{
|
|
UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D
|
|
{
|
|
UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910
|
|
{
|
|
UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34
|
|
{
|
|
UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8
|
|
{
|
|
UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA
|
|
{
|
|
UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D
|
|
{
|
|
UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657
|
|
{
|
|
UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92
|
|
{
|
|
UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF
|
|
{
|
|
UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1
|
|
{
|
|
UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tA78554A4805525762FFDFAC177852313219B5383
|
|
{
|
|
UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7
|
|
{
|
|
UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98* ___m_ListData;
|
|
};
|
|
struct NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88
|
|
{
|
|
UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C
|
|
{
|
|
UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF
|
|
{
|
|
UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C* ___m_ListData;
|
|
};
|
|
struct NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333
|
|
{
|
|
UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7* ___m_ListData;
|
|
};
|
|
struct NullableFormatter_1_tEA87E8072903C7F61821615A881B92DB189BC71D : public MemoryPackFormatter_1_tF3572A30FF61D088274445022014530D09C0BF77
|
|
{
|
|
};
|
|
struct NullableFormatter_1_t720017C68FD2717A646E78F6814F13BA5B9F7D1D : public MemoryPackFormatter_1_tDD5A9ED7DE7360F867F5930D434EF804F41376C6
|
|
{
|
|
};
|
|
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
|
|
{
|
|
bool ___hasValue;
|
|
int32_t ___value;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339;
|
|
struct ObservableCollectionFormatter_1_t205D3F2D3A4E0790387EA3D293BAA4E0AE3BB35A : public MemoryPackFormatter_1_t98DDF157991533CE86E5674C4A2D7BC7F2063338
|
|
{
|
|
};
|
|
struct ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8 : public Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E
|
|
{
|
|
SimpleMonitor_tB9FB1EDE482325676967121CD31A0F99524EEF7F* ____monitor;
|
|
int32_t ____blockReentrancyCount;
|
|
NotifyCollectionChangedEventHandler_t521FADBD1190F88022BC2160A5F82FDFC08364AF* ___CollectionChanged;
|
|
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ___PropertyChanged;
|
|
};
|
|
struct OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546 : public OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA
|
|
{
|
|
OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA* ___parent;
|
|
Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC : public OrderedEnumerable_1_t49A81D3EAEB40201506836E577654DE2F8EC8941
|
|
{
|
|
OrderedEnumerable_1_t49A81D3EAEB40201506836E577654DE2F8EC8941* ___parent;
|
|
Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692 : public OrderedEnumerable_1_tFFE2D41E419F999B45E7C9636190F547FE16EA00
|
|
{
|
|
OrderedEnumerable_1_tFFE2D41E419F999B45E7C9636190F547FE16EA00* ___parent;
|
|
Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29 : public OrderedEnumerable_1_t2CA7B89590CC51BDE981B85FB02BE2FC4175E2D6
|
|
{
|
|
OrderedEnumerable_1_t2CA7B89590CC51BDE981B85FB02BE2FC4175E2D6* ___parent;
|
|
Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA : public OrderedEnumerable_1_tA6269C578EE7D3423C79F32258D574795AEF1151
|
|
{
|
|
OrderedEnumerable_1_tA6269C578EE7D3423C79F32258D574795AEF1151* ___parent;
|
|
Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1 : public OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51
|
|
{
|
|
OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51* ___parent;
|
|
Func_2_tB86D019F1289E2D123C00796B373933613385952* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct OrderedEnumerable_2_tA5E665AC53BEDC7E4FD6924BFED49DE6B7A54475 : public OrderedEnumerable_1_t9FC254A996960AAA55B70FA7417B36D16C123B28
|
|
{
|
|
OrderedEnumerable_1_t9FC254A996960AAA55B70FA7417B36D16C123B28* ___parent;
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* ___keySelector;
|
|
RuntimeObject* ___comparer;
|
|
bool ___descending;
|
|
};
|
|
struct QueueFormatter_1_t1A3EFCE5D331814DB263BAEE7689EE969E66F795 : public MemoryPackFormatter_1_t0F922B7FEEE9FA4D282A5168F1A2D6F4CAF67A13
|
|
{
|
|
};
|
|
struct ReadOnlyCollectionFormatter_1_tAC85C30BCFD264529811EE9677E826C8D0D5E0ED : public MemoryPackFormatter_1_t0512E56B0F692E02A1A0634945386D235D41C961
|
|
{
|
|
};
|
|
struct ReadOnlyMemoryFormatter_1_t74EE1C8181A5D7F40B969EE8BFAEB2225B79F2CF : public MemoryPackFormatter_1_tA9AE375A861041AFE444BF815306505E51DD444F
|
|
{
|
|
};
|
|
struct ReadOnlyMemoryPoolFormatter_1_tE2E949C916CC0FAA8E907B5866F4CC1486C2B6BD : public MemoryPackFormatter_1_tA9AE375A861041AFE444BF815306505E51DD444F
|
|
{
|
|
};
|
|
struct ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4
|
|
{
|
|
RuntimeObject* ____object;
|
|
int32_t ____index;
|
|
int32_t ____length;
|
|
};
|
|
#ifndef ReadOnlyMemory_1_t766DD3EE24B08138FB23CBC5B315D83C6E1272F5_marshaled_pinvoke_define
|
|
#define ReadOnlyMemory_1_t766DD3EE24B08138FB23CBC5B315D83C6E1272F5_marshaled_pinvoke_define
|
|
struct ReadOnlyMemory_1_t766DD3EE24B08138FB23CBC5B315D83C6E1272F5_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____object;
|
|
int32_t ____index;
|
|
int32_t ____length;
|
|
};
|
|
#endif
|
|
#ifndef ReadOnlyMemory_1_t766DD3EE24B08138FB23CBC5B315D83C6E1272F5_marshaled_com_define
|
|
#define ReadOnlyMemory_1_t766DD3EE24B08138FB23CBC5B315D83C6E1272F5_marshaled_com_define
|
|
struct ReadOnlyMemory_1_t766DD3EE24B08138FB23CBC5B315D83C6E1272F5_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____object;
|
|
int32_t ____index;
|
|
int32_t ____length;
|
|
};
|
|
#endif
|
|
struct ReadOnlyObservableCollectionFormatter_1_t9CF1F49B787A2959F51A77EDC8204755AB519299 : public MemoryPackFormatter_1_t7B07490D5A467B8465BC0D92961ADA0EE95C3B3A
|
|
{
|
|
};
|
|
struct ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6 : public ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8
|
|
{
|
|
NotifyCollectionChangedEventHandler_t521FADBD1190F88022BC2160A5F82FDFC08364AF* ___CollectionChanged;
|
|
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ___PropertyChanged;
|
|
};
|
|
struct ReadOnlySequenceFormatter_1_t36266827034862726B67CEB00ADD4C21625BD5E7 : public MemoryPackFormatter_1_t61B678E39851ACF85975E47F1D63D3685F2A46D5
|
|
{
|
|
};
|
|
struct ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1
|
|
{
|
|
RuntimeObject* ____startObject;
|
|
RuntimeObject* ____endObject;
|
|
int32_t ____startInteger;
|
|
int32_t ____endInteger;
|
|
};
|
|
struct SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0
|
|
{
|
|
void* ____buffer;
|
|
};
|
|
struct SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08
|
|
{
|
|
void* ____buffer;
|
|
};
|
|
struct SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F
|
|
{
|
|
void* ____buffer;
|
|
};
|
|
struct SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C
|
|
{
|
|
void* ____buffer;
|
|
};
|
|
struct SortedDictionaryFormatter_2_t4D5E96CEF7E8E5872D42687CBE04D187D247B596 : public MemoryPackFormatter_1_tF3380481053EFF96316D1D537D08160B530296A2
|
|
{
|
|
RuntimeObject* ___comparer;
|
|
};
|
|
struct SortedListFormatter_2_tE30F1FD2DB6BD5009D174F8BCB3283230BBA6767 : public MemoryPackFormatter_1_t48CBDD02678BB890A93F6E00AC09C988FAB0F2D4
|
|
{
|
|
RuntimeObject* ___comparer;
|
|
};
|
|
struct SortedSetFormatter_1_t42D9B014E153433C50528B7EBB0CEEB10F1BBFD1 : public MemoryPackFormatter_1_t0CBFB14F4B7992139E1A5E0F4D6D798273F4E69C
|
|
{
|
|
RuntimeObject* ___comparer;
|
|
};
|
|
struct StackFormatter_1_tF1C7B7935C317D571FB0E40F786A98200BC9B399 : public MemoryPackFormatter_1_t89A70C9BBB703B43D5176D06744D027466483C66
|
|
{
|
|
};
|
|
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
int32_t ___m_result;
|
|
};
|
|
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
RuntimeObject* ___m_result;
|
|
};
|
|
struct Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 {};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source;
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_pinvoke
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source;
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_com
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct GlyphAnchorPoint_t1E0A7753CCCC41F22D3C408C4F96DDEC70291929
|
|
{
|
|
float ___m_XCoordinate;
|
|
float ___m_YCoordinate;
|
|
};
|
|
struct GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08
|
|
{
|
|
float ___m_XCoordinate;
|
|
float ___m_YCoordinate;
|
|
};
|
|
struct GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E
|
|
{
|
|
float ___m_XPlacement;
|
|
float ___m_YPlacement;
|
|
float ___m_XAdvance;
|
|
float ___m_YAdvance;
|
|
};
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
int16_t ___m_value;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct MarkPositionAdjustment_tEE7CE316B8F61A7D6725524435B6363E849C62ED
|
|
{
|
|
float ___m_XPositionAdjustment;
|
|
float ___m_YPositionAdjustment;
|
|
};
|
|
struct MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436
|
|
{
|
|
float ___m_XPositionAdjustment;
|
|
float ___m_YPositionAdjustment;
|
|
};
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
int8_t ___m_value;
|
|
};
|
|
struct SequencePosition_tF4FA2B48A1A5B3A50EFDA1174069C749D986EA14
|
|
{
|
|
RuntimeObject* ____object;
|
|
int32_t ____integer;
|
|
};
|
|
struct SequencePosition_tF4FA2B48A1A5B3A50EFDA1174069C749D986EA14_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____object;
|
|
int32_t ____integer;
|
|
};
|
|
struct SequencePosition_tF4FA2B48A1A5B3A50EFDA1174069C749D986EA14_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____object;
|
|
int32_t ____integer;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B
|
|
{
|
|
int32_t ___ReceivedBytes;
|
|
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___RemoteEndPoint;
|
|
};
|
|
struct SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B_marshaled_pinvoke
|
|
{
|
|
int32_t ___ReceivedBytes;
|
|
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___RemoteEndPoint;
|
|
};
|
|
struct SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B_marshaled_com
|
|
{
|
|
int32_t ___ReceivedBytes;
|
|
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___RemoteEndPoint;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D
|
|
{
|
|
Dictionary_2_tA032486828C79558DA19404156CC68269F719C41* ___m_Converters;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_marshaled_pinvoke
|
|
{
|
|
Dictionary_2_tA032486828C79558DA19404156CC68269F719C41* ___m_Converters;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_marshaled_com
|
|
{
|
|
Dictionary_2_tA032486828C79558DA19404156CC68269F719C41* ___m_Converters;
|
|
};
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
uint16_t ___m_value;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
uint64_t ___m_value;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376
|
|
{
|
|
int32_t ___m_X;
|
|
int32_t ___m_Y;
|
|
int32_t ___m_Z;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC__padding[1];
|
|
};
|
|
};
|
|
struct float4_t89D9A294E7A79BD81BFBDD18654508532958555E
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148
|
|
{
|
|
uint16_t ___Index;
|
|
uint16_t ___Version;
|
|
};
|
|
struct ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Buffer;
|
|
int32_t ___Offset;
|
|
int32_t ___Count;
|
|
};
|
|
struct ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033_marshaled_pinvoke
|
|
{
|
|
Il2CppSafeArray* ___Buffer;
|
|
int32_t ___Offset;
|
|
int32_t ___Count;
|
|
};
|
|
struct ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033_marshaled_com
|
|
{
|
|
Il2CppSafeArray* ___Buffer;
|
|
int32_t ___Offset;
|
|
int32_t ___Count;
|
|
};
|
|
struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct ByReference_1_t21C88CEA3607E6DA2435F0E317C10A776BCA6DCC
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct Enumerator_t3B58A5EDEC3FD278F1EAAE4308FB042DEC812DBE
|
|
{
|
|
ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1 ____sequence;
|
|
SequencePosition_tF4FA2B48A1A5B3A50EFDA1174069C749D986EA14 ____next;
|
|
ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4 ____currentMemory;
|
|
};
|
|
struct Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4
|
|
{
|
|
Enumerator_tF9BFB3693F73790EC6EAEDB86F72DD7F30172E22 ____treeEnum;
|
|
int32_t ____getEnumeratorRetType;
|
|
};
|
|
struct FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2 : public Task_1_t4C228DE57804012969575431CFF12D57C875552D
|
|
{
|
|
RuntimeObject* ___m_thisRef;
|
|
Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* ___m_endMethod;
|
|
};
|
|
struct Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B ___m_result;
|
|
};
|
|
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ___m_result;
|
|
};
|
|
struct UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC
|
|
{
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7
|
|
{
|
|
DebugOccluderStats_t7B4C48EC856FCC7FDF2811DF6C222E53DD80AD93* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A
|
|
{
|
|
DrawBatch_t5B13B0C8AFD02B2878B6FA9ED48DDA1A0696F5FF* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC
|
|
{
|
|
DrawInstance_tBE712DD78F80BD1B66343AC3B9A55ACFE80E8AF8* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8
|
|
{
|
|
DrawRange_tFF5914E68DE5FBB5AE71F729F834D72149A6B010* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB
|
|
{
|
|
GPUInstanceComponentDesc_tA386615944C32F7A0B71FF8B2F84E1A159C02E74* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE
|
|
{
|
|
GPUInstanceIndex_t1B73FC29B273B0470A8E186E3C2F19CA6D8FBA78* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C
|
|
{
|
|
IndirectBufferContext_tC867F1E4C07484F15773E7A382CCB107C57AC805* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999
|
|
{
|
|
InstanceCullerViewStats_tCFA9E28BF5D8B9489040BD5DDE21173331CE2173* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184
|
|
{
|
|
InstanceHandle_tE8D892B001AFFDB8FA53EB19F2B356436AC36C3B* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB
|
|
{
|
|
InstanceOcclusionEventStats_t39015A29B5AE8D08BF95679C8A25869BD8715AAD* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718
|
|
{
|
|
int32_t* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9
|
|
{
|
|
int32_t* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D
|
|
{
|
|
LODGroupCullingData_t511A004D7CBAE84368FCAA62A0348C24CB46EABF* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2
|
|
{
|
|
LODGroupData_t270D641C75EEBF4612A34E2398D4D0A10A5B1241* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29
|
|
{
|
|
MetadataValue_tB24D1ECC62550B3B37D7BFA11B02907047E7F937* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175
|
|
{
|
|
NativePassData_tC0F1669A8ED49F7203325B91DF9C473D65AA9CD2* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B
|
|
{
|
|
PassData_t88911D47229A306D70A3F6A7D3B2FC8FF12F8BAD* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5
|
|
{
|
|
PassFragmentData_t67D0B4EC16AF3DBC4233CC7537B93A27C78BFA8C* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34
|
|
{
|
|
PassInputData_tA1B8624F31DDB24770D8E0C8FA54189A567FC2DE* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51
|
|
{
|
|
PassOutputData_t8EA364E560775D19D285839BA06710B337503E0D* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84
|
|
{
|
|
PassRandomWriteData_t5C298F6D2CA84B027F3D8A145304B0DCFDA1961B* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2
|
|
{
|
|
Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E
|
|
{
|
|
ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A
|
|
{
|
|
ResourceReaderData_t1B57A9C4CC76875899745E115AA53FF40C6412EC* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C
|
|
{
|
|
ResourceUnversionedData_t3F4B539E7806E513C53A94EAABF5F969AAA384CC* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06
|
|
{
|
|
ResourceVersionedData_tC935A106FCF6C0800974D2C98DBE14E19A19B1DC* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC
|
|
{
|
|
SubPassDescriptor_t912FE0FF4C99BF293A1E4442353C35B2BB8997A9* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35
|
|
{
|
|
uint32_t* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6
|
|
{
|
|
Il2CppFullySharedGenericStruct* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23
|
|
{
|
|
PlanePacket4_t2954005DBF78AC180CF45B652536CC2F5158D54B* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98
|
|
{
|
|
SplitInfo_t708E0734C9BC407BA5882105A9721756605C913A* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D
|
|
{
|
|
Info_tA3039772991DEEDBC29A00439A055C5166133A27* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA
|
|
{
|
|
OccluderContextSlot_t963DBFFF1612E4108D0BEB42369F78758BE71D5D* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C
|
|
{
|
|
SplitInfo_tBD1436BC99CBBC9658FA9219EB22657F757C4A1A* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7
|
|
{
|
|
Slot_tA2F29CF08EAE46C3E2B6D96DCD7C96BF887A6127* ___Ptr;
|
|
int32_t ___m_length;
|
|
int32_t ___m_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
|
|
int32_t ___padding;
|
|
};
|
|
struct UnsafeParallelMultiHashMap_2_tAC644254A5A65EC96A9EDD9D83F9C7EA1BF75D8E
|
|
{
|
|
UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___m_Buffer;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_AllocatorLabel;
|
|
};
|
|
struct UnsafeParallelMultiHashMap_2_t4E7810C26A0DC9AFBF2B30BA797D0ACF99B4573F
|
|
{
|
|
UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___m_Buffer;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_AllocatorLabel;
|
|
};
|
|
struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct AsyncStatus_t4CBB6973B87AB386FD730DE96C9A409737545CD1
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ByteEnum_t2A464EF5EC59CBA8ED5E194537D5832168B1A692
|
|
{
|
|
uint8_t ___value__;
|
|
};
|
|
struct CausalityTraceLevel_t672BEB68BD9D2ED72A9EE022D37D68A28FA9939A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A : public RuntimeObject
|
|
{
|
|
String_t* ___U3CidU3Ek__BackingField;
|
|
String_t* ___U3CdisplayNameU3Ek__BackingField;
|
|
String_t* ___U3CdescriptionU3Ek__BackingField;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D ___U3CregistryU3Ek__BackingField;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct FontFeatureLookupFlags_t2000121BA341A3CAE5E0D4FAC6AA4378FE14AE1B
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7
|
|
{
|
|
uint32_t ___m_GlyphIndex;
|
|
GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___m_GlyphValueRecord;
|
|
};
|
|
struct InstantiationKind_t9B77929786BCA193B4A916F2F25793598CF0DF7D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MarkToBaseAdjustmentRecord_t03C041CB56601B46F025C69B899BBAB750201C71
|
|
{
|
|
uint32_t ___m_BaseGlyphID;
|
|
GlyphAnchorPoint_t1E0A7753CCCC41F22D3C408C4F96DDEC70291929 ___m_BaseGlyphAnchorPoint;
|
|
uint32_t ___m_MarkGlyphID;
|
|
MarkPositionAdjustment_tEE7CE316B8F61A7D6725524435B6363E849C62ED ___m_MarkPositionAdjustment;
|
|
};
|
|
struct MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607
|
|
{
|
|
uint32_t ___m_BaseGlyphID;
|
|
GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 ___m_BaseGlyphAnchorPoint;
|
|
uint32_t ___m_MarkGlyphID;
|
|
MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 ___m_MarkPositionAdjustment;
|
|
};
|
|
struct MarkToMarkAdjustmentRecord_t5D12F757E4ECB2EA12EB404228D70FA4DDBD6654
|
|
{
|
|
uint32_t ___m_BaseMarkGlyphID;
|
|
GlyphAnchorPoint_t1E0A7753CCCC41F22D3C408C4F96DDEC70291929 ___m_BaseMarkGlyphAnchorPoint;
|
|
uint32_t ___m_CombiningMarkGlyphID;
|
|
MarkPositionAdjustment_tEE7CE316B8F61A7D6725524435B6363E849C62ED ___m_CombiningMarkPositionAdjustment;
|
|
};
|
|
struct MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C
|
|
{
|
|
uint32_t ___m_BaseMarkGlyphID;
|
|
GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 ___m_BaseMarkGlyphAnchorPoint;
|
|
uint32_t ___m_CombiningMarkGlyphID;
|
|
MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 ___m_CombiningMarkPositionAdjustment;
|
|
};
|
|
struct NativeArrayOptions_t3E979EEF4B4840228A7692A97DA07553C6465F1D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PropertyPathPartKind_t82152825D88A0E450DDCE8503272A10595047F87
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct TaskContinuationOptions_tF334758E3027B6DCFA9A814B17CE878029537814
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TaskCreationOptions_tB15CB42D61B8958640A7C702A79097B56D5C7ABA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct VisitReturnCode_t795FEB928E847C526F470080AA94B33FAC60BC75
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0 : public RuntimeObject
|
|
{
|
|
intptr_t ___Bounds;
|
|
intptr_t ___Count;
|
|
uint8_t ___Data;
|
|
};
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_pinvoke
|
|
{
|
|
intptr_t ___Bounds;
|
|
intptr_t ___Count;
|
|
uint8_t ___Data;
|
|
};
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_com
|
|
{
|
|
intptr_t ___Bounds;
|
|
intptr_t ___Count;
|
|
uint8_t ___Data;
|
|
};
|
|
struct Brick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0
|
|
{
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___position;
|
|
int32_t ___subdivisionLevel;
|
|
};
|
|
struct FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145 : public Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17
|
|
{
|
|
RuntimeObject* ___m_thisRef;
|
|
Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* ___m_endMethod;
|
|
};
|
|
struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171
|
|
{
|
|
UnsafeParallelMultiHashMap_2_tAC644254A5A65EC96A9EDD9D83F9C7EA1BF75D8E ___m_MultiHashMapData;
|
|
};
|
|
struct NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22
|
|
{
|
|
UnsafeParallelMultiHashMap_2_t4E7810C26A0DC9AFBF2B30BA797D0ACF99B4573F ___m_MultiHashMapData;
|
|
};
|
|
struct PropertyBag_1_t74F4963AD6B656900B7CACFC37AC3CDDDF818409 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct ReadOnlySpan_1_tE8C37D9A05FCAB953169AFFE8A0ABCA809781E25
|
|
{
|
|
ByReference_1_t21C88CEA3607E6DA2435F0E317C10A776BCA6DCC ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC
|
|
{
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct SimpleFSM_1_t7189BE3EE4E867D6B5132034F7212E9B016B94AC : public RuntimeObject
|
|
{
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* ____states;
|
|
String_t* ____name;
|
|
int32_t ____currentIndex;
|
|
int32_t ____registeredCount;
|
|
uint8_t ____currentState;
|
|
};
|
|
struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
|
|
{
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316
|
|
{
|
|
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Span_1_t3EBD12B39F51F09620FC7421B894677E0D26E0AD
|
|
{
|
|
ByReference_1_t21C88CEA3607E6DA2435F0E317C10A776BCA6DCC ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54
|
|
{
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3 : public RuntimeObject
|
|
{
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___m_defaultCancellationToken;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_defaultScheduler;
|
|
int32_t ___m_defaultCreationOptions;
|
|
int32_t ___m_defaultContinuationOptions;
|
|
};
|
|
struct TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B : public RuntimeObject
|
|
{
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___m_defaultCancellationToken;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_defaultScheduler;
|
|
int32_t ___m_defaultCreationOptions;
|
|
int32_t ___m_defaultContinuationOptions;
|
|
};
|
|
struct TaskFactory_1_t998BD1F4A33BA4687E88533F2E186C74044C2B05 : public RuntimeObject
|
|
{
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___m_defaultCancellationToken;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_defaultScheduler;
|
|
int32_t ___m_defaultCreationOptions;
|
|
int32_t ___m_defaultContinuationOptions;
|
|
};
|
|
struct TaskFactory_1_t4BEAD6CE2527DBE682C128CEAA0FF2A79483E96C : public RuntimeObject
|
|
{
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___m_defaultCancellationToken;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_defaultScheduler;
|
|
int32_t ___m_defaultCreationOptions;
|
|
int32_t ___m_defaultContinuationOptions;
|
|
};
|
|
struct TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D : public RuntimeObject
|
|
{
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___m_defaultCancellationToken;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_defaultScheduler;
|
|
int32_t ___m_defaultCreationOptions;
|
|
int32_t ___m_defaultContinuationOptions;
|
|
};
|
|
struct GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E
|
|
{
|
|
GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___m_FirstAdjustmentRecord;
|
|
GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___m_SecondAdjustmentRecord;
|
|
int32_t ___m_FeatureLookupFlags;
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF
|
|
{
|
|
int32_t ___m_Kind;
|
|
String_t* ___m_Name;
|
|
int32_t ___m_Index;
|
|
RuntimeObject* ___m_Key;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Kind;
|
|
char* ___m_Name;
|
|
int32_t ___m_Index;
|
|
Il2CppIUnknown* ___m_Key;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com
|
|
{
|
|
int32_t ___m_Kind;
|
|
Il2CppChar* ___m_Name;
|
|
int32_t ___m_Index;
|
|
Il2CppIUnknown* ___m_Key;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424 : public PropertyBag_1_t74F4963AD6B656900B7CACFC37AC3CDDDF818409
|
|
{
|
|
List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4* ___m_PropertiesList;
|
|
Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879* ___m_PropertiesHash;
|
|
};
|
|
struct Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tB86D019F1289E2D123C00796B373933613385952 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t5BEC908E1F7894319A22CA9728A897FA95522DAD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t601AF6F2F5149E1FAFBFBEF804A1200A25072799 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_tC9841A2BB550822F3D4C4B383D028E9875DF9C9D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_tD02E129BCD67EF3C2C268C78FD4614374A3597CA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_tBD83535470C7532DCD8D3FEC6FAAEABA156B6E6C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_5_tEFCEEADE431DADF31E384EC513E2FE5E59197CE9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB
|
|
{
|
|
RuntimeObject* ___bufferWriter;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___bufferReference;
|
|
int32_t ___bufferLength;
|
|
int32_t ___advancedCount;
|
|
int32_t ___depth;
|
|
int32_t ___writtenCount;
|
|
bool ___serializeStringAsUtf8;
|
|
MemoryPackWriterOptionalState_t4FC6E1E800457B62DB3524E321732C50708E7547* ___optionalState;
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part3;
|
|
PropertyPathPartU5BU5D_t7994D542F14DDDDEABB1792C335C20149399AEBB* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_pinvoke
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part3;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_com
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part3;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct ReflectedPropertyBag_1_tE1C09DA96513A538F766F89263E88809EE14AF79 : public ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424
|
|
{
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446 : public RuntimeObject
|
|
{
|
|
int32_t ___m_PathIndex;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 ___U3CPathU3Ek__BackingField;
|
|
RuntimeObject* ___U3CPropertyU3Ek__BackingField;
|
|
bool ___U3CReadonlyVisitU3Ek__BackingField;
|
|
int32_t ___U3CReturnCodeU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t0D3862585E0E6ABBA750B0F8DD4FB4F09AB371B6 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
bool ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t1450E4C044890BB6ED72E91EECCABAA8CD4C36E4 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
uint8_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t0B0BA117C45E4483710D849EAA82C929C9CED4BF : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
Il2CppChar ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_tD10D28D3ABF7ABE8A98DC884BCC45C332099C7CE : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
double ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_tD9839C9363AA21B152B253C16F0C71E8BAD08706 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
int16_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t4915871B68CF077EDE7C77EF80D7BB6F626D5EB4 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
int32_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t10801B1B13CFD7D7A9C29076683A24958C6DB2D4 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
int64_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t4B7D1DC30EBC3A28A09DA4306CBC6F25E3AC4F4B : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
RuntimeObject* ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t5AF92D724EF436115DF067FBC46BB0FAC176C807 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
int8_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t301C6C76B364BE75BEC9911B16A56061EEFAB112 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
float ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t816D93C5D0B5B7B28FDDFB04200F722D086E1E41 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
uint16_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t01FB24AF1B005EA88E79A514A5459F3B17429605 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
uint32_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t4EBA6BB7A124D3633D5BA591BFD0A67E415C8E2E : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446
|
|
{
|
|
uint64_t ___Value;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___U3CgroupU3Ek__BackingField;
|
|
};
|
|
struct SetValueVisitor_1_t9F8375B4EA106BA863CE89AC21063AB486248660 : public PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446 {};
|
|
struct List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715_StaticFields
|
|
{
|
|
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields
|
|
{
|
|
int32_t ___s_taskIdCounter;
|
|
RuntimeObject* ___s_taskCompletionSentinel;
|
|
bool ___s_asyncDebuggingEnabled;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_taskCancelCallback;
|
|
Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1* ___s_createContingentProperties;
|
|
TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0* ___U3CFactoryU3Ek__BackingField;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___U3CCompletedTaskU3Ek__BackingField;
|
|
Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED* ___s_IsExceptionObservedByParentPredicate;
|
|
ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007* ___s_ecCallback;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___s_IsTaskContinuationNullPredicate;
|
|
Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55* ___s_currentActiveTasks;
|
|
RuntimeObject* ___s_activeTasksLock;
|
|
};
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_ThreadStaticFields
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___t_currentTask;
|
|
StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352* ___t_stackGuard;
|
|
};
|
|
struct ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_StaticFields
|
|
{
|
|
ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___U3CEmptyU3Ek__BackingField;
|
|
};
|
|
struct Enumerator_t71F09436B846CE1804083C9B36997E4573540582_StaticFields
|
|
{
|
|
Node_t2A8A2E5FDB8FFFF9A0226914D754049360D7CFBB* ___s_dummyNode;
|
|
};
|
|
struct HashCode64_1_tE17B8F4EB1955CE37A78FDA1D0940AD6B79DE88B_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t7D07C74DD41061E9ED06C78A82A6E8160CB46E07_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t45C902BA4A85819B6C31A686FF699BD734C810A3_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_tE592078EFC6F2A37620503BFAB99FEF70B71584A_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t843A0CF337E84638F3DEB38ADAFB4FC2204CA22F_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t6609EC1C8FD637D0704C9D40931A83EE7EBCA23D_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_tD3243DF9FA8B7B703E45F521152F4E500EAA808E_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t6494BEDFB3823C50BCCE1457CC83EBABF9FC3718_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t1E9825203BCACDE03EA9806FA3B6D9667833FDB7_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t7F36E26E9C60DAE7E6BF03E72A6B9BEB0E70508E_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t728259C125E4C28AE80A80B41491CF221EF1B9B7_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_tDA241AE7DD0993FBFA911AC316BB51A154854AC7_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct HashCode64_1_t09ABD1A71EC5CE3684E6F1DA80681B54DB1691B5_StaticFields
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1_StaticFields
|
|
{
|
|
ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1 ___Empty;
|
|
};
|
|
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D_StaticFields
|
|
{
|
|
TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2_StaticFields
|
|
{
|
|
TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9_StaticFields
|
|
{
|
|
TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D* ___s_defaultFactory;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector;
|
|
};
|
|
struct float4_t89D9A294E7A79BD81BFBDD18654508532958555E_StaticFields
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___zero;
|
|
};
|
|
struct FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2_StaticFields
|
|
{
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_completeFromAsyncResult;
|
|
};
|
|
struct Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB_StaticFields
|
|
{
|
|
TaskFactory_1_t998BD1F4A33BA4687E88533F2E186C74044C2B05* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17_StaticFields
|
|
{
|
|
TaskFactory_1_t4BEAD6CE2527DBE682C128CEAA0FF2A79483E96C* ___s_defaultFactory;
|
|
};
|
|
struct FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145_StaticFields
|
|
{
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_completeFromAsyncResult;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
struct SetValueVisitor_1_t0D3862585E0E6ABBA750B0F8DD4FB4F09AB371B6_StaticFields
|
|
{
|
|
ObjectPool_1_t8123FF4D2297EA0DE0958F4C596EEC975EF91D69* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t1450E4C044890BB6ED72E91EECCABAA8CD4C36E4_StaticFields
|
|
{
|
|
ObjectPool_1_t7DA0560ECC5DAE7E34FFF7A1C34B9DD85C9791BD* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t0B0BA117C45E4483710D849EAA82C929C9CED4BF_StaticFields
|
|
{
|
|
ObjectPool_1_tD58E1ED886ED7E0B0E789C0540A06925FFFE3789* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_tD10D28D3ABF7ABE8A98DC884BCC45C332099C7CE_StaticFields
|
|
{
|
|
ObjectPool_1_t6F911D0AABD1A10BC296F09B07186BDAA81C23CF* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_tD9839C9363AA21B152B253C16F0C71E8BAD08706_StaticFields
|
|
{
|
|
ObjectPool_1_t7F354EE5339C321452CC8BDE1BBEB51C109F101F* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t4915871B68CF077EDE7C77EF80D7BB6F626D5EB4_StaticFields
|
|
{
|
|
ObjectPool_1_t8F2D8ECC3F2A3F8557B78205355612D95DF19EE0* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t10801B1B13CFD7D7A9C29076683A24958C6DB2D4_StaticFields
|
|
{
|
|
ObjectPool_1_t97F13402A9436666FDB9A06B1274C59D75006F1C* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t4B7D1DC30EBC3A28A09DA4306CBC6F25E3AC4F4B_StaticFields
|
|
{
|
|
ObjectPool_1_tEB1EE3FCC53F5F7E6B87515C379719837D8BF3C6* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t5AF92D724EF436115DF067FBC46BB0FAC176C807_StaticFields
|
|
{
|
|
ObjectPool_1_t082FF340EE7F6811B66DEB049D0A8510464EF24B* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t301C6C76B364BE75BEC9911B16A56061EEFAB112_StaticFields
|
|
{
|
|
ObjectPool_1_t1258D5CAE21F7163A892F2AD7C928C81EBF6D0BC* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t816D93C5D0B5B7B28FDDFB04200F722D086E1E41_StaticFields
|
|
{
|
|
ObjectPool_1_t532B73346B73FED45FA938767ECF4F0837CBFF9E* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t01FB24AF1B005EA88E79A514A5459F3B17429605_StaticFields
|
|
{
|
|
ObjectPool_1_t2FFDAE5CC715A6566DDF02685C09A7A6FE52F2B6* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t4EBA6BB7A124D3633D5BA591BFD0A67E415C8E2E_StaticFields
|
|
{
|
|
ObjectPool_1_tE512FE8C23AFFAC42BE6502CB31360CBB50F5C4A* ___Pool;
|
|
};
|
|
struct SetValueVisitor_1_t9F8375B4EA106BA863CE89AC21063AB486248660_StaticFields
|
|
{
|
|
ObjectPool_1_t28F249C599ED2EFD04F6B973FEFA2541B52062DF* ___Pool;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
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;
|
|
}
|
|
};
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_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, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_sizeHint, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_count, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA6BF691D470370FD8F155567D2D6408047BDE9EA_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m9BADB3379AE3BD1159871808A92EE0D0CFD982E4_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mC82F32B3F2C830693F79DF2B577562FFFB66C303_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m774F73A324062BD75AF0FA48903D9C9056F70577_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m32FF6C84613320EA404369B17E3ED90B58B06049_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEECEE87DEFB44346F99B77138291333E52CFF94A_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m9A085600C320307AD71C833F0352693C75103D4C_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_mBB565E811073C063FC64066CF8B4B03F90A5DCEB_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m73A8ABEBD43720688CCC1F25FE06A3D882139153_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3E4AF62978F92E52CE242CAC83115C8EA6C850A3_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9F4AF128CEBE2B647B7DF4A9D74232DEB3013AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mEC9469DBD91362D6135B8F5A81E90486BF328075_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_Reinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m3D4808CE7773742533C8F35321DF4D9BDEF4122E_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD2AA034A23820A45C4942020372581CA07AA4433_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mB2AF8CA03DEC485BAD3A37CCBE5CDEBA3C67758C_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_Reinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m7EA98E7E9E0369A617227E0EB1A828E574F3B01B_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m0B9FC11A134FEF6303B2D3EE1C73D3513515D3AC_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_Reinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m1DC2EDE7D441369C0AF59360E295FCFEAC0E1C5C_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m5C4C6FA53CA05FE88CA7926E8B1C0DF717B63550_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED_gshared (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0672FA7EF8716D8649D0A61CB1EBFA5CD61A6306_gshared (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m3A2155B778C72544765AAE3A75BDB08C78C4ED28_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mE35B299B99CAE9D89F0CA4CFB9BB037D0FA023AD_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0BD2704CD677D45FAEDAD35D6C7208EE167961F7_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_Reinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4A597B9676D4D59835A397DD5EA6EDACDCE98055_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B_gshared (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_m2842DB279BEAD40C9CB39EC85BDE2241798CFFF7_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6F5600ECBB05C242CB83D5BA738085725B3DC6F1_gshared (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_InternalReinterpret_TisIl2CppFullySharedGenericStruct_mB0CDEB18464001F253D27086821B2DEE7C1859E8_gshared (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m1FE7062E31411B740E16829B437A95E0BC1FE66E_gshared (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m0A4282BEF39DA967523E47AF7251C3F5A58651F8_gshared (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m9084C95DCF71501F440D82C0A261927C7987EE6F_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592_gshared (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* __this, int32_t ___0_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1CD2FBB9DFE91461C0CB3F1CC4BFCD2A660178E8_gshared (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6AD6F355DA0E33BC54B8685A2C4AC7911121B02_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m18AD05BA5802DEBB3E1FBD1D0B7804F474A92DD8_gshared (NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4665957ACCB3339258C5F12B1F17DCA8BB06F38B_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m67A3CCF564F9EAC5F0B44322104AD7A377B836EF_gshared (NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m94C56E09C78EF215B2209EE88A359E59436451E1_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8954AD451139BF29FBE86E6405E8ED3493937978_gshared (NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC8BCB3A909A1A9CD595CF6E7A9AFB30C21572D99_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC20F039C3774238CCF20E4964208310D17BCB671_gshared (NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m45958C6099052E558A822FA1093BE152A406C3CE_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mCAB87114ECD43D0963842C600BB69B099852D6BB_gshared (NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1F9B74217D635B4807E4D9A7321B1FCCA689191C_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8740F1D65218947A863337C24A03A06FAD0F7CE8_gshared (NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m980D5D9D9FE22089A4BCF7CC2D4778BDECD964E6_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD00D262905C5105DC06F193CE0E6D8189F2581B1_gshared (NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1FCF4AEAB44F505DBAFE79C974CEA4EF9A2791CE_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8562D674D98BF1B8FFA0292FED6227B7475D58CE_gshared (NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC8C6D31CB226B974EEFC892A0A28DA9D125A6B0_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m212E7DE5541E6AD2D8177A5BDE3F7B11E252532E_gshared (NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC0AEF19BEAB683B042493023253CA0F9513D288_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mA6B869F899031AB0E989998A692FBC4E96A064B9_gshared (NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFDCBD92CE263DC78726610F1DF009E02CBE79370_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m652947C438EF33AC352088D2309A51253516B014_gshared (NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4DB090110E6F860F89BC396A0B289CD2F76E2B6F_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD9B3D4A8E08B380809B55B97C0CEAD15A9E41BBB_gshared (NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7326E88D838EA99F981DF6C9A2C63FE6B211983E_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2620B43CDBB522330B8F4F6F133D6394D3B687B5_gshared (NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFE43EB8F3871E6B2473C70581E7662F4B037322E_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2BCD7CE86909EBBA1DAB10F58751FB5EECD8F180_gshared (NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m270688BB98BC284DC844ECF1477AE5194149D675_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m72CAB2544831F7D09ADA66729DA1A64D0EE5AECE_gshared (NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m333116543868890A84D6E8DB99A64569D00AA479_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1D0D13785F6065E7C5E9BA33B94C51D8A85909D3_gshared (NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m44635865D8BA326C38EAB99915EEACCB7D8B264E_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mAF7330F673D2AB3BB9A880D2F4EADDA26CFD9EBC_gshared (NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m657116052467916447A90150FF803C20C5CEE31B_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF7D1C7183F9248429EF3AB143CB784AA1568DCA7_gshared (NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m307C17F4A16A76027789F559BC82C19040712ED3_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m20FE4900544C737948E4C87B376FE73B17A66E8E_gshared (NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m07C8F63E51F1251DA94CCBE4179AD6FCF8F2EB30_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m14A872A4EAF7A269F1F6F9BFE0ED49F85A04A6C6_gshared (NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBDE422E785C9AE9FC69193558A45C144CD485A12_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mABB61BB12976C6588D79849FB8968302C01E75E2_gshared (NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mDBD5820BFDCD05712FD930EBB1480501EE194210_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFEBBEB7E5ED020350B79CDCAE305AD4B6D77C411_gshared (NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m55B2E09FAAE6E34227D59770FCF38FE177A4C2BB_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C846E8A1BCDFC3492874AA742AC1EC6EA06D28A_gshared (NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6D10F2B2AE23B17D070908EE78D30AE17050C535_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC3B5AEDF0BF283FC2A2C10E5F8B5138E83252006_gshared (NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m826E2BB83A1EC8F3F77B980C74B2C1B20173F2E0_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7A654038B87E3CAAB01B15C1ACA51BBB02FBB071_gshared (NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m92CD6E62E9A90F1B8383A394FF69F3C45C443B0D_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6BAD277E18F76D4388622AC579FE6D5C1979F1E_gshared (NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC07086057642BA29F97964F4917ECABB3234C4C6_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA90E8883695268AB9A029B28CCE6B97235E3D6E_gshared (NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m571A6231AB80B738F7CF1B22EF880E05DB8D64D8_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA6EA004C917701A46CAEF8883365C17EC72EF84_gshared (NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m0D6E7B9DB895B65C8B54DADEEC5EA951299A598D_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9926CCCB5436863666A1EFA8FBAD4F34EA9E951E_gshared (NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Dispose_TisIl2CppFullySharedGenericStruct_mC1029EC6803B86B2C7577203E6B311E262BE4F65_gshared (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* __this, Il2CppFullySharedGenericStruct* ___0_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisIl2CppFullySharedGenericStruct_m84B39CC62859C7E4EDB87CA79D4F1B31FCCA4C54_gshared (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* __this, int32_t ___0_initialCapacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C39BB1D7DA463EAD661706E568567675FBE414D_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7672D85E1E4C258C48EDD041454E5AD0A9F89901_gshared (NativeList_1_tA78554A4805525762FFDFAC177852313219B5383* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2C12BEB4BC76831F8DC1E665DC9B75B575449EB4_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF35BDF60662A2DBD8F49FAD41FD28DC71212F1D8_gshared (NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mED01F1FF210FB77A3760AA09388CA150D4B7925F_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1736CB8FAF37E6FA9ACE54FF5D23E260C5B15516_gshared (NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m037FD5ACBC4B49652DFCA6A6144BD67034E85EFA_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m16AE4C5E47FD1D1EA044DBFC343E491F593BE90F_gshared (NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m81065188E32A96B6794424732ED739711527F2CE_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6258D08944D7A96FE2232389338CB1B747EA53C1_gshared (NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m78EE726E3742E6FEA6CE4417ED298CE305695C07_gshared (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD3A7F0D95D44C61000BE69C7D033168DC01CECDD_gshared (NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelMultiHashMap_2__ctor_m5077BDC802F35E115E649B0453FC2247DFE52002_gshared (UnsafeParallelMultiHashMap_2_tAC644254A5A65EC96A9EDD9D83F9C7EA1BF75D8E* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeParallelMultiHashMap_2_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m05BE238C6E3FA9BDEC6C93E17DE222799E1C8997_gshared (NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelMultiHashMap_2__ctor_m2E9AAA535D5D589B1D9CA34C9CCD9D66CF1DF44B_gshared (UnsafeParallelMultiHashMap_2_t4E7810C26A0DC9AFBF2B30BA797D0ACF99B4573F* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeParallelMultiHashMap_2_Initialize_TisIl2CppFullySharedGenericStruct_m2CC90C1465EF6DD13E90098CD56B88C04A24607C_gshared (NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22* __this, int32_t ___0_capacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteNullObjectHeader_m48D9A3AB6855F349EABE2A1B0F3A5FD85864E985_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteObjectHeader_mE187B22DEFD5FBF26F62C613AD28333349B388D7_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_memberCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m5A5492A71F9D3F956F16D4F7B1F04BE47AC7FEB7_gshared (OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546* __this, RuntimeObject* ___0_source, Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mBE93BE0656C7137FCB68076DDD39D1CEB5BBB3F6_gshared (OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC* __this, RuntimeObject* ___0_source, Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m0FEDB4E6B2EAC112C01BF5AC4605305543466402_gshared (OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692* __this, RuntimeObject* ___0_source, Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mA4C9424073C1ADF71C6D1C4A093AFC11BFA78162_gshared (OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29* __this, RuntimeObject* ___0_source, Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_m74A1E4ECECDEE6443DD3588E46C32D34F3CAAAAF_gshared (OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA* __this, RuntimeObject* ___0_source, Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mDBD22B8FD21EB8AA78E215E6189E6A53CC537403_gshared (OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1* __this, RuntimeObject* ___0_source, Func_2_tB86D019F1289E2D123C00796B373933613385952* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t82FE1DCC76AE9AF3DDDA1472151EEF68858CE976_mF406F4A8EEDB21069BF045968FB3647C0C412AB5_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_gshared_inline (SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0* __this, void* ___0_buffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t531492AAE2A0CC46F30E1151715140443DF9EBDE_m197451F45A6299E4DFC983447A2B1235A2E701F5_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_tFA026EED004440AB13FB96680FBB802EC06A0637_mB27A7FF33AAB386045C7BA54F75FB7741AF795F6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_tAB70A942463BA39DC3970BA6B694CFE5D0D966DD_m786D0CBF87B2E6BFCA616B6D8D6F4132F58DB29A_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t6E436619321F6CA11F646C1D0865C3B46ED2499F_m368D6F5F31DECCC50791A2FC184DE5274DA0A313_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t0827DBBBCFCD98D0F017FC5D16C42BF77EF3C7CB_m502E3720DA119E62B3950310E875FCD9F7730638_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t7D4041DF12531E7E97FBE35B3D9BEE667D648D1C_m87B66E17E92304247CFE304E03375B5ADC85B844_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t071E29BF77D320738D7C5491E147758B1DF5A972_mAC32C7C3D3791BFA6903ACD4B038F7C44F2E5029_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_tF0D5C70B0548157708D433CE2F9B065804239845_m488BD3FCCAD1B7B5720EB3BA57F1E1547EE28C17_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB335BE3E222FEFFBA94D48B738E26C60BB280AD4_mCED504886A1F077D04BE6D54EA15A0C341D74230_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB1699C1806AA3CB8C55AED0C5D71EF39FD806967_m6D5F673469DBCE69EA53D3E0DC781C519D7ED84D_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0E023EEFF5856D3A06085DB7B9BB8AE0F3A36A92_m83BEF73EFC16965A7D1288EC81C1F5597C702D16_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t3D164E442296852B02B541BD69992113751E8D09_mBFB092F8DBBA717C8D4E6AD6CC012331906FC26B_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t9ED727D56D4E63907D11A47FADD26F3A1778FCA6_mC3EC3BAEEFF3DFFB8D871C1C68C50EC16D8BA669_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0E1EA68CC733192D5C0DC9BE19DEE329F74C074D_m988F1957834AD1F8063D2B90A11D3C99A5D9DF1B_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t00917949B940AC19091B997DCFD370DFECE38FE9_m3C646029675CC25C9D06BE2B7C4B34752E8A9255_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t6EB9A6D4E1ECE62B02A7E3ACBEB37B6B25B89E7F_m1327474A75AFE89176F5E070BCCFEC18E2E9E363_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t890D9223E4EB910E7788D46FA6ABDEDE1352182A_m96514D159AD286C785D797E437C10095BE5D8E5C_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t9C24DB4B7EE6A1CD756F9C6708F31C9AEE702F66_m32735A0D7E89B780F844FA90D4A39893F6D1ACBD_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t5B7D8154095323B2AF129E93B24BC93BA2F1B833_mDDE7E31F4DA7BB727499E6D568971B4CD3415B6D_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t8B199FB4EF242DFFFAD1DCD519F636EAD8F17289_mD6AAE56D82AF54522E2E58548C6EF765B39979C6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t424D70E5F52FE05C9A6F5A74306B282E536A5950_m3371C825174AF1CC12C4CF523B770EA787B74D24_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t4C0B7BF9853E55BE375E3304E31593FEFCD76E16_m452BCDE130A057AC5D39927415370370E5F354A8_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tA47F731959268B5473E0B848F4BB1867DC24BA49_m0ADB08E94B58501A9EEDBBE3CCA26FA2F2F6E01C_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tBC50FEEFF2AB4106501ECCC5C93C49514F3A95E9_m71700B6DF639242958DBBAF0D70B708FBCA8836F_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t8945D0C1062873D441B458483BA77CECF20CF088_m099D22518DABE349D2EBC1348091BB7AB19600A6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0FA796943B0D2D4AF0282F204C8777E2571688D7_m1ACD092F5C667A34D4D34B762F7BE433DDB8E862_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB0658A7306F669774009ADA5DB6E265BA665FD31_mEE5EB1CDD0123FC328BC532FD3C38DE0BA22F956_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tCF007F6FD9F2D7FE1B2F0674ED2A883398ECD985_m41F6B8256DA51907C52548DD3610E514BC1CAC3F_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t7DA9941879B20347789683661078D0F3B528FA92_mEE7AA46A6B6D93672B53EED9FE5F5A72E6BE93D6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t991D9919F0467821B9AA3F6C283A7962DD7A5746_m90F7668BA98B6909311FB180037DE1A5F682F582_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0750E8E7DE99CDD37B3DBB824068FA88E9F6E4C1_mCE67FB6A75ADEBFF5E71F4655846A3C5F7090CDA_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t380B6860108F97119E394D7D76E7A978EA6B5E0D_m2E8EDEC8017939B4524DD7D00F9210996533A958_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tA216BB13EE9189155009913CD6BCE46B6667EC2E_m38D4B9F331E31CA49067312E853CE17C5D7140E6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t4893E7C416E7915C2BE94817517EC2CAEEA9038D_mA0A18913D2D0AB9A96A68D300970949DFD57D129_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t50BE75CA652DEB31071FA579130333FA79653079_m80A3ED26E7050BFD31FDDAAE2E8414BB7AAE1860_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t9EB5C9ED29911125326893A8E77EE2D636BCD32F_mE66202E3C3E907DEC5EDB2C0A8715F114B4AE6EF_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tEE5084685EBD9FAF27CCA92C7DEFED901EFD9518_m57CE2E44B682A8897C79E6219D28332A4FE117FE_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tE9B102673F655EDBF297325B9BAC26D3EB778B06_mDF93F1372A78E3147EE964B10FDD47C11A560BAD_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB734C09BFD6922AB895D644BDDE01AC7A8510C72_m70C39B892FC51A321297F6E0BC020F011F5D5DC7_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t26D49AAB3F1B079B680DAE4C2A28F2CAE89DDA72_m20CBFF16570F598FA2A8824BF4784C09E62FCA76_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t7FF8E576D3C8BC4DD24F19FD6E0906888CAC2717_m48C2320147024B006FF2AB2AE1912119619621AB_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t256A7C289152588D86B81F532D204650E6E00EB3_mFCA610F77730580DC1EC779587CF0AF8FFE68852_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t1AD15154F5FCF717FDB6B0B280C49766B4D14137_m121BAD3952F93497FCBC7390F47A4F41D95E2942_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A3199F0D7FD487CFB500FD748B5B2003C22EE55_m5DA1232DB7123C86B109DF95CE22F7F5E4E37E4D_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t61B5A4A610410E1B5E86A3665C45C3803C7592EE_m8AB400511890A46364109096F8368C4CA63167EB_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE984E806290C7040E2250FBF1CD156D4A87ABBE3_m56DBA8A70CE0395345DB4653A6D256512E190674_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tB4C2158B416D17DDD248CD1F2E0DFEF8327BC4D6_m4561829ED91A55C7CFBD45460A6F4F79FCA7D82E_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t27C350DE7B8F627BFCE779F296EE44797353D1D0_m193CCE88074CAFF2BBC5CC7767436D45280E3187_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t38084700F299A46ADC6D51D6FD7EB3D0F9962EDC_m39892862746C23F37D72D90975D5AF814FAE566E_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t2697899555706F25E6AE86F2432578842EC621D1_m81120983BCB0CC307EBDE9A9161E31149D575AD4_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tACC0AEB51A3D8EF191C11C9C8B6358DFC00DACCC_m812FE05A1D9B245688F790744CF276DB21D0AA5C_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t961692D3952C1F6D4F30B6BAC07E9CD186C66F31_m9B85B3F2F624D2A830B87CF38F3AF795C2DF3DF7_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E9CB87132A33EEF9E532A3A703C0D285ADB71E2_m42A47534A1D14217F01678F9E49A69A9978FDC93_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t758AE7966A2E22F06595DCBFF5CDD219207B71E2_m0074981E038B03BE3BD7A3722F34BBA7B030CA70_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t509445D2125F0871131DA13B592FA4A9657F5AA3_m76EA61813D784CD25276DF68FD2116ED3C6930D6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7A9FF3D868A2F2AD69ED514B7607FD35D7819143_m3BA4B2B37F1F68CAE2E1E8B297BAF68F76E25038_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE3940B0A77A7F084149FB706BF7F1382C2CC6894_m3A569E9347079D503672607881ECA776C2B198E8_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t81FACA0319AA796083C8ECE95C995DB3542D8A2E_m63FE0B207F291F915D0805D84B8EA4CC93F6388F_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A21E4E3B137372075645DE6FE4A22ADC4598532_m33C2BFC6B23318AB472027B0E2DFA7EDD03A3A84_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E5F4A6DEFCAEEFDA5D7D16F86D49AF6F18DFBA0_mC868D7951E7B13E58A1845BA8CDA43F54206ECD9_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t194E9263F9E278076331CFC3296E74ABAA89D391_mF521C55221FF0D0F2200C5A5881E77D03F6F1742_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7CE30E4F7E5070AEDF18707A56561EF7C715ADD9_mBA8A54E3552535D1AF17EA90471BBD5D90A1EBA1_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t64F389F7CF0153EAF6AB628929F2873F0FD9A0A3_m5CB40651FAD4BD498147C7FD32D719ED2FBB9593_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t5FAFA25EADD61355075A981C5FDE8B3024C58F34_m841756BC0676293AB7A0012F688C3DCE69D1693A_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisTransformParallelForLoopStruct_1_tB280C75DF37D8BB52EB670F970BDBDA72C40572E_m06EC66901E593B74D8BA09605435B77C5E846EEF_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SharedStatic_1__ctor_m467F9A64986F442AA4853C5C314D0A54D887CDDC_gshared_inline (SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08* __this, void* ___0_buffer, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t0BC9036A453E1965D76D9B3BE6C780F42C402BBD_m6A163700BA4F18E3DF651E0D197DA2D234B9DD7C_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9_gshared (uint32_t ___0_alignment, int64_t ___1_hashCode, int64_t ___2_subHashCode, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE832AA34CAE2057E4F9E9B490B1B284D43B961AB_m9B60F0D4B41D3F3A027331725767A4FEBEC97D8B_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t97F62BD9B81457B3C951E4731A189682A75B0618_m452E81BDA5B4D572CBC1C0B2FA4D5609D578A502_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t4B219CBD450518068824DE0C112518BC2384C721_mE16070B428834E590A710A12F880FFDB3DE9F24F_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t2D0A24921EF91E7ECCFCEC7F881A27622B8F2A70_mB967F2697C91AB840A9202023B02D8465000F449_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t58F74E58E137EF1DE356A985ABA4748586462B89_mF8D2B2184797A3249B22C20E9CE3037E58760AB5_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t69439B0894C33F9B27AD85917AD7E0DAE9016112_mAF531E97828F6EA873611A4571BDDD25F990D368_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t655382769C4282682A84F553F5FF0B1AB97370EA_m9ACB4FE7846789D8E3F49F5DED3B35839E51B0E6_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t3E06B0B953E3304DB73E71071FC7DB2646022C2C_mAB129228331E6149CB76835022FC9F8E60D2B347_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t18FA6B9845CACA8547C4FAEAC0C5FF7C6E487DAF_m5764084E845D08310A8F59782C5314965084EFE7_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t1CDF7FDFE988A5218A7D870586CD04293F25682E_mB3F1D65A7AF0C35CE47E0AAD490420B640CF00C1_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE8D83243564C34800FF950A808D4733A2ACB852D_mB6A684433C5061494098A9D16C1215872FC44AB3_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t93B90034EC7615CA68546F4CF38E2C812CB52105_m0460A39EC62EA75F5D6D35DE720B842933C70F79_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_gshared_inline (SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C* __this, void* ___0_buffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleFSM_1_Resize_m05B689A45EE8651368C8D9A97B6A9D48A59E7204_gshared (SimpleFSM_1_t7189BE3EE4E867D6B5132034F7212E9B016B94AC* __this, int32_t ___0_minCapacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7C0F723CD15AC0F1B5F6D2937235CFD7306329E5_gshared (Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1B66D14092A623BE5F8A22939E7A7A57B47232BE_gshared (Enumerator_t71F09436B846CE1804083C9B36997E4573540582* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__ctor_mB70C0819ACF4C395D239289203F9819BB3499891_gshared (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* __this, RuntimeObject* ___0_thisRef, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* ___1_endMethod, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_5_Invoke_m392D0C4E7D4413D3636EE05EC3A70F8D58CC74A1_gshared_inline (Func_5_tBD83535470C7532DCD8D3FEC6FAAEABA156B6E6C* __this, RuntimeObject* ___0_arg1, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 ___1_arg2, RuntimeObject* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_Complete_m56AE76FCEF30ABD41523638898E9B529F718D951_gshared (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* __this, RuntimeObject* ___0_thisRef, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* ___1_endMethod, RuntimeObject* ___2_asyncResult, bool ___3_requiresSynchronization, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* TaskFactory_1_FromAsyncImpl_TisRuntimeObject_m2A8BC78767980FEF02961056F231ABBFD568A5CB_gshared (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* ___0_beginMethod, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, RuntimeObject* ___3_arg1, RuntimeObject* ___4_state, int32_t ___5_creationOptions, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_0_1__ctor_mBB8552CCE9B72174252EB2543299D93837DF77E2_gshared (U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7A65D2C0E3F203AD5EFAF7F28D3D62D9E8C65F80_gshared (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, RuntimeObject* ___0_state, int32_t ___1_options, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_4_Invoke_m9BAD5BBD30933FE9049B012CD3316FB2F24F3B8A_gshared_inline (Func_4_t5BEC908E1F7894319A22CA9728A897FA95522DAD* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, RuntimeObject* ___2_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_mA518E3A5F3C963950D8B9D56203B84428CA73782_gshared (RuntimeObject* ___0_iar, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___3_promise, bool ___4_requiresSynchronization, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m2EE766FD3F76F4824990F4A93ED1F7253ECE014C_gshared (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, RuntimeObject* ___0_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* TaskFactory_1_FromAsyncImpl_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m00CC21AD1300E72E7B502B47A4E8A60EAC29A624_gshared (Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* ___0_beginMethod, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___3_arg1, int32_t ___4_arg2, RuntimeObject* ___5_state, int32_t ___6_creationOptions, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass41_0_2__ctor_m536B6CAAB0591D40CCDD777F86131E06307A299D_gshared (U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m698B606B2774E066B369294BD237EA3DCCD490E0_gshared (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* __this, RuntimeObject* ___0_state, int32_t ___1_options, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_5_Invoke_mB0C00A2FFE86A20244AFAFC02C3F0DCF75C7D86B_gshared_inline (Func_5_tC9841A2BB550822F3D4C4B383D028E9875DF9C9D* __this, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___0_arg1, int32_t ___1_arg2, RuntimeObject* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m3A6C0AB3D11B6D5C89224AF37FDD27795BFC6E16_gshared (RuntimeObject* ___0_iar, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* ___3_promise, bool ___4_requiresSynchronization, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m91F6C4495958F44115C8BA067D59FBE99CC10FE5_gshared (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* __this, SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B ___0_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_0_1__ctor_m1616CD8C357244C87D6A6080586EE5D10D1F29D6_gshared (U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m8E9811A47CB38FE7842D6339433133CD283F515B_gshared (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, RuntimeObject* ___0_state, int32_t ___1_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_mE22E1786CA9D7E8022C121AFF42BA025A2BF384B_gshared (RuntimeObject* ___0_iar, Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___3_promise, bool ___4_requiresSynchronization, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m80576355963E201DD03E813734ED4CDA847E199E_gshared (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ___0_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass41_0_2__ctor_m8D311421DC3898557AF1012280C38DB4B9E1F08E_gshared (U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_5_Invoke_mEC1D034D1CAD44D4E743B3A0E36213B12B2ECFAA_gshared_inline (Func_5_tD02E129BCD67EF3C2C268C78FD4614374A3597CA* __this, RuntimeObject* ___0_arg1, int32_t ___1_arg2, RuntimeObject* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__ctor_m659379BBA5519550116198DB83B594BBB0ED21F4_gshared (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* __this, RuntimeObject* ___0_thisRef, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* ___1_endMethod, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_Complete_m7985C0BDF0CF2E27AE73927FCCB5FEFBB624A2C5_gshared (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* __this, RuntimeObject* ___0_thisRef, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* ___1_endMethod, RuntimeObject* ___2_asyncResult, bool ___3_requiresSynchronization, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_RequestNewBuffer_mE3A14E274D798D478F3D4D6D62C6EBBDD087DCDD_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_sizeHint, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_gshared (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_span, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___0_start, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* MemoryMarshalEx_GetArrayDataReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4F71B3A9B2711B859F1974DC341C043AA00D8A19_gshared_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t* MemoryMarshalEx_GetArrayDataReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28F48BB1170C8FFC45F7349A5B54684E3845C4AC_gshared_inline (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_gshared_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 MemoryExtensions_AsSpan_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m747B4E744F3001295814B04B43E787F0E1109D0F_gshared_inline (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t* MemoryMarshal_GetReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC9D303E66CF269E3E7B9C5E375C066446C3022C_gshared (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_span, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m513968BDBFF3CFCE89F3F77FE44CAB22CA474EF9_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m176441CFA181B7C6097611CC13C24C5ED7F14CFF_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method) ;
|
|
|
|
inline uint8_t* MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_sizeHint, const RuntimeMethod* method)
|
|
{
|
|
return (( uint8_t* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, int32_t, const RuntimeMethod*))MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_gshared_inline)(__this, ___0_sizeHint, method);
|
|
}
|
|
inline void MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, int32_t, const RuntimeMethod*))MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_gshared_inline)(__this, ___0_count, method);
|
|
}
|
|
inline void MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_gshared_inline)(__this, method);
|
|
}
|
|
inline void MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, int32_t, const RuntimeMethod*))MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_gshared_inline)(__this, ___0_length, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Unsafe_CopyBlockUnaligned_mDF58F6B66FE59AF2A00CE0E2B885DA6F2865BA8A_inline (uint8_t* ___0_destination, uint8_t* ___1_source, uint32_t ___2_byteCount, const RuntimeMethod* method) ;
|
|
inline void MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA6BF691D470370FD8F155567D2D6408047BDE9EA_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA6BF691D470370FD8F155567D2D6408047BDE9EA_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline void MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m9BADB3379AE3BD1159871808A92EE0D0CFD982E4_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m9BADB3379AE3BD1159871808A92EE0D0CFD982E4_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline void MemoryPackWriter_1_DangerousWriteUnmanagedSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mC82F32B3F2C830693F79DF2B577562FFFB66C303_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, const RuntimeMethod*))MemoryPackWriter_1_DangerousWriteUnmanagedSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mC82F32B3F2C830693F79DF2B577562FFFB66C303_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackSerializationException_ThrowReachedDepthLimit_m6C2218BB68F28BF3D787190047B467A7CA51044F (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m774F73A324062BD75AF0FA48903D9C9056F70577 (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m774F73A324062BD75AF0FA48903D9C9056F70577_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m32FF6C84613320EA404369B17E3ED90B58B06049 (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m32FF6C84613320EA404369B17E3ED90B58B06049_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEECEE87DEFB44346F99B77138291333E52CFF94A (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEECEE87DEFB44346F99B77138291333E52CFF94A_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m9A085600C320307AD71C833F0352693C75103D4C (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m9A085600C320307AD71C833F0352693C75103D4C_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_mBB565E811073C063FC64066CF8B4B03F90A5DCEB (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_mBB565E811073C063FC64066CF8B4B03F90A5DCEB_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m73A8ABEBD43720688CCC1F25FE06A3D882139153 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m73A8ABEBD43720688CCC1F25FE06A3D882139153_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3E4AF62978F92E52CE242CAC83115C8EA6C850A3_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3E4AF62978F92E52CE242CAC83115C8EA6C850A3_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9F4AF128CEBE2B647B7DF4A9D74232DEB3013AEA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9F4AF128CEBE2B647B7DF4A9D74232DEB3013AEA_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mEC9469DBD91362D6135B8F5A81E90486BF328075_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mEC9469DBD91362D6135B8F5A81E90486BF328075_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_Reinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m3D4808CE7773742533C8F35321DF4D9BDEF4122E (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m3D4808CE7773742533C8F35321DF4D9BDEF4122E_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD2AA034A23820A45C4942020372581CA07AA4433 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD2AA034A23820A45C4942020372581CA07AA4433_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mB2AF8CA03DEC485BAD3A37CCBE5CDEBA3C67758C_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mB2AF8CA03DEC485BAD3A37CCBE5CDEBA3C67758C_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_Reinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m7EA98E7E9E0369A617227E0EB1A828E574F3B01B (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m7EA98E7E9E0369A617227E0EB1A828E574F3B01B_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m0B9FC11A134FEF6303B2D3EE1C73D3513515D3AC_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m0B9FC11A134FEF6303B2D3EE1C73D3513515D3AC_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_Reinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m1DC2EDE7D441369C0AF59360E295FCFEAC0E1C5C (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m1DC2EDE7D441369C0AF59360E295FCFEAC0E1C5C_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m5C4C6FA53CA05FE88CA7926E8B1C0DF717B63550 (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m5C4C6FA53CA05FE88CA7926E8B1C0DF717B63550_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C (*) (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0672FA7EF8716D8649D0A61CB1EBFA5CD61A6306 (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C (*) (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0672FA7EF8716D8649D0A61CB1EBFA5CD61A6306_gshared)(__this, method);
|
|
}
|
|
inline NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757 (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF (*) (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14 (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF (*) (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_gshared)(__this, method);
|
|
}
|
|
inline NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913 (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C (*) (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m3A2155B778C72544765AAE3A75BDB08C78C4ED28 (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m3A2155B778C72544765AAE3A75BDB08C78C4ED28_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4 (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 (*) (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mE35B299B99CAE9D89F0CA4CFB9BB037D0FA023AD (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C (*) (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mE35B299B99CAE9D89F0CA4CFB9BB037D0FA023AD_gshared)(__this, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0BD2704CD677D45FAEDAD35D6C7208EE167961F7_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0BD2704CD677D45FAEDAD35D6C7208EE167961F7_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_Reinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4A597B9676D4D59835A397DD5EA6EDACDCE98055 (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 (*) (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4A597B9676D4D59835A397DD5EA6EDACDCE98055_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 (*) (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_m2842DB279BEAD40C9CB39EC85BDE2241798CFFF7_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_m2842DB279BEAD40C9CB39EC85BDE2241798CFFF7_gshared_inline)(method);
|
|
}
|
|
inline NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6F5600ECBB05C242CB83D5BA738085725B3DC6F1 (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 (*) (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6F5600ECBB05C242CB83D5BA738085725B3DC6F1_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_InternalReinterpret_TisIl2CppFullySharedGenericStruct_mB0CDEB18464001F253D27086821B2DEE7C1859E8 (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisIl2CppFullySharedGenericStruct_mB0CDEB18464001F253D27086821B2DEE7C1859E8_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m1FE7062E31411B740E16829B437A95E0BC1FE66E (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m1FE7062E31411B740E16829B437A95E0BC1FE66E_gshared)(__this, method);
|
|
}
|
|
inline NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m0A4282BEF39DA967523E47AF7251C3F5A58651F8 (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m0A4282BEF39DA967523E47AF7251C3F5A58651F8_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m9084C95DCF71501F440D82C0A261927C7987EE6F (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m9084C95DCF71501F440D82C0A261927C7987EE6F_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 (*) (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 (*) (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_gshared)(__this, method);
|
|
}
|
|
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592 (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A*, int32_t, const RuntimeMethod*))NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592_gshared)(__this, ___0_length, method);
|
|
}
|
|
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1CD2FBB9DFE91461C0CB3F1CC4BFCD2A660178E8 (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A*, int32_t, const RuntimeMethod*))NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1CD2FBB9DFE91461C0CB3F1CC4BFCD2A660178E8_gshared)(__this, ___0_expectedTypeSize, method);
|
|
}
|
|
inline UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6AD6F355DA0E33BC54B8685A2C4AC7911121B02 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6AD6F355DA0E33BC54B8685A2C4AC7911121B02_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m18AD05BA5802DEBB3E1FBD1D0B7804F474A92DD8 (NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m18AD05BA5802DEBB3E1FBD1D0B7804F474A92DD8_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4665957ACCB3339258C5F12B1F17DCA8BB06F38B (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4665957ACCB3339258C5F12B1F17DCA8BB06F38B_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m67A3CCF564F9EAC5F0B44322104AD7A377B836EF (NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m67A3CCF564F9EAC5F0B44322104AD7A377B836EF_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m94C56E09C78EF215B2209EE88A359E59436451E1 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m94C56E09C78EF215B2209EE88A359E59436451E1_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8954AD451139BF29FBE86E6405E8ED3493937978 (NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8954AD451139BF29FBE86E6405E8ED3493937978_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC8BCB3A909A1A9CD595CF6E7A9AFB30C21572D99 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC8BCB3A909A1A9CD595CF6E7A9AFB30C21572D99_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC20F039C3774238CCF20E4964208310D17BCB671 (NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC20F039C3774238CCF20E4964208310D17BCB671_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m45958C6099052E558A822FA1093BE152A406C3CE (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m45958C6099052E558A822FA1093BE152A406C3CE_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mCAB87114ECD43D0963842C600BB69B099852D6BB (NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mCAB87114ECD43D0963842C600BB69B099852D6BB_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1F9B74217D635B4807E4D9A7321B1FCCA689191C (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1F9B74217D635B4807E4D9A7321B1FCCA689191C_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8740F1D65218947A863337C24A03A06FAD0F7CE8 (NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8740F1D65218947A863337C24A03A06FAD0F7CE8_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m980D5D9D9FE22089A4BCF7CC2D4778BDECD964E6 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m980D5D9D9FE22089A4BCF7CC2D4778BDECD964E6_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD00D262905C5105DC06F193CE0E6D8189F2581B1 (NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD00D262905C5105DC06F193CE0E6D8189F2581B1_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1FCF4AEAB44F505DBAFE79C974CEA4EF9A2791CE (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1FCF4AEAB44F505DBAFE79C974CEA4EF9A2791CE_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8562D674D98BF1B8FFA0292FED6227B7475D58CE (NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8562D674D98BF1B8FFA0292FED6227B7475D58CE_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC8C6D31CB226B974EEFC892A0A28DA9D125A6B0 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC8C6D31CB226B974EEFC892A0A28DA9D125A6B0_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m212E7DE5541E6AD2D8177A5BDE3F7B11E252532E (NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m212E7DE5541E6AD2D8177A5BDE3F7B11E252532E_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC0AEF19BEAB683B042493023253CA0F9513D288 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC0AEF19BEAB683B042493023253CA0F9513D288_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mA6B869F899031AB0E989998A692FBC4E96A064B9 (NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mA6B869F899031AB0E989998A692FBC4E96A064B9_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFDCBD92CE263DC78726610F1DF009E02CBE79370 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFDCBD92CE263DC78726610F1DF009E02CBE79370_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m652947C438EF33AC352088D2309A51253516B014 (NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m652947C438EF33AC352088D2309A51253516B014_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4DB090110E6F860F89BC396A0B289CD2F76E2B6F (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4DB090110E6F860F89BC396A0B289CD2F76E2B6F_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD9B3D4A8E08B380809B55B97C0CEAD15A9E41BBB (NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD9B3D4A8E08B380809B55B97C0CEAD15A9E41BBB_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7326E88D838EA99F981DF6C9A2C63FE6B211983E (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7326E88D838EA99F981DF6C9A2C63FE6B211983E_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2620B43CDBB522330B8F4F6F133D6394D3B687B5 (NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2620B43CDBB522330B8F4F6F133D6394D3B687B5_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFE43EB8F3871E6B2473C70581E7662F4B037322E (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFE43EB8F3871E6B2473C70581E7662F4B037322E_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2BCD7CE86909EBBA1DAB10F58751FB5EECD8F180 (NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2BCD7CE86909EBBA1DAB10F58751FB5EECD8F180_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m270688BB98BC284DC844ECF1477AE5194149D675 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m270688BB98BC284DC844ECF1477AE5194149D675_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m72CAB2544831F7D09ADA66729DA1A64D0EE5AECE (NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m72CAB2544831F7D09ADA66729DA1A64D0EE5AECE_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m333116543868890A84D6E8DB99A64569D00AA479 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m333116543868890A84D6E8DB99A64569D00AA479_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1D0D13785F6065E7C5E9BA33B94C51D8A85909D3 (NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1D0D13785F6065E7C5E9BA33B94C51D8A85909D3_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m44635865D8BA326C38EAB99915EEACCB7D8B264E (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m44635865D8BA326C38EAB99915EEACCB7D8B264E_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mAF7330F673D2AB3BB9A880D2F4EADDA26CFD9EBC (NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mAF7330F673D2AB3BB9A880D2F4EADDA26CFD9EBC_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m657116052467916447A90150FF803C20C5CEE31B (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m657116052467916447A90150FF803C20C5CEE31B_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF7D1C7183F9248429EF3AB143CB784AA1568DCA7 (NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF7D1C7183F9248429EF3AB143CB784AA1568DCA7_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m307C17F4A16A76027789F559BC82C19040712ED3 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m307C17F4A16A76027789F559BC82C19040712ED3_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m20FE4900544C737948E4C87B376FE73B17A66E8E (NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m20FE4900544C737948E4C87B376FE73B17A66E8E_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m07C8F63E51F1251DA94CCBE4179AD6FCF8F2EB30 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m07C8F63E51F1251DA94CCBE4179AD6FCF8F2EB30_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m14A872A4EAF7A269F1F6F9BFE0ED49F85A04A6C6 (NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m14A872A4EAF7A269F1F6F9BFE0ED49F85A04A6C6_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBDE422E785C9AE9FC69193558A45C144CD485A12 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBDE422E785C9AE9FC69193558A45C144CD485A12_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mABB61BB12976C6588D79849FB8968302C01E75E2 (NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mABB61BB12976C6588D79849FB8968302C01E75E2_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mDBD5820BFDCD05712FD930EBB1480501EE194210 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mDBD5820BFDCD05712FD930EBB1480501EE194210_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFEBBEB7E5ED020350B79CDCAE305AD4B6D77C411 (NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFEBBEB7E5ED020350B79CDCAE305AD4B6D77C411_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m55B2E09FAAE6E34227D59770FCF38FE177A4C2BB (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m55B2E09FAAE6E34227D59770FCF38FE177A4C2BB_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C846E8A1BCDFC3492874AA742AC1EC6EA06D28A (NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C846E8A1BCDFC3492874AA742AC1EC6EA06D28A_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6D10F2B2AE23B17D070908EE78D30AE17050C535 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6D10F2B2AE23B17D070908EE78D30AE17050C535_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC3B5AEDF0BF283FC2A2C10E5F8B5138E83252006 (NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC3B5AEDF0BF283FC2A2C10E5F8B5138E83252006_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m826E2BB83A1EC8F3F77B980C74B2C1B20173F2E0 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m826E2BB83A1EC8F3F77B980C74B2C1B20173F2E0_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7A654038B87E3CAAB01B15C1ACA51BBB02FBB071 (NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7A654038B87E3CAAB01B15C1ACA51BBB02FBB071_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m92CD6E62E9A90F1B8383A394FF69F3C45C443B0D (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m92CD6E62E9A90F1B8383A394FF69F3C45C443B0D_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6BAD277E18F76D4388622AC579FE6D5C1979F1E (NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6BAD277E18F76D4388622AC579FE6D5C1979F1E_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC07086057642BA29F97964F4917ECABB3234C4C6 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC07086057642BA29F97964F4917ECABB3234C4C6_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA90E8883695268AB9A029B28CCE6B97235E3D6E (NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA90E8883695268AB9A029B28CCE6B97235E3D6E_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m571A6231AB80B738F7CF1B22EF880E05DB8D64D8 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m571A6231AB80B738F7CF1B22EF880E05DB8D64D8_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA6EA004C917701A46CAEF8883365C17EC72EF84 (NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA6EA004C917701A46CAEF8883365C17EC72EF84_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m0D6E7B9DB895B65C8B54DADEEC5EA951299A598D (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m0D6E7B9DB895B65C8B54DADEEC5EA951299A598D_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9926CCCB5436863666A1EFA8FBAD4F34EA9E951E (NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9926CCCB5436863666A1EFA8FBAD4F34EA9E951E_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline void NativeList_1_Dispose_TisIl2CppFullySharedGenericStruct_mC1029EC6803B86B2C7577203E6B311E262BE4F65 (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* __this, Il2CppFullySharedGenericStruct* ___0_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1*, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))NativeList_1_Dispose_TisIl2CppFullySharedGenericStruct_mC1029EC6803B86B2C7577203E6B311E262BE4F65_gshared)(__this, ___0_allocator, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisIl2CppFullySharedGenericStruct_m84B39CC62859C7E4EDB87CA79D4F1B31FCCA4C54 (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* __this, int32_t ___0_initialCapacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1*, int32_t, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))NativeList_1_Initialize_TisIl2CppFullySharedGenericStruct_m84B39CC62859C7E4EDB87CA79D4F1B31FCCA4C54_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C39BB1D7DA463EAD661706E568567675FBE414D (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C39BB1D7DA463EAD661706E568567675FBE414D_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7672D85E1E4C258C48EDD041454E5AD0A9F89901 (NativeList_1_tA78554A4805525762FFDFAC177852313219B5383* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tA78554A4805525762FFDFAC177852313219B5383*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7672D85E1E4C258C48EDD041454E5AD0A9F89901_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2C12BEB4BC76831F8DC1E665DC9B75B575449EB4 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2C12BEB4BC76831F8DC1E665DC9B75B575449EB4_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF35BDF60662A2DBD8F49FAD41FD28DC71212F1D8 (NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF35BDF60662A2DBD8F49FAD41FD28DC71212F1D8_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mED01F1FF210FB77A3760AA09388CA150D4B7925F (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mED01F1FF210FB77A3760AA09388CA150D4B7925F_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1736CB8FAF37E6FA9ACE54FF5D23E260C5B15516 (NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1736CB8FAF37E6FA9ACE54FF5D23E260C5B15516_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m037FD5ACBC4B49652DFCA6A6144BD67034E85EFA (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m037FD5ACBC4B49652DFCA6A6144BD67034E85EFA_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m16AE4C5E47FD1D1EA044DBFC343E491F593BE90F (NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m16AE4C5E47FD1D1EA044DBFC343E491F593BE90F_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m81065188E32A96B6794424732ED739711527F2CE (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m81065188E32A96B6794424732ED739711527F2CE_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6258D08944D7A96FE2232389338CB1B747EA53C1 (NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6258D08944D7A96FE2232389338CB1B747EA53C1_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
inline UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7* UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m78EE726E3742E6FEA6CE4417ED298CE305695C07 (int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
return (( UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7* (*) (int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, const RuntimeMethod*))UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m78EE726E3742E6FEA6CE4417ED298CE305695C07_gshared)(___0_initialCapacity, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD3A7F0D95D44C61000BE69C7D033168DC01CECDD (NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD3A7F0D95D44C61000BE69C7D033168DC01CECDD_gshared)(__this, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
|
|
inline void UnsafeParallelMultiHashMap_2__ctor_m5077BDC802F35E115E649B0453FC2247DFE52002 (UnsafeParallelMultiHashMap_2_tAC644254A5A65EC96A9EDD9D83F9C7EA1BF75D8E* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnsafeParallelMultiHashMap_2_tAC644254A5A65EC96A9EDD9D83F9C7EA1BF75D8E*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))UnsafeParallelMultiHashMap_2__ctor_m5077BDC802F35E115E649B0453FC2247DFE52002_gshared)(__this, ___0_capacity, ___1_allocator, method);
|
|
}
|
|
inline void NativeParallelMultiHashMap_2_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m05BE238C6E3FA9BDEC6C93E17DE222799E1C8997 (NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, const RuntimeMethod*))NativeParallelMultiHashMap_2_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m05BE238C6E3FA9BDEC6C93E17DE222799E1C8997_gshared)(__this, ___0_capacity, ___1_allocator, method);
|
|
}
|
|
inline void UnsafeParallelMultiHashMap_2__ctor_m2E9AAA535D5D589B1D9CA34C9CCD9D66CF1DF44B (UnsafeParallelMultiHashMap_2_t4E7810C26A0DC9AFBF2B30BA797D0ACF99B4573F* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnsafeParallelMultiHashMap_2_t4E7810C26A0DC9AFBF2B30BA797D0ACF99B4573F*, int32_t, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))UnsafeParallelMultiHashMap_2__ctor_m2E9AAA535D5D589B1D9CA34C9CCD9D66CF1DF44B_gshared)(__this, ___0_capacity, ___1_allocator, method);
|
|
}
|
|
inline void NativeParallelMultiHashMap_2_Initialize_TisIl2CppFullySharedGenericStruct_m2CC90C1465EF6DD13E90098CD56B88C04A24607C (NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22* __this, int32_t ___0_capacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22*, int32_t, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))NativeParallelMultiHashMap_2_Initialize_TisIl2CppFullySharedGenericStruct_m2CC90C1465EF6DD13E90098CD56B88C04A24607C_gshared)(__this, ___0_capacity, ___1_allocator, method);
|
|
}
|
|
inline void MemoryPackWriter_1_WriteNullObjectHeader_m48D9A3AB6855F349EABE2A1B0F3A5FD85864E985_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))MemoryPackWriter_1_WriteNullObjectHeader_m48D9A3AB6855F349EABE2A1B0F3A5FD85864E985_gshared_inline)(__this, method);
|
|
}
|
|
inline void MemoryPackWriter_1_WriteObjectHeader_mE187B22DEFD5FBF26F62C613AD28333349B388D7_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_memberCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, uint8_t, const RuntimeMethod*))MemoryPackWriter_1_WriteObjectHeader_mE187B22DEFD5FBF26F62C613AD28333349B388D7_gshared_inline)(__this, ___0_memberCount, method);
|
|
}
|
|
inline void OrderedEnumerable_2__ctor_m5A5492A71F9D3F956F16D4F7B1F04BE47AC7FEB7 (OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546* __this, RuntimeObject* ___0_source, Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546*, RuntimeObject*, Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E*, RuntimeObject*, bool, const RuntimeMethod*))OrderedEnumerable_2__ctor_m5A5492A71F9D3F956F16D4F7B1F04BE47AC7FEB7_gshared)(__this, ___0_source, ___1_keySelector, ___2_comparer, ___3_descending, method);
|
|
}
|
|
inline void OrderedEnumerable_2__ctor_mBE93BE0656C7137FCB68076DDD39D1CEB5BBB3F6 (OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC* __this, RuntimeObject* ___0_source, Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC*, RuntimeObject*, Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7*, RuntimeObject*, bool, const RuntimeMethod*))OrderedEnumerable_2__ctor_mBE93BE0656C7137FCB68076DDD39D1CEB5BBB3F6_gshared)(__this, ___0_source, ___1_keySelector, ___2_comparer, ___3_descending, method);
|
|
}
|
|
inline void OrderedEnumerable_2__ctor_m0FEDB4E6B2EAC112C01BF5AC4605305543466402 (OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692* __this, RuntimeObject* ___0_source, Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692*, RuntimeObject*, Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F*, RuntimeObject*, bool, const RuntimeMethod*))OrderedEnumerable_2__ctor_m0FEDB4E6B2EAC112C01BF5AC4605305543466402_gshared)(__this, ___0_source, ___1_keySelector, ___2_comparer, ___3_descending, method);
|
|
}
|
|
inline void OrderedEnumerable_2__ctor_mA4C9424073C1ADF71C6D1C4A093AFC11BFA78162 (OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29* __this, RuntimeObject* ___0_source, Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29*, RuntimeObject*, Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609*, RuntimeObject*, bool, const RuntimeMethod*))OrderedEnumerable_2__ctor_mA4C9424073C1ADF71C6D1C4A093AFC11BFA78162_gshared)(__this, ___0_source, ___1_keySelector, ___2_comparer, ___3_descending, method);
|
|
}
|
|
inline void OrderedEnumerable_2__ctor_m74A1E4ECECDEE6443DD3588E46C32D34F3CAAAAF (OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA* __this, RuntimeObject* ___0_source, Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA*, RuntimeObject*, Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0*, RuntimeObject*, bool, const RuntimeMethod*))OrderedEnumerable_2__ctor_m74A1E4ECECDEE6443DD3588E46C32D34F3CAAAAF_gshared)(__this, ___0_source, ___1_keySelector, ___2_comparer, ___3_descending, method);
|
|
}
|
|
inline void OrderedEnumerable_2__ctor_mDBD22B8FD21EB8AA78E215E6189E6A53CC537403 (OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1* __this, RuntimeObject* ___0_source, Func_2_tB86D019F1289E2D123C00796B373933613385952* ___1_keySelector, RuntimeObject* ___2_comparer, bool ___3_descending, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1*, RuntimeObject*, Func_2_tB86D019F1289E2D123C00796B373933613385952*, RuntimeObject*, bool, const RuntimeMethod*))OrderedEnumerable_2__ctor_mDBD22B8FD21EB8AA78E215E6189E6A53CC537403_gshared)(__this, ___0_source, ___1_keySelector, ___2_comparer, ___3_descending, method);
|
|
}
|
|
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E (List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* (*) (List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline int32_t List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_inline (List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeUtility_GetTypeDisplayName_m45C565A0737008926DD1D4CA6B453A475C8E77FD (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PathVisitor_set_ReturnCode_mB5629AE0124C70E479D9C4D44A8E552DA8BA19E0_inline (PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t82FE1DCC76AE9AF3DDDA1472151EEF68858CE976_mF406F4A8EEDB21069BF045968FB3647C0C412AB5 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_t82FE1DCC76AE9AF3DDDA1472151EEF68858CE976_mF406F4A8EEDB21069BF045968FB3647C0C412AB5_gshared)(method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_gshared_inline)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304 (int64_t ___0_getHashCode64, int64_t ___1_getSubHashCode64, uint32_t ___2_sizeOf, uint32_t ___3_alignment, const RuntimeMethod* method) ;
|
|
inline void SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline (SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0* __this, void* ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0*, void*, const RuntimeMethod*))SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_gshared_inline)(__this, ___0_buffer, method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t531492AAE2A0CC46F30E1151715140443DF9EBDE_m197451F45A6299E4DFC983447A2B1235A2E701F5 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_t531492AAE2A0CC46F30E1151715140443DF9EBDE_m197451F45A6299E4DFC983447A2B1235A2E701F5_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_tFA026EED004440AB13FB96680FBB802EC06A0637_mB27A7FF33AAB386045C7BA54F75FB7741AF795F6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_tFA026EED004440AB13FB96680FBB802EC06A0637_mB27A7FF33AAB386045C7BA54F75FB7741AF795F6_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_tAB70A942463BA39DC3970BA6B694CFE5D0D966DD_m786D0CBF87B2E6BFCA616B6D8D6F4132F58DB29A (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_tAB70A942463BA39DC3970BA6B694CFE5D0D966DD_m786D0CBF87B2E6BFCA616B6D8D6F4132F58DB29A_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t6E436619321F6CA11F646C1D0865C3B46ED2499F_m368D6F5F31DECCC50791A2FC184DE5274DA0A313 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_t6E436619321F6CA11F646C1D0865C3B46ED2499F_m368D6F5F31DECCC50791A2FC184DE5274DA0A313_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t0827DBBBCFCD98D0F017FC5D16C42BF77EF3C7CB_m502E3720DA119E62B3950310E875FCD9F7730638 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_t0827DBBBCFCD98D0F017FC5D16C42BF77EF3C7CB_m502E3720DA119E62B3950310E875FCD9F7730638_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t7D4041DF12531E7E97FBE35B3D9BEE667D648D1C_m87B66E17E92304247CFE304E03375B5ADC85B844 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_t7D4041DF12531E7E97FBE35B3D9BEE667D648D1C_m87B66E17E92304247CFE304E03375B5ADC85B844_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_t071E29BF77D320738D7C5491E147758B1DF5A972_mAC32C7C3D3791BFA6903ACD4B038F7C44F2E5029 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_t071E29BF77D320738D7C5491E147758B1DF5A972_mAC32C7C3D3791BFA6903ACD4B038F7C44F2E5029_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisForJobStruct_1_tF0D5C70B0548157708D433CE2F9B065804239845_m488BD3FCCAD1B7B5720EB3BA57F1E1547EE28C17 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisForJobStruct_1_tF0D5C70B0548157708D433CE2F9B065804239845_m488BD3FCCAD1B7B5720EB3BA57F1E1547EE28C17_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB335BE3E222FEFFBA94D48B738E26C60BB280AD4_mCED504886A1F077D04BE6D54EA15A0C341D74230 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tB335BE3E222FEFFBA94D48B738E26C60BB280AD4_mCED504886A1F077D04BE6D54EA15A0C341D74230_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB1699C1806AA3CB8C55AED0C5D71EF39FD806967_m6D5F673469DBCE69EA53D3E0DC781C519D7ED84D (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tB1699C1806AA3CB8C55AED0C5D71EF39FD806967_m6D5F673469DBCE69EA53D3E0DC781C519D7ED84D_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0E023EEFF5856D3A06085DB7B9BB8AE0F3A36A92_m83BEF73EFC16965A7D1288EC81C1F5597C702D16 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t0E023EEFF5856D3A06085DB7B9BB8AE0F3A36A92_m83BEF73EFC16965A7D1288EC81C1F5597C702D16_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t3D164E442296852B02B541BD69992113751E8D09_mBFB092F8DBBA717C8D4E6AD6CC012331906FC26B (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t3D164E442296852B02B541BD69992113751E8D09_mBFB092F8DBBA717C8D4E6AD6CC012331906FC26B_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t9ED727D56D4E63907D11A47FADD26F3A1778FCA6_mC3EC3BAEEFF3DFFB8D871C1C68C50EC16D8BA669 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t9ED727D56D4E63907D11A47FADD26F3A1778FCA6_mC3EC3BAEEFF3DFFB8D871C1C68C50EC16D8BA669_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0E1EA68CC733192D5C0DC9BE19DEE329F74C074D_m988F1957834AD1F8063D2B90A11D3C99A5D9DF1B (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t0E1EA68CC733192D5C0DC9BE19DEE329F74C074D_m988F1957834AD1F8063D2B90A11D3C99A5D9DF1B_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t00917949B940AC19091B997DCFD370DFECE38FE9_m3C646029675CC25C9D06BE2B7C4B34752E8A9255 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t00917949B940AC19091B997DCFD370DFECE38FE9_m3C646029675CC25C9D06BE2B7C4B34752E8A9255_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t6EB9A6D4E1ECE62B02A7E3ACBEB37B6B25B89E7F_m1327474A75AFE89176F5E070BCCFEC18E2E9E363 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t6EB9A6D4E1ECE62B02A7E3ACBEB37B6B25B89E7F_m1327474A75AFE89176F5E070BCCFEC18E2E9E363_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t890D9223E4EB910E7788D46FA6ABDEDE1352182A_m96514D159AD286C785D797E437C10095BE5D8E5C (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t890D9223E4EB910E7788D46FA6ABDEDE1352182A_m96514D159AD286C785D797E437C10095BE5D8E5C_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t9C24DB4B7EE6A1CD756F9C6708F31C9AEE702F66_m32735A0D7E89B780F844FA90D4A39893F6D1ACBD (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t9C24DB4B7EE6A1CD756F9C6708F31C9AEE702F66_m32735A0D7E89B780F844FA90D4A39893F6D1ACBD_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t5B7D8154095323B2AF129E93B24BC93BA2F1B833_mDDE7E31F4DA7BB727499E6D568971B4CD3415B6D (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t5B7D8154095323B2AF129E93B24BC93BA2F1B833_mDDE7E31F4DA7BB727499E6D568971B4CD3415B6D_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t8B199FB4EF242DFFFAD1DCD519F636EAD8F17289_mD6AAE56D82AF54522E2E58548C6EF765B39979C6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t8B199FB4EF242DFFFAD1DCD519F636EAD8F17289_mD6AAE56D82AF54522E2E58548C6EF765B39979C6_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t424D70E5F52FE05C9A6F5A74306B282E536A5950_m3371C825174AF1CC12C4CF523B770EA787B74D24 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t424D70E5F52FE05C9A6F5A74306B282E536A5950_m3371C825174AF1CC12C4CF523B770EA787B74D24_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t4C0B7BF9853E55BE375E3304E31593FEFCD76E16_m452BCDE130A057AC5D39927415370370E5F354A8 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t4C0B7BF9853E55BE375E3304E31593FEFCD76E16_m452BCDE130A057AC5D39927415370370E5F354A8_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tA47F731959268B5473E0B848F4BB1867DC24BA49_m0ADB08E94B58501A9EEDBBE3CCA26FA2F2F6E01C (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tA47F731959268B5473E0B848F4BB1867DC24BA49_m0ADB08E94B58501A9EEDBBE3CCA26FA2F2F6E01C_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tBC50FEEFF2AB4106501ECCC5C93C49514F3A95E9_m71700B6DF639242958DBBAF0D70B708FBCA8836F (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tBC50FEEFF2AB4106501ECCC5C93C49514F3A95E9_m71700B6DF639242958DBBAF0D70B708FBCA8836F_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t8945D0C1062873D441B458483BA77CECF20CF088_m099D22518DABE349D2EBC1348091BB7AB19600A6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t8945D0C1062873D441B458483BA77CECF20CF088_m099D22518DABE349D2EBC1348091BB7AB19600A6_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0FA796943B0D2D4AF0282F204C8777E2571688D7_m1ACD092F5C667A34D4D34B762F7BE433DDB8E862 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t0FA796943B0D2D4AF0282F204C8777E2571688D7_m1ACD092F5C667A34D4D34B762F7BE433DDB8E862_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB0658A7306F669774009ADA5DB6E265BA665FD31_mEE5EB1CDD0123FC328BC532FD3C38DE0BA22F956 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tB0658A7306F669774009ADA5DB6E265BA665FD31_mEE5EB1CDD0123FC328BC532FD3C38DE0BA22F956_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tCF007F6FD9F2D7FE1B2F0674ED2A883398ECD985_m41F6B8256DA51907C52548DD3610E514BC1CAC3F (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tCF007F6FD9F2D7FE1B2F0674ED2A883398ECD985_m41F6B8256DA51907C52548DD3610E514BC1CAC3F_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t7DA9941879B20347789683661078D0F3B528FA92_mEE7AA46A6B6D93672B53EED9FE5F5A72E6BE93D6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t7DA9941879B20347789683661078D0F3B528FA92_mEE7AA46A6B6D93672B53EED9FE5F5A72E6BE93D6_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t991D9919F0467821B9AA3F6C283A7962DD7A5746_m90F7668BA98B6909311FB180037DE1A5F682F582 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t991D9919F0467821B9AA3F6C283A7962DD7A5746_m90F7668BA98B6909311FB180037DE1A5F682F582_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t0750E8E7DE99CDD37B3DBB824068FA88E9F6E4C1_mCE67FB6A75ADEBFF5E71F4655846A3C5F7090CDA (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t0750E8E7DE99CDD37B3DBB824068FA88E9F6E4C1_mCE67FB6A75ADEBFF5E71F4655846A3C5F7090CDA_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t380B6860108F97119E394D7D76E7A978EA6B5E0D_m2E8EDEC8017939B4524DD7D00F9210996533A958 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t380B6860108F97119E394D7D76E7A978EA6B5E0D_m2E8EDEC8017939B4524DD7D00F9210996533A958_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tA216BB13EE9189155009913CD6BCE46B6667EC2E_m38D4B9F331E31CA49067312E853CE17C5D7140E6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tA216BB13EE9189155009913CD6BCE46B6667EC2E_m38D4B9F331E31CA49067312E853CE17C5D7140E6_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t4893E7C416E7915C2BE94817517EC2CAEEA9038D_mA0A18913D2D0AB9A96A68D300970949DFD57D129 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t4893E7C416E7915C2BE94817517EC2CAEEA9038D_mA0A18913D2D0AB9A96A68D300970949DFD57D129_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t50BE75CA652DEB31071FA579130333FA79653079_m80A3ED26E7050BFD31FDDAAE2E8414BB7AAE1860 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t50BE75CA652DEB31071FA579130333FA79653079_m80A3ED26E7050BFD31FDDAAE2E8414BB7AAE1860_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t9EB5C9ED29911125326893A8E77EE2D636BCD32F_mE66202E3C3E907DEC5EDB2C0A8715F114B4AE6EF (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t9EB5C9ED29911125326893A8E77EE2D636BCD32F_mE66202E3C3E907DEC5EDB2C0A8715F114B4AE6EF_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tEE5084685EBD9FAF27CCA92C7DEFED901EFD9518_m57CE2E44B682A8897C79E6219D28332A4FE117FE (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tEE5084685EBD9FAF27CCA92C7DEFED901EFD9518_m57CE2E44B682A8897C79E6219D28332A4FE117FE_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tE9B102673F655EDBF297325B9BAC26D3EB778B06_mDF93F1372A78E3147EE964B10FDD47C11A560BAD (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tE9B102673F655EDBF297325B9BAC26D3EB778B06_mDF93F1372A78E3147EE964B10FDD47C11A560BAD_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_tB734C09BFD6922AB895D644BDDE01AC7A8510C72_m70C39B892FC51A321297F6E0BC020F011F5D5DC7 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_tB734C09BFD6922AB895D644BDDE01AC7A8510C72_m70C39B892FC51A321297F6E0BC020F011F5D5DC7_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t26D49AAB3F1B079B680DAE4C2A28F2CAE89DDA72_m20CBFF16570F598FA2A8824BF4784C09E62FCA76 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t26D49AAB3F1B079B680DAE4C2A28F2CAE89DDA72_m20CBFF16570F598FA2A8824BF4784C09E62FCA76_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t7FF8E576D3C8BC4DD24F19FD6E0906888CAC2717_m48C2320147024B006FF2AB2AE1912119619621AB (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t7FF8E576D3C8BC4DD24F19FD6E0906888CAC2717_m48C2320147024B006FF2AB2AE1912119619621AB_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t256A7C289152588D86B81F532D204650E6E00EB3_mFCA610F77730580DC1EC779587CF0AF8FFE68852 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t256A7C289152588D86B81F532D204650E6E00EB3_mFCA610F77730580DC1EC779587CF0AF8FFE68852_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobStruct_1_t1AD15154F5FCF717FDB6B0B280C49766B4D14137_m121BAD3952F93497FCBC7390F47A4F41D95E2942 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobStruct_1_t1AD15154F5FCF717FDB6B0B280C49766B4D14137_m121BAD3952F93497FCBC7390F47A4F41D95E2942_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A3199F0D7FD487CFB500FD748B5B2003C22EE55_m5DA1232DB7123C86B109DF95CE22F7F5E4E37E4D (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A3199F0D7FD487CFB500FD748B5B2003C22EE55_m5DA1232DB7123C86B109DF95CE22F7F5E4E37E4D_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t61B5A4A610410E1B5E86A3665C45C3803C7592EE_m8AB400511890A46364109096F8368C4CA63167EB (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t61B5A4A610410E1B5E86A3665C45C3803C7592EE_m8AB400511890A46364109096F8368C4CA63167EB_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE984E806290C7040E2250FBF1CD156D4A87ABBE3_m56DBA8A70CE0395345DB4653A6D256512E190674 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE984E806290C7040E2250FBF1CD156D4A87ABBE3_m56DBA8A70CE0395345DB4653A6D256512E190674_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tB4C2158B416D17DDD248CD1F2E0DFEF8327BC4D6_m4561829ED91A55C7CFBD45460A6F4F79FCA7D82E (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tB4C2158B416D17DDD248CD1F2E0DFEF8327BC4D6_m4561829ED91A55C7CFBD45460A6F4F79FCA7D82E_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t27C350DE7B8F627BFCE779F296EE44797353D1D0_m193CCE88074CAFF2BBC5CC7767436D45280E3187 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t27C350DE7B8F627BFCE779F296EE44797353D1D0_m193CCE88074CAFF2BBC5CC7767436D45280E3187_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t38084700F299A46ADC6D51D6FD7EB3D0F9962EDC_m39892862746C23F37D72D90975D5AF814FAE566E (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t38084700F299A46ADC6D51D6FD7EB3D0F9962EDC_m39892862746C23F37D72D90975D5AF814FAE566E_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t2697899555706F25E6AE86F2432578842EC621D1_m81120983BCB0CC307EBDE9A9161E31149D575AD4 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t2697899555706F25E6AE86F2432578842EC621D1_m81120983BCB0CC307EBDE9A9161E31149D575AD4_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tACC0AEB51A3D8EF191C11C9C8B6358DFC00DACCC_m812FE05A1D9B245688F790744CF276DB21D0AA5C (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tACC0AEB51A3D8EF191C11C9C8B6358DFC00DACCC_m812FE05A1D9B245688F790744CF276DB21D0AA5C_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t961692D3952C1F6D4F30B6BAC07E9CD186C66F31_m9B85B3F2F624D2A830B87CF38F3AF795C2DF3DF7 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t961692D3952C1F6D4F30B6BAC07E9CD186C66F31_m9B85B3F2F624D2A830B87CF38F3AF795C2DF3DF7_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E9CB87132A33EEF9E532A3A703C0D285ADB71E2_m42A47534A1D14217F01678F9E49A69A9978FDC93 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E9CB87132A33EEF9E532A3A703C0D285ADB71E2_m42A47534A1D14217F01678F9E49A69A9978FDC93_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t758AE7966A2E22F06595DCBFF5CDD219207B71E2_m0074981E038B03BE3BD7A3722F34BBA7B030CA70 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t758AE7966A2E22F06595DCBFF5CDD219207B71E2_m0074981E038B03BE3BD7A3722F34BBA7B030CA70_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t509445D2125F0871131DA13B592FA4A9657F5AA3_m76EA61813D784CD25276DF68FD2116ED3C6930D6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t509445D2125F0871131DA13B592FA4A9657F5AA3_m76EA61813D784CD25276DF68FD2116ED3C6930D6_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7A9FF3D868A2F2AD69ED514B7607FD35D7819143_m3BA4B2B37F1F68CAE2E1E8B297BAF68F76E25038 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7A9FF3D868A2F2AD69ED514B7607FD35D7819143_m3BA4B2B37F1F68CAE2E1E8B297BAF68F76E25038_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE3940B0A77A7F084149FB706BF7F1382C2CC6894_m3A569E9347079D503672607881ECA776C2B198E8 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE3940B0A77A7F084149FB706BF7F1382C2CC6894_m3A569E9347079D503672607881ECA776C2B198E8_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t81FACA0319AA796083C8ECE95C995DB3542D8A2E_m63FE0B207F291F915D0805D84B8EA4CC93F6388F (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t81FACA0319AA796083C8ECE95C995DB3542D8A2E_m63FE0B207F291F915D0805D84B8EA4CC93F6388F_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A21E4E3B137372075645DE6FE4A22ADC4598532_m33C2BFC6B23318AB472027B0E2DFA7EDD03A3A84 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A21E4E3B137372075645DE6FE4A22ADC4598532_m33C2BFC6B23318AB472027B0E2DFA7EDD03A3A84_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E5F4A6DEFCAEEFDA5D7D16F86D49AF6F18DFBA0_mC868D7951E7B13E58A1845BA8CDA43F54206ECD9 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E5F4A6DEFCAEEFDA5D7D16F86D49AF6F18DFBA0_mC868D7951E7B13E58A1845BA8CDA43F54206ECD9_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t194E9263F9E278076331CFC3296E74ABAA89D391_mF521C55221FF0D0F2200C5A5881E77D03F6F1742 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t194E9263F9E278076331CFC3296E74ABAA89D391_mF521C55221FF0D0F2200C5A5881E77D03F6F1742_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7CE30E4F7E5070AEDF18707A56561EF7C715ADD9_mBA8A54E3552535D1AF17EA90471BBD5D90A1EBA1 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7CE30E4F7E5070AEDF18707A56561EF7C715ADD9_mBA8A54E3552535D1AF17EA90471BBD5D90A1EBA1_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t64F389F7CF0153EAF6AB628929F2873F0FD9A0A3_m5CB40651FAD4BD498147C7FD32D719ED2FBB9593 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t64F389F7CF0153EAF6AB628929F2873F0FD9A0A3_m5CB40651FAD4BD498147C7FD32D719ED2FBB9593_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t5FAFA25EADD61355075A981C5FDE8B3024C58F34_m841756BC0676293AB7A0012F688C3DCE69D1693A (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t5FAFA25EADD61355075A981C5FDE8B3024C58F34_m841756BC0676293AB7A0012F688C3DCE69D1693A_gshared)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisTransformParallelForLoopStruct_1_tB280C75DF37D8BB52EB670F970BDBDA72C40572E_m06EC66901E593B74D8BA09605435B77C5E846EEF (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisTransformParallelForLoopStruct_1_tB280C75DF37D8BB52EB670F970BDBDA72C40572E_m06EC66901E593B74D8BA09605435B77C5E846EEF_gshared)(method);
|
|
}
|
|
inline void SharedStatic_1__ctor_m467F9A64986F442AA4853C5C314D0A54D887CDDC_inline (SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08* __this, void* ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08*, void*, const RuntimeMethod*))SharedStatic_1__ctor_m467F9A64986F442AA4853C5C314D0A54D887CDDC_gshared_inline)(__this, ___0_buffer, method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t0BC9036A453E1965D76D9B3BE6C780F42C402BBD_m6A163700BA4F18E3DF651E0D197DA2D234B9DD7C_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t0BC9036A453E1965D76D9B3BE6C780F42C402BBD_m6A163700BA4F18E3DF651E0D197DA2D234B9DD7C_gshared_inline)(method);
|
|
}
|
|
inline SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9 (uint32_t ___0_alignment, int64_t ___1_hashCode, int64_t ___2_subHashCode, const RuntimeMethod* method)
|
|
{
|
|
return (( SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F (*) (uint32_t, int64_t, int64_t, const RuntimeMethod*))SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9_gshared)(___0_alignment, ___1_hashCode, ___2_subHashCode, method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE832AA34CAE2057E4F9E9B490B1B284D43B961AB_m9B60F0D4B41D3F3A027331725767A4FEBEC97D8B_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE832AA34CAE2057E4F9E9B490B1B284D43B961AB_m9B60F0D4B41D3F3A027331725767A4FEBEC97D8B_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t97F62BD9B81457B3C951E4731A189682A75B0618_m452E81BDA5B4D572CBC1C0B2FA4D5609D578A502_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t97F62BD9B81457B3C951E4731A189682A75B0618_m452E81BDA5B4D572CBC1C0B2FA4D5609D578A502_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t4B219CBD450518068824DE0C112518BC2384C721_mE16070B428834E590A710A12F880FFDB3DE9F24F_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t4B219CBD450518068824DE0C112518BC2384C721_mE16070B428834E590A710A12F880FFDB3DE9F24F_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t2D0A24921EF91E7ECCFCEC7F881A27622B8F2A70_mB967F2697C91AB840A9202023B02D8465000F449_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t2D0A24921EF91E7ECCFCEC7F881A27622B8F2A70_mB967F2697C91AB840A9202023B02D8465000F449_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t58F74E58E137EF1DE356A985ABA4748586462B89_mF8D2B2184797A3249B22C20E9CE3037E58760AB5_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t58F74E58E137EF1DE356A985ABA4748586462B89_mF8D2B2184797A3249B22C20E9CE3037E58760AB5_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t69439B0894C33F9B27AD85917AD7E0DAE9016112_mAF531E97828F6EA873611A4571BDDD25F990D368_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t69439B0894C33F9B27AD85917AD7E0DAE9016112_mAF531E97828F6EA873611A4571BDDD25F990D368_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t655382769C4282682A84F553F5FF0B1AB97370EA_m9ACB4FE7846789D8E3F49F5DED3B35839E51B0E6_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t655382769C4282682A84F553F5FF0B1AB97370EA_m9ACB4FE7846789D8E3F49F5DED3B35839E51B0E6_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t3E06B0B953E3304DB73E71071FC7DB2646022C2C_mAB129228331E6149CB76835022FC9F8E60D2B347_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t3E06B0B953E3304DB73E71071FC7DB2646022C2C_mAB129228331E6149CB76835022FC9F8E60D2B347_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t18FA6B9845CACA8547C4FAEAC0C5FF7C6E487DAF_m5764084E845D08310A8F59782C5314965084EFE7_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t18FA6B9845CACA8547C4FAEAC0C5FF7C6E487DAF_m5764084E845D08310A8F59782C5314965084EFE7_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t1CDF7FDFE988A5218A7D870586CD04293F25682E_mB3F1D65A7AF0C35CE47E0AAD490420B640CF00C1_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t1CDF7FDFE988A5218A7D870586CD04293F25682E_mB3F1D65A7AF0C35CE47E0AAD490420B640CF00C1_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE8D83243564C34800FF950A808D4733A2ACB852D_mB6A684433C5061494098A9D16C1215872FC44AB3_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE8D83243564C34800FF950A808D4733A2ACB852D_mB6A684433C5061494098A9D16C1215872FC44AB3_gshared_inline)(method);
|
|
}
|
|
inline int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t93B90034EC7615CA68546F4CF38E2C812CB52105_m0460A39EC62EA75F5D6D35DE720B842933C70F79_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t93B90034EC7615CA68546F4CF38E2C812CB52105_m0460A39EC62EA75F5D6D35DE720B842933C70F79_gshared_inline)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* SharedStatic_GetOrCreateSharedStaticInternal_m9850783202F2E2DCA43597CD97C129C683D6FEBD (int64_t ___0_getHashCode64, int64_t ___1_getSubHashCode64, uint32_t ___2_sizeOf, uint32_t ___3_alignment, const RuntimeMethod* method) ;
|
|
inline void SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_inline (SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C* __this, void* ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C*, void*, const RuntimeMethod*))SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_gshared_inline)(__this, ___0_buffer, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m9FEA65DB96264479B5268014F10754787382D297 (RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline void SimpleFSM_1_Resize_m05B689A45EE8651368C8D9A97B6A9D48A59E7204 (SimpleFSM_1_t7189BE3EE4E867D6B5132034F7212E9B016B94AC* __this, int32_t ___0_minCapacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SimpleFSM_1_t7189BE3EE4E867D6B5132034F7212E9B016B94AC*, int32_t, const RuntimeMethod*))SimpleFSM_1_Resize_m05B689A45EE8651368C8D9A97B6A9D48A59E7204_gshared)(__this, ___0_minCapacity, method);
|
|
}
|
|
inline RuntimeObject* Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138 (const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (const RuntimeMethod*))Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138_gshared)(method);
|
|
}
|
|
inline void Enumerator_Dispose_m7C0F723CD15AC0F1B5F6D2937235CFD7306329E5 (Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4*, const RuntimeMethod*))Enumerator_Dispose_m7C0F723CD15AC0F1B5F6D2937235CFD7306329E5_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m1B66D14092A623BE5F8A22939E7A7A57B47232BE (Enumerator_t71F09436B846CE1804083C9B36997E4573540582* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t71F09436B846CE1804083C9B36997E4573540582*, const RuntimeMethod*))Enumerator_Dispose_m1B66D14092A623BE5F8A22939E7A7A57B47232BE_gshared)(__this, method);
|
|
}
|
|
inline void FromAsyncTrimPromise_1__ctor_mB70C0819ACF4C395D239289203F9819BB3499891 (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* __this, RuntimeObject* ___0_thisRef, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* ___1_endMethod, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2*, RuntimeObject*, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1*, const RuntimeMethod*))FromAsyncTrimPromise_1__ctor_mB70C0819ACF4C395D239289203F9819BB3499891_gshared)(__this, ___0_thisRef, ___1_endMethod, method);
|
|
}
|
|
inline RuntimeObject* Func_5_Invoke_mF4497C19D277F476C482EF59ACB37E92694AAF87_inline (Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748* __this, RuntimeObject* ___0_arg1, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 ___1_arg2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748*, RuntimeObject*, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject*, const RuntimeMethod*))Func_5_Invoke_m392D0C4E7D4413D3636EE05EC3A70F8D58CC74A1_gshared_inline)(__this, ___0_arg1, ___1_arg2, ___2_arg3, ___3_arg4, method);
|
|
}
|
|
inline void FromAsyncTrimPromise_1_Complete_m56AE76FCEF30ABD41523638898E9B529F718D951 (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* __this, RuntimeObject* ___0_thisRef, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* ___1_endMethod, RuntimeObject* ___2_asyncResult, bool ___3_requiresSynchronization, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2*, RuntimeObject*, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1*, RuntimeObject*, bool, const RuntimeMethod*))FromAsyncTrimPromise_1_Complete_m56AE76FCEF30ABD41523638898E9B529F718D951_gshared)(__this, ___0_thisRef, ___1_endMethod, ___2_asyncResult, ___3_requiresSynchronization, method);
|
|
}
|
|
inline Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* TaskFactory_1_FromAsyncImpl_TisRuntimeObject_m2A8BC78767980FEF02961056F231ABBFD568A5CB (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* ___0_beginMethod, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, RuntimeObject* ___3_arg1, RuntimeObject* ___4_state, int32_t ___5_creationOptions, const RuntimeMethod* method)
|
|
{
|
|
return (( Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* (*) (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D*, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, RuntimeObject*, RuntimeObject*, int32_t, const RuntimeMethod*))TaskFactory_1_FromAsyncImpl_TisRuntimeObject_m2A8BC78767980FEF02961056F231ABBFD568A5CB_gshared)(___0_beginMethod, ___1_endFunction, ___2_endAction, ___3_arg1, ___4_state, ___5_creationOptions, method);
|
|
}
|
|
inline void U3CU3Ec__DisplayClass38_0_1__ctor_mBB8552CCE9B72174252EB2543299D93837DF77E2 (U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC*, const RuntimeMethod*))U3CU3Ec__DisplayClass38_0_1__ctor_mBB8552CCE9B72174252EB2543299D93837DF77E2_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckFromAsyncOptions_m4A9F58FE062B3FA48BE85BA90A45F842AFC8D372 (int32_t ___0_creationOptions, bool ___1_hasBeginMethod, const RuntimeMethod* method) ;
|
|
inline void Task_1__ctor_m7A65D2C0E3F203AD5EFAF7F28D3D62D9E8C65F80 (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, RuntimeObject* ___0_state, int32_t ___1_options, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, int32_t, const RuntimeMethod*))Task_1__ctor_m7A65D2C0E3F203AD5EFAF7F28D3D62D9E8C65F80_gshared)(__this, ___0_state, ___1_options, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerSupport_TraceOperationCreation_m311097028455DBEED9480F6315649693464F2C06 (int32_t ___0_traceLevel, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___1_task, String_t* ___2_operationName, uint64_t ___3_relatedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebuggerSupport_AddToActiveTasks_mF592C309CB2AE9C85563BE114DDDB6D226AD9E3E_inline (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* Func_4_Invoke_m8FCEF932E38FD951EC24B33A5F705D7F0B7379FC_inline (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* __this, RuntimeObject* ___0_arg1, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___1_arg2, RuntimeObject* ___2_arg3, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D*, RuntimeObject*, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject*, const RuntimeMethod*))Func_4_Invoke_m9BAD5BBD30933FE9049B012CD3316FB2F24F3B8A_gshared_inline)(__this, ___0_arg1, ___1_arg2, ___2_arg3, method);
|
|
}
|
|
inline void TaskFactory_1_FromAsyncCoreLogic_mA518E3A5F3C963950D8B9D56203B84428CA73782 (RuntimeObject* ___0_iar, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___3_promise, bool ___4_requiresSynchronization, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RuntimeObject*, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, bool, const RuntimeMethod*))TaskFactory_1_FromAsyncCoreLogic_mA518E3A5F3C963950D8B9D56203B84428CA73782_gshared)(___0_iar, ___1_endFunction, ___2_endAction, ___3_promise, ___4_requiresSynchronization, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerSupport_TraceOperationCompletion_m7047A96BCB7DC4835B38D1B965B4BC3049AF62CB (int32_t ___0_traceLevel, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___1_task, int32_t ___2_status, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebuggerSupport_RemoveFromActiveTasks_m19229D30DAA2447DDAB524F2A0E9718D070A1251_inline (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method) ;
|
|
inline bool Task_1_TrySetResult_m2EE766FD3F76F4824990F4A93ED1F7253ECE014C (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Task_1_TrySetResult_m2EE766FD3F76F4824990F4A93ED1F7253ECE014C_gshared)(__this, ___0_result, method);
|
|
}
|
|
inline Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* TaskFactory_1_FromAsyncImpl_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m00CC21AD1300E72E7B502B47A4E8A60EAC29A624 (Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* ___0_beginMethod, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___3_arg1, int32_t ___4_arg2, RuntimeObject* ___5_state, int32_t ___6_creationOptions, const RuntimeMethod* method)
|
|
{
|
|
return (( Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* (*) (Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4*, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093, int32_t, RuntimeObject*, int32_t, const RuntimeMethod*))TaskFactory_1_FromAsyncImpl_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m00CC21AD1300E72E7B502B47A4E8A60EAC29A624_gshared)(___0_beginMethod, ___1_endFunction, ___2_endAction, ___3_arg1, ___4_arg2, ___5_state, ___6_creationOptions, method);
|
|
}
|
|
inline void U3CU3Ec__DisplayClass41_0_2__ctor_m536B6CAAB0591D40CCDD777F86131E06307A299D (U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E*, const RuntimeMethod*))U3CU3Ec__DisplayClass41_0_2__ctor_m536B6CAAB0591D40CCDD777F86131E06307A299D_gshared)(__this, method);
|
|
}
|
|
inline void Task_1__ctor_m698B606B2774E066B369294BD237EA3DCCD490E0 (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* __this, RuntimeObject* ___0_state, int32_t ___1_options, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB*, RuntimeObject*, int32_t, const RuntimeMethod*))Task_1__ctor_m698B606B2774E066B369294BD237EA3DCCD490E0_gshared)(__this, ___0_state, ___1_options, method);
|
|
}
|
|
inline RuntimeObject* Func_5_Invoke_m8F7F0E992AC1EA4BDC5C2EC54327DA35AD4BA0CA_inline (Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* __this, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___0_arg1, int32_t ___1_arg2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4*, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093, int32_t, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject*, const RuntimeMethod*))Func_5_Invoke_mB0C00A2FFE86A20244AFAFC02C3F0DCF75C7D86B_gshared_inline)(__this, ___0_arg1, ___1_arg2, ___2_arg3, ___3_arg4, method);
|
|
}
|
|
inline void TaskFactory_1_FromAsyncCoreLogic_m3A6C0AB3D11B6D5C89224AF37FDD27795BFC6E16 (RuntimeObject* ___0_iar, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* ___3_promise, bool ___4_requiresSynchronization, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RuntimeObject*, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB*, bool, const RuntimeMethod*))TaskFactory_1_FromAsyncCoreLogic_m3A6C0AB3D11B6D5C89224AF37FDD27795BFC6E16_gshared)(___0_iar, ___1_endFunction, ___2_endAction, ___3_promise, ___4_requiresSynchronization, method);
|
|
}
|
|
inline bool Task_1_TrySetResult_m91F6C4495958F44115C8BA067D59FBE99CC10FE5 (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* __this, SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B ___0_result, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB*, SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B, const RuntimeMethod*))Task_1_TrySetResult_m91F6C4495958F44115C8BA067D59FBE99CC10FE5_gshared)(__this, ___0_result, method);
|
|
}
|
|
inline void U3CU3Ec__DisplayClass38_0_1__ctor_m1616CD8C357244C87D6A6080586EE5D10D1F29D6 (U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590*, const RuntimeMethod*))U3CU3Ec__DisplayClass38_0_1__ctor_m1616CD8C357244C87D6A6080586EE5D10D1F29D6_gshared)(__this, method);
|
|
}
|
|
inline void Task_1__ctor_m8E9811A47CB38FE7842D6339433133CD283F515B (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, RuntimeObject* ___0_state, int32_t ___1_options, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, RuntimeObject*, int32_t, const RuntimeMethod*))Task_1__ctor_m8E9811A47CB38FE7842D6339433133CD283F515B_gshared)(__this, ___0_state, ___1_options, method);
|
|
}
|
|
inline void TaskFactory_1_FromAsyncCoreLogic_mE22E1786CA9D7E8022C121AFF42BA025A2BF384B (RuntimeObject* ___0_iar, Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___3_promise, bool ___4_requiresSynchronization, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RuntimeObject*, Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, bool, const RuntimeMethod*))TaskFactory_1_FromAsyncCoreLogic_mE22E1786CA9D7E8022C121AFF42BA025A2BF384B_gshared)(___0_iar, ___1_endFunction, ___2_endAction, ___3_promise, ___4_requiresSynchronization, method);
|
|
}
|
|
inline bool Task_1_TrySetResult_m80576355963E201DD03E813734ED4CDA847E199E (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ___0_result, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC, const RuntimeMethod*))Task_1_TrySetResult_m80576355963E201DD03E813734ED4CDA847E199E_gshared)(__this, ___0_result, method);
|
|
}
|
|
inline void U3CU3Ec__DisplayClass41_0_2__ctor_m8D311421DC3898557AF1012280C38DB4B9E1F08E (U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3*, const RuntimeMethod*))U3CU3Ec__DisplayClass41_0_2__ctor_m8D311421DC3898557AF1012280C38DB4B9E1F08E_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* Func_5_Invoke_m382F87CDB10B4E52E6EFC0D88D10C93B0B87C666_inline (Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* __this, RuntimeObject* ___0_arg1, int32_t ___1_arg2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB*, RuntimeObject*, int32_t, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject*, const RuntimeMethod*))Func_5_Invoke_mEC1D034D1CAD44D4E743B3A0E36213B12B2ECFAA_gshared_inline)(__this, ___0_arg1, ___1_arg2, ___2_arg3, ___3_arg4, method);
|
|
}
|
|
inline void FromAsyncTrimPromise_1__ctor_m659379BBA5519550116198DB83B594BBB0ED21F4 (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* __this, RuntimeObject* ___0_thisRef, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* ___1_endMethod, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145*, RuntimeObject*, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E*, const RuntimeMethod*))FromAsyncTrimPromise_1__ctor_m659379BBA5519550116198DB83B594BBB0ED21F4_gshared)(__this, ___0_thisRef, ___1_endMethod, method);
|
|
}
|
|
inline void FromAsyncTrimPromise_1_Complete_m7985C0BDF0CF2E27AE73927FCCB5FEFBB624A2C5 (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* __this, RuntimeObject* ___0_thisRef, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* ___1_endMethod, RuntimeObject* ___2_asyncResult, bool ___3_requiresSynchronization, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145*, RuntimeObject*, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E*, RuntimeObject*, bool, const RuntimeMethod*))FromAsyncTrimPromise_1_Complete_m7985C0BDF0CF2E27AE73927FCCB5FEFBB624A2C5_gshared)(__this, ___0_thisRef, ___1_endMethod, ___2_asyncResult, ___3_requiresSynchronization, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DebuggerSupport_AddToActiveTasksNonInlined_m28785ADBB0443B6CCDC12C4A7DA297F1FFAEF889 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DebuggerSupport_RemoveFromActiveTasksNonInlined_m328F6FE7F9066EAD92528B6AD6BB08B12BA9A2C0 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method) ;
|
|
inline void MemoryPackWriter_1_RequestNewBuffer_mE3A14E274D798D478F3D4D6D62C6EBBDD087DCDD (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_sizeHint, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, int32_t, const RuntimeMethod*))MemoryPackWriter_1_RequestNewBuffer_mE3A14E274D798D478F3D4D6D62C6EBBDD087DCDD_gshared)(__this, ___0_sizeHint, method);
|
|
}
|
|
inline uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6 (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_span, const RuntimeMethod* method)
|
|
{
|
|
return (( uint8_t* (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, const RuntimeMethod*))MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_gshared)(___0_span, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackSerializationException_ThrowInvalidAdvance_m4E44A948382C5DDA16B6232B6CFBA940FFF191F9 (const RuntimeMethod* method) ;
|
|
inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___0_start, const RuntimeMethod* method)
|
|
{
|
|
return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, int32_t, const RuntimeMethod*))Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline)(__this, ___0_start, method);
|
|
}
|
|
inline uint8_t* MemoryMarshalEx_GetArrayDataReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4F71B3A9B2711B859F1974DC341C043AA00D8A19_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( uint8_t* (*) (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))MemoryMarshalEx_GetArrayDataReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4F71B3A9B2711B859F1974DC341C043AA00D8A19_gshared_inline)(___0_array, method);
|
|
}
|
|
inline int32_t* MemoryMarshalEx_GetArrayDataReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28F48BB1170C8FFC45F7349A5B54684E3845C4AC_inline (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t* (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))MemoryMarshalEx_GetArrayDataReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28F48BB1170C8FFC45F7349A5B54684E3845C4AC_gshared_inline)(___0_array, method);
|
|
}
|
|
inline int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, const RuntimeMethod*))Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackSerializationException_ThrowWriteInvalidMemberCount_mF5F69FB73079B1F242D9AD0AF4653C112E7D81C0 (uint8_t ___0_memberCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56 (const RuntimeMethod* method) ;
|
|
inline void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, uint8_t*, int32_t, const RuntimeMethod*))Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline)(__this, ___0_ptr, ___1_length, method);
|
|
}
|
|
inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_gshared_inline)(___0_array, method);
|
|
}
|
|
inline Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 MemoryExtensions_AsSpan_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m747B4E744F3001295814B04B43E787F0E1109D0F_inline (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))MemoryExtensions_AsSpan_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m747B4E744F3001295814B04B43E787F0E1109D0F_gshared_inline)(___0_array, method);
|
|
}
|
|
inline int32_t* MemoryMarshal_GetReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC9D303E66CF269E3E7B9C5E375C066446C3022C (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_span, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t* (*) (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316, const RuntimeMethod*))MemoryMarshal_GetReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC9D303E66CF269E3E7B9C5E375C066446C3022C_gshared)(___0_span, method);
|
|
}
|
|
inline void Span_1__ctor_m513968BDBFF3CFCE89F3F77FE44CAB22CA474EF9_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))Span_1__ctor_m513968BDBFF3CFCE89F3F77FE44CAB22CA474EF9_gshared_inline)(__this, ___0_array, method);
|
|
}
|
|
inline void Span_1__ctor_m176441CFA181B7C6097611CC13C24C5ED7F14CFF_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))Span_1__ctor_m176441CFA181B7C6097611CC13C24C5ED7F14CFF_gshared_inline)(__this, ___0_array, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1CDE80D9FF74949ADFE5CB9CF73BBD6570FBD3F5_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericAny* ___1_value1, Il2CppFullySharedGenericAny* ___2_value2, Il2CppFullySharedGenericAny* ___3_value3, Il2CppFullySharedGenericAny* ___4_value4, Il2CppFullySharedGenericAny* ___5_value5, Il2CppFullySharedGenericAny* ___6_value6, Il2CppFullySharedGenericAny* ___7_value7, Il2CppFullySharedGenericAny* ___8_value8, Il2CppFullySharedGenericAny* ___9_value9, Il2CppFullySharedGenericAny* ___10_value10, Il2CppFullySharedGenericAny* ___11_value11, Il2CppFullySharedGenericAny* ___12_value12, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tEB79DB4C1CD6BC8869783C99F1B01F97F85DAD53 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T2_t6F34A1466BD33D7F0075821EEAF9901131B99FD1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T3_t56EB5588CD73C0070B84C92A735E3C8DF8ED0C1E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T4_t82A2D0920C69A57A1D0D4CF7F2ABFDB6B2E801C2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T5_t2C2F0610FD913D30BF1F664B28538E9A852CE2B9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T6_t56629A20F5D2BB11434131E226692D6F89E2D970 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T7_tFCDB22B211573638D7F2FA6E70CCE8AC0B6EA825 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T8_t2F072DAB876C9224D65E345F63DF58D7C6AAE2B0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const uint32_t SizeOf_T9_t141928612C7CD0B9E78028C43B1950E184E4D730 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T10_t3FA27DDF84DDD0080F65F4AB03BB90668C1851C3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 40));
|
|
const uint32_t SizeOf_T11_t296DDE685BC1E075C6139DE1C6629D7BC4D659D4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 43));
|
|
const uint32_t SizeOf_T12_t56A268DE12149AC22E038864AC0CB3486A859262 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 46));
|
|
const Il2CppFullySharedGenericAny L_19 = alloca(SizeOf_T1_tEB79DB4C1CD6BC8869783C99F1B01F97F85DAD53);
|
|
const Il2CppFullySharedGenericAny L_24 = alloca(SizeOf_T2_t6F34A1466BD33D7F0075821EEAF9901131B99FD1);
|
|
const Il2CppFullySharedGenericAny L_30 = alloca(SizeOf_T3_t56EB5588CD73C0070B84C92A735E3C8DF8ED0C1E);
|
|
const Il2CppFullySharedGenericAny L_37 = alloca(SizeOf_T4_t82A2D0920C69A57A1D0D4CF7F2ABFDB6B2E801C2);
|
|
const Il2CppFullySharedGenericAny L_45 = alloca(SizeOf_T5_t2C2F0610FD913D30BF1F664B28538E9A852CE2B9);
|
|
const Il2CppFullySharedGenericAny L_54 = alloca(SizeOf_T6_t56629A20F5D2BB11434131E226692D6F89E2D970);
|
|
const Il2CppFullySharedGenericAny L_64 = alloca(SizeOf_T7_tFCDB22B211573638D7F2FA6E70CCE8AC0B6EA825);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T8_t2F072DAB876C9224D65E345F63DF58D7C6AAE2B0);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T9_t141928612C7CD0B9E78028C43B1950E184E4D730);
|
|
const Il2CppFullySharedGenericAny L_100 = alloca(SizeOf_T10_t3FA27DDF84DDD0080F65F4AB03BB90668C1851C3);
|
|
const Il2CppFullySharedGenericAny L_114 = alloca(SizeOf_T11_t296DDE685BC1E075C6139DE1C6629D7BC4D659D4);
|
|
const Il2CppFullySharedGenericAny L_128 = alloca(SizeOf_T12_t56A268DE12149AC22E038864AC0CB3486A859262);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), 1));
|
|
int32_t L_12 = V_0;
|
|
uint8_t* L_13;
|
|
L_13 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_12, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_14 = L_13;
|
|
uint8_t L_15 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_14, L_15);
|
|
uint8_t* L_16 = L_14;
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<uint8_t,int32_t>(L_16, 1);
|
|
Il2CppFullySharedGenericAny* L_18 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_19, L_18, SizeOf_T1_tEB79DB4C1CD6BC8869783C99F1B01F97F85DAD53);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_17, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_19: *(void**)L_19));
|
|
uint8_t* L_20 = L_16;
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_22;
|
|
L_22 = il2cpp_unsafe_add<uint8_t,int32_t>(L_20, ((int32_t)il2cpp_codegen_add(L_21, 1)));
|
|
Il2CppFullySharedGenericAny* L_23 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_24, L_23, SizeOf_T2_t6F34A1466BD33D7F0075821EEAF9901131B99FD1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_22, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_24: *(void**)L_24));
|
|
uint8_t* L_25 = L_20;
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_28;
|
|
L_28 = il2cpp_unsafe_add<uint8_t,int32_t>(L_25, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_26, L_27)), 1)));
|
|
Il2CppFullySharedGenericAny* L_29 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_30, L_29, SizeOf_T3_t56EB5588CD73C0070B84C92A735E3C8DF8ED0C1E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_28, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 19)) ? L_30: *(void**)L_30));
|
|
uint8_t* L_31 = L_25;
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_35;
|
|
L_35 = il2cpp_unsafe_add<uint8_t,int32_t>(L_31, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_32, L_33)), L_34)), 1)));
|
|
Il2CppFullySharedGenericAny* L_36 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_37, L_36, SizeOf_T4_t82A2D0920C69A57A1D0D4CF7F2ABFDB6B2E801C2);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_35, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_37: *(void**)L_37));
|
|
uint8_t* L_38 = L_31;
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_43;
|
|
L_43 = il2cpp_unsafe_add<uint8_t,int32_t>(L_38, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_39, L_40)), L_41)), L_42)), 1)));
|
|
Il2CppFullySharedGenericAny* L_44 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_45, L_44, SizeOf_T5_t2C2F0610FD913D30BF1F664B28538E9A852CE2B9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_43, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? L_45: *(void**)L_45));
|
|
uint8_t* L_46 = L_38;
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_52;
|
|
L_52 = il2cpp_unsafe_add<uint8_t,int32_t>(L_46, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_48)), L_49)), L_50)), L_51)), 1)));
|
|
Il2CppFullySharedGenericAny* L_53 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_54, L_53, SizeOf_T6_t56629A20F5D2BB11434131E226692D6F89E2D970);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_52, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 28)) ? L_54: *(void**)L_54));
|
|
uint8_t* L_55 = L_46;
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_62;
|
|
L_62 = il2cpp_unsafe_add<uint8_t,int32_t>(L_55, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_56, L_57)), L_58)), L_59)), L_60)), L_61)), 1)));
|
|
Il2CppFullySharedGenericAny* L_63 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_64, L_63, SizeOf_T7_tFCDB22B211573638D7F2FA6E70CCE8AC0B6EA825);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_62, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 31)) ? L_64: *(void**)L_64));
|
|
uint8_t* L_65 = L_55;
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_73;
|
|
L_73 = il2cpp_unsafe_add<uint8_t,int32_t>(L_65, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_66, L_67)), L_68)), L_69)), L_70)), L_71)), L_72)), 1)));
|
|
Il2CppFullySharedGenericAny* L_74 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_75, L_74, SizeOf_T8_t2F072DAB876C9224D65E345F63DF58D7C6AAE2B0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_73, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 34)) ? L_75: *(void**)L_75));
|
|
uint8_t* L_76 = L_65;
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_85;
|
|
L_85 = il2cpp_unsafe_add<uint8_t,int32_t>(L_76, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_77, L_78)), L_79)), L_80)), L_81)), L_82)), L_83)), L_84)), 1)));
|
|
Il2CppFullySharedGenericAny* L_86 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_87, L_86, SizeOf_T9_t141928612C7CD0B9E78028C43B1950E184E4D730);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 38)), il2cpp_rgctx_method(method->rgctx_data, 38), NULL, L_85, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? L_87: *(void**)L_87));
|
|
uint8_t* L_88 = L_76;
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_98;
|
|
L_98 = il2cpp_unsafe_add<uint8_t,int32_t>(L_88, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_89, L_90)), L_91)), L_92)), L_93)), L_94)), L_95)), L_96)), L_97)), 1)));
|
|
Il2CppFullySharedGenericAny* L_99 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_100, L_99, SizeOf_T10_t3FA27DDF84DDD0080F65F4AB03BB90668C1851C3);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 41)), il2cpp_rgctx_method(method->rgctx_data, 41), NULL, L_98, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 40)) ? L_100: *(void**)L_100));
|
|
uint8_t* L_101 = L_88;
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_112;
|
|
L_112 = il2cpp_unsafe_add<uint8_t,int32_t>(L_101, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_102, L_103)), L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), 1)));
|
|
Il2CppFullySharedGenericAny* L_113 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_114, L_113, SizeOf_T11_t296DDE685BC1E075C6139DE1C6629D7BC4D659D4);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 44)), il2cpp_rgctx_method(method->rgctx_data, 44), NULL, L_112, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 43)) ? L_114: *(void**)L_114));
|
|
int32_t L_115;
|
|
L_115 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_116;
|
|
L_116 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_126;
|
|
L_126 = il2cpp_unsafe_add<uint8_t,int32_t>(L_101, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_115, L_116)), L_117)), L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), 1)));
|
|
Il2CppFullySharedGenericAny* L_127 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_128, L_127, SizeOf_T12_t56A268DE12149AC22E038864AC0CB3486A859262);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), NULL, L_126, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 46)) ? L_128: *(void**)L_128));
|
|
int32_t L_129 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_129, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1AA302795887429D59D61AE69CB3A782F0A46174_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericAny* ___1_value1, Il2CppFullySharedGenericAny* ___2_value2, Il2CppFullySharedGenericAny* ___3_value3, Il2CppFullySharedGenericAny* ___4_value4, Il2CppFullySharedGenericAny* ___5_value5, Il2CppFullySharedGenericAny* ___6_value6, Il2CppFullySharedGenericAny* ___7_value7, Il2CppFullySharedGenericAny* ___8_value8, Il2CppFullySharedGenericAny* ___9_value9, Il2CppFullySharedGenericAny* ___10_value10, Il2CppFullySharedGenericAny* ___11_value11, Il2CppFullySharedGenericAny* ___12_value12, Il2CppFullySharedGenericAny* ___13_value13, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t71BE39EA274691AD6E7957DBE7A8576E7A6C4D9C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T2_tF96F71BEE8DF77656585017D872CAD6A5D7D92D7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T3_tA67D92FFD6A72B5B82483D94273CCF3F10EE98DE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T4_t3B21080FCBB54F8DC66BB543C2357C4F016237B9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T5_tF94F1B43AC0CB1EF5295EFD91D9DB5B6895E6F2B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T6_t89DF0AA669DCD4B0F5F8AE6A7B935EFCC1846A61 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T7_tB3C2E0250D962CB1107A0639443C1E3EF795F290 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 32));
|
|
const uint32_t SizeOf_T8_t94E0E9E708366943002A0FB1C802930E040601C2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 35));
|
|
const uint32_t SizeOf_T9_t7F60CD1928B34E06B83C34F5ED0A07E0898B62E3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 38));
|
|
const uint32_t SizeOf_T10_tAB1FEB35C921FBAB5551E66C9692D746AD0AA2DC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 41));
|
|
const uint32_t SizeOf_T11_t862AFF760EB4879378FDF7DA87B85A890837EB91 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 44));
|
|
const uint32_t SizeOf_T12_t81307F4C39CD11B1002C2702AE1DFBF5465560F2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 47));
|
|
const uint32_t SizeOf_T13_t325A860399CB283821B6D6B27ABEE58A4D1EA2E7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 50));
|
|
const Il2CppFullySharedGenericAny L_20 = alloca(SizeOf_T1_t71BE39EA274691AD6E7957DBE7A8576E7A6C4D9C);
|
|
const Il2CppFullySharedGenericAny L_25 = alloca(SizeOf_T2_tF96F71BEE8DF77656585017D872CAD6A5D7D92D7);
|
|
const Il2CppFullySharedGenericAny L_31 = alloca(SizeOf_T3_tA67D92FFD6A72B5B82483D94273CCF3F10EE98DE);
|
|
const Il2CppFullySharedGenericAny L_38 = alloca(SizeOf_T4_t3B21080FCBB54F8DC66BB543C2357C4F016237B9);
|
|
const Il2CppFullySharedGenericAny L_46 = alloca(SizeOf_T5_tF94F1B43AC0CB1EF5295EFD91D9DB5B6895E6F2B);
|
|
const Il2CppFullySharedGenericAny L_55 = alloca(SizeOf_T6_t89DF0AA669DCD4B0F5F8AE6A7B935EFCC1846A61);
|
|
const Il2CppFullySharedGenericAny L_65 = alloca(SizeOf_T7_tB3C2E0250D962CB1107A0639443C1E3EF795F290);
|
|
const Il2CppFullySharedGenericAny L_76 = alloca(SizeOf_T8_t94E0E9E708366943002A0FB1C802930E040601C2);
|
|
const Il2CppFullySharedGenericAny L_88 = alloca(SizeOf_T9_t7F60CD1928B34E06B83C34F5ED0A07E0898B62E3);
|
|
const Il2CppFullySharedGenericAny L_101 = alloca(SizeOf_T10_tAB1FEB35C921FBAB5551E66C9692D746AD0AA2DC);
|
|
const Il2CppFullySharedGenericAny L_115 = alloca(SizeOf_T11_t862AFF760EB4879378FDF7DA87B85A890837EB91);
|
|
const Il2CppFullySharedGenericAny L_130 = alloca(SizeOf_T12_t81307F4C39CD11B1002C2702AE1DFBF5465560F2);
|
|
const Il2CppFullySharedGenericAny L_145 = alloca(SizeOf_T13_t325A860399CB283821B6D6B27ABEE58A4D1EA2E7);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), 1));
|
|
int32_t L_13 = V_0;
|
|
uint8_t* L_14;
|
|
L_14 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_13, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_15 = L_14;
|
|
uint8_t L_16 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_15, L_16);
|
|
uint8_t* L_17 = L_15;
|
|
uint8_t* L_18;
|
|
L_18 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, 1);
|
|
Il2CppFullySharedGenericAny* L_19 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_20, L_19, SizeOf_T1_t71BE39EA274691AD6E7957DBE7A8576E7A6C4D9C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_18, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_20: *(void**)L_20));
|
|
uint8_t* L_21 = L_17;
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_unsafe_add<uint8_t,int32_t>(L_21, ((int32_t)il2cpp_codegen_add(L_22, 1)));
|
|
Il2CppFullySharedGenericAny* L_24 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_25, L_24, SizeOf_T2_tF96F71BEE8DF77656585017D872CAD6A5D7D92D7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_23, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? L_25: *(void**)L_25));
|
|
uint8_t* L_26 = L_21;
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_29;
|
|
L_29 = il2cpp_unsafe_add<uint8_t,int32_t>(L_26, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_27, L_28)), 1)));
|
|
Il2CppFullySharedGenericAny* L_30 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_31, L_30, SizeOf_T3_tA67D92FFD6A72B5B82483D94273CCF3F10EE98DE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_29, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_31: *(void**)L_31));
|
|
uint8_t* L_32 = L_26;
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_36;
|
|
L_36 = il2cpp_unsafe_add<uint8_t,int32_t>(L_32, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_33, L_34)), L_35)), 1)));
|
|
Il2CppFullySharedGenericAny* L_37 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_38, L_37, SizeOf_T4_t3B21080FCBB54F8DC66BB543C2357C4F016237B9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_36, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 23)) ? L_38: *(void**)L_38));
|
|
uint8_t* L_39 = L_32;
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_44;
|
|
L_44 = il2cpp_unsafe_add<uint8_t,int32_t>(L_39, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_40, L_41)), L_42)), L_43)), 1)));
|
|
Il2CppFullySharedGenericAny* L_45 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_46, L_45, SizeOf_T5_tF94F1B43AC0CB1EF5295EFD91D9DB5B6895E6F2B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_44, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? L_46: *(void**)L_46));
|
|
uint8_t* L_47 = L_39;
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_53;
|
|
L_53 = il2cpp_unsafe_add<uint8_t,int32_t>(L_47, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_48, L_49)), L_50)), L_51)), L_52)), 1)));
|
|
Il2CppFullySharedGenericAny* L_54 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_55, L_54, SizeOf_T6_t89DF0AA669DCD4B0F5F8AE6A7B935EFCC1846A61);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 30)), il2cpp_rgctx_method(method->rgctx_data, 30), NULL, L_53, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? L_55: *(void**)L_55));
|
|
uint8_t* L_56 = L_47;
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_63;
|
|
L_63 = il2cpp_unsafe_add<uint8_t,int32_t>(L_56, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_57, L_58)), L_59)), L_60)), L_61)), L_62)), 1)));
|
|
Il2CppFullySharedGenericAny* L_64 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_65, L_64, SizeOf_T7_tB3C2E0250D962CB1107A0639443C1E3EF795F290);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 33)), il2cpp_rgctx_method(method->rgctx_data, 33), NULL, L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 32)) ? L_65: *(void**)L_65));
|
|
uint8_t* L_66 = L_56;
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_74;
|
|
L_74 = il2cpp_unsafe_add<uint8_t,int32_t>(L_66, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_67, L_68)), L_69)), L_70)), L_71)), L_72)), L_73)), 1)));
|
|
Il2CppFullySharedGenericAny* L_75 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_76, L_75, SizeOf_T8_t94E0E9E708366943002A0FB1C802930E040601C2);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 36)), il2cpp_rgctx_method(method->rgctx_data, 36), NULL, L_74, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 35)) ? L_76: *(void**)L_76));
|
|
uint8_t* L_77 = L_66;
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_86;
|
|
L_86 = il2cpp_unsafe_add<uint8_t,int32_t>(L_77, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_78, L_79)), L_80)), L_81)), L_82)), L_83)), L_84)), L_85)), 1)));
|
|
Il2CppFullySharedGenericAny* L_87 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_88, L_87, SizeOf_T9_t7F60CD1928B34E06B83C34F5ED0A07E0898B62E3);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), NULL, L_86, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 38)) ? L_88: *(void**)L_88));
|
|
uint8_t* L_89 = L_77;
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_99;
|
|
L_99 = il2cpp_unsafe_add<uint8_t,int32_t>(L_89, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_90, L_91)), L_92)), L_93)), L_94)), L_95)), L_96)), L_97)), L_98)), 1)));
|
|
Il2CppFullySharedGenericAny* L_100 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_101, L_100, SizeOf_T10_tAB1FEB35C921FBAB5551E66C9692D746AD0AA2DC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 42)), il2cpp_rgctx_method(method->rgctx_data, 42), NULL, L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? L_101: *(void**)L_101));
|
|
uint8_t* L_102 = L_89;
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_113;
|
|
L_113 = il2cpp_unsafe_add<uint8_t,int32_t>(L_102, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_103, L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), L_112)), 1)));
|
|
Il2CppFullySharedGenericAny* L_114 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_115, L_114, SizeOf_T11_t862AFF760EB4879378FDF7DA87B85A890837EB91);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 45)), il2cpp_rgctx_method(method->rgctx_data, 45), NULL, L_113, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 44)) ? L_115: *(void**)L_115));
|
|
uint8_t* L_116 = L_102;
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_127;
|
|
L_127 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_128;
|
|
L_128 = il2cpp_unsafe_add<uint8_t,int32_t>(L_116, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_117, L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)), L_127)), 1)));
|
|
Il2CppFullySharedGenericAny* L_129 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_130, L_129, SizeOf_T12_t81307F4C39CD11B1002C2702AE1DFBF5465560F2);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 48)), il2cpp_rgctx_method(method->rgctx_data, 48), NULL, L_128, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 47)) ? L_130: *(void**)L_130));
|
|
int32_t L_131;
|
|
L_131 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_132;
|
|
L_132 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_143;
|
|
L_143 = il2cpp_unsafe_add<uint8_t,int32_t>(L_116, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_131, L_132)), L_133)), L_134)), L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)), 1)));
|
|
Il2CppFullySharedGenericAny* L_144 = ___13_value13;
|
|
il2cpp_codegen_memcpy(L_145, L_144, SizeOf_T13_t325A860399CB283821B6D6B27ABEE58A4D1EA2E7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 51)), il2cpp_rgctx_method(method->rgctx_data, 51), NULL, L_143, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 50)) ? L_145: *(void**)L_145));
|
|
int32_t L_146 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_146, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m3D9E445CA62AE0AD2C01E3E4DBA23CF977973323_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericAny* ___1_value1, Il2CppFullySharedGenericAny* ___2_value2, Il2CppFullySharedGenericAny* ___3_value3, Il2CppFullySharedGenericAny* ___4_value4, Il2CppFullySharedGenericAny* ___5_value5, Il2CppFullySharedGenericAny* ___6_value6, Il2CppFullySharedGenericAny* ___7_value7, Il2CppFullySharedGenericAny* ___8_value8, Il2CppFullySharedGenericAny* ___9_value9, Il2CppFullySharedGenericAny* ___10_value10, Il2CppFullySharedGenericAny* ___11_value11, Il2CppFullySharedGenericAny* ___12_value12, Il2CppFullySharedGenericAny* ___13_value13, Il2CppFullySharedGenericAny* ___14_value14, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tCF35CFC2358BEAF4FB2766B5BCFE7BAC63E3C3FB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T2_tF39527BAEEC17A750C29E561E5CBA94F6E53E950 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T3_tABC2B8F3C2D517370E16C1AA43E1FA0120481667 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T4_t1C4B7F4F593141CA06A8CE30C866025DD387BE2B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T5_t1B7A6ED33799D5CC141CEC6A35B72CB0A67363DC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T6_t26C38909E4D99C5CBEBB830F43F200D7A325BD4F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const uint32_t SizeOf_T7_tF2413A1C775BD6AC6F2AE9DFD80756CD432E2BE8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T8_t45FD03A145C2C4DE5C502A81BAE5F574889FCA03 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 36));
|
|
const uint32_t SizeOf_T9_tD0D936C0086E1D32C0E90DACAA9A69FEB2B3F3A5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 39));
|
|
const uint32_t SizeOf_T10_tD9B6243EED7FC3F5C343EDB55D86E819B5004A91 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 42));
|
|
const uint32_t SizeOf_T11_t7292C2084FBBF751A99C3D0DF70063B5BEFBF1E5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 45));
|
|
const uint32_t SizeOf_T12_t3C20D6F0674CD646BAF3AFE9E2F1AEFF1EED000F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 48));
|
|
const uint32_t SizeOf_T13_t2FA59BEADC9803BF3054F6C968005D1D68ADED39 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 51));
|
|
const uint32_t SizeOf_T14_t48D401EA590743F7B4D56988C98EC6851DBAA9F8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 54));
|
|
const Il2CppFullySharedGenericAny L_21 = alloca(SizeOf_T1_tCF35CFC2358BEAF4FB2766B5BCFE7BAC63E3C3FB);
|
|
const Il2CppFullySharedGenericAny L_26 = alloca(SizeOf_T2_tF39527BAEEC17A750C29E561E5CBA94F6E53E950);
|
|
const Il2CppFullySharedGenericAny L_32 = alloca(SizeOf_T3_tABC2B8F3C2D517370E16C1AA43E1FA0120481667);
|
|
const Il2CppFullySharedGenericAny L_39 = alloca(SizeOf_T4_t1C4B7F4F593141CA06A8CE30C866025DD387BE2B);
|
|
const Il2CppFullySharedGenericAny L_47 = alloca(SizeOf_T5_t1B7A6ED33799D5CC141CEC6A35B72CB0A67363DC);
|
|
const Il2CppFullySharedGenericAny L_56 = alloca(SizeOf_T6_t26C38909E4D99C5CBEBB830F43F200D7A325BD4F);
|
|
const Il2CppFullySharedGenericAny L_66 = alloca(SizeOf_T7_tF2413A1C775BD6AC6F2AE9DFD80756CD432E2BE8);
|
|
const Il2CppFullySharedGenericAny L_77 = alloca(SizeOf_T8_t45FD03A145C2C4DE5C502A81BAE5F574889FCA03);
|
|
const Il2CppFullySharedGenericAny L_89 = alloca(SizeOf_T9_tD0D936C0086E1D32C0E90DACAA9A69FEB2B3F3A5);
|
|
const Il2CppFullySharedGenericAny L_102 = alloca(SizeOf_T10_tD9B6243EED7FC3F5C343EDB55D86E819B5004A91);
|
|
const Il2CppFullySharedGenericAny L_116 = alloca(SizeOf_T11_t7292C2084FBBF751A99C3D0DF70063B5BEFBF1E5);
|
|
const Il2CppFullySharedGenericAny L_131 = alloca(SizeOf_T12_t3C20D6F0674CD646BAF3AFE9E2F1AEFF1EED000F);
|
|
const Il2CppFullySharedGenericAny L_147 = alloca(SizeOf_T13_t2FA59BEADC9803BF3054F6C968005D1D68ADED39);
|
|
const Il2CppFullySharedGenericAny L_163 = alloca(SizeOf_T14_t48D401EA590743F7B4D56988C98EC6851DBAA9F8);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), L_13)), 1));
|
|
int32_t L_14 = V_0;
|
|
uint8_t* L_15;
|
|
L_15 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_16 = L_15;
|
|
uint8_t L_17 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_16, L_17);
|
|
uint8_t* L_18 = L_16;
|
|
uint8_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<uint8_t,int32_t>(L_18, 1);
|
|
Il2CppFullySharedGenericAny* L_20 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_21, L_20, SizeOf_T1_tCF35CFC2358BEAF4FB2766B5BCFE7BAC63E3C3FB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_19, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 15)) ? L_21: *(void**)L_21));
|
|
uint8_t* L_22 = L_18;
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_24;
|
|
L_24 = il2cpp_unsafe_add<uint8_t,int32_t>(L_22, ((int32_t)il2cpp_codegen_add(L_23, 1)));
|
|
Il2CppFullySharedGenericAny* L_25 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_26, L_25, SizeOf_T2_tF39527BAEEC17A750C29E561E5CBA94F6E53E950);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_24, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_26: *(void**)L_26));
|
|
uint8_t* L_27 = L_22;
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_30;
|
|
L_30 = il2cpp_unsafe_add<uint8_t,int32_t>(L_27, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, L_29)), 1)));
|
|
Il2CppFullySharedGenericAny* L_31 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_32, L_31, SizeOf_T3_tABC2B8F3C2D517370E16C1AA43E1FA0120481667);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_30, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? L_32: *(void**)L_32));
|
|
uint8_t* L_33 = L_27;
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_37;
|
|
L_37 = il2cpp_unsafe_add<uint8_t,int32_t>(L_33, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_34, L_35)), L_36)), 1)));
|
|
Il2CppFullySharedGenericAny* L_38 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_39, L_38, SizeOf_T4_t1C4B7F4F593141CA06A8CE30C866025DD387BE2B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_37, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? L_39: *(void**)L_39));
|
|
uint8_t* L_40 = L_33;
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_45;
|
|
L_45 = il2cpp_unsafe_add<uint8_t,int32_t>(L_40, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_41, L_42)), L_43)), L_44)), 1)));
|
|
Il2CppFullySharedGenericAny* L_46 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_47, L_46, SizeOf_T5_t1B7A6ED33799D5CC141CEC6A35B72CB0A67363DC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_45, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 27)) ? L_47: *(void**)L_47));
|
|
uint8_t* L_48 = L_40;
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_54;
|
|
L_54 = il2cpp_unsafe_add<uint8_t,int32_t>(L_48, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_49, L_50)), L_51)), L_52)), L_53)), 1)));
|
|
Il2CppFullySharedGenericAny* L_55 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_56, L_55, SizeOf_T6_t26C38909E4D99C5CBEBB830F43F200D7A325BD4F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_54, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 30)) ? L_56: *(void**)L_56));
|
|
uint8_t* L_57 = L_48;
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_64;
|
|
L_64 = il2cpp_unsafe_add<uint8_t,int32_t>(L_57, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_58, L_59)), L_60)), L_61)), L_62)), L_63)), 1)));
|
|
Il2CppFullySharedGenericAny* L_65 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_66, L_65, SizeOf_T7_tF2413A1C775BD6AC6F2AE9DFD80756CD432E2BE8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 34)), il2cpp_rgctx_method(method->rgctx_data, 34), NULL, L_64, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? L_66: *(void**)L_66));
|
|
uint8_t* L_67 = L_57;
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_75;
|
|
L_75 = il2cpp_unsafe_add<uint8_t,int32_t>(L_67, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_68, L_69)), L_70)), L_71)), L_72)), L_73)), L_74)), 1)));
|
|
Il2CppFullySharedGenericAny* L_76 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_77, L_76, SizeOf_T8_t45FD03A145C2C4DE5C502A81BAE5F574889FCA03);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 37)), il2cpp_rgctx_method(method->rgctx_data, 37), NULL, L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 36)) ? L_77: *(void**)L_77));
|
|
uint8_t* L_78 = L_67;
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_87;
|
|
L_87 = il2cpp_unsafe_add<uint8_t,int32_t>(L_78, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_79, L_80)), L_81)), L_82)), L_83)), L_84)), L_85)), L_86)), 1)));
|
|
Il2CppFullySharedGenericAny* L_88 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_89, L_88, SizeOf_T9_tD0D936C0086E1D32C0E90DACAA9A69FEB2B3F3A5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 40)), il2cpp_rgctx_method(method->rgctx_data, 40), NULL, L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 39)) ? L_89: *(void**)L_89));
|
|
uint8_t* L_90 = L_78;
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_99;
|
|
L_99 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_100;
|
|
L_100 = il2cpp_unsafe_add<uint8_t,int32_t>(L_90, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_91, L_92)), L_93)), L_94)), L_95)), L_96)), L_97)), L_98)), L_99)), 1)));
|
|
Il2CppFullySharedGenericAny* L_101 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_102, L_101, SizeOf_T10_tD9B6243EED7FC3F5C343EDB55D86E819B5004A91);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), NULL, L_100, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 42)) ? L_102: *(void**)L_102));
|
|
uint8_t* L_103 = L_90;
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_113;
|
|
L_113 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_114;
|
|
L_114 = il2cpp_unsafe_add<uint8_t,int32_t>(L_103, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_104, L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), L_112)), L_113)), 1)));
|
|
Il2CppFullySharedGenericAny* L_115 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_116, L_115, SizeOf_T11_t7292C2084FBBF751A99C3D0DF70063B5BEFBF1E5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 46)), il2cpp_rgctx_method(method->rgctx_data, 46), NULL, L_114, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? L_116: *(void**)L_116));
|
|
uint8_t* L_117 = L_103;
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_127;
|
|
L_127 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_128;
|
|
L_128 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_129;
|
|
L_129 = il2cpp_unsafe_add<uint8_t,int32_t>(L_117, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_118, L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)), L_127)), L_128)), 1)));
|
|
Il2CppFullySharedGenericAny* L_130 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_131, L_130, SizeOf_T12_t3C20D6F0674CD646BAF3AFE9E2F1AEFF1EED000F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 49)), il2cpp_rgctx_method(method->rgctx_data, 49), NULL, L_129, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 48)) ? L_131: *(void**)L_131));
|
|
uint8_t* L_132 = L_117;
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_143;
|
|
L_143 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_144;
|
|
L_144 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_145;
|
|
L_145 = il2cpp_unsafe_add<uint8_t,int32_t>(L_132, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_133, L_134)), L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)), L_143)), L_144)), 1)));
|
|
Il2CppFullySharedGenericAny* L_146 = ___13_value13;
|
|
il2cpp_codegen_memcpy(L_147, L_146, SizeOf_T13_t2FA59BEADC9803BF3054F6C968005D1D68ADED39);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 52)), il2cpp_rgctx_method(method->rgctx_data, 52), NULL, L_145, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 51)) ? L_147: *(void**)L_147));
|
|
int32_t L_148;
|
|
L_148 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_149;
|
|
L_149 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_150;
|
|
L_150 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_151;
|
|
L_151 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_152;
|
|
L_152 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_153;
|
|
L_153 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_154;
|
|
L_154 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_155;
|
|
L_155 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_156;
|
|
L_156 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_157;
|
|
L_157 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_158;
|
|
L_158 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_159;
|
|
L_159 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_160;
|
|
L_160 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
uint8_t* L_161;
|
|
L_161 = il2cpp_unsafe_add<uint8_t,int32_t>(L_132, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_148, L_149)), L_150)), L_151)), L_152)), L_153)), L_154)), L_155)), L_156)), L_157)), L_158)), L_159)), L_160)), 1)));
|
|
Il2CppFullySharedGenericAny* L_162 = ___14_value14;
|
|
il2cpp_codegen_memcpy(L_163, L_162, SizeOf_T14_t48D401EA590743F7B4D56988C98EC6851DBAA9F8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 55)), il2cpp_rgctx_method(method->rgctx_data, 55), NULL, L_161, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 54)) ? L_163: *(void**)L_163));
|
|
int32_t L_164 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_164, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mC7BA60AFB8C675A9F9DA609E94CADD5466DC67AA_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericAny* ___1_value1, Il2CppFullySharedGenericAny* ___2_value2, Il2CppFullySharedGenericAny* ___3_value3, Il2CppFullySharedGenericAny* ___4_value4, Il2CppFullySharedGenericAny* ___5_value5, Il2CppFullySharedGenericAny* ___6_value6, Il2CppFullySharedGenericAny* ___7_value7, Il2CppFullySharedGenericAny* ___8_value8, Il2CppFullySharedGenericAny* ___9_value9, Il2CppFullySharedGenericAny* ___10_value10, Il2CppFullySharedGenericAny* ___11_value11, Il2CppFullySharedGenericAny* ___12_value12, Il2CppFullySharedGenericAny* ___13_value13, Il2CppFullySharedGenericAny* ___14_value14, Il2CppFullySharedGenericAny* ___15_value15, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t11C2D2DB56C7DDA47590F90C70270B02062D709D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T2_t48A90281A0D5E3CEFCABFF2A2707A46F332EBB30 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T3_t020C8365FDF9342A83D3084F362583B59C6AF9E6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T4_t58E4C1D99714BB1263024CFBC431F0399FAF9F2C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T5_t4D1ED1436FCC11EEECD7079A1A26563DE836F07D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T6_t12FF745DF90C1E646D208ACE17C9A8846F176525 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T7_t23B24228008C06B91A8C981AC2498BD25A917765 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const uint32_t SizeOf_T8_tBDC2F28762D124CD24EA6CB1CC075C7FC3067675 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T9_tD87CA1D0B7144CF21467B58210854FC53B92CC2D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 40));
|
|
const uint32_t SizeOf_T10_tF30561B1DE460BB0DBEA8C073F1AF29FFE73DFF6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 43));
|
|
const uint32_t SizeOf_T11_t44392F25C4E3C96FB044EBF12A6AD6E053952BC1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 46));
|
|
const uint32_t SizeOf_T12_t3B792D2C8548F4303F45374A81734031FB0959EC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 49));
|
|
const uint32_t SizeOf_T13_tC99A158DEB2BAB5C80399ECDF49D124418D75BB4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 52));
|
|
const uint32_t SizeOf_T14_t61A17B735048DB63151144BEA485281B50AD5F86 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 55));
|
|
const uint32_t SizeOf_T15_tB22E3C1CB8720074B78BADDE02FEDA49B559B20C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 58));
|
|
const Il2CppFullySharedGenericAny L_22 = alloca(SizeOf_T1_t11C2D2DB56C7DDA47590F90C70270B02062D709D);
|
|
const Il2CppFullySharedGenericAny L_27 = alloca(SizeOf_T2_t48A90281A0D5E3CEFCABFF2A2707A46F332EBB30);
|
|
const Il2CppFullySharedGenericAny L_33 = alloca(SizeOf_T3_t020C8365FDF9342A83D3084F362583B59C6AF9E6);
|
|
const Il2CppFullySharedGenericAny L_40 = alloca(SizeOf_T4_t58E4C1D99714BB1263024CFBC431F0399FAF9F2C);
|
|
const Il2CppFullySharedGenericAny L_48 = alloca(SizeOf_T5_t4D1ED1436FCC11EEECD7079A1A26563DE836F07D);
|
|
const Il2CppFullySharedGenericAny L_57 = alloca(SizeOf_T6_t12FF745DF90C1E646D208ACE17C9A8846F176525);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T7_t23B24228008C06B91A8C981AC2498BD25A917765);
|
|
const Il2CppFullySharedGenericAny L_78 = alloca(SizeOf_T8_tBDC2F28762D124CD24EA6CB1CC075C7FC3067675);
|
|
const Il2CppFullySharedGenericAny L_90 = alloca(SizeOf_T9_tD87CA1D0B7144CF21467B58210854FC53B92CC2D);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T10_tF30561B1DE460BB0DBEA8C073F1AF29FFE73DFF6);
|
|
const Il2CppFullySharedGenericAny L_117 = alloca(SizeOf_T11_t44392F25C4E3C96FB044EBF12A6AD6E053952BC1);
|
|
const Il2CppFullySharedGenericAny L_132 = alloca(SizeOf_T12_t3B792D2C8548F4303F45374A81734031FB0959EC);
|
|
const Il2CppFullySharedGenericAny L_148 = alloca(SizeOf_T13_tC99A158DEB2BAB5C80399ECDF49D124418D75BB4);
|
|
const Il2CppFullySharedGenericAny L_165 = alloca(SizeOf_T14_t61A17B735048DB63151144BEA485281B50AD5F86);
|
|
const Il2CppFullySharedGenericAny L_182 = alloca(SizeOf_T15_tB22E3C1CB8720074B78BADDE02FEDA49B559B20C);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)))(il2cpp_rgctx_method(method->rgctx_data, 14));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), L_13)), L_14)), 1));
|
|
int32_t L_15 = V_0;
|
|
uint8_t* L_16;
|
|
L_16 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_17 = L_16;
|
|
uint8_t L_18 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_17, L_18);
|
|
uint8_t* L_19 = L_17;
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_19, 1);
|
|
Il2CppFullySharedGenericAny* L_21 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_22, L_21, SizeOf_T1_t11C2D2DB56C7DDA47590F90C70270B02062D709D);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_20, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_22: *(void**)L_22));
|
|
uint8_t* L_23 = L_19;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_25;
|
|
L_25 = il2cpp_unsafe_add<uint8_t,int32_t>(L_23, ((int32_t)il2cpp_codegen_add(L_24, 1)));
|
|
Il2CppFullySharedGenericAny* L_26 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_27, L_26, SizeOf_T2_t48A90281A0D5E3CEFCABFF2A2707A46F332EBB30);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_25, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 19)) ? L_27: *(void**)L_27));
|
|
uint8_t* L_28 = L_23;
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_31;
|
|
L_31 = il2cpp_unsafe_add<uint8_t,int32_t>(L_28, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_29, L_30)), 1)));
|
|
Il2CppFullySharedGenericAny* L_32 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_33, L_32, SizeOf_T3_t020C8365FDF9342A83D3084F362583B59C6AF9E6);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_31, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_33: *(void**)L_33));
|
|
uint8_t* L_34 = L_28;
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_38;
|
|
L_38 = il2cpp_unsafe_add<uint8_t,int32_t>(L_34, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_35, L_36)), L_37)), 1)));
|
|
Il2CppFullySharedGenericAny* L_39 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_40, L_39, SizeOf_T4_t58E4C1D99714BB1263024CFBC431F0399FAF9F2C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_38, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? L_40: *(void**)L_40));
|
|
uint8_t* L_41 = L_34;
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_46;
|
|
L_46 = il2cpp_unsafe_add<uint8_t,int32_t>(L_41, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_42, L_43)), L_44)), L_45)), 1)));
|
|
Il2CppFullySharedGenericAny* L_47 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_48, L_47, SizeOf_T5_t4D1ED1436FCC11EEECD7079A1A26563DE836F07D);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_46, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 28)) ? L_48: *(void**)L_48));
|
|
uint8_t* L_49 = L_41;
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_55;
|
|
L_55 = il2cpp_unsafe_add<uint8_t,int32_t>(L_49, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_50, L_51)), L_52)), L_53)), L_54)), 1)));
|
|
Il2CppFullySharedGenericAny* L_56 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_57, L_56, SizeOf_T6_t12FF745DF90C1E646D208ACE17C9A8846F176525);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_55, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 31)) ? L_57: *(void**)L_57));
|
|
uint8_t* L_58 = L_49;
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_65;
|
|
L_65 = il2cpp_unsafe_add<uint8_t,int32_t>(L_58, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_59, L_60)), L_61)), L_62)), L_63)), L_64)), 1)));
|
|
Il2CppFullySharedGenericAny* L_66 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_67, L_66, SizeOf_T7_t23B24228008C06B91A8C981AC2498BD25A917765);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_65, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 34)) ? L_67: *(void**)L_67));
|
|
uint8_t* L_68 = L_58;
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_76;
|
|
L_76 = il2cpp_unsafe_add<uint8_t,int32_t>(L_68, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_69, L_70)), L_71)), L_72)), L_73)), L_74)), L_75)), 1)));
|
|
Il2CppFullySharedGenericAny* L_77 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_78, L_77, SizeOf_T8_tBDC2F28762D124CD24EA6CB1CC075C7FC3067675);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 38)), il2cpp_rgctx_method(method->rgctx_data, 38), NULL, L_76, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? L_78: *(void**)L_78));
|
|
uint8_t* L_79 = L_68;
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_88;
|
|
L_88 = il2cpp_unsafe_add<uint8_t,int32_t>(L_79, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_80, L_81)), L_82)), L_83)), L_84)), L_85)), L_86)), L_87)), 1)));
|
|
Il2CppFullySharedGenericAny* L_89 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_90, L_89, SizeOf_T9_tD87CA1D0B7144CF21467B58210854FC53B92CC2D);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 41)), il2cpp_rgctx_method(method->rgctx_data, 41), NULL, L_88, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 40)) ? L_90: *(void**)L_90));
|
|
uint8_t* L_91 = L_79;
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_99;
|
|
L_99 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_100;
|
|
L_100 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_101;
|
|
L_101 = il2cpp_unsafe_add<uint8_t,int32_t>(L_91, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_92, L_93)), L_94)), L_95)), L_96)), L_97)), L_98)), L_99)), L_100)), 1)));
|
|
Il2CppFullySharedGenericAny* L_102 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_103, L_102, SizeOf_T10_tF30561B1DE460BB0DBEA8C073F1AF29FFE73DFF6);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 44)), il2cpp_rgctx_method(method->rgctx_data, 44), NULL, L_101, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 43)) ? L_103: *(void**)L_103));
|
|
uint8_t* L_104 = L_91;
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_113;
|
|
L_113 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_114;
|
|
L_114 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_115;
|
|
L_115 = il2cpp_unsafe_add<uint8_t,int32_t>(L_104, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_105, L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), L_112)), L_113)), L_114)), 1)));
|
|
Il2CppFullySharedGenericAny* L_116 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_117, L_116, SizeOf_T11_t44392F25C4E3C96FB044EBF12A6AD6E053952BC1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), NULL, L_115, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 46)) ? L_117: *(void**)L_117));
|
|
uint8_t* L_118 = L_104;
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_127;
|
|
L_127 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_128;
|
|
L_128 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_129;
|
|
L_129 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_130;
|
|
L_130 = il2cpp_unsafe_add<uint8_t,int32_t>(L_118, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_119, L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)), L_127)), L_128)), L_129)), 1)));
|
|
Il2CppFullySharedGenericAny* L_131 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_132, L_131, SizeOf_T12_t3B792D2C8548F4303F45374A81734031FB0959EC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 50)), il2cpp_rgctx_method(method->rgctx_data, 50), NULL, L_130, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? L_132: *(void**)L_132));
|
|
uint8_t* L_133 = L_118;
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_143;
|
|
L_143 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_144;
|
|
L_144 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_145;
|
|
L_145 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_146;
|
|
L_146 = il2cpp_unsafe_add<uint8_t,int32_t>(L_133, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_134, L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)), L_143)), L_144)), L_145)), 1)));
|
|
Il2CppFullySharedGenericAny* L_147 = ___13_value13;
|
|
il2cpp_codegen_memcpy(L_148, L_147, SizeOf_T13_tC99A158DEB2BAB5C80399ECDF49D124418D75BB4);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 53)), il2cpp_rgctx_method(method->rgctx_data, 53), NULL, L_146, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 52)) ? L_148: *(void**)L_148));
|
|
uint8_t* L_149 = L_133;
|
|
int32_t L_150;
|
|
L_150 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_151;
|
|
L_151 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_152;
|
|
L_152 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_153;
|
|
L_153 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_154;
|
|
L_154 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_155;
|
|
L_155 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_156;
|
|
L_156 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_157;
|
|
L_157 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_158;
|
|
L_158 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_159;
|
|
L_159 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_160;
|
|
L_160 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_161;
|
|
L_161 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_162;
|
|
L_162 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
uint8_t* L_163;
|
|
L_163 = il2cpp_unsafe_add<uint8_t,int32_t>(L_149, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_150, L_151)), L_152)), L_153)), L_154)), L_155)), L_156)), L_157)), L_158)), L_159)), L_160)), L_161)), L_162)), 1)));
|
|
Il2CppFullySharedGenericAny* L_164 = ___14_value14;
|
|
il2cpp_codegen_memcpy(L_165, L_164, SizeOf_T14_t61A17B735048DB63151144BEA485281B50AD5F86);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 56)), il2cpp_rgctx_method(method->rgctx_data, 56), NULL, L_163, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 55)) ? L_165: *(void**)L_165));
|
|
int32_t L_166;
|
|
L_166 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_167;
|
|
L_167 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_168;
|
|
L_168 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_169;
|
|
L_169 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_170;
|
|
L_170 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_171;
|
|
L_171 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_172;
|
|
L_172 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_173;
|
|
L_173 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_174;
|
|
L_174 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_175;
|
|
L_175 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_176;
|
|
L_176 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_177;
|
|
L_177 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_178;
|
|
L_178 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_179;
|
|
L_179 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
uint8_t* L_180;
|
|
L_180 = il2cpp_unsafe_add<uint8_t,int32_t>(L_149, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_166, L_167)), L_168)), L_169)), L_170)), L_171)), L_172)), L_173)), L_174)), L_175)), L_176)), L_177)), L_178)), L_179)), 1)));
|
|
Il2CppFullySharedGenericAny* L_181 = ___15_value15;
|
|
il2cpp_codegen_memcpy(L_182, L_181, SizeOf_T15_tB22E3C1CB8720074B78BADDE02FEDA49B559B20C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 59)), il2cpp_rgctx_method(method->rgctx_data, 59), NULL, L_180, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 58)) ? L_182: *(void**)L_182));
|
|
int32_t L_183 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_183, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemoryPackWriter_1_GetFormatter_TisIl2CppFullySharedGenericAny_m86708A94730DE62C8876559E1BC808EA30831BCC_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryPackFormatterProvider_t1C8B25B7FBCD283CE0EC13F987A5A3219037B997_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(MemoryPackFormatterProvider_t1C8B25B7FBCD283CE0EC13F987A5A3219037B997_il2cpp_TypeInfo_var);
|
|
MemoryPackFormatter_1_t59AD4B64A5F7DBB4EBE621E30C549B8181189A35* L_0;
|
|
L_0 = (( MemoryPackFormatter_1_t59AD4B64A5F7DBB4EBE621E30C549B8181189A35* (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemoryPackWriter_1_GetUnmanageArrayWriteLength_TisIl2CppFullySharedGenericStruct_m90C84AF40FBED29F07D92A2A6AAEFCA3BDACB7B0_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* L_1 = ___0_value;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
return 4;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* L_3 = ___0_value;
|
|
NullCheck(L_3);
|
|
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)(((RuntimeArray*)L_3)->max_length)))), 4));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteArray_TisIl2CppFullySharedGenericAny_m0D6397FEB604E25F075F4C0B925BD626996A493F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_1 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(__this, L_1, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_2 = ___0_value;
|
|
if (L_2)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 20));
|
|
return;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_3;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = ___0_value;
|
|
NullCheck(L_4);
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(__this, ((int32_t)(((RuntimeArray*)L_4)->max_length)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 21));
|
|
V_1 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_6 = ___0_value;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
NullCheck(L_5);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 6), L_5, __this, ((Il2CppFullySharedGenericAny*)(L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7))));
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_10 = ___0_value;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WritePackable_TisIl2CppFullySharedGenericAny_m0BCCDBCB63B433A87999D99A4904D7A0F7E3024F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericAny* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Il2CppFullySharedGenericAny* L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WritePackableArray_TisIl2CppFullySharedGenericAny_mF6167219BF45D0F0CF4102D7D29698E175507DD9_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WritePackableSpan_TisIl2CppFullySharedGenericAny_m10357E5A0E6763E003DFF3162B905F33255DDC3F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WritePackableSpan_TisIl2CppFullySharedGenericAny_m757E8441E0DDDB63069372EF83955C5D11D35F74_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteSpan_TisIl2CppFullySharedGenericAny_m4D051B55CFFD0001335820AA788C75D909931E50_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_1 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(__this, L_1, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(__this, L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 21));
|
|
V_1 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
int32_t L_5 = V_1;
|
|
Il2CppFullySharedGenericAny* L_6;
|
|
L_6 = (( Il2CppFullySharedGenericAny* (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))((&___0_value), L_5, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
Il2CppFullySharedGenericAny* L_7;
|
|
L_7 = (( Il2CppFullySharedGenericAny* (*) (Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(L_6, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
NullCheck(L_4);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 11), L_4, __this, L_7);
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
if ((((int32_t)L_9) < ((int32_t)L_10)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteSpan_TisIl2CppFullySharedGenericAny_mF81AFB47EC16837DEB67CFD3044B51126069A771_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 L_1 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(__this, L_1, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(__this, L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 21));
|
|
V_1 = 0;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
int32_t L_5 = V_1;
|
|
Il2CppFullySharedGenericAny* L_6;
|
|
L_6 = (( Il2CppFullySharedGenericAny* (*) (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))((&___0_value), L_5, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
NullCheck(L_4);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 9), L_4, __this, L_6);
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteSpanWithoutLengthHeader_TisIl2CppFullySharedGenericAny_m362FD21262EEEE156DFBFD373FD40C982A3364BE_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
uint8_t* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1;
|
|
L_1 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
if (L_1)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_2, L_3));
|
|
int32_t L_4 = V_0;
|
|
uint8_t* L_5;
|
|
L_5 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_6 = ___0_value;
|
|
Il2CppFullySharedGenericAny* L_7;
|
|
L_7 = (( Il2CppFullySharedGenericAny* (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(L_6, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_as_ref<uint8_t>(L_7);
|
|
V_1 = L_8;
|
|
uint8_t* L_9 = V_1;
|
|
int32_t L_10 = V_0;
|
|
Unsafe_CopyBlockUnaligned_mDF58F6B66FE59AF2A00CE0E2B885DA6F2865BA8A_inline(L_5, L_9, (uint32_t)L_10, NULL);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
RuntimeObject* L_12;
|
|
L_12 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(__this, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_2 = L_12;
|
|
V_3 = 0;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
RuntimeObject* L_13 = V_2;
|
|
int32_t L_14 = V_3;
|
|
Il2CppFullySharedGenericAny* L_15;
|
|
L_15 = (( Il2CppFullySharedGenericAny* (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))((&___0_value), L_14, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
Il2CppFullySharedGenericAny* L_16;
|
|
L_16 = (( Il2CppFullySharedGenericAny* (*) (Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(L_15, il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
NullCheck(L_13);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 12), L_13, __this, L_16);
|
|
int32_t L_17 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
int32_t L_18 = V_3;
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1B552F33D2BEE9CA4A993D3F740D3D214D9F9A5E_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t* ___0_value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
uint8_t* L_2;
|
|
L_2 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
int32_t* L_3 = ___0_value1;
|
|
int32_t L_4 = (*(int32_t*)L_3);
|
|
il2cpp_unsafe_write_unaligned(L_2, L_4);
|
|
int32_t L_5 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mB835952EAD683F8572B38F55B7E46B6995C030BF_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
uint8_t* L_2;
|
|
L_2 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
int8_t* L_3 = ___0_value1;
|
|
int8_t L_4 = (*(int8_t*)L_3);
|
|
il2cpp_unsafe_write_unaligned(L_2, L_4);
|
|
int32_t L_5 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_m06F416C4B54CB681B437027604DCC26EE8C66525_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tD471F11327453525A6C3B654CEFAE05DE74B4057 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericStruct L_4 = alloca(SizeOf_T1_tD471F11327453525A6C3B654CEFAE05DE74B4057);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
uint8_t* L_2;
|
|
L_2 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
Il2CppFullySharedGenericStruct* L_3 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_4, L_3, SizeOf_T1_tD471F11327453525A6C3B654CEFAE05DE74B4057);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_2, L_4);
|
|
int32_t L_5 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m98D235DD47622EE0182A7A92CD2DFFA7C9ECF838_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t* ___0_value1, int32_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int32_t* L_5 = ___0_value1;
|
|
int32_t L_6 = (*(int32_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
int32_t* L_9 = ___1_value2;
|
|
int32_t L_10 = (*(int32_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mAE53C27D53E086802D05B69B9625C59F3C850BF4_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, uint8_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<uint8_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
uint8_t* L_9 = ___1_value2;
|
|
uint8_t L_10 = (*(uint8_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m501B6A5F76EC8D8067D0CB68AB967936418737F7_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, int16_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int16_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
int16_t* L_9 = ___1_value2;
|
|
int16_t L_10 = (*(int16_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m7D921A62947E699B3B13E70868535DD1B8E50718_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, int32_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
int32_t* L_9 = ___1_value2;
|
|
int32_t L_10 = (*(int32_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_mFA4D8E1977D8E60AFF57283A5601670BA57C0C2D_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, int64_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int64_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
int64_t* L_9 = ___1_value2;
|
|
int64_t L_10 = (*(int64_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_m763C058707DC168D4855A9E3D811800B8B01BAD6_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, int8_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int8_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
int8_t* L_9 = ___1_value2;
|
|
int8_t L_10 = (*(int8_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m378CC1B4483FF030DAA6A2CEA3E07231BBB20A0E_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, uint16_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<uint16_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
uint16_t* L_9 = ___1_value2;
|
|
uint16_t L_10 = (*(uint16_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF02D314C36796753FB9E71CA363D4F8D9B871101_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, uint32_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<uint32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
uint32_t* L_9 = ___1_value2;
|
|
uint32_t L_10 = (*(uint32_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m652D75D0D2F113A8A0F0E7EA60687D50C27C0D96_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int8_t* ___0_value1, uint64_t* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int8_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<uint64_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
int8_t* L_5 = ___0_value1;
|
|
int8_t L_6 = (*(int8_t*)L_5);
|
|
il2cpp_unsafe_write_unaligned(L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = il2cpp_unsafe_sizeof<int8_t>();
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
uint64_t* L_9 = ___1_value2;
|
|
uint64_t L_10 = (*(uint64_t*)L_9);
|
|
il2cpp_unsafe_write_unaligned(L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mBE98022570071538B5CA823E8A1D7FA975C68C0B_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tC1E5A2FF1C97B0AF050429491EB420A3E29BC56C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T2_tBA42789D175995F4052BC965C904E19E9E77A8FB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericStruct L_6 = alloca(SizeOf_T1_tC1E5A2FF1C97B0AF050429491EB420A3E29BC56C);
|
|
const Il2CppFullySharedGenericStruct L_10 = alloca(SizeOf_T2_tBA42789D175995F4052BC965C904E19E9E77A8FB);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
Il2CppFullySharedGenericStruct* L_5 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_6, L_5, SizeOf_T1_tC1E5A2FF1C97B0AF050429491EB420A3E29BC56C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)), il2cpp_rgctx_method(method->rgctx_data, 4), NULL, L_4, L_6);
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_4, L_7);
|
|
Il2CppFullySharedGenericStruct* L_9 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_10, L_9, SizeOf_T2_tBA42789D175995F4052BC965C904E19E9E77A8FB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, L_8, L_10);
|
|
int32_t L_11 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m8CA24EB1F9059335A519FD4089011758AB1248B4_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t* ___0_value1, int32_t* ___1_value2, int32_t* ___2_value3, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_2;
|
|
L_2 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2));
|
|
int32_t L_3 = V_0;
|
|
uint8_t* L_4;
|
|
L_4 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_5 = L_4;
|
|
int32_t* L_6 = ___0_value1;
|
|
int32_t L_7 = (*(int32_t*)L_6);
|
|
il2cpp_unsafe_write_unaligned(L_5, L_7);
|
|
uint8_t* L_8 = L_5;
|
|
int32_t L_9;
|
|
L_9 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_10;
|
|
L_10 = il2cpp_unsafe_add<uint8_t,int32_t>(L_8, L_9);
|
|
int32_t* L_11 = ___1_value2;
|
|
int32_t L_12 = (*(int32_t*)L_11);
|
|
il2cpp_unsafe_write_unaligned(L_10, L_12);
|
|
int32_t L_13;
|
|
L_13 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_14;
|
|
L_14 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_15;
|
|
L_15 = il2cpp_unsafe_add<uint8_t,int32_t>(L_8, ((int32_t)il2cpp_codegen_add(L_13, L_14)));
|
|
int32_t* L_16 = ___2_value3;
|
|
int32_t L_17 = (*(int32_t*)L_16);
|
|
il2cpp_unsafe_write_unaligned(L_15, L_17);
|
|
int32_t L_18 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_18, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mA72594B24BF56DCA293C38A486D1CA519DE31E59_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t7441328DA2CCC9EACF9851ECFFFAA027B6886347 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T2_t220269CC62E20153BD2192583E73B1F6B6FBA1EC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T3_tBA205636B02CD9C414FAFDDD2BD968B676AA3104 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericStruct L_7 = alloca(SizeOf_T1_t7441328DA2CCC9EACF9851ECFFFAA027B6886347);
|
|
const Il2CppFullySharedGenericStruct L_12 = alloca(SizeOf_T2_t220269CC62E20153BD2192583E73B1F6B6FBA1EC);
|
|
const Il2CppFullySharedGenericStruct L_17 = alloca(SizeOf_T3_tBA205636B02CD9C414FAFDDD2BD968B676AA3104);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2));
|
|
int32_t L_3 = V_0;
|
|
uint8_t* L_4;
|
|
L_4 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_5 = L_4;
|
|
Il2CppFullySharedGenericStruct* L_6 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_7, L_6, SizeOf_T1_t7441328DA2CCC9EACF9851ECFFFAA027B6886347);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, L_5, L_7);
|
|
uint8_t* L_8 = L_5;
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_10;
|
|
L_10 = il2cpp_unsafe_add<uint8_t,int32_t>(L_8, L_9);
|
|
Il2CppFullySharedGenericStruct* L_11 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_12, L_11, SizeOf_T2_t220269CC62E20153BD2192583E73B1F6B6FBA1EC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), NULL, L_10, L_12);
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_15;
|
|
L_15 = il2cpp_unsafe_add<uint8_t,int32_t>(L_8, ((int32_t)il2cpp_codegen_add(L_13, L_14)));
|
|
Il2CppFullySharedGenericStruct* L_16 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_17, L_16, SizeOf_T3_tBA205636B02CD9C414FAFDDD2BD968B676AA3104);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, L_15, L_17);
|
|
int32_t L_18 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_18, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCCF5A8425047067B2607C7AE8520D02A581AE15B_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t* ___0_value1, int32_t* ___1_value2, int32_t* ___2_value3, int32_t* ___3_value4, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_2;
|
|
L_2 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_3;
|
|
L_3 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3));
|
|
int32_t L_4 = V_0;
|
|
uint8_t* L_5;
|
|
L_5 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_6 = L_5;
|
|
int32_t* L_7 = ___0_value1;
|
|
int32_t L_8 = (*(int32_t*)L_7);
|
|
il2cpp_unsafe_write_unaligned(L_6, L_8);
|
|
uint8_t* L_9 = L_6;
|
|
int32_t L_10;
|
|
L_10 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_11;
|
|
L_11 = il2cpp_unsafe_add<uint8_t,int32_t>(L_9, L_10);
|
|
int32_t* L_12 = ___1_value2;
|
|
int32_t L_13 = (*(int32_t*)L_12);
|
|
il2cpp_unsafe_write_unaligned(L_11, L_13);
|
|
uint8_t* L_14 = L_9;
|
|
int32_t L_15;
|
|
L_15 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_16;
|
|
L_16 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)));
|
|
int32_t* L_18 = ___2_value3;
|
|
int32_t L_19 = (*(int32_t*)L_18);
|
|
il2cpp_unsafe_write_unaligned(L_17, L_19);
|
|
int32_t L_20;
|
|
L_20 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_21;
|
|
L_21 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_22;
|
|
L_22 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_20, L_21)), L_22)));
|
|
int32_t* L_24 = ___3_value4;
|
|
int32_t L_25 = (*(int32_t*)L_24);
|
|
il2cpp_unsafe_write_unaligned(L_23, L_25);
|
|
int32_t L_26 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_26, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mFD192DD2375D598DF983C78BCE12AF5FB8441E08_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tDFD53B5EA834AC219FD80FB44852B958E8197020 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T2_tC944A90012D5A91BA58CCB23B9A38CC6A3D69754 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T3_t5FF889A44D399B072412D8DF348417FD5E25CF99 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T4_tEAF95C54BC4CA9E70D348327F5867AF0681DF343 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const Il2CppFullySharedGenericStruct L_8 = alloca(SizeOf_T1_tDFD53B5EA834AC219FD80FB44852B958E8197020);
|
|
const Il2CppFullySharedGenericStruct L_13 = alloca(SizeOf_T2_tC944A90012D5A91BA58CCB23B9A38CC6A3D69754);
|
|
const Il2CppFullySharedGenericStruct L_19 = alloca(SizeOf_T3_t5FF889A44D399B072412D8DF348417FD5E25CF99);
|
|
const Il2CppFullySharedGenericStruct L_25 = alloca(SizeOf_T4_tEAF95C54BC4CA9E70D348327F5867AF0681DF343);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3));
|
|
int32_t L_4 = V_0;
|
|
uint8_t* L_5;
|
|
L_5 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_6 = L_5;
|
|
Il2CppFullySharedGenericStruct* L_7 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_8, L_7, SizeOf_T1_tDFD53B5EA834AC219FD80FB44852B958E8197020);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), NULL, L_6, L_8);
|
|
uint8_t* L_9 = L_6;
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_11;
|
|
L_11 = il2cpp_unsafe_add<uint8_t,int32_t>(L_9, L_10);
|
|
Il2CppFullySharedGenericStruct* L_12 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_13, L_12, SizeOf_T2_tC944A90012D5A91BA58CCB23B9A38CC6A3D69754);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, L_11, L_13);
|
|
uint8_t* L_14 = L_9;
|
|
int32_t L_15;
|
|
L_15 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_16;
|
|
L_16 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)));
|
|
Il2CppFullySharedGenericStruct* L_18 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_19, L_18, SizeOf_T3_t5FF889A44D399B072412D8DF348417FD5E25CF99);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), NULL, L_17, L_19);
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_20, L_21)), L_22)));
|
|
Il2CppFullySharedGenericStruct* L_24 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_25, L_24, SizeOf_T4_tEAF95C54BC4CA9E70D348327F5867AF0681DF343);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_23, L_25);
|
|
int32_t L_26 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_26, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mCDEF9E2402CB8B2565EC2299F4DA218C5C4E0E93_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tEAE427827283EC8765BBD7082FC632539E94E698 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T2_t38CF3D336DADEC1AB2E0A191DA1A67FA9302E02B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T3_t2DE5DE9489186E5D6B144DBC69D418C4F62193FA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T4_tF1CB3080491F14E779797C2C14844CF3B6F06EA5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T5_t13EEAEDDF72A4D4662221AFFCF5C3CA647196F25 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const Il2CppFullySharedGenericStruct L_9 = alloca(SizeOf_T1_tEAE427827283EC8765BBD7082FC632539E94E698);
|
|
const Il2CppFullySharedGenericStruct L_14 = alloca(SizeOf_T2_t38CF3D336DADEC1AB2E0A191DA1A67FA9302E02B);
|
|
const Il2CppFullySharedGenericStruct L_20 = alloca(SizeOf_T3_t2DE5DE9489186E5D6B144DBC69D418C4F62193FA);
|
|
const Il2CppFullySharedGenericStruct L_27 = alloca(SizeOf_T4_tF1CB3080491F14E779797C2C14844CF3B6F06EA5);
|
|
const Il2CppFullySharedGenericStruct L_34 = alloca(SizeOf_T5_t13EEAEDDF72A4D4662221AFFCF5C3CA647196F25);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4));
|
|
int32_t L_5 = V_0;
|
|
uint8_t* L_6;
|
|
L_6 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_7 = L_6;
|
|
Il2CppFullySharedGenericStruct* L_8 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_9, L_8, SizeOf_T1_tEAE427827283EC8765BBD7082FC632539E94E698);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, L_7, L_9);
|
|
uint8_t* L_10 = L_7;
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_12;
|
|
L_12 = il2cpp_unsafe_add<uint8_t,int32_t>(L_10, L_11);
|
|
Il2CppFullySharedGenericStruct* L_13 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_14, L_13, SizeOf_T2_t38CF3D336DADEC1AB2E0A191DA1A67FA9302E02B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)), il2cpp_rgctx_method(method->rgctx_data, 10), NULL, L_12, L_14);
|
|
uint8_t* L_15 = L_10;
|
|
int32_t L_16;
|
|
L_16 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_17;
|
|
L_17 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_18;
|
|
L_18 = il2cpp_unsafe_add<uint8_t,int32_t>(L_15, ((int32_t)il2cpp_codegen_add(L_16, L_17)));
|
|
Il2CppFullySharedGenericStruct* L_19 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_20, L_19, SizeOf_T3_t2DE5DE9489186E5D6B144DBC69D418C4F62193FA);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, L_18, L_20);
|
|
uint8_t* L_21 = L_15;
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_25;
|
|
L_25 = il2cpp_unsafe_add<uint8_t,int32_t>(L_21, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_22, L_23)), L_24)));
|
|
Il2CppFullySharedGenericStruct* L_26 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_27, L_26, SizeOf_T4_tF1CB3080491F14E779797C2C14844CF3B6F06EA5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_25, L_27);
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_32;
|
|
L_32 = il2cpp_unsafe_add<uint8_t,int32_t>(L_21, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, L_29)), L_30)), L_31)));
|
|
Il2CppFullySharedGenericStruct* L_33 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_34, L_33, SizeOf_T5_t13EEAEDDF72A4D4662221AFFCF5C3CA647196F25);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_32, L_34);
|
|
int32_t L_35 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_35, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m6C1C6D35B07DD2B817FB4AEDED32843CDFD68F8A_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t57CAC4FAE1365C5279B51E2EB1D5F9B01C0FDD3D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T2_t7F13E67F243DA796FCFDEBD23C3E822A30C707AA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T3_t7BFF313C49E443F1DD0D0AE06DE525DD8F0CB333 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T4_tD0D3F03DE1FA7365CDB0CCAABFAA2154A68C527B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T5_t2DA5FD51477FC567F773BA6AAF1E56E4C1153E41 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T6_t57ADC045AC155C873A66CE85975EBFC9F53817FB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const Il2CppFullySharedGenericStruct L_10 = alloca(SizeOf_T1_t57CAC4FAE1365C5279B51E2EB1D5F9B01C0FDD3D);
|
|
const Il2CppFullySharedGenericStruct L_15 = alloca(SizeOf_T2_t7F13E67F243DA796FCFDEBD23C3E822A30C707AA);
|
|
const Il2CppFullySharedGenericStruct L_21 = alloca(SizeOf_T3_t7BFF313C49E443F1DD0D0AE06DE525DD8F0CB333);
|
|
const Il2CppFullySharedGenericStruct L_28 = alloca(SizeOf_T4_tD0D3F03DE1FA7365CDB0CCAABFAA2154A68C527B);
|
|
const Il2CppFullySharedGenericStruct L_36 = alloca(SizeOf_T5_t2DA5FD51477FC567F773BA6AAF1E56E4C1153E41);
|
|
const Il2CppFullySharedGenericStruct L_44 = alloca(SizeOf_T6_t57ADC045AC155C873A66CE85975EBFC9F53817FB);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5));
|
|
int32_t L_6 = V_0;
|
|
uint8_t* L_7;
|
|
L_7 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_8 = L_7;
|
|
Il2CppFullySharedGenericStruct* L_9 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_10, L_9, SizeOf_T1_t57CAC4FAE1365C5279B51E2EB1D5F9B01C0FDD3D);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), NULL, L_8, L_10);
|
|
uint8_t* L_11 = L_8;
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_13;
|
|
L_13 = il2cpp_unsafe_add<uint8_t,int32_t>(L_11, L_12);
|
|
Il2CppFullySharedGenericStruct* L_14 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_15, L_14, SizeOf_T2_t7F13E67F243DA796FCFDEBD23C3E822A30C707AA);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, L_13, L_15);
|
|
uint8_t* L_16 = L_11;
|
|
int32_t L_17;
|
|
L_17 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_18;
|
|
L_18 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<uint8_t,int32_t>(L_16, ((int32_t)il2cpp_codegen_add(L_17, L_18)));
|
|
Il2CppFullySharedGenericStruct* L_20 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_21, L_20, SizeOf_T3_t7BFF313C49E443F1DD0D0AE06DE525DD8F0CB333);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_19, L_21);
|
|
uint8_t* L_22 = L_16;
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_26;
|
|
L_26 = il2cpp_unsafe_add<uint8_t,int32_t>(L_22, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_23, L_24)), L_25)));
|
|
Il2CppFullySharedGenericStruct* L_27 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_28, L_27, SizeOf_T4_tD0D3F03DE1FA7365CDB0CCAABFAA2154A68C527B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_26, L_28);
|
|
uint8_t* L_29 = L_22;
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_34;
|
|
L_34 = il2cpp_unsafe_add<uint8_t,int32_t>(L_29, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_30, L_31)), L_32)), L_33)));
|
|
Il2CppFullySharedGenericStruct* L_35 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_36, L_35, SizeOf_T5_t2DA5FD51477FC567F773BA6AAF1E56E4C1153E41);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_34, L_36);
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_42;
|
|
L_42 = il2cpp_unsafe_add<uint8_t,int32_t>(L_29, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_37, L_38)), L_39)), L_40)), L_41)));
|
|
Il2CppFullySharedGenericStruct* L_43 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_44, L_43, SizeOf_T6_t57ADC045AC155C873A66CE85975EBFC9F53817FB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_42, L_44);
|
|
int32_t L_45 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_45, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m99802546CE81D86E9DE129CA172B19028BF8648F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t116F1732BF330683E1967F736550F4873070554E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T2_tA4325CA08A1D3D4FED38B0D7C3DC4D92F346ADB9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T3_t7ED441FEF17706058D90B5FB6FA8B2969FC8D269 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T4_t201B94D30B7580693D9A020AF75850E68F23EDEB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T5_t048B51FFF9FC5C2942978F53F4F8AA23E6E75593 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T6_tD5DF4226BCA283B4D3FD1271A68641AF1EF73E8E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T7_t73C74A8ED538A9190C0CF7940834F48906B1ED4B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const Il2CppFullySharedGenericStruct L_11 = alloca(SizeOf_T1_t116F1732BF330683E1967F736550F4873070554E);
|
|
const Il2CppFullySharedGenericStruct L_16 = alloca(SizeOf_T2_tA4325CA08A1D3D4FED38B0D7C3DC4D92F346ADB9);
|
|
const Il2CppFullySharedGenericStruct L_22 = alloca(SizeOf_T3_t7ED441FEF17706058D90B5FB6FA8B2969FC8D269);
|
|
const Il2CppFullySharedGenericStruct L_29 = alloca(SizeOf_T4_t201B94D30B7580693D9A020AF75850E68F23EDEB);
|
|
const Il2CppFullySharedGenericStruct L_37 = alloca(SizeOf_T5_t048B51FFF9FC5C2942978F53F4F8AA23E6E75593);
|
|
const Il2CppFullySharedGenericStruct L_46 = alloca(SizeOf_T6_tD5DF4226BCA283B4D3FD1271A68641AF1EF73E8E);
|
|
const Il2CppFullySharedGenericStruct L_55 = alloca(SizeOf_T7_t73C74A8ED538A9190C0CF7940834F48906B1ED4B);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6));
|
|
int32_t L_7 = V_0;
|
|
uint8_t* L_8;
|
|
L_8 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_9 = L_8;
|
|
Il2CppFullySharedGenericStruct* L_10 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_11, L_10, SizeOf_T1_t116F1732BF330683E1967F736550F4873070554E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, L_9, L_11);
|
|
uint8_t* L_12 = L_9;
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_14;
|
|
L_14 = il2cpp_unsafe_add<uint8_t,int32_t>(L_12, L_13);
|
|
Il2CppFullySharedGenericStruct* L_15 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_16, L_15, SizeOf_T2_tA4325CA08A1D3D4FED38B0D7C3DC4D92F346ADB9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), NULL, L_14, L_16);
|
|
uint8_t* L_17 = L_12;
|
|
int32_t L_18;
|
|
L_18 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, ((int32_t)il2cpp_codegen_add(L_18, L_19)));
|
|
Il2CppFullySharedGenericStruct* L_21 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_22, L_21, SizeOf_T3_t7ED441FEF17706058D90B5FB6FA8B2969FC8D269);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_20, L_22);
|
|
uint8_t* L_23 = L_17;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_27;
|
|
L_27 = il2cpp_unsafe_add<uint8_t,int32_t>(L_23, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_24, L_25)), L_26)));
|
|
Il2CppFullySharedGenericStruct* L_28 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_29, L_28, SizeOf_T4_t201B94D30B7580693D9A020AF75850E68F23EDEB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_27, L_29);
|
|
uint8_t* L_30 = L_23;
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_35;
|
|
L_35 = il2cpp_unsafe_add<uint8_t,int32_t>(L_30, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_31, L_32)), L_33)), L_34)));
|
|
Il2CppFullySharedGenericStruct* L_36 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_37, L_36, SizeOf_T5_t048B51FFF9FC5C2942978F53F4F8AA23E6E75593);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_35, L_37);
|
|
uint8_t* L_38 = L_30;
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_44;
|
|
L_44 = il2cpp_unsafe_add<uint8_t,int32_t>(L_38, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_39, L_40)), L_41)), L_42)), L_43)));
|
|
Il2CppFullySharedGenericStruct* L_45 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_46, L_45, SizeOf_T6_tD5DF4226BCA283B4D3FD1271A68641AF1EF73E8E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_44, L_46);
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_53;
|
|
L_53 = il2cpp_unsafe_add<uint8_t,int32_t>(L_38, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_48)), L_49)), L_50)), L_51)), L_52)));
|
|
Il2CppFullySharedGenericStruct* L_54 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_55, L_54, SizeOf_T7_t73C74A8ED538A9190C0CF7940834F48906B1ED4B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_53, L_55);
|
|
int32_t L_56 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_56, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m042E6ED82AE54A974AEAB9717C9D141490B6FF2A_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t6D98BF41F4E83BC447F76AD0A7FCEFA6A76899B5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T2_t2CA6BAB83B7426ED2E1F5B777ABED8C782C5AFFC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T3_tD6ACBEADB15BDA52C2276FECCCEFD31F1F4CD20E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T4_t979E8DBCEC37DD830384938DE024593CC9D2F1A4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T5_t2EFEE0C9995FD5D270EB66C22761A2F5A0D0CEA9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T6_t086FC179184C310D6666124FAB5826A3F621971F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T7_t449953A6496AEEA469116C4AB9D93F5A93363F1C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T8_tB9F1BFAC7C82EC0B2FF2173E54B6421621B7AF8E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const Il2CppFullySharedGenericStruct L_12 = alloca(SizeOf_T1_t6D98BF41F4E83BC447F76AD0A7FCEFA6A76899B5);
|
|
const Il2CppFullySharedGenericStruct L_17 = alloca(SizeOf_T2_t2CA6BAB83B7426ED2E1F5B777ABED8C782C5AFFC);
|
|
const Il2CppFullySharedGenericStruct L_23 = alloca(SizeOf_T3_tD6ACBEADB15BDA52C2276FECCCEFD31F1F4CD20E);
|
|
const Il2CppFullySharedGenericStruct L_30 = alloca(SizeOf_T4_t979E8DBCEC37DD830384938DE024593CC9D2F1A4);
|
|
const Il2CppFullySharedGenericStruct L_38 = alloca(SizeOf_T5_t2EFEE0C9995FD5D270EB66C22761A2F5A0D0CEA9);
|
|
const Il2CppFullySharedGenericStruct L_47 = alloca(SizeOf_T6_t086FC179184C310D6666124FAB5826A3F621971F);
|
|
const Il2CppFullySharedGenericStruct L_57 = alloca(SizeOf_T7_t449953A6496AEEA469116C4AB9D93F5A93363F1C);
|
|
const Il2CppFullySharedGenericStruct L_67 = alloca(SizeOf_T8_tB9F1BFAC7C82EC0B2FF2173E54B6421621B7AF8E);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7));
|
|
int32_t L_8 = V_0;
|
|
uint8_t* L_9;
|
|
L_9 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_8, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_10 = L_9;
|
|
Il2CppFullySharedGenericStruct* L_11 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_12, L_11, SizeOf_T1_t6D98BF41F4E83BC447F76AD0A7FCEFA6A76899B5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)), il2cpp_rgctx_method(method->rgctx_data, 10), NULL, L_10, L_12);
|
|
uint8_t* L_13 = L_10;
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_15;
|
|
L_15 = il2cpp_unsafe_add<uint8_t,int32_t>(L_13, L_14);
|
|
Il2CppFullySharedGenericStruct* L_16 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_17, L_16, SizeOf_T2_t2CA6BAB83B7426ED2E1F5B777ABED8C782C5AFFC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, L_15, L_17);
|
|
uint8_t* L_18 = L_13;
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_21;
|
|
L_21 = il2cpp_unsafe_add<uint8_t,int32_t>(L_18, ((int32_t)il2cpp_codegen_add(L_19, L_20)));
|
|
Il2CppFullySharedGenericStruct* L_22 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_23, L_22, SizeOf_T3_tD6ACBEADB15BDA52C2276FECCCEFD31F1F4CD20E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_21, L_23);
|
|
uint8_t* L_24 = L_18;
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_28;
|
|
L_28 = il2cpp_unsafe_add<uint8_t,int32_t>(L_24, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_25, L_26)), L_27)));
|
|
Il2CppFullySharedGenericStruct* L_29 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_30, L_29, SizeOf_T4_t979E8DBCEC37DD830384938DE024593CC9D2F1A4);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_28, L_30);
|
|
uint8_t* L_31 = L_24;
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_36;
|
|
L_36 = il2cpp_unsafe_add<uint8_t,int32_t>(L_31, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_32, L_33)), L_34)), L_35)));
|
|
Il2CppFullySharedGenericStruct* L_37 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_38, L_37, SizeOf_T5_t2EFEE0C9995FD5D270EB66C22761A2F5A0D0CEA9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_36, L_38);
|
|
uint8_t* L_39 = L_31;
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_45;
|
|
L_45 = il2cpp_unsafe_add<uint8_t,int32_t>(L_39, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_40, L_41)), L_42)), L_43)), L_44)));
|
|
Il2CppFullySharedGenericStruct* L_46 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_47, L_46, SizeOf_T6_t086FC179184C310D6666124FAB5826A3F621971F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_45, L_47);
|
|
uint8_t* L_48 = L_39;
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_55;
|
|
L_55 = il2cpp_unsafe_add<uint8_t,int32_t>(L_48, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_49, L_50)), L_51)), L_52)), L_53)), L_54)));
|
|
Il2CppFullySharedGenericStruct* L_56 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_57, L_56, SizeOf_T7_t449953A6496AEEA469116C4AB9D93F5A93363F1C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_55, L_57);
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_65;
|
|
L_65 = il2cpp_unsafe_add<uint8_t,int32_t>(L_48, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_58, L_59)), L_60)), L_61)), L_62)), L_63)), L_64)));
|
|
Il2CppFullySharedGenericStruct* L_66 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_67, L_66, SizeOf_T8_tB9F1BFAC7C82EC0B2FF2173E54B6421621B7AF8E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_65, L_67);
|
|
int32_t L_68 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_68, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m7B30A6AEF77C55963CE2DA3A0A97B9CECEBFFB1F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tF704A56F57167596EBD1B02CBF148C8A23B5FE70 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T2_t34FFB0C65CAF4B6334454FF7A7F1A6D6380974CA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T3_tDF58C4A650151073E9FF9EA93B1D348FBF6F90B9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T4_t2C9BCE30E8495C38D2D7DB0DA6C38D3FD842B7AC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T5_tD9586423F448AAC8F6B3F3569C5AD2D1990AB931 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T6_t20A6590474C72EB1B792562F86021D300FB29A8E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T7_tDFAEE1DE641306F9FA6528BDC5DEA2F95793679E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T8_tD47C39A173F53F783345F7C08ECEEA465C281760 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T9_tE45CD76E57D78AEE3042966A1669C250A7666DC1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const Il2CppFullySharedGenericStruct L_13 = alloca(SizeOf_T1_tF704A56F57167596EBD1B02CBF148C8A23B5FE70);
|
|
const Il2CppFullySharedGenericStruct L_18 = alloca(SizeOf_T2_t34FFB0C65CAF4B6334454FF7A7F1A6D6380974CA);
|
|
const Il2CppFullySharedGenericStruct L_24 = alloca(SizeOf_T3_tDF58C4A650151073E9FF9EA93B1D348FBF6F90B9);
|
|
const Il2CppFullySharedGenericStruct L_31 = alloca(SizeOf_T4_t2C9BCE30E8495C38D2D7DB0DA6C38D3FD842B7AC);
|
|
const Il2CppFullySharedGenericStruct L_39 = alloca(SizeOf_T5_tD9586423F448AAC8F6B3F3569C5AD2D1990AB931);
|
|
const Il2CppFullySharedGenericStruct L_48 = alloca(SizeOf_T6_t20A6590474C72EB1B792562F86021D300FB29A8E);
|
|
const Il2CppFullySharedGenericStruct L_58 = alloca(SizeOf_T7_tDFAEE1DE641306F9FA6528BDC5DEA2F95793679E);
|
|
const Il2CppFullySharedGenericStruct L_69 = alloca(SizeOf_T8_tD47C39A173F53F783345F7C08ECEEA465C281760);
|
|
const Il2CppFullySharedGenericStruct L_80 = alloca(SizeOf_T9_tE45CD76E57D78AEE3042966A1669C250A7666DC1);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8));
|
|
int32_t L_9 = V_0;
|
|
uint8_t* L_10;
|
|
L_10 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_9, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_11 = L_10;
|
|
Il2CppFullySharedGenericStruct* L_12 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_13, L_12, SizeOf_T1_tF704A56F57167596EBD1B02CBF148C8A23B5FE70);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, L_11, L_13);
|
|
uint8_t* L_14 = L_11;
|
|
int32_t L_15;
|
|
L_15 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_16;
|
|
L_16 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, L_15);
|
|
Il2CppFullySharedGenericStruct* L_17 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_18, L_17, SizeOf_T2_t34FFB0C65CAF4B6334454FF7A7F1A6D6380974CA);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_16, L_18);
|
|
uint8_t* L_19 = L_14;
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_22;
|
|
L_22 = il2cpp_unsafe_add<uint8_t,int32_t>(L_19, ((int32_t)il2cpp_codegen_add(L_20, L_21)));
|
|
Il2CppFullySharedGenericStruct* L_23 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_24, L_23, SizeOf_T3_tDF58C4A650151073E9FF9EA93B1D348FBF6F90B9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_22, L_24);
|
|
uint8_t* L_25 = L_19;
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_29;
|
|
L_29 = il2cpp_unsafe_add<uint8_t,int32_t>(L_25, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_26, L_27)), L_28)));
|
|
Il2CppFullySharedGenericStruct* L_30 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_31, L_30, SizeOf_T4_t2C9BCE30E8495C38D2D7DB0DA6C38D3FD842B7AC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_29, L_31);
|
|
uint8_t* L_32 = L_25;
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_37;
|
|
L_37 = il2cpp_unsafe_add<uint8_t,int32_t>(L_32, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_33, L_34)), L_35)), L_36)));
|
|
Il2CppFullySharedGenericStruct* L_38 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_39, L_38, SizeOf_T5_tD9586423F448AAC8F6B3F3569C5AD2D1990AB931);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_37, L_39);
|
|
uint8_t* L_40 = L_32;
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_46;
|
|
L_46 = il2cpp_unsafe_add<uint8_t,int32_t>(L_40, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_41, L_42)), L_43)), L_44)), L_45)));
|
|
Il2CppFullySharedGenericStruct* L_47 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_48, L_47, SizeOf_T6_t20A6590474C72EB1B792562F86021D300FB29A8E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_46, L_48);
|
|
uint8_t* L_49 = L_40;
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_56;
|
|
L_56 = il2cpp_unsafe_add<uint8_t,int32_t>(L_49, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_50, L_51)), L_52)), L_53)), L_54)), L_55)));
|
|
Il2CppFullySharedGenericStruct* L_57 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_58, L_57, SizeOf_T7_tDFAEE1DE641306F9FA6528BDC5DEA2F95793679E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_56, L_58);
|
|
uint8_t* L_59 = L_49;
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_67;
|
|
L_67 = il2cpp_unsafe_add<uint8_t,int32_t>(L_59, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_60, L_61)), L_62)), L_63)), L_64)), L_65)), L_66)));
|
|
Il2CppFullySharedGenericStruct* L_68 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_69, L_68, SizeOf_T8_tD47C39A173F53F783345F7C08ECEEA465C281760);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_67, L_69);
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_78;
|
|
L_78 = il2cpp_unsafe_add<uint8_t,int32_t>(L_59, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_70, L_71)), L_72)), L_73)), L_74)), L_75)), L_76)), L_77)));
|
|
Il2CppFullySharedGenericStruct* L_79 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_80, L_79, SizeOf_T9_tE45CD76E57D78AEE3042966A1669C250A7666DC1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_78, L_80);
|
|
int32_t L_81 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_81, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mF9307D70C94047E59BBBF898B9DF2C81E0AC08E7_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, Il2CppFullySharedGenericStruct* ___9_value10, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tE05B7A6A2711622D2F1F12BCF47BD8A87E202DEC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T2_t81498CA04EDBA8AAA82634CACABAC88453623BD7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T3_tC6FFA4D73CD1306D32729B42F138BD6A0C8B63C0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T4_tCE16D014F9B5BBED959A1911A0386155B8ECA3A8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T5_t957487B77B1D80DCB740E9EC4EC18B2B3C88A040 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T6_t9884B673B76FCF69B0286E98CDF86C6B9B1F7E1B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T7_tF67F5EE05B700EDC8588E53A11EE3AC3BFE3C370 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T8_t645B353A098AACE39A09E361BE359D48203CE39B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 32));
|
|
const uint32_t SizeOf_T9_t17E3D6E0AEC2114C006747BBE6C86D7F790F743F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 35));
|
|
const uint32_t SizeOf_T10_t019113EFAA1ECDFCC4BD6B35B9E703BA215A0BDE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 38));
|
|
const Il2CppFullySharedGenericStruct L_14 = alloca(SizeOf_T1_tE05B7A6A2711622D2F1F12BCF47BD8A87E202DEC);
|
|
const Il2CppFullySharedGenericStruct L_19 = alloca(SizeOf_T2_t81498CA04EDBA8AAA82634CACABAC88453623BD7);
|
|
const Il2CppFullySharedGenericStruct L_25 = alloca(SizeOf_T3_tC6FFA4D73CD1306D32729B42F138BD6A0C8B63C0);
|
|
const Il2CppFullySharedGenericStruct L_32 = alloca(SizeOf_T4_tCE16D014F9B5BBED959A1911A0386155B8ECA3A8);
|
|
const Il2CppFullySharedGenericStruct L_40 = alloca(SizeOf_T5_t957487B77B1D80DCB740E9EC4EC18B2B3C88A040);
|
|
const Il2CppFullySharedGenericStruct L_49 = alloca(SizeOf_T6_t9884B673B76FCF69B0286E98CDF86C6B9B1F7E1B);
|
|
const Il2CppFullySharedGenericStruct L_59 = alloca(SizeOf_T7_tF67F5EE05B700EDC8588E53A11EE3AC3BFE3C370);
|
|
const Il2CppFullySharedGenericStruct L_70 = alloca(SizeOf_T8_t645B353A098AACE39A09E361BE359D48203CE39B);
|
|
const Il2CppFullySharedGenericStruct L_82 = alloca(SizeOf_T9_t17E3D6E0AEC2114C006747BBE6C86D7F790F743F);
|
|
const Il2CppFullySharedGenericStruct L_94 = alloca(SizeOf_T10_t019113EFAA1ECDFCC4BD6B35B9E703BA215A0BDE);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9));
|
|
int32_t L_10 = V_0;
|
|
uint8_t* L_11;
|
|
L_11 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_10, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_12 = L_11;
|
|
Il2CppFullySharedGenericStruct* L_13 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_14, L_13, SizeOf_T1_tE05B7A6A2711622D2F1F12BCF47BD8A87E202DEC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), NULL, L_12, L_14);
|
|
uint8_t* L_15 = L_12;
|
|
int32_t L_16;
|
|
L_16 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<uint8_t,int32_t>(L_15, L_16);
|
|
Il2CppFullySharedGenericStruct* L_18 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_19, L_18, SizeOf_T2_t81498CA04EDBA8AAA82634CACABAC88453623BD7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_17, L_19);
|
|
uint8_t* L_20 = L_15;
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_unsafe_add<uint8_t,int32_t>(L_20, ((int32_t)il2cpp_codegen_add(L_21, L_22)));
|
|
Il2CppFullySharedGenericStruct* L_24 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_25, L_24, SizeOf_T3_tC6FFA4D73CD1306D32729B42F138BD6A0C8B63C0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_23, L_25);
|
|
uint8_t* L_26 = L_20;
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_30;
|
|
L_30 = il2cpp_unsafe_add<uint8_t,int32_t>(L_26, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_27, L_28)), L_29)));
|
|
Il2CppFullySharedGenericStruct* L_31 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_32, L_31, SizeOf_T4_tCE16D014F9B5BBED959A1911A0386155B8ECA3A8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_30, L_32);
|
|
uint8_t* L_33 = L_26;
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_38;
|
|
L_38 = il2cpp_unsafe_add<uint8_t,int32_t>(L_33, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_34, L_35)), L_36)), L_37)));
|
|
Il2CppFullySharedGenericStruct* L_39 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_40, L_39, SizeOf_T5_t957487B77B1D80DCB740E9EC4EC18B2B3C88A040);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_38, L_40);
|
|
uint8_t* L_41 = L_33;
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_47;
|
|
L_47 = il2cpp_unsafe_add<uint8_t,int32_t>(L_41, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_42, L_43)), L_44)), L_45)), L_46)));
|
|
Il2CppFullySharedGenericStruct* L_48 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_49, L_48, SizeOf_T6_t9884B673B76FCF69B0286E98CDF86C6B9B1F7E1B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_47, L_49);
|
|
uint8_t* L_50 = L_41;
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_57;
|
|
L_57 = il2cpp_unsafe_add<uint8_t,int32_t>(L_50, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_51, L_52)), L_53)), L_54)), L_55)), L_56)));
|
|
Il2CppFullySharedGenericStruct* L_58 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_59, L_58, SizeOf_T7_tF67F5EE05B700EDC8588E53A11EE3AC3BFE3C370);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 30)), il2cpp_rgctx_method(method->rgctx_data, 30), NULL, L_57, L_59);
|
|
uint8_t* L_60 = L_50;
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_68;
|
|
L_68 = il2cpp_unsafe_add<uint8_t,int32_t>(L_60, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_61, L_62)), L_63)), L_64)), L_65)), L_66)), L_67)));
|
|
Il2CppFullySharedGenericStruct* L_69 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_70, L_69, SizeOf_T8_t645B353A098AACE39A09E361BE359D48203CE39B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 33)), il2cpp_rgctx_method(method->rgctx_data, 33), NULL, L_68, L_70);
|
|
uint8_t* L_71 = L_60;
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_80;
|
|
L_80 = il2cpp_unsafe_add<uint8_t,int32_t>(L_71, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_72, L_73)), L_74)), L_75)), L_76)), L_77)), L_78)), L_79)));
|
|
Il2CppFullySharedGenericStruct* L_81 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_82, L_81, SizeOf_T9_t17E3D6E0AEC2114C006747BBE6C86D7F790F743F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 36)), il2cpp_rgctx_method(method->rgctx_data, 36), NULL, L_80, L_82);
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_92;
|
|
L_92 = il2cpp_unsafe_add<uint8_t,int32_t>(L_71, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_83, L_84)), L_85)), L_86)), L_87)), L_88)), L_89)), L_90)), L_91)));
|
|
Il2CppFullySharedGenericStruct* L_93 = ___9_value10;
|
|
il2cpp_codegen_memcpy(L_94, L_93, SizeOf_T10_t019113EFAA1ECDFCC4BD6B35B9E703BA215A0BDE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), NULL, L_92, L_94);
|
|
int32_t L_95 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_95, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m72ED7C1A18844B89570D32E2AF9709DC45D36EF9_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, Il2CppFullySharedGenericStruct* ___9_value10, Il2CppFullySharedGenericStruct* ___10_value11, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t858E736DED117081BE3F13A9736320292B081756 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T2_t70C6046DC56E586BA77C39C47086017C16FD7420 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T3_t69306BE7729233114993478E76C69A2EFF27FFE8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T4_t2774EAA49153F321BFC48F392FAA6486064856B6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T5_tCA58223C9122B6EF187E0A9EF30784E924D412CE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T6_t00F0EDDCACB6F0535CE1652E86A07A391A11B8C6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T7_tDF9EFA259830FBC3895469495F86A24F0C64AE0C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const uint32_t SizeOf_T8_t7633B52BAF769116A60CD73F2F53BA6EA0805DF5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T9_t120081C294B2D365B4D540343A8C27DE533EA92F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 36));
|
|
const uint32_t SizeOf_T10_tA44B6FF291CA24EB2865D6588682F644EC99177F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 39));
|
|
const uint32_t SizeOf_T11_tA7CF6D0519A9C6A197B40BD93E983E9841591055 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 42));
|
|
const Il2CppFullySharedGenericStruct L_15 = alloca(SizeOf_T1_t858E736DED117081BE3F13A9736320292B081756);
|
|
const Il2CppFullySharedGenericStruct L_20 = alloca(SizeOf_T2_t70C6046DC56E586BA77C39C47086017C16FD7420);
|
|
const Il2CppFullySharedGenericStruct L_26 = alloca(SizeOf_T3_t69306BE7729233114993478E76C69A2EFF27FFE8);
|
|
const Il2CppFullySharedGenericStruct L_33 = alloca(SizeOf_T4_t2774EAA49153F321BFC48F392FAA6486064856B6);
|
|
const Il2CppFullySharedGenericStruct L_41 = alloca(SizeOf_T5_tCA58223C9122B6EF187E0A9EF30784E924D412CE);
|
|
const Il2CppFullySharedGenericStruct L_50 = alloca(SizeOf_T6_t00F0EDDCACB6F0535CE1652E86A07A391A11B8C6);
|
|
const Il2CppFullySharedGenericStruct L_60 = alloca(SizeOf_T7_tDF9EFA259830FBC3895469495F86A24F0C64AE0C);
|
|
const Il2CppFullySharedGenericStruct L_71 = alloca(SizeOf_T8_t7633B52BAF769116A60CD73F2F53BA6EA0805DF5);
|
|
const Il2CppFullySharedGenericStruct L_83 = alloca(SizeOf_T9_t120081C294B2D365B4D540343A8C27DE533EA92F);
|
|
const Il2CppFullySharedGenericStruct L_96 = alloca(SizeOf_T10_tA44B6FF291CA24EB2865D6588682F644EC99177F);
|
|
const Il2CppFullySharedGenericStruct L_109 = alloca(SizeOf_T11_tA7CF6D0519A9C6A197B40BD93E983E9841591055);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10));
|
|
int32_t L_11 = V_0;
|
|
uint8_t* L_12;
|
|
L_12 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_13 = L_12;
|
|
Il2CppFullySharedGenericStruct* L_14 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_15, L_14, SizeOf_T1_t858E736DED117081BE3F13A9736320292B081756);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, L_13, L_15);
|
|
uint8_t* L_16 = L_13;
|
|
int32_t L_17;
|
|
L_17 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_18;
|
|
L_18 = il2cpp_unsafe_add<uint8_t,int32_t>(L_16, L_17);
|
|
Il2CppFullySharedGenericStruct* L_19 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_20, L_19, SizeOf_T2_t70C6046DC56E586BA77C39C47086017C16FD7420);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_18, L_20);
|
|
uint8_t* L_21 = L_16;
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_24;
|
|
L_24 = il2cpp_unsafe_add<uint8_t,int32_t>(L_21, ((int32_t)il2cpp_codegen_add(L_22, L_23)));
|
|
Il2CppFullySharedGenericStruct* L_25 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_26, L_25, SizeOf_T3_t69306BE7729233114993478E76C69A2EFF27FFE8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_24, L_26);
|
|
uint8_t* L_27 = L_21;
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_31;
|
|
L_31 = il2cpp_unsafe_add<uint8_t,int32_t>(L_27, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, L_29)), L_30)));
|
|
Il2CppFullySharedGenericStruct* L_32 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_33, L_32, SizeOf_T4_t2774EAA49153F321BFC48F392FAA6486064856B6);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_31, L_33);
|
|
uint8_t* L_34 = L_27;
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_39;
|
|
L_39 = il2cpp_unsafe_add<uint8_t,int32_t>(L_34, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_35, L_36)), L_37)), L_38)));
|
|
Il2CppFullySharedGenericStruct* L_40 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_41, L_40, SizeOf_T5_tCA58223C9122B6EF187E0A9EF30784E924D412CE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_39, L_41);
|
|
uint8_t* L_42 = L_34;
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_48;
|
|
L_48 = il2cpp_unsafe_add<uint8_t,int32_t>(L_42, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_43, L_44)), L_45)), L_46)), L_47)));
|
|
Il2CppFullySharedGenericStruct* L_49 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_50, L_49, SizeOf_T6_t00F0EDDCACB6F0535CE1652E86A07A391A11B8C6);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_48, L_50);
|
|
uint8_t* L_51 = L_42;
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_58;
|
|
L_58 = il2cpp_unsafe_add<uint8_t,int32_t>(L_51, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_52, L_53)), L_54)), L_55)), L_56)), L_57)));
|
|
Il2CppFullySharedGenericStruct* L_59 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_60, L_59, SizeOf_T7_tDF9EFA259830FBC3895469495F86A24F0C64AE0C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_58, L_60);
|
|
uint8_t* L_61 = L_51;
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_69;
|
|
L_69 = il2cpp_unsafe_add<uint8_t,int32_t>(L_61, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_62, L_63)), L_64)), L_65)), L_66)), L_67)), L_68)));
|
|
Il2CppFullySharedGenericStruct* L_70 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_71, L_70, SizeOf_T8_t7633B52BAF769116A60CD73F2F53BA6EA0805DF5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 34)), il2cpp_rgctx_method(method->rgctx_data, 34), NULL, L_69, L_71);
|
|
uint8_t* L_72 = L_61;
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_81;
|
|
L_81 = il2cpp_unsafe_add<uint8_t,int32_t>(L_72, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_73, L_74)), L_75)), L_76)), L_77)), L_78)), L_79)), L_80)));
|
|
Il2CppFullySharedGenericStruct* L_82 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_83, L_82, SizeOf_T9_t120081C294B2D365B4D540343A8C27DE533EA92F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 37)), il2cpp_rgctx_method(method->rgctx_data, 37), NULL, L_81, L_83);
|
|
uint8_t* L_84 = L_72;
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_94;
|
|
L_94 = il2cpp_unsafe_add<uint8_t,int32_t>(L_84, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_85, L_86)), L_87)), L_88)), L_89)), L_90)), L_91)), L_92)), L_93)));
|
|
Il2CppFullySharedGenericStruct* L_95 = ___9_value10;
|
|
il2cpp_codegen_memcpy(L_96, L_95, SizeOf_T10_tA44B6FF291CA24EB2865D6588682F644EC99177F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 40)), il2cpp_rgctx_method(method->rgctx_data, 40), NULL, L_94, L_96);
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_99;
|
|
L_99 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_100;
|
|
L_100 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_101;
|
|
L_101 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_107;
|
|
L_107 = il2cpp_unsafe_add<uint8_t,int32_t>(L_84, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_97, L_98)), L_99)), L_100)), L_101)), L_102)), L_103)), L_104)), L_105)), L_106)));
|
|
Il2CppFullySharedGenericStruct* L_108 = ___10_value11;
|
|
il2cpp_codegen_memcpy(L_109, L_108, SizeOf_T11_tA7CF6D0519A9C6A197B40BD93E983E9841591055);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), NULL, L_107, L_109);
|
|
int32_t L_110 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_110, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m654D7AF9044FDA1FAB6D0DEEC85EEAFAA1205F61_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, Il2CppFullySharedGenericStruct* ___9_value10, Il2CppFullySharedGenericStruct* ___10_value11, Il2CppFullySharedGenericStruct* ___11_value12, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t35C6EE887D3C75139E78FFE599C03E10A776E26E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T2_tD6EA07FB736B836A9CDB19F99B23E7F3F405DF2E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T3_tCA433682C37AD100BCBEAB604A2139E90715278A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T4_t39CF39B2FC8A23921D573E3EB05229269C2B744B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T5_t55790E8427FD05BA8B67D5F49635BF6DA2717403 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T6_tCCD03C0CE358A55E9D8D35B5A299349FDAC13886 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T7_t8CB13EAB3F0E61836B7D268BA0EE64DDEB7914B0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T8_tB62A07B12F4F0F8532687A1F1470FEB9ED63E7FB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const uint32_t SizeOf_T9_tC6E14B768CDA2D6AD155BF0A15E90FDE6A0370D0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T10_tE9315CEFCE3FB60D64F0A49C5B15CF2DB6EA9379 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 40));
|
|
const uint32_t SizeOf_T11_t474FF3BF99A60324C24632B8AF4C6879B846685A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 43));
|
|
const uint32_t SizeOf_T12_t48618E8405FA1884BD80A29244E84553847EE6BB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 46));
|
|
const Il2CppFullySharedGenericStruct L_16 = alloca(SizeOf_T1_t35C6EE887D3C75139E78FFE599C03E10A776E26E);
|
|
const Il2CppFullySharedGenericStruct L_21 = alloca(SizeOf_T2_tD6EA07FB736B836A9CDB19F99B23E7F3F405DF2E);
|
|
const Il2CppFullySharedGenericStruct L_27 = alloca(SizeOf_T3_tCA433682C37AD100BCBEAB604A2139E90715278A);
|
|
const Il2CppFullySharedGenericStruct L_34 = alloca(SizeOf_T4_t39CF39B2FC8A23921D573E3EB05229269C2B744B);
|
|
const Il2CppFullySharedGenericStruct L_42 = alloca(SizeOf_T5_t55790E8427FD05BA8B67D5F49635BF6DA2717403);
|
|
const Il2CppFullySharedGenericStruct L_51 = alloca(SizeOf_T6_tCCD03C0CE358A55E9D8D35B5A299349FDAC13886);
|
|
const Il2CppFullySharedGenericStruct L_61 = alloca(SizeOf_T7_t8CB13EAB3F0E61836B7D268BA0EE64DDEB7914B0);
|
|
const Il2CppFullySharedGenericStruct L_72 = alloca(SizeOf_T8_tB62A07B12F4F0F8532687A1F1470FEB9ED63E7FB);
|
|
const Il2CppFullySharedGenericStruct L_84 = alloca(SizeOf_T9_tC6E14B768CDA2D6AD155BF0A15E90FDE6A0370D0);
|
|
const Il2CppFullySharedGenericStruct L_97 = alloca(SizeOf_T10_tE9315CEFCE3FB60D64F0A49C5B15CF2DB6EA9379);
|
|
const Il2CppFullySharedGenericStruct L_111 = alloca(SizeOf_T11_t474FF3BF99A60324C24632B8AF4C6879B846685A);
|
|
const Il2CppFullySharedGenericStruct L_125 = alloca(SizeOf_T12_t48618E8405FA1884BD80A29244E84553847EE6BB);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11));
|
|
int32_t L_12 = V_0;
|
|
uint8_t* L_13;
|
|
L_13 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_12, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_14 = L_13;
|
|
Il2CppFullySharedGenericStruct* L_15 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_16, L_15, SizeOf_T1_t35C6EE887D3C75139E78FFE599C03E10A776E26E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_14, L_16);
|
|
uint8_t* L_17 = L_14;
|
|
int32_t L_18;
|
|
L_18 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, L_18);
|
|
Il2CppFullySharedGenericStruct* L_20 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_21, L_20, SizeOf_T2_tD6EA07FB736B836A9CDB19F99B23E7F3F405DF2E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_19, L_21);
|
|
uint8_t* L_22 = L_17;
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_25;
|
|
L_25 = il2cpp_unsafe_add<uint8_t,int32_t>(L_22, ((int32_t)il2cpp_codegen_add(L_23, L_24)));
|
|
Il2CppFullySharedGenericStruct* L_26 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_27, L_26, SizeOf_T3_tCA433682C37AD100BCBEAB604A2139E90715278A);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_25, L_27);
|
|
uint8_t* L_28 = L_22;
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_32;
|
|
L_32 = il2cpp_unsafe_add<uint8_t,int32_t>(L_28, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_29, L_30)), L_31)));
|
|
Il2CppFullySharedGenericStruct* L_33 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_34, L_33, SizeOf_T4_t39CF39B2FC8A23921D573E3EB05229269C2B744B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_32, L_34);
|
|
uint8_t* L_35 = L_28;
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_40;
|
|
L_40 = il2cpp_unsafe_add<uint8_t,int32_t>(L_35, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_36, L_37)), L_38)), L_39)));
|
|
Il2CppFullySharedGenericStruct* L_41 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_42, L_41, SizeOf_T5_t55790E8427FD05BA8B67D5F49635BF6DA2717403);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_40, L_42);
|
|
uint8_t* L_43 = L_35;
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_49;
|
|
L_49 = il2cpp_unsafe_add<uint8_t,int32_t>(L_43, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_44, L_45)), L_46)), L_47)), L_48)));
|
|
Il2CppFullySharedGenericStruct* L_50 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_51, L_50, SizeOf_T6_tCCD03C0CE358A55E9D8D35B5A299349FDAC13886);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_49, L_51);
|
|
uint8_t* L_52 = L_43;
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_59;
|
|
L_59 = il2cpp_unsafe_add<uint8_t,int32_t>(L_52, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_53, L_54)), L_55)), L_56)), L_57)), L_58)));
|
|
Il2CppFullySharedGenericStruct* L_60 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_61, L_60, SizeOf_T7_t8CB13EAB3F0E61836B7D268BA0EE64DDEB7914B0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_59, L_61);
|
|
uint8_t* L_62 = L_52;
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_70;
|
|
L_70 = il2cpp_unsafe_add<uint8_t,int32_t>(L_62, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_63, L_64)), L_65)), L_66)), L_67)), L_68)), L_69)));
|
|
Il2CppFullySharedGenericStruct* L_71 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_72, L_71, SizeOf_T8_tB62A07B12F4F0F8532687A1F1470FEB9ED63E7FB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_70, L_72);
|
|
uint8_t* L_73 = L_62;
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_82;
|
|
L_82 = il2cpp_unsafe_add<uint8_t,int32_t>(L_73, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_74, L_75)), L_76)), L_77)), L_78)), L_79)), L_80)), L_81)));
|
|
Il2CppFullySharedGenericStruct* L_83 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_84, L_83, SizeOf_T9_tC6E14B768CDA2D6AD155BF0A15E90FDE6A0370D0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 38)), il2cpp_rgctx_method(method->rgctx_data, 38), NULL, L_82, L_84);
|
|
uint8_t* L_85 = L_73;
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_95;
|
|
L_95 = il2cpp_unsafe_add<uint8_t,int32_t>(L_85, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_86, L_87)), L_88)), L_89)), L_90)), L_91)), L_92)), L_93)), L_94)));
|
|
Il2CppFullySharedGenericStruct* L_96 = ___9_value10;
|
|
il2cpp_codegen_memcpy(L_97, L_96, SizeOf_T10_tE9315CEFCE3FB60D64F0A49C5B15CF2DB6EA9379);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 41)), il2cpp_rgctx_method(method->rgctx_data, 41), NULL, L_95, L_97);
|
|
uint8_t* L_98 = L_85;
|
|
int32_t L_99;
|
|
L_99 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_100;
|
|
L_100 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_101;
|
|
L_101 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_109;
|
|
L_109 = il2cpp_unsafe_add<uint8_t,int32_t>(L_98, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_99, L_100)), L_101)), L_102)), L_103)), L_104)), L_105)), L_106)), L_107)), L_108)));
|
|
Il2CppFullySharedGenericStruct* L_110 = ___10_value11;
|
|
il2cpp_codegen_memcpy(L_111, L_110, SizeOf_T11_t474FF3BF99A60324C24632B8AF4C6879B846685A);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 44)), il2cpp_rgctx_method(method->rgctx_data, 44), NULL, L_109, L_111);
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_113;
|
|
L_113 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_114;
|
|
L_114 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_115;
|
|
L_115 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_116;
|
|
L_116 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_123;
|
|
L_123 = il2cpp_unsafe_add<uint8_t,int32_t>(L_98, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_112, L_113)), L_114)), L_115)), L_116)), L_117)), L_118)), L_119)), L_120)), L_121)), L_122)));
|
|
Il2CppFullySharedGenericStruct* L_124 = ___11_value12;
|
|
il2cpp_codegen_memcpy(L_125, L_124, SizeOf_T12_t48618E8405FA1884BD80A29244E84553847EE6BB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), NULL, L_123, L_125);
|
|
int32_t L_126 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_126, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m6808BF18E56399BE9F5FA3D802EFB59E54E9DA23_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, Il2CppFullySharedGenericStruct* ___9_value10, Il2CppFullySharedGenericStruct* ___10_value11, Il2CppFullySharedGenericStruct* ___11_value12, Il2CppFullySharedGenericStruct* ___12_value13, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tC05AA898EF25142DC362963247AD27CCD0D843E3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T2_tA16BAC5FE71E0F9AF654E47022698546F2D38510 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T3_t2D39A81D724C7F36664B552C414CEA9FF5EE1161 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T4_tE2CA4F788DD271C8CCD34C76E1098CF84FC7A7AB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T5_t3382370DE99C121339D5DA985D214C7FDD05AB3E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T6_tB78A0DD11A6EADB9CFB04FDEF40762232FA93D36 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T7_t7DFCD329805A512B47EF186B2466A0AB733D8D8E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 32));
|
|
const uint32_t SizeOf_T8_t0BED916593D21AC41E114547E059ED4C8B7CCDEB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 35));
|
|
const uint32_t SizeOf_T9_tDDA28BB48CBEB3E84DBD0237F89639657072A80C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 38));
|
|
const uint32_t SizeOf_T10_tCA7594A076D9ECE4264FDA89954298EA5A017C16 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 41));
|
|
const uint32_t SizeOf_T11_t5B3BC3611DDF2D621436DA7C59739538F1470821 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 44));
|
|
const uint32_t SizeOf_T12_tC2BCFDD542863F8B6722314A0BFA953926B9D4D4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 47));
|
|
const uint32_t SizeOf_T13_t193D2FDD97237C5790AA020A738BA2E11331E5E0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 50));
|
|
const Il2CppFullySharedGenericStruct L_17 = alloca(SizeOf_T1_tC05AA898EF25142DC362963247AD27CCD0D843E3);
|
|
const Il2CppFullySharedGenericStruct L_22 = alloca(SizeOf_T2_tA16BAC5FE71E0F9AF654E47022698546F2D38510);
|
|
const Il2CppFullySharedGenericStruct L_28 = alloca(SizeOf_T3_t2D39A81D724C7F36664B552C414CEA9FF5EE1161);
|
|
const Il2CppFullySharedGenericStruct L_35 = alloca(SizeOf_T4_tE2CA4F788DD271C8CCD34C76E1098CF84FC7A7AB);
|
|
const Il2CppFullySharedGenericStruct L_43 = alloca(SizeOf_T5_t3382370DE99C121339D5DA985D214C7FDD05AB3E);
|
|
const Il2CppFullySharedGenericStruct L_52 = alloca(SizeOf_T6_tB78A0DD11A6EADB9CFB04FDEF40762232FA93D36);
|
|
const Il2CppFullySharedGenericStruct L_62 = alloca(SizeOf_T7_t7DFCD329805A512B47EF186B2466A0AB733D8D8E);
|
|
const Il2CppFullySharedGenericStruct L_73 = alloca(SizeOf_T8_t0BED916593D21AC41E114547E059ED4C8B7CCDEB);
|
|
const Il2CppFullySharedGenericStruct L_85 = alloca(SizeOf_T9_tDDA28BB48CBEB3E84DBD0237F89639657072A80C);
|
|
const Il2CppFullySharedGenericStruct L_98 = alloca(SizeOf_T10_tCA7594A076D9ECE4264FDA89954298EA5A017C16);
|
|
const Il2CppFullySharedGenericStruct L_112 = alloca(SizeOf_T11_t5B3BC3611DDF2D621436DA7C59739538F1470821);
|
|
const Il2CppFullySharedGenericStruct L_127 = alloca(SizeOf_T12_tC2BCFDD542863F8B6722314A0BFA953926B9D4D4);
|
|
const Il2CppFullySharedGenericStruct L_142 = alloca(SizeOf_T13_t193D2FDD97237C5790AA020A738BA2E11331E5E0);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12));
|
|
int32_t L_13 = V_0;
|
|
uint8_t* L_14;
|
|
L_14 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_13, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_15 = L_14;
|
|
Il2CppFullySharedGenericStruct* L_16 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_17, L_16, SizeOf_T1_tC05AA898EF25142DC362963247AD27CCD0D843E3);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_15, L_17);
|
|
uint8_t* L_18 = L_15;
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_18, L_19);
|
|
Il2CppFullySharedGenericStruct* L_21 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_22, L_21, SizeOf_T2_tA16BAC5FE71E0F9AF654E47022698546F2D38510);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_20, L_22);
|
|
uint8_t* L_23 = L_18;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_26;
|
|
L_26 = il2cpp_unsafe_add<uint8_t,int32_t>(L_23, ((int32_t)il2cpp_codegen_add(L_24, L_25)));
|
|
Il2CppFullySharedGenericStruct* L_27 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_28, L_27, SizeOf_T3_t2D39A81D724C7F36664B552C414CEA9FF5EE1161);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_26, L_28);
|
|
uint8_t* L_29 = L_23;
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_33;
|
|
L_33 = il2cpp_unsafe_add<uint8_t,int32_t>(L_29, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_30, L_31)), L_32)));
|
|
Il2CppFullySharedGenericStruct* L_34 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_35, L_34, SizeOf_T4_tE2CA4F788DD271C8CCD34C76E1098CF84FC7A7AB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_33, L_35);
|
|
uint8_t* L_36 = L_29;
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_41;
|
|
L_41 = il2cpp_unsafe_add<uint8_t,int32_t>(L_36, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_37, L_38)), L_39)), L_40)));
|
|
Il2CppFullySharedGenericStruct* L_42 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_43, L_42, SizeOf_T5_t3382370DE99C121339D5DA985D214C7FDD05AB3E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_41, L_43);
|
|
uint8_t* L_44 = L_36;
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_50;
|
|
L_50 = il2cpp_unsafe_add<uint8_t,int32_t>(L_44, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_45, L_46)), L_47)), L_48)), L_49)));
|
|
Il2CppFullySharedGenericStruct* L_51 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_52, L_51, SizeOf_T6_tB78A0DD11A6EADB9CFB04FDEF40762232FA93D36);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 30)), il2cpp_rgctx_method(method->rgctx_data, 30), NULL, L_50, L_52);
|
|
uint8_t* L_53 = L_44;
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_60;
|
|
L_60 = il2cpp_unsafe_add<uint8_t,int32_t>(L_53, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_54, L_55)), L_56)), L_57)), L_58)), L_59)));
|
|
Il2CppFullySharedGenericStruct* L_61 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_62, L_61, SizeOf_T7_t7DFCD329805A512B47EF186B2466A0AB733D8D8E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 33)), il2cpp_rgctx_method(method->rgctx_data, 33), NULL, L_60, L_62);
|
|
uint8_t* L_63 = L_53;
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_71;
|
|
L_71 = il2cpp_unsafe_add<uint8_t,int32_t>(L_63, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_64, L_65)), L_66)), L_67)), L_68)), L_69)), L_70)));
|
|
Il2CppFullySharedGenericStruct* L_72 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_73, L_72, SizeOf_T8_t0BED916593D21AC41E114547E059ED4C8B7CCDEB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 36)), il2cpp_rgctx_method(method->rgctx_data, 36), NULL, L_71, L_73);
|
|
uint8_t* L_74 = L_63;
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_83;
|
|
L_83 = il2cpp_unsafe_add<uint8_t,int32_t>(L_74, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_75, L_76)), L_77)), L_78)), L_79)), L_80)), L_81)), L_82)));
|
|
Il2CppFullySharedGenericStruct* L_84 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_85, L_84, SizeOf_T9_tDDA28BB48CBEB3E84DBD0237F89639657072A80C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), NULL, L_83, L_85);
|
|
uint8_t* L_86 = L_74;
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_96;
|
|
L_96 = il2cpp_unsafe_add<uint8_t,int32_t>(L_86, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_87, L_88)), L_89)), L_90)), L_91)), L_92)), L_93)), L_94)), L_95)));
|
|
Il2CppFullySharedGenericStruct* L_97 = ___9_value10;
|
|
il2cpp_codegen_memcpy(L_98, L_97, SizeOf_T10_tCA7594A076D9ECE4264FDA89954298EA5A017C16);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 42)), il2cpp_rgctx_method(method->rgctx_data, 42), NULL, L_96, L_98);
|
|
uint8_t* L_99 = L_86;
|
|
int32_t L_100;
|
|
L_100 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_101;
|
|
L_101 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_110;
|
|
L_110 = il2cpp_unsafe_add<uint8_t,int32_t>(L_99, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_100, L_101)), L_102)), L_103)), L_104)), L_105)), L_106)), L_107)), L_108)), L_109)));
|
|
Il2CppFullySharedGenericStruct* L_111 = ___10_value11;
|
|
il2cpp_codegen_memcpy(L_112, L_111, SizeOf_T11_t5B3BC3611DDF2D621436DA7C59739538F1470821);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 45)), il2cpp_rgctx_method(method->rgctx_data, 45), NULL, L_110, L_112);
|
|
uint8_t* L_113 = L_99;
|
|
int32_t L_114;
|
|
L_114 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_115;
|
|
L_115 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_116;
|
|
L_116 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_125;
|
|
L_125 = il2cpp_unsafe_add<uint8_t,int32_t>(L_113, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_114, L_115)), L_116)), L_117)), L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)));
|
|
Il2CppFullySharedGenericStruct* L_126 = ___11_value12;
|
|
il2cpp_codegen_memcpy(L_127, L_126, SizeOf_T12_tC2BCFDD542863F8B6722314A0BFA953926B9D4D4);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 48)), il2cpp_rgctx_method(method->rgctx_data, 48), NULL, L_125, L_127);
|
|
int32_t L_128;
|
|
L_128 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_129;
|
|
L_129 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_130;
|
|
L_130 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_131;
|
|
L_131 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_132;
|
|
L_132 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_140;
|
|
L_140 = il2cpp_unsafe_add<uint8_t,int32_t>(L_113, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_128, L_129)), L_130)), L_131)), L_132)), L_133)), L_134)), L_135)), L_136)), L_137)), L_138)), L_139)));
|
|
Il2CppFullySharedGenericStruct* L_141 = ___12_value13;
|
|
il2cpp_codegen_memcpy(L_142, L_141, SizeOf_T13_t193D2FDD97237C5790AA020A738BA2E11331E5E0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 51)), il2cpp_rgctx_method(method->rgctx_data, 51), NULL, L_140, L_142);
|
|
int32_t L_143 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_143, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mC71E6A8833FE4264F4609F2C71B87BCCCF8A23A9_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, Il2CppFullySharedGenericStruct* ___9_value10, Il2CppFullySharedGenericStruct* ___10_value11, Il2CppFullySharedGenericStruct* ___11_value12, Il2CppFullySharedGenericStruct* ___12_value13, Il2CppFullySharedGenericStruct* ___13_value14, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t688C8A9BEF105F62FA403360EC9726BFD2205651 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T2_t1D7E189DD77505CF6828F05744A945F8A6E86DEC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T3_t9FB32897A701AAFBC499F88D9F50A306420D2E07 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T4_t23DC4605B05DE2FD851D3587BED2BD28069FE543 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T5_t15B0B7C4EE185DF7F9539BF0072045183160DB75 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T6_t01C11C221B9D22047CE6166B3D8D74D95E0A7C8B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const uint32_t SizeOf_T7_t55A5F61EF80AF27BD0C8B80CE154D0F1ED341CE6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T8_t6D9A6FC4080636E1652B4B1883F867027AC8B9EB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 36));
|
|
const uint32_t SizeOf_T9_tF9012A6BF93DBFB20CDC3F77B1EBF247D159681F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 39));
|
|
const uint32_t SizeOf_T10_t2BEFEE47173A2A743720388FD33299C35433E110 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 42));
|
|
const uint32_t SizeOf_T11_t5848518F836F041B494316BC7193345F440007ED = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 45));
|
|
const uint32_t SizeOf_T12_tFD1731C68903AB55C2267050401CE6069405757D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 48));
|
|
const uint32_t SizeOf_T13_t095A1C8CCE37AFB75FA1CBB120B03F265E4D411B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 51));
|
|
const uint32_t SizeOf_T14_t894242292A68F606AEB7AE3890C4D7F0C8F817EB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 54));
|
|
const Il2CppFullySharedGenericStruct L_18 = alloca(SizeOf_T1_t688C8A9BEF105F62FA403360EC9726BFD2205651);
|
|
const Il2CppFullySharedGenericStruct L_23 = alloca(SizeOf_T2_t1D7E189DD77505CF6828F05744A945F8A6E86DEC);
|
|
const Il2CppFullySharedGenericStruct L_29 = alloca(SizeOf_T3_t9FB32897A701AAFBC499F88D9F50A306420D2E07);
|
|
const Il2CppFullySharedGenericStruct L_36 = alloca(SizeOf_T4_t23DC4605B05DE2FD851D3587BED2BD28069FE543);
|
|
const Il2CppFullySharedGenericStruct L_44 = alloca(SizeOf_T5_t15B0B7C4EE185DF7F9539BF0072045183160DB75);
|
|
const Il2CppFullySharedGenericStruct L_53 = alloca(SizeOf_T6_t01C11C221B9D22047CE6166B3D8D74D95E0A7C8B);
|
|
const Il2CppFullySharedGenericStruct L_63 = alloca(SizeOf_T7_t55A5F61EF80AF27BD0C8B80CE154D0F1ED341CE6);
|
|
const Il2CppFullySharedGenericStruct L_74 = alloca(SizeOf_T8_t6D9A6FC4080636E1652B4B1883F867027AC8B9EB);
|
|
const Il2CppFullySharedGenericStruct L_86 = alloca(SizeOf_T9_tF9012A6BF93DBFB20CDC3F77B1EBF247D159681F);
|
|
const Il2CppFullySharedGenericStruct L_99 = alloca(SizeOf_T10_t2BEFEE47173A2A743720388FD33299C35433E110);
|
|
const Il2CppFullySharedGenericStruct L_113 = alloca(SizeOf_T11_t5848518F836F041B494316BC7193345F440007ED);
|
|
const Il2CppFullySharedGenericStruct L_128 = alloca(SizeOf_T12_tFD1731C68903AB55C2267050401CE6069405757D);
|
|
const Il2CppFullySharedGenericStruct L_144 = alloca(SizeOf_T13_t095A1C8CCE37AFB75FA1CBB120B03F265E4D411B);
|
|
const Il2CppFullySharedGenericStruct L_160 = alloca(SizeOf_T14_t894242292A68F606AEB7AE3890C4D7F0C8F817EB);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), L_13));
|
|
int32_t L_14 = V_0;
|
|
uint8_t* L_15;
|
|
L_15 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_16 = L_15;
|
|
Il2CppFullySharedGenericStruct* L_17 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_18, L_17, SizeOf_T1_t688C8A9BEF105F62FA403360EC9726BFD2205651);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_16, L_18);
|
|
uint8_t* L_19 = L_16;
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_21;
|
|
L_21 = il2cpp_unsafe_add<uint8_t,int32_t>(L_19, L_20);
|
|
Il2CppFullySharedGenericStruct* L_22 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_23, L_22, SizeOf_T2_t1D7E189DD77505CF6828F05744A945F8A6E86DEC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_21, L_23);
|
|
uint8_t* L_24 = L_19;
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_27;
|
|
L_27 = il2cpp_unsafe_add<uint8_t,int32_t>(L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)));
|
|
Il2CppFullySharedGenericStruct* L_28 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_29, L_28, SizeOf_T3_t9FB32897A701AAFBC499F88D9F50A306420D2E07);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_27, L_29);
|
|
uint8_t* L_30 = L_24;
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_34;
|
|
L_34 = il2cpp_unsafe_add<uint8_t,int32_t>(L_30, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_31, L_32)), L_33)));
|
|
Il2CppFullySharedGenericStruct* L_35 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_36, L_35, SizeOf_T4_t23DC4605B05DE2FD851D3587BED2BD28069FE543);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_34, L_36);
|
|
uint8_t* L_37 = L_30;
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_42;
|
|
L_42 = il2cpp_unsafe_add<uint8_t,int32_t>(L_37, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_38, L_39)), L_40)), L_41)));
|
|
Il2CppFullySharedGenericStruct* L_43 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_44, L_43, SizeOf_T5_t15B0B7C4EE185DF7F9539BF0072045183160DB75);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_42, L_44);
|
|
uint8_t* L_45 = L_37;
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_51;
|
|
L_51 = il2cpp_unsafe_add<uint8_t,int32_t>(L_45, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_46, L_47)), L_48)), L_49)), L_50)));
|
|
Il2CppFullySharedGenericStruct* L_52 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_53, L_52, SizeOf_T6_t01C11C221B9D22047CE6166B3D8D74D95E0A7C8B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_51, L_53);
|
|
uint8_t* L_54 = L_45;
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_61;
|
|
L_61 = il2cpp_unsafe_add<uint8_t,int32_t>(L_54, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_55, L_56)), L_57)), L_58)), L_59)), L_60)));
|
|
Il2CppFullySharedGenericStruct* L_62 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_63, L_62, SizeOf_T7_t55A5F61EF80AF27BD0C8B80CE154D0F1ED341CE6);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 34)), il2cpp_rgctx_method(method->rgctx_data, 34), NULL, L_61, L_63);
|
|
uint8_t* L_64 = L_54;
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_72;
|
|
L_72 = il2cpp_unsafe_add<uint8_t,int32_t>(L_64, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_65, L_66)), L_67)), L_68)), L_69)), L_70)), L_71)));
|
|
Il2CppFullySharedGenericStruct* L_73 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_74, L_73, SizeOf_T8_t6D9A6FC4080636E1652B4B1883F867027AC8B9EB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 37)), il2cpp_rgctx_method(method->rgctx_data, 37), NULL, L_72, L_74);
|
|
uint8_t* L_75 = L_64;
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_84;
|
|
L_84 = il2cpp_unsafe_add<uint8_t,int32_t>(L_75, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_76, L_77)), L_78)), L_79)), L_80)), L_81)), L_82)), L_83)));
|
|
Il2CppFullySharedGenericStruct* L_85 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_86, L_85, SizeOf_T9_tF9012A6BF93DBFB20CDC3F77B1EBF247D159681F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 40)), il2cpp_rgctx_method(method->rgctx_data, 40), NULL, L_84, L_86);
|
|
uint8_t* L_87 = L_75;
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_97;
|
|
L_97 = il2cpp_unsafe_add<uint8_t,int32_t>(L_87, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_88, L_89)), L_90)), L_91)), L_92)), L_93)), L_94)), L_95)), L_96)));
|
|
Il2CppFullySharedGenericStruct* L_98 = ___9_value10;
|
|
il2cpp_codegen_memcpy(L_99, L_98, SizeOf_T10_t2BEFEE47173A2A743720388FD33299C35433E110);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), NULL, L_97, L_99);
|
|
uint8_t* L_100 = L_87;
|
|
int32_t L_101;
|
|
L_101 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_111;
|
|
L_111 = il2cpp_unsafe_add<uint8_t,int32_t>(L_100, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_101, L_102)), L_103)), L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), L_110)));
|
|
Il2CppFullySharedGenericStruct* L_112 = ___10_value11;
|
|
il2cpp_codegen_memcpy(L_113, L_112, SizeOf_T11_t5848518F836F041B494316BC7193345F440007ED);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 46)), il2cpp_rgctx_method(method->rgctx_data, 46), NULL, L_111, L_113);
|
|
uint8_t* L_114 = L_100;
|
|
int32_t L_115;
|
|
L_115 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_116;
|
|
L_116 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_126;
|
|
L_126 = il2cpp_unsafe_add<uint8_t,int32_t>(L_114, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_115, L_116)), L_117)), L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)));
|
|
Il2CppFullySharedGenericStruct* L_127 = ___11_value12;
|
|
il2cpp_codegen_memcpy(L_128, L_127, SizeOf_T12_tFD1731C68903AB55C2267050401CE6069405757D);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 49)), il2cpp_rgctx_method(method->rgctx_data, 49), NULL, L_126, L_128);
|
|
uint8_t* L_129 = L_114;
|
|
int32_t L_130;
|
|
L_130 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_131;
|
|
L_131 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_132;
|
|
L_132 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_142;
|
|
L_142 = il2cpp_unsafe_add<uint8_t,int32_t>(L_129, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_130, L_131)), L_132)), L_133)), L_134)), L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)));
|
|
Il2CppFullySharedGenericStruct* L_143 = ___12_value13;
|
|
il2cpp_codegen_memcpy(L_144, L_143, SizeOf_T13_t095A1C8CCE37AFB75FA1CBB120B03F265E4D411B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 52)), il2cpp_rgctx_method(method->rgctx_data, 52), NULL, L_142, L_144);
|
|
int32_t L_145;
|
|
L_145 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_146;
|
|
L_146 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_147;
|
|
L_147 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_148;
|
|
L_148 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_149;
|
|
L_149 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_150;
|
|
L_150 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_151;
|
|
L_151 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_152;
|
|
L_152 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_153;
|
|
L_153 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_154;
|
|
L_154 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_155;
|
|
L_155 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_156;
|
|
L_156 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_157;
|
|
L_157 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
uint8_t* L_158;
|
|
L_158 = il2cpp_unsafe_add<uint8_t,int32_t>(L_129, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_145, L_146)), L_147)), L_148)), L_149)), L_150)), L_151)), L_152)), L_153)), L_154)), L_155)), L_156)), L_157)));
|
|
Il2CppFullySharedGenericStruct* L_159 = ___13_value14;
|
|
il2cpp_codegen_memcpy(L_160, L_159, SizeOf_T14_t894242292A68F606AEB7AE3890C4D7F0C8F817EB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 55)), il2cpp_rgctx_method(method->rgctx_data, 55), NULL, L_158, L_160);
|
|
int32_t L_161 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_161, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanaged_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m12DA9CA8EBFFB885835EEE4128402FC76F226C3F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericStruct* ___0_value1, Il2CppFullySharedGenericStruct* ___1_value2, Il2CppFullySharedGenericStruct* ___2_value3, Il2CppFullySharedGenericStruct* ___3_value4, Il2CppFullySharedGenericStruct* ___4_value5, Il2CppFullySharedGenericStruct* ___5_value6, Il2CppFullySharedGenericStruct* ___6_value7, Il2CppFullySharedGenericStruct* ___7_value8, Il2CppFullySharedGenericStruct* ___8_value9, Il2CppFullySharedGenericStruct* ___9_value10, Il2CppFullySharedGenericStruct* ___10_value11, Il2CppFullySharedGenericStruct* ___11_value12, Il2CppFullySharedGenericStruct* ___12_value13, Il2CppFullySharedGenericStruct* ___13_value14, Il2CppFullySharedGenericStruct* ___14_value15, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t07E7A79D2C45153B66F2456D0ED7FBE4D928B995 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T2_tE3D786AB4FA55C51ABE6DB9DB9F086FE248D9187 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T3_t8174E7E88ECB5272E849FFB984291CE870435E66 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T4_t34CDA539D89E44DB75B79AC1D24373B3E7597A01 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T5_t1B9CD2B03DB8B561E0DE9C565A0C76ACAEC45611 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T6_tCB114B2A932DF0BD0FBD8A21492B09B18AF6100C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T7_t74D98E84B6299CE102F455B44A55A11F7EC48711 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const uint32_t SizeOf_T8_t2440F1327127D9E6E2F726164A898093CB9EF1F9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T9_tC022CC384F5ED9251EF2811BCE4E6941BAB3EFFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 40));
|
|
const uint32_t SizeOf_T10_tFA15CCA1C5343CB921B83F624D77BB96FF761598 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 43));
|
|
const uint32_t SizeOf_T11_t245FF6914E9F4D43CD475EF0026A396B558C61E0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 46));
|
|
const uint32_t SizeOf_T12_tE40D77E012411132BBB8AC480BECC4E984109C38 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 49));
|
|
const uint32_t SizeOf_T13_t5A3FC24DEA0480A7965EC5882AC451329430CF32 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 52));
|
|
const uint32_t SizeOf_T14_tEACD4EB2FB66CC8266B7AD02ADAF1B6D1FD9B3F1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 55));
|
|
const uint32_t SizeOf_T15_tA6E101651ECC2FCBE95C2F003790B85B90C689CE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 58));
|
|
const Il2CppFullySharedGenericStruct L_19 = alloca(SizeOf_T1_t07E7A79D2C45153B66F2456D0ED7FBE4D928B995);
|
|
const Il2CppFullySharedGenericStruct L_24 = alloca(SizeOf_T2_tE3D786AB4FA55C51ABE6DB9DB9F086FE248D9187);
|
|
const Il2CppFullySharedGenericStruct L_30 = alloca(SizeOf_T3_t8174E7E88ECB5272E849FFB984291CE870435E66);
|
|
const Il2CppFullySharedGenericStruct L_37 = alloca(SizeOf_T4_t34CDA539D89E44DB75B79AC1D24373B3E7597A01);
|
|
const Il2CppFullySharedGenericStruct L_45 = alloca(SizeOf_T5_t1B9CD2B03DB8B561E0DE9C565A0C76ACAEC45611);
|
|
const Il2CppFullySharedGenericStruct L_54 = alloca(SizeOf_T6_tCB114B2A932DF0BD0FBD8A21492B09B18AF6100C);
|
|
const Il2CppFullySharedGenericStruct L_64 = alloca(SizeOf_T7_t74D98E84B6299CE102F455B44A55A11F7EC48711);
|
|
const Il2CppFullySharedGenericStruct L_75 = alloca(SizeOf_T8_t2440F1327127D9E6E2F726164A898093CB9EF1F9);
|
|
const Il2CppFullySharedGenericStruct L_87 = alloca(SizeOf_T9_tC022CC384F5ED9251EF2811BCE4E6941BAB3EFFF);
|
|
const Il2CppFullySharedGenericStruct L_100 = alloca(SizeOf_T10_tFA15CCA1C5343CB921B83F624D77BB96FF761598);
|
|
const Il2CppFullySharedGenericStruct L_114 = alloca(SizeOf_T11_t245FF6914E9F4D43CD475EF0026A396B558C61E0);
|
|
const Il2CppFullySharedGenericStruct L_129 = alloca(SizeOf_T12_tE40D77E012411132BBB8AC480BECC4E984109C38);
|
|
const Il2CppFullySharedGenericStruct L_145 = alloca(SizeOf_T13_t5A3FC24DEA0480A7965EC5882AC451329430CF32);
|
|
const Il2CppFullySharedGenericStruct L_162 = alloca(SizeOf_T14_tEACD4EB2FB66CC8266B7AD02ADAF1B6D1FD9B3F1);
|
|
const Il2CppFullySharedGenericStruct L_179 = alloca(SizeOf_T15_tA6E101651ECC2FCBE95C2F003790B85B90C689CE);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)))(il2cpp_rgctx_method(method->rgctx_data, 14));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), L_13)), L_14));
|
|
int32_t L_15 = V_0;
|
|
uint8_t* L_16;
|
|
L_16 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_17 = L_16;
|
|
Il2CppFullySharedGenericStruct* L_18 = ___0_value1;
|
|
il2cpp_codegen_memcpy(L_19, L_18, SizeOf_T1_t07E7A79D2C45153B66F2456D0ED7FBE4D928B995);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_17, L_19);
|
|
uint8_t* L_20 = L_17;
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_22;
|
|
L_22 = il2cpp_unsafe_add<uint8_t,int32_t>(L_20, L_21);
|
|
Il2CppFullySharedGenericStruct* L_23 = ___1_value2;
|
|
il2cpp_codegen_memcpy(L_24, L_23, SizeOf_T2_tE3D786AB4FA55C51ABE6DB9DB9F086FE248D9187);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_22, L_24);
|
|
uint8_t* L_25 = L_20;
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_28;
|
|
L_28 = il2cpp_unsafe_add<uint8_t,int32_t>(L_25, ((int32_t)il2cpp_codegen_add(L_26, L_27)));
|
|
Il2CppFullySharedGenericStruct* L_29 = ___2_value3;
|
|
il2cpp_codegen_memcpy(L_30, L_29, SizeOf_T3_t8174E7E88ECB5272E849FFB984291CE870435E66);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_28, L_30);
|
|
uint8_t* L_31 = L_25;
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_35;
|
|
L_35 = il2cpp_unsafe_add<uint8_t,int32_t>(L_31, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_32, L_33)), L_34)));
|
|
Il2CppFullySharedGenericStruct* L_36 = ___3_value4;
|
|
il2cpp_codegen_memcpy(L_37, L_36, SizeOf_T4_t34CDA539D89E44DB75B79AC1D24373B3E7597A01);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_35, L_37);
|
|
uint8_t* L_38 = L_31;
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_43;
|
|
L_43 = il2cpp_unsafe_add<uint8_t,int32_t>(L_38, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_39, L_40)), L_41)), L_42)));
|
|
Il2CppFullySharedGenericStruct* L_44 = ___4_value5;
|
|
il2cpp_codegen_memcpy(L_45, L_44, SizeOf_T5_t1B9CD2B03DB8B561E0DE9C565A0C76ACAEC45611);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_43, L_45);
|
|
uint8_t* L_46 = L_38;
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_52;
|
|
L_52 = il2cpp_unsafe_add<uint8_t,int32_t>(L_46, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_48)), L_49)), L_50)), L_51)));
|
|
Il2CppFullySharedGenericStruct* L_53 = ___5_value6;
|
|
il2cpp_codegen_memcpy(L_54, L_53, SizeOf_T6_tCB114B2A932DF0BD0FBD8A21492B09B18AF6100C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_52, L_54);
|
|
uint8_t* L_55 = L_46;
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_62;
|
|
L_62 = il2cpp_unsafe_add<uint8_t,int32_t>(L_55, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_56, L_57)), L_58)), L_59)), L_60)), L_61)));
|
|
Il2CppFullySharedGenericStruct* L_63 = ___6_value7;
|
|
il2cpp_codegen_memcpy(L_64, L_63, SizeOf_T7_t74D98E84B6299CE102F455B44A55A11F7EC48711);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_62, L_64);
|
|
uint8_t* L_65 = L_55;
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_73;
|
|
L_73 = il2cpp_unsafe_add<uint8_t,int32_t>(L_65, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_66, L_67)), L_68)), L_69)), L_70)), L_71)), L_72)));
|
|
Il2CppFullySharedGenericStruct* L_74 = ___7_value8;
|
|
il2cpp_codegen_memcpy(L_75, L_74, SizeOf_T8_t2440F1327127D9E6E2F726164A898093CB9EF1F9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 38)), il2cpp_rgctx_method(method->rgctx_data, 38), NULL, L_73, L_75);
|
|
uint8_t* L_76 = L_65;
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_85;
|
|
L_85 = il2cpp_unsafe_add<uint8_t,int32_t>(L_76, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_77, L_78)), L_79)), L_80)), L_81)), L_82)), L_83)), L_84)));
|
|
Il2CppFullySharedGenericStruct* L_86 = ___8_value9;
|
|
il2cpp_codegen_memcpy(L_87, L_86, SizeOf_T9_tC022CC384F5ED9251EF2811BCE4E6941BAB3EFFF);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 41)), il2cpp_rgctx_method(method->rgctx_data, 41), NULL, L_85, L_87);
|
|
uint8_t* L_88 = L_76;
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_98;
|
|
L_98 = il2cpp_unsafe_add<uint8_t,int32_t>(L_88, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_89, L_90)), L_91)), L_92)), L_93)), L_94)), L_95)), L_96)), L_97)));
|
|
Il2CppFullySharedGenericStruct* L_99 = ___9_value10;
|
|
il2cpp_codegen_memcpy(L_100, L_99, SizeOf_T10_tFA15CCA1C5343CB921B83F624D77BB96FF761598);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 44)), il2cpp_rgctx_method(method->rgctx_data, 44), NULL, L_98, L_100);
|
|
uint8_t* L_101 = L_88;
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_112;
|
|
L_112 = il2cpp_unsafe_add<uint8_t,int32_t>(L_101, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_102, L_103)), L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)));
|
|
Il2CppFullySharedGenericStruct* L_113 = ___10_value11;
|
|
il2cpp_codegen_memcpy(L_114, L_113, SizeOf_T11_t245FF6914E9F4D43CD475EF0026A396B558C61E0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), NULL, L_112, L_114);
|
|
uint8_t* L_115 = L_101;
|
|
int32_t L_116;
|
|
L_116 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_127;
|
|
L_127 = il2cpp_unsafe_add<uint8_t,int32_t>(L_115, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_116, L_117)), L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)));
|
|
Il2CppFullySharedGenericStruct* L_128 = ___11_value12;
|
|
il2cpp_codegen_memcpy(L_129, L_128, SizeOf_T12_tE40D77E012411132BBB8AC480BECC4E984109C38);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 50)), il2cpp_rgctx_method(method->rgctx_data, 50), NULL, L_127, L_129);
|
|
uint8_t* L_130 = L_115;
|
|
int32_t L_131;
|
|
L_131 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_132;
|
|
L_132 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_143;
|
|
L_143 = il2cpp_unsafe_add<uint8_t,int32_t>(L_130, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_131, L_132)), L_133)), L_134)), L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)));
|
|
Il2CppFullySharedGenericStruct* L_144 = ___12_value13;
|
|
il2cpp_codegen_memcpy(L_145, L_144, SizeOf_T13_t5A3FC24DEA0480A7965EC5882AC451329430CF32);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 53)), il2cpp_rgctx_method(method->rgctx_data, 53), NULL, L_143, L_145);
|
|
uint8_t* L_146 = L_130;
|
|
int32_t L_147;
|
|
L_147 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_148;
|
|
L_148 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_149;
|
|
L_149 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_150;
|
|
L_150 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_151;
|
|
L_151 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_152;
|
|
L_152 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_153;
|
|
L_153 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_154;
|
|
L_154 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_155;
|
|
L_155 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_156;
|
|
L_156 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_157;
|
|
L_157 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_158;
|
|
L_158 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_159;
|
|
L_159 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
uint8_t* L_160;
|
|
L_160 = il2cpp_unsafe_add<uint8_t,int32_t>(L_146, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_147, L_148)), L_149)), L_150)), L_151)), L_152)), L_153)), L_154)), L_155)), L_156)), L_157)), L_158)), L_159)));
|
|
Il2CppFullySharedGenericStruct* L_161 = ___13_value14;
|
|
il2cpp_codegen_memcpy(L_162, L_161, SizeOf_T14_tEACD4EB2FB66CC8266B7AD02ADAF1B6D1FD9B3F1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 56)), il2cpp_rgctx_method(method->rgctx_data, 56), NULL, L_160, L_162);
|
|
int32_t L_163;
|
|
L_163 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_164;
|
|
L_164 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_165;
|
|
L_165 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_166;
|
|
L_166 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_167;
|
|
L_167 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_168;
|
|
L_168 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_169;
|
|
L_169 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_170;
|
|
L_170 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_171;
|
|
L_171 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_172;
|
|
L_172 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_173;
|
|
L_173 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_174;
|
|
L_174 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_175;
|
|
L_175 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_176;
|
|
L_176 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
uint8_t* L_177;
|
|
L_177 = il2cpp_unsafe_add<uint8_t,int32_t>(L_146, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_163, L_164)), L_165)), L_166)), L_167)), L_168)), L_169)), L_170)), L_171)), L_172)), L_173)), L_174)), L_175)), L_176)));
|
|
Il2CppFullySharedGenericStruct* L_178 = ___14_value15;
|
|
il2cpp_codegen_memcpy(L_179, L_178, SizeOf_T15_tA6E101651ECC2FCBE95C2F003790B85B90C689CE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 59)), il2cpp_rgctx_method(method->rgctx_data, 59), NULL, L_177, L_179);
|
|
int32_t L_180 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_180, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m60B3001B5E8FCC9B5DD0DFF3A587CE38B320F082_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value;
|
|
MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA6BF691D470370FD8F155567D2D6408047BDE9EA_inline(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFA5FBEF9815C551F88D0B3D9F0286BC6A26FF476_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_value;
|
|
MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m9BADB3379AE3BD1159871808A92EE0D0CFD982E4_inline(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedArray_TisIl2CppFullySharedGenericStruct_mB8017F31197A27520240027D542009D7F325EE36_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m2F4F7B0924B660876C5DB5130B541492194464BF_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_0 = ___0_value;
|
|
MemoryPackWriter_1_DangerousWriteUnmanagedSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mC82F32B3F2C830693F79DF2B577562FFFB66C303_inline(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedSpan_TisIl2CppFullySharedGenericStruct_mA44C216911D18BFCF6DC549723FB42BD213C9E10_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ReadOnlySpan_1_tE8C37D9A05FCAB953169AFFE8A0ABCA809781E25 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
ReadOnlySpan_1_tE8C37D9A05FCAB953169AFFE8A0ABCA809781E25 L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tE8C37D9A05FCAB953169AFFE8A0ABCA809781E25, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedSpan_TisIl2CppFullySharedGenericStruct_m70E48B26A5C8F80CA249EE5F9D90AD946DC27288_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_t3EBD12B39F51F09620FC7421B894677E0D26E0AD ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Span_1_t3EBD12B39F51F09620FC7421B894677E0D26E0AD L_0 = ___0_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Span_1_t3EBD12B39F51F09620FC7421B894677E0D26E0AD, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFA2E13350D291758757EDE3550DEBC7AF1160BBD_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, int32_t* ___1_value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = V_0;
|
|
uint8_t* L_2;
|
|
L_2 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_3 = L_2;
|
|
uint8_t L_4 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_3, L_4);
|
|
uint8_t* L_5;
|
|
L_5 = il2cpp_unsafe_add<uint8_t,int32_t>(L_3, 1);
|
|
int32_t* L_6 = ___1_value1;
|
|
int32_t L_7 = (*(int32_t*)L_6);
|
|
il2cpp_unsafe_write_unaligned(L_5, L_7);
|
|
int32_t L_8 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_8, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_m13A80C76E639BAFCF367E1834C91AF7FAB54F934_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t2657158EA5F297B72D85BDE4C1224458F9234885 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericStruct L_7 = alloca(SizeOf_T1_t2657158EA5F297B72D85BDE4C1224458F9234885);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = V_0;
|
|
uint8_t* L_2;
|
|
L_2 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_3 = L_2;
|
|
uint8_t L_4 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_3, L_4);
|
|
uint8_t* L_5;
|
|
L_5 = il2cpp_unsafe_add<uint8_t,int32_t>(L_3, 1);
|
|
Il2CppFullySharedGenericStruct* L_6 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_7, L_6, SizeOf_T1_t2657158EA5F297B72D85BDE4C1224458F9234885);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_5, L_7);
|
|
int32_t L_8 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_8, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mFE664EA298E6C36120316ADD76886B828BACA843_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t9BF1073EEE2E4AAF74C41CECC19BF2915BEF1852 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T2_t0CDC9CAB5840E71A0F1F299409517B874FDB0ED9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericStruct L_9 = alloca(SizeOf_T1_t9BF1073EEE2E4AAF74C41CECC19BF2915BEF1852);
|
|
const Il2CppFullySharedGenericStruct L_13 = alloca(SizeOf_T2_t0CDC9CAB5840E71A0F1F299409517B874FDB0ED9);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), 1));
|
|
int32_t L_2 = V_0;
|
|
uint8_t* L_3;
|
|
L_3 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_4 = L_3;
|
|
uint8_t L_5 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_4, L_5);
|
|
uint8_t* L_6 = L_4;
|
|
uint8_t* L_7;
|
|
L_7 = il2cpp_unsafe_add<uint8_t,int32_t>(L_6, 1);
|
|
Il2CppFullySharedGenericStruct* L_8 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_9, L_8, SizeOf_T1_t9BF1073EEE2E4AAF74C41CECC19BF2915BEF1852);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)), il2cpp_rgctx_method(method->rgctx_data, 4), NULL, L_7, L_9);
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_11;
|
|
L_11 = il2cpp_unsafe_add<uint8_t,int32_t>(L_6, ((int32_t)il2cpp_codegen_add(L_10, 1)));
|
|
Il2CppFullySharedGenericStruct* L_12 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_13, L_12, SizeOf_T2_t0CDC9CAB5840E71A0F1F299409517B874FDB0ED9);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, L_11, L_13);
|
|
int32_t L_14 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m0AAE6E39B5A5AD3D9848DE47D84675316497B721_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t9F22DF8D8FAABF3822E27944B28E7FBABF028251 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T2_t26B76A6E25E97DBD61F7245DA06EAC38F1FBD9C3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T3_t375C7D46274F3A7B7E41F9A936ED750D43403772 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericStruct L_10 = alloca(SizeOf_T1_t9F22DF8D8FAABF3822E27944B28E7FBABF028251);
|
|
const Il2CppFullySharedGenericStruct L_15 = alloca(SizeOf_T2_t26B76A6E25E97DBD61F7245DA06EAC38F1FBD9C3);
|
|
const Il2CppFullySharedGenericStruct L_20 = alloca(SizeOf_T3_t375C7D46274F3A7B7E41F9A936ED750D43403772);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), 1));
|
|
int32_t L_3 = V_0;
|
|
uint8_t* L_4;
|
|
L_4 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_5 = L_4;
|
|
uint8_t L_6 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_5, L_6);
|
|
uint8_t* L_7 = L_5;
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<uint8_t,int32_t>(L_7, 1);
|
|
Il2CppFullySharedGenericStruct* L_9 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_10, L_9, SizeOf_T1_t9F22DF8D8FAABF3822E27944B28E7FBABF028251);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, L_8, L_10);
|
|
uint8_t* L_11 = L_7;
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_13;
|
|
L_13 = il2cpp_unsafe_add<uint8_t,int32_t>(L_11, ((int32_t)il2cpp_codegen_add(L_12, 1)));
|
|
Il2CppFullySharedGenericStruct* L_14 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_15, L_14, SizeOf_T2_t26B76A6E25E97DBD61F7245DA06EAC38F1FBD9C3);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), NULL, L_13, L_15);
|
|
int32_t L_16;
|
|
L_16 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_17;
|
|
L_17 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_18;
|
|
L_18 = il2cpp_unsafe_add<uint8_t,int32_t>(L_11, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_16, L_17)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_19 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_20, L_19, SizeOf_T3_t375C7D46274F3A7B7E41F9A936ED750D43403772);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, L_18, L_20);
|
|
int32_t L_21 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_21, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6CD4F6542C6D1F9B8929B1811E7A4B208499A5E9_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, int32_t* ___1_value1, int32_t* ___2_value2, int32_t* ___3_value3, int32_t* ___4_value4, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_2;
|
|
L_2 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_3;
|
|
L_3 = il2cpp_unsafe_sizeof<int32_t>();
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), 1));
|
|
int32_t L_4 = V_0;
|
|
uint8_t* L_5;
|
|
L_5 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_6 = L_5;
|
|
uint8_t L_7 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_6, L_7);
|
|
uint8_t* L_8 = L_6;
|
|
uint8_t* L_9;
|
|
L_9 = il2cpp_unsafe_add<uint8_t,int32_t>(L_8, 1);
|
|
int32_t* L_10 = ___1_value1;
|
|
int32_t L_11 = (*(int32_t*)L_10);
|
|
il2cpp_unsafe_write_unaligned(L_9, L_11);
|
|
uint8_t* L_12 = L_8;
|
|
int32_t L_13;
|
|
L_13 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_14;
|
|
L_14 = il2cpp_unsafe_add<uint8_t,int32_t>(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)));
|
|
int32_t* L_15 = ___2_value2;
|
|
int32_t L_16 = (*(int32_t*)L_15);
|
|
il2cpp_unsafe_write_unaligned(L_14, L_16);
|
|
uint8_t* L_17 = L_12;
|
|
int32_t L_18;
|
|
L_18 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_19;
|
|
L_19 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_18, L_19)), 1)));
|
|
int32_t* L_21 = ___3_value3;
|
|
int32_t L_22 = (*(int32_t*)L_21);
|
|
il2cpp_unsafe_write_unaligned(L_20, L_22);
|
|
int32_t L_23;
|
|
L_23 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_24;
|
|
L_24 = il2cpp_unsafe_sizeof<int32_t>();
|
|
int32_t L_25;
|
|
L_25 = il2cpp_unsafe_sizeof<int32_t>();
|
|
uint8_t* L_26;
|
|
L_26 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_23, L_24)), L_25)), 1)));
|
|
int32_t* L_27 = ___4_value4;
|
|
int32_t L_28 = (*(int32_t*)L_27);
|
|
il2cpp_unsafe_write_unaligned(L_26, L_28);
|
|
int32_t L_29 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_29, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mFEEFFB74F76B98777DCC97DD01846A01B5FBF44D_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t666E8EE1384BBF5DEE0DF35F8154B170C45DD9FD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T2_tFD1F6B343AA6C6AA127C50144A3061F7F591263B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T3_t0155B7ABC1A771989284B8CFBFF856CE323630C7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T4_tA37400E7BDCAEEF55BAB112D13BD5D0F456C595E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const Il2CppFullySharedGenericStruct L_11 = alloca(SizeOf_T1_t666E8EE1384BBF5DEE0DF35F8154B170C45DD9FD);
|
|
const Il2CppFullySharedGenericStruct L_16 = alloca(SizeOf_T2_tFD1F6B343AA6C6AA127C50144A3061F7F591263B);
|
|
const Il2CppFullySharedGenericStruct L_22 = alloca(SizeOf_T3_t0155B7ABC1A771989284B8CFBFF856CE323630C7);
|
|
const Il2CppFullySharedGenericStruct L_28 = alloca(SizeOf_T4_tA37400E7BDCAEEF55BAB112D13BD5D0F456C595E);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), 1));
|
|
int32_t L_4 = V_0;
|
|
uint8_t* L_5;
|
|
L_5 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_6 = L_5;
|
|
uint8_t L_7 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_6, L_7);
|
|
uint8_t* L_8 = L_6;
|
|
uint8_t* L_9;
|
|
L_9 = il2cpp_unsafe_add<uint8_t,int32_t>(L_8, 1);
|
|
Il2CppFullySharedGenericStruct* L_10 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_11, L_10, SizeOf_T1_t666E8EE1384BBF5DEE0DF35F8154B170C45DD9FD);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), NULL, L_9, L_11);
|
|
uint8_t* L_12 = L_8;
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_14;
|
|
L_14 = il2cpp_unsafe_add<uint8_t,int32_t>(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)));
|
|
Il2CppFullySharedGenericStruct* L_15 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_16, L_15, SizeOf_T2_tFD1F6B343AA6C6AA127C50144A3061F7F591263B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, L_14, L_16);
|
|
uint8_t* L_17 = L_12;
|
|
int32_t L_18;
|
|
L_18 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_18, L_19)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_21 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_22, L_21, SizeOf_T3_t0155B7ABC1A771989284B8CFBFF856CE323630C7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), NULL, L_20, L_22);
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_26;
|
|
L_26 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_23, L_24)), L_25)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_27 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_28, L_27, SizeOf_T4_tA37400E7BDCAEEF55BAB112D13BD5D0F456C595E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_26, L_28);
|
|
int32_t L_29 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_29, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mD64D2B07DC8531689FC80A90B9B467A9B759545F_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tBE41E4BB636C027A3D80C0ACA884701E0888F3DB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T2_t19C87D4DD93E205DF48EAB46739010D8A78968C5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T3_t4D5E5504F6F9DE38845114075C44851C9D459BDB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T4_t09721604A6A58859CBF042A7FE06574A0FA2004C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T5_t33D557A69AC157F55422045E2E4E610A25AAE131 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const Il2CppFullySharedGenericStruct L_12 = alloca(SizeOf_T1_tBE41E4BB636C027A3D80C0ACA884701E0888F3DB);
|
|
const Il2CppFullySharedGenericStruct L_17 = alloca(SizeOf_T2_t19C87D4DD93E205DF48EAB46739010D8A78968C5);
|
|
const Il2CppFullySharedGenericStruct L_23 = alloca(SizeOf_T3_t4D5E5504F6F9DE38845114075C44851C9D459BDB);
|
|
const Il2CppFullySharedGenericStruct L_30 = alloca(SizeOf_T4_t09721604A6A58859CBF042A7FE06574A0FA2004C);
|
|
const Il2CppFullySharedGenericStruct L_37 = alloca(SizeOf_T5_t33D557A69AC157F55422045E2E4E610A25AAE131);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), 1));
|
|
int32_t L_5 = V_0;
|
|
uint8_t* L_6;
|
|
L_6 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_7 = L_6;
|
|
uint8_t L_8 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_7, L_8);
|
|
uint8_t* L_9 = L_7;
|
|
uint8_t* L_10;
|
|
L_10 = il2cpp_unsafe_add<uint8_t,int32_t>(L_9, 1);
|
|
Il2CppFullySharedGenericStruct* L_11 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_12, L_11, SizeOf_T1_tBE41E4BB636C027A3D80C0ACA884701E0888F3DB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, L_10, L_12);
|
|
uint8_t* L_13 = L_9;
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_15;
|
|
L_15 = il2cpp_unsafe_add<uint8_t,int32_t>(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)));
|
|
Il2CppFullySharedGenericStruct* L_16 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_17, L_16, SizeOf_T2_t19C87D4DD93E205DF48EAB46739010D8A78968C5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)), il2cpp_rgctx_method(method->rgctx_data, 10), NULL, L_15, L_17);
|
|
uint8_t* L_18 = L_13;
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_21;
|
|
L_21 = il2cpp_unsafe_add<uint8_t,int32_t>(L_18, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_19, L_20)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_22 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_23, L_22, SizeOf_T3_t4D5E5504F6F9DE38845114075C44851C9D459BDB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, L_21, L_23);
|
|
uint8_t* L_24 = L_18;
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_28;
|
|
L_28 = il2cpp_unsafe_add<uint8_t,int32_t>(L_24, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_25, L_26)), L_27)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_29 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_30, L_29, SizeOf_T4_t09721604A6A58859CBF042A7FE06574A0FA2004C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_28, L_30);
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_35;
|
|
L_35 = il2cpp_unsafe_add<uint8_t,int32_t>(L_24, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_31, L_32)), L_33)), L_34)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_36 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_37, L_36, SizeOf_T5_t33D557A69AC157F55422045E2E4E610A25AAE131);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_35, L_37);
|
|
int32_t L_38 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_38, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m958176945739DB2B351BA5AC25EC2F5DF2941566_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tF026F48F05AF46AB81FC884565D0039DFD2FFB1A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T2_t215FC14DC54F0E1B5C8DB73B228839BCA3100250 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T3_tF5752072FE80FCCAAB06429E452EA28E9DC198EC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T4_tBC5D7C6AECE02A4117219A953DB70CEB3DCA897D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T5_t821F7D838F1ED4CAF78C2B27229B8C639C253CDB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T6_tF24F7ADF6FC865F2B8B698D0638E9D4426FA7534 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const Il2CppFullySharedGenericStruct L_13 = alloca(SizeOf_T1_tF026F48F05AF46AB81FC884565D0039DFD2FFB1A);
|
|
const Il2CppFullySharedGenericStruct L_18 = alloca(SizeOf_T2_t215FC14DC54F0E1B5C8DB73B228839BCA3100250);
|
|
const Il2CppFullySharedGenericStruct L_24 = alloca(SizeOf_T3_tF5752072FE80FCCAAB06429E452EA28E9DC198EC);
|
|
const Il2CppFullySharedGenericStruct L_31 = alloca(SizeOf_T4_tBC5D7C6AECE02A4117219A953DB70CEB3DCA897D);
|
|
const Il2CppFullySharedGenericStruct L_39 = alloca(SizeOf_T5_t821F7D838F1ED4CAF78C2B27229B8C639C253CDB);
|
|
const Il2CppFullySharedGenericStruct L_47 = alloca(SizeOf_T6_tF24F7ADF6FC865F2B8B698D0638E9D4426FA7534);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), 1));
|
|
int32_t L_6 = V_0;
|
|
uint8_t* L_7;
|
|
L_7 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_8 = L_7;
|
|
uint8_t L_9 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_8, L_9);
|
|
uint8_t* L_10 = L_8;
|
|
uint8_t* L_11;
|
|
L_11 = il2cpp_unsafe_add<uint8_t,int32_t>(L_10, 1);
|
|
Il2CppFullySharedGenericStruct* L_12 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_13, L_12, SizeOf_T1_tF026F48F05AF46AB81FC884565D0039DFD2FFB1A);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), NULL, L_11, L_13);
|
|
uint8_t* L_14 = L_10;
|
|
int32_t L_15;
|
|
L_15 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_16;
|
|
L_16 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, ((int32_t)il2cpp_codegen_add(L_15, 1)));
|
|
Il2CppFullySharedGenericStruct* L_17 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_18, L_17, SizeOf_T2_t215FC14DC54F0E1B5C8DB73B228839BCA3100250);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, L_16, L_18);
|
|
uint8_t* L_19 = L_14;
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_22;
|
|
L_22 = il2cpp_unsafe_add<uint8_t,int32_t>(L_19, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_20, L_21)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_23 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_24, L_23, SizeOf_T3_tF5752072FE80FCCAAB06429E452EA28E9DC198EC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_22, L_24);
|
|
uint8_t* L_25 = L_19;
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_29;
|
|
L_29 = il2cpp_unsafe_add<uint8_t,int32_t>(L_25, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_26, L_27)), L_28)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_30 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_31, L_30, SizeOf_T4_tBC5D7C6AECE02A4117219A953DB70CEB3DCA897D);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_29, L_31);
|
|
uint8_t* L_32 = L_25;
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_37;
|
|
L_37 = il2cpp_unsafe_add<uint8_t,int32_t>(L_32, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_33, L_34)), L_35)), L_36)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_38 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_39, L_38, SizeOf_T5_t821F7D838F1ED4CAF78C2B27229B8C639C253CDB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_37, L_39);
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_45;
|
|
L_45 = il2cpp_unsafe_add<uint8_t,int32_t>(L_32, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_40, L_41)), L_42)), L_43)), L_44)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_46 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_47, L_46, SizeOf_T6_tF24F7ADF6FC865F2B8B698D0638E9D4426FA7534);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_45, L_47);
|
|
int32_t L_48 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_48, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m3B1661576761E66E64A34DC674FDAA4BB6FA9C3A_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_tF26FC9970D236BF140007206FF91F8C8AFC4914A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T2_tCD35079EB8593126B86A85E9BD2E7FB01738B76C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T3_t68708CB8C9A525B6AE8311A8340047AED9E0E025 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T4_tD0B399CB559DBCB8BC3CC89B3215F69E8AB3CEA7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T5_t001BD78AE5099D9AA6E1CCA590000CEB0AA97AD1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T6_tB658C58FA3123CAF2C0A0D2041EA33A6D8779D2F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T7_t89A9314CE9A825999669D8C2F910B7CE843FAFB8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const Il2CppFullySharedGenericStruct L_14 = alloca(SizeOf_T1_tF26FC9970D236BF140007206FF91F8C8AFC4914A);
|
|
const Il2CppFullySharedGenericStruct L_19 = alloca(SizeOf_T2_tCD35079EB8593126B86A85E9BD2E7FB01738B76C);
|
|
const Il2CppFullySharedGenericStruct L_25 = alloca(SizeOf_T3_t68708CB8C9A525B6AE8311A8340047AED9E0E025);
|
|
const Il2CppFullySharedGenericStruct L_32 = alloca(SizeOf_T4_tD0B399CB559DBCB8BC3CC89B3215F69E8AB3CEA7);
|
|
const Il2CppFullySharedGenericStruct L_40 = alloca(SizeOf_T5_t001BD78AE5099D9AA6E1CCA590000CEB0AA97AD1);
|
|
const Il2CppFullySharedGenericStruct L_49 = alloca(SizeOf_T6_tB658C58FA3123CAF2C0A0D2041EA33A6D8779D2F);
|
|
const Il2CppFullySharedGenericStruct L_58 = alloca(SizeOf_T7_t89A9314CE9A825999669D8C2F910B7CE843FAFB8);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), 1));
|
|
int32_t L_7 = V_0;
|
|
uint8_t* L_8;
|
|
L_8 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_9 = L_8;
|
|
uint8_t L_10 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_9, L_10);
|
|
uint8_t* L_11 = L_9;
|
|
uint8_t* L_12;
|
|
L_12 = il2cpp_unsafe_add<uint8_t,int32_t>(L_11, 1);
|
|
Il2CppFullySharedGenericStruct* L_13 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_14, L_13, SizeOf_T1_tF26FC9970D236BF140007206FF91F8C8AFC4914A);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, L_12, L_14);
|
|
uint8_t* L_15 = L_11;
|
|
int32_t L_16;
|
|
L_16 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<uint8_t,int32_t>(L_15, ((int32_t)il2cpp_codegen_add(L_16, 1)));
|
|
Il2CppFullySharedGenericStruct* L_18 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_19, L_18, SizeOf_T2_tCD35079EB8593126B86A85E9BD2E7FB01738B76C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), NULL, L_17, L_19);
|
|
uint8_t* L_20 = L_15;
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_unsafe_add<uint8_t,int32_t>(L_20, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_21, L_22)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_24 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_25, L_24, SizeOf_T3_t68708CB8C9A525B6AE8311A8340047AED9E0E025);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_23, L_25);
|
|
uint8_t* L_26 = L_20;
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_30;
|
|
L_30 = il2cpp_unsafe_add<uint8_t,int32_t>(L_26, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_27, L_28)), L_29)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_31 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_32, L_31, SizeOf_T4_tD0B399CB559DBCB8BC3CC89B3215F69E8AB3CEA7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_30, L_32);
|
|
uint8_t* L_33 = L_26;
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_38;
|
|
L_38 = il2cpp_unsafe_add<uint8_t,int32_t>(L_33, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_34, L_35)), L_36)), L_37)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_39 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_40, L_39, SizeOf_T5_t001BD78AE5099D9AA6E1CCA590000CEB0AA97AD1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_38, L_40);
|
|
uint8_t* L_41 = L_33;
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_47;
|
|
L_47 = il2cpp_unsafe_add<uint8_t,int32_t>(L_41, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_42, L_43)), L_44)), L_45)), L_46)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_48 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_49, L_48, SizeOf_T6_tB658C58FA3123CAF2C0A0D2041EA33A6D8779D2F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_47, L_49);
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_56;
|
|
L_56 = il2cpp_unsafe_add<uint8_t,int32_t>(L_41, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_50, L_51)), L_52)), L_53)), L_54)), L_55)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_57 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_58, L_57, SizeOf_T7_t89A9314CE9A825999669D8C2F910B7CE843FAFB8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_56, L_58);
|
|
int32_t L_59 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_59, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mD024A4F95F8F70C8B3E53CA2599CB8D81DFB8B8C_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t9BAD933DBE3071101C67809D7164D3751464CBB1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T2_t93D3EB547EC4AD990B8587E4D214B981F753E025 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T3_t13F5204DE06C8D3C634ED2F41A8E90193F3DECC7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T4_t3023374028058626D7B2C7093A5B7388BDF5E273 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T5_t6439CC7D139B255E9B04367FA1983F86AE79C087 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T6_t423AE6FC5A6C5BFEE87F5C774E038BD931F5E503 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T7_t3AD05DB681D3550A632745CE8847D3EF5EEA2980 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T8_tAA976480B9D71A1A943E0518B2386AD8D974AF94 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const Il2CppFullySharedGenericStruct L_15 = alloca(SizeOf_T1_t9BAD933DBE3071101C67809D7164D3751464CBB1);
|
|
const Il2CppFullySharedGenericStruct L_20 = alloca(SizeOf_T2_t93D3EB547EC4AD990B8587E4D214B981F753E025);
|
|
const Il2CppFullySharedGenericStruct L_26 = alloca(SizeOf_T3_t13F5204DE06C8D3C634ED2F41A8E90193F3DECC7);
|
|
const Il2CppFullySharedGenericStruct L_33 = alloca(SizeOf_T4_t3023374028058626D7B2C7093A5B7388BDF5E273);
|
|
const Il2CppFullySharedGenericStruct L_41 = alloca(SizeOf_T5_t6439CC7D139B255E9B04367FA1983F86AE79C087);
|
|
const Il2CppFullySharedGenericStruct L_50 = alloca(SizeOf_T6_t423AE6FC5A6C5BFEE87F5C774E038BD931F5E503);
|
|
const Il2CppFullySharedGenericStruct L_60 = alloca(SizeOf_T7_t3AD05DB681D3550A632745CE8847D3EF5EEA2980);
|
|
const Il2CppFullySharedGenericStruct L_70 = alloca(SizeOf_T8_tAA976480B9D71A1A943E0518B2386AD8D974AF94);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), 1));
|
|
int32_t L_8 = V_0;
|
|
uint8_t* L_9;
|
|
L_9 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_8, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_10 = L_9;
|
|
uint8_t L_11 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_10, L_11);
|
|
uint8_t* L_12 = L_10;
|
|
uint8_t* L_13;
|
|
L_13 = il2cpp_unsafe_add<uint8_t,int32_t>(L_12, 1);
|
|
Il2CppFullySharedGenericStruct* L_14 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_15, L_14, SizeOf_T1_t9BAD933DBE3071101C67809D7164D3751464CBB1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)), il2cpp_rgctx_method(method->rgctx_data, 10), NULL, L_13, L_15);
|
|
uint8_t* L_16 = L_12;
|
|
int32_t L_17;
|
|
L_17 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_18;
|
|
L_18 = il2cpp_unsafe_add<uint8_t,int32_t>(L_16, ((int32_t)il2cpp_codegen_add(L_17, 1)));
|
|
Il2CppFullySharedGenericStruct* L_19 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_20, L_19, SizeOf_T2_t93D3EB547EC4AD990B8587E4D214B981F753E025);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, L_18, L_20);
|
|
uint8_t* L_21 = L_16;
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_24;
|
|
L_24 = il2cpp_unsafe_add<uint8_t,int32_t>(L_21, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_22, L_23)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_25 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_26, L_25, SizeOf_T3_t13F5204DE06C8D3C634ED2F41A8E90193F3DECC7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_24, L_26);
|
|
uint8_t* L_27 = L_21;
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_31;
|
|
L_31 = il2cpp_unsafe_add<uint8_t,int32_t>(L_27, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, L_29)), L_30)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_32 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_33, L_32, SizeOf_T4_t3023374028058626D7B2C7093A5B7388BDF5E273);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_31, L_33);
|
|
uint8_t* L_34 = L_27;
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_39;
|
|
L_39 = il2cpp_unsafe_add<uint8_t,int32_t>(L_34, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_35, L_36)), L_37)), L_38)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_40 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_41, L_40, SizeOf_T5_t6439CC7D139B255E9B04367FA1983F86AE79C087);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_39, L_41);
|
|
uint8_t* L_42 = L_34;
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_48;
|
|
L_48 = il2cpp_unsafe_add<uint8_t,int32_t>(L_42, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_43, L_44)), L_45)), L_46)), L_47)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_49 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_50, L_49, SizeOf_T6_t423AE6FC5A6C5BFEE87F5C774E038BD931F5E503);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_48, L_50);
|
|
uint8_t* L_51 = L_42;
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_58;
|
|
L_58 = il2cpp_unsafe_add<uint8_t,int32_t>(L_51, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_52, L_53)), L_54)), L_55)), L_56)), L_57)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_59 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_60, L_59, SizeOf_T7_t3AD05DB681D3550A632745CE8847D3EF5EEA2980);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_58, L_60);
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_68;
|
|
L_68 = il2cpp_unsafe_add<uint8_t,int32_t>(L_51, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_61, L_62)), L_63)), L_64)), L_65)), L_66)), L_67)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_69 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_70, L_69, SizeOf_T8_tAA976480B9D71A1A943E0518B2386AD8D974AF94);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_68, L_70);
|
|
int32_t L_71 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_71, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m7A96A4E58865F32A27E6D43AAD1F745035ABB56C_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t745D4045044403874FC00761A4B381747388B1EB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T2_tE2AF1199C82C097427C7AF984902D82307B8BBB8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T3_tA2E533D4F8659D88252755E187ED85ED44FE3CC0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T4_t13D4955023496DE4D9264CAEC238EAC9E31B26FA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T5_tE8F67266D459745E60826FAA55C0E6E0E4BB5992 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T6_tED8B0C8E2698E352C6EA390A04695A2743A9C648 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T7_t0FA8A746AA2352961F9303B927D2850A150BDAD0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T8_tE52B0ACB2F03C17042DD4247351393C64841767C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T9_t865F60689E335421284360E07E84B19EDBD545EF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const Il2CppFullySharedGenericStruct L_16 = alloca(SizeOf_T1_t745D4045044403874FC00761A4B381747388B1EB);
|
|
const Il2CppFullySharedGenericStruct L_21 = alloca(SizeOf_T2_tE2AF1199C82C097427C7AF984902D82307B8BBB8);
|
|
const Il2CppFullySharedGenericStruct L_27 = alloca(SizeOf_T3_tA2E533D4F8659D88252755E187ED85ED44FE3CC0);
|
|
const Il2CppFullySharedGenericStruct L_34 = alloca(SizeOf_T4_t13D4955023496DE4D9264CAEC238EAC9E31B26FA);
|
|
const Il2CppFullySharedGenericStruct L_42 = alloca(SizeOf_T5_tE8F67266D459745E60826FAA55C0E6E0E4BB5992);
|
|
const Il2CppFullySharedGenericStruct L_51 = alloca(SizeOf_T6_tED8B0C8E2698E352C6EA390A04695A2743A9C648);
|
|
const Il2CppFullySharedGenericStruct L_61 = alloca(SizeOf_T7_t0FA8A746AA2352961F9303B927D2850A150BDAD0);
|
|
const Il2CppFullySharedGenericStruct L_72 = alloca(SizeOf_T8_tE52B0ACB2F03C17042DD4247351393C64841767C);
|
|
const Il2CppFullySharedGenericStruct L_83 = alloca(SizeOf_T9_t865F60689E335421284360E07E84B19EDBD545EF);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), 1));
|
|
int32_t L_9 = V_0;
|
|
uint8_t* L_10;
|
|
L_10 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_9, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_11 = L_10;
|
|
uint8_t L_12 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_11, L_12);
|
|
uint8_t* L_13 = L_11;
|
|
uint8_t* L_14;
|
|
L_14 = il2cpp_unsafe_add<uint8_t,int32_t>(L_13, 1);
|
|
Il2CppFullySharedGenericStruct* L_15 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_16, L_15, SizeOf_T1_t745D4045044403874FC00761A4B381747388B1EB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, L_14, L_16);
|
|
uint8_t* L_17 = L_13;
|
|
int32_t L_18;
|
|
L_18 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, ((int32_t)il2cpp_codegen_add(L_18, 1)));
|
|
Il2CppFullySharedGenericStruct* L_20 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_21, L_20, SizeOf_T2_tE2AF1199C82C097427C7AF984902D82307B8BBB8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_19, L_21);
|
|
uint8_t* L_22 = L_17;
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_25;
|
|
L_25 = il2cpp_unsafe_add<uint8_t,int32_t>(L_22, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_23, L_24)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_26 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_27, L_26, SizeOf_T3_tA2E533D4F8659D88252755E187ED85ED44FE3CC0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_25, L_27);
|
|
uint8_t* L_28 = L_22;
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_32;
|
|
L_32 = il2cpp_unsafe_add<uint8_t,int32_t>(L_28, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_29, L_30)), L_31)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_33 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_34, L_33, SizeOf_T4_t13D4955023496DE4D9264CAEC238EAC9E31B26FA);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_32, L_34);
|
|
uint8_t* L_35 = L_28;
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_40;
|
|
L_40 = il2cpp_unsafe_add<uint8_t,int32_t>(L_35, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_36, L_37)), L_38)), L_39)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_41 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_42, L_41, SizeOf_T5_tE8F67266D459745E60826FAA55C0E6E0E4BB5992);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_40, L_42);
|
|
uint8_t* L_43 = L_35;
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_49;
|
|
L_49 = il2cpp_unsafe_add<uint8_t,int32_t>(L_43, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_44, L_45)), L_46)), L_47)), L_48)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_50 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_51, L_50, SizeOf_T6_tED8B0C8E2698E352C6EA390A04695A2743A9C648);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_49, L_51);
|
|
uint8_t* L_52 = L_43;
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_59;
|
|
L_59 = il2cpp_unsafe_add<uint8_t,int32_t>(L_52, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_53, L_54)), L_55)), L_56)), L_57)), L_58)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_60 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_61, L_60, SizeOf_T7_t0FA8A746AA2352961F9303B927D2850A150BDAD0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_59, L_61);
|
|
uint8_t* L_62 = L_52;
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_70;
|
|
L_70 = il2cpp_unsafe_add<uint8_t,int32_t>(L_62, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_63, L_64)), L_65)), L_66)), L_67)), L_68)), L_69)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_71 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_72, L_71, SizeOf_T8_tE52B0ACB2F03C17042DD4247351393C64841767C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_70, L_72);
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_81;
|
|
L_81 = il2cpp_unsafe_add<uint8_t,int32_t>(L_62, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_73, L_74)), L_75)), L_76)), L_77)), L_78)), L_79)), L_80)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_82 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_83, L_82, SizeOf_T9_t865F60689E335421284360E07E84B19EDBD545EF);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_81, L_83);
|
|
int32_t L_84 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_84, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mC441BB819507D10711A66375882F94791312DB3C_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, Il2CppFullySharedGenericStruct* ___10_value10, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t3430BA6EAD51F9DE3A797F6BF82AED12A7DC7D1F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T2_t0C7C9E49F55D5DE97CE7514DB7AF0D7CB231BFEE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T3_tAD05CA10CAD5DDB2025D5A7DA2990EA03349B611 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T4_t1CD8E18D4D2B3414EDF88178E3F8396ECD3AC80B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T5_tF4FDC9712F295E84CCC61D266D05418434982A67 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T6_t841B98D1B1677048EF2D740295906AAF51A4CBE3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T7_tC08078FB4B1F4F9218EE842A47447F66DBAF7810 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T8_t848C8001BFA4F160ABC37CE36BD6F3324D8EE11C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 32));
|
|
const uint32_t SizeOf_T9_t0E64CB6D1986BF2FD571975CD1325B924572BB46 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 35));
|
|
const uint32_t SizeOf_T10_tF47A37805C4834BFD8907BF45391ABF07595FA4F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 38));
|
|
const Il2CppFullySharedGenericStruct L_17 = alloca(SizeOf_T1_t3430BA6EAD51F9DE3A797F6BF82AED12A7DC7D1F);
|
|
const Il2CppFullySharedGenericStruct L_22 = alloca(SizeOf_T2_t0C7C9E49F55D5DE97CE7514DB7AF0D7CB231BFEE);
|
|
const Il2CppFullySharedGenericStruct L_28 = alloca(SizeOf_T3_tAD05CA10CAD5DDB2025D5A7DA2990EA03349B611);
|
|
const Il2CppFullySharedGenericStruct L_35 = alloca(SizeOf_T4_t1CD8E18D4D2B3414EDF88178E3F8396ECD3AC80B);
|
|
const Il2CppFullySharedGenericStruct L_43 = alloca(SizeOf_T5_tF4FDC9712F295E84CCC61D266D05418434982A67);
|
|
const Il2CppFullySharedGenericStruct L_52 = alloca(SizeOf_T6_t841B98D1B1677048EF2D740295906AAF51A4CBE3);
|
|
const Il2CppFullySharedGenericStruct L_62 = alloca(SizeOf_T7_tC08078FB4B1F4F9218EE842A47447F66DBAF7810);
|
|
const Il2CppFullySharedGenericStruct L_73 = alloca(SizeOf_T8_t848C8001BFA4F160ABC37CE36BD6F3324D8EE11C);
|
|
const Il2CppFullySharedGenericStruct L_85 = alloca(SizeOf_T9_t0E64CB6D1986BF2FD571975CD1325B924572BB46);
|
|
const Il2CppFullySharedGenericStruct L_97 = alloca(SizeOf_T10_tF47A37805C4834BFD8907BF45391ABF07595FA4F);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), 1));
|
|
int32_t L_10 = V_0;
|
|
uint8_t* L_11;
|
|
L_11 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_10, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_12 = L_11;
|
|
uint8_t L_13 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_12, L_13);
|
|
uint8_t* L_14 = L_12;
|
|
uint8_t* L_15;
|
|
L_15 = il2cpp_unsafe_add<uint8_t,int32_t>(L_14, 1);
|
|
Il2CppFullySharedGenericStruct* L_16 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_17, L_16, SizeOf_T1_t3430BA6EAD51F9DE3A797F6BF82AED12A7DC7D1F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), NULL, L_15, L_17);
|
|
uint8_t* L_18 = L_14;
|
|
int32_t L_19;
|
|
L_19 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_18, ((int32_t)il2cpp_codegen_add(L_19, 1)));
|
|
Il2CppFullySharedGenericStruct* L_21 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_22, L_21, SizeOf_T2_t0C7C9E49F55D5DE97CE7514DB7AF0D7CB231BFEE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_20, L_22);
|
|
uint8_t* L_23 = L_18;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_26;
|
|
L_26 = il2cpp_unsafe_add<uint8_t,int32_t>(L_23, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_24, L_25)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_27 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_28, L_27, SizeOf_T3_tAD05CA10CAD5DDB2025D5A7DA2990EA03349B611);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_26, L_28);
|
|
uint8_t* L_29 = L_23;
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_33;
|
|
L_33 = il2cpp_unsafe_add<uint8_t,int32_t>(L_29, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_30, L_31)), L_32)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_34 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_35, L_34, SizeOf_T4_t1CD8E18D4D2B3414EDF88178E3F8396ECD3AC80B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_33, L_35);
|
|
uint8_t* L_36 = L_29;
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_41;
|
|
L_41 = il2cpp_unsafe_add<uint8_t,int32_t>(L_36, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_37, L_38)), L_39)), L_40)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_42 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_43, L_42, SizeOf_T5_tF4FDC9712F295E84CCC61D266D05418434982A67);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_41, L_43);
|
|
uint8_t* L_44 = L_36;
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_50;
|
|
L_50 = il2cpp_unsafe_add<uint8_t,int32_t>(L_44, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_45, L_46)), L_47)), L_48)), L_49)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_51 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_52, L_51, SizeOf_T6_t841B98D1B1677048EF2D740295906AAF51A4CBE3);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_50, L_52);
|
|
uint8_t* L_53 = L_44;
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_60;
|
|
L_60 = il2cpp_unsafe_add<uint8_t,int32_t>(L_53, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_54, L_55)), L_56)), L_57)), L_58)), L_59)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_61 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_62, L_61, SizeOf_T7_tC08078FB4B1F4F9218EE842A47447F66DBAF7810);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 30)), il2cpp_rgctx_method(method->rgctx_data, 30), NULL, L_60, L_62);
|
|
uint8_t* L_63 = L_53;
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_71;
|
|
L_71 = il2cpp_unsafe_add<uint8_t,int32_t>(L_63, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_64, L_65)), L_66)), L_67)), L_68)), L_69)), L_70)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_72 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_73, L_72, SizeOf_T8_t848C8001BFA4F160ABC37CE36BD6F3324D8EE11C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 33)), il2cpp_rgctx_method(method->rgctx_data, 33), NULL, L_71, L_73);
|
|
uint8_t* L_74 = L_63;
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_83;
|
|
L_83 = il2cpp_unsafe_add<uint8_t,int32_t>(L_74, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_75, L_76)), L_77)), L_78)), L_79)), L_80)), L_81)), L_82)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_84 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_85, L_84, SizeOf_T9_t0E64CB6D1986BF2FD571975CD1325B924572BB46);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 36)), il2cpp_rgctx_method(method->rgctx_data, 36), NULL, L_83, L_85);
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_95;
|
|
L_95 = il2cpp_unsafe_add<uint8_t,int32_t>(L_74, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_86, L_87)), L_88)), L_89)), L_90)), L_91)), L_92)), L_93)), L_94)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_96 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_97, L_96, SizeOf_T10_tF47A37805C4834BFD8907BF45391ABF07595FA4F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), NULL, L_95, L_97);
|
|
int32_t L_98 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_98, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m4F4BB585A28EE32867402E730420F620716BC6F7_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, Il2CppFullySharedGenericStruct* ___10_value10, Il2CppFullySharedGenericStruct* ___11_value11, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t1E2023682A82A1A49AA52110004A3F541EDF1AE0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T2_tB1806C523828757D329A9E877E0383C6FEB6BBEC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T3_tE712BDD2CE7259251EB2BEBE5605037F39EA6E6F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T4_t4F04F61ABE24029D3A27BA13701B2AE44C5DCEB2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T5_tDB4570921CC354A02332E60CD88CF7A81A86E1B4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T6_t6CF9C173354B1486E566C913F50E9DD1926A97A8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T7_t71D47B4CEB8BC73E7E7B023569E93B3F71212278 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const uint32_t SizeOf_T8_t9394550FC298146071D08E3806D1C90873D19D0F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T9_tF9A84DB6E9165E268CA6787D5B8111D838754694 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 36));
|
|
const uint32_t SizeOf_T10_tC133AE0FAE6AB28763CF2D84D2707B663676C0B2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 39));
|
|
const uint32_t SizeOf_T11_t1B0580F5D7D3E9E75D94F789F667DF9873FC1383 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 42));
|
|
const Il2CppFullySharedGenericStruct L_18 = alloca(SizeOf_T1_t1E2023682A82A1A49AA52110004A3F541EDF1AE0);
|
|
const Il2CppFullySharedGenericStruct L_23 = alloca(SizeOf_T2_tB1806C523828757D329A9E877E0383C6FEB6BBEC);
|
|
const Il2CppFullySharedGenericStruct L_29 = alloca(SizeOf_T3_tE712BDD2CE7259251EB2BEBE5605037F39EA6E6F);
|
|
const Il2CppFullySharedGenericStruct L_36 = alloca(SizeOf_T4_t4F04F61ABE24029D3A27BA13701B2AE44C5DCEB2);
|
|
const Il2CppFullySharedGenericStruct L_44 = alloca(SizeOf_T5_tDB4570921CC354A02332E60CD88CF7A81A86E1B4);
|
|
const Il2CppFullySharedGenericStruct L_53 = alloca(SizeOf_T6_t6CF9C173354B1486E566C913F50E9DD1926A97A8);
|
|
const Il2CppFullySharedGenericStruct L_63 = alloca(SizeOf_T7_t71D47B4CEB8BC73E7E7B023569E93B3F71212278);
|
|
const Il2CppFullySharedGenericStruct L_74 = alloca(SizeOf_T8_t9394550FC298146071D08E3806D1C90873D19D0F);
|
|
const Il2CppFullySharedGenericStruct L_86 = alloca(SizeOf_T9_tF9A84DB6E9165E268CA6787D5B8111D838754694);
|
|
const Il2CppFullySharedGenericStruct L_99 = alloca(SizeOf_T10_tC133AE0FAE6AB28763CF2D84D2707B663676C0B2);
|
|
const Il2CppFullySharedGenericStruct L_112 = alloca(SizeOf_T11_t1B0580F5D7D3E9E75D94F789F667DF9873FC1383);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), 1));
|
|
int32_t L_11 = V_0;
|
|
uint8_t* L_12;
|
|
L_12 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_11, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_13 = L_12;
|
|
uint8_t L_14 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_13, L_14);
|
|
uint8_t* L_15 = L_13;
|
|
uint8_t* L_16;
|
|
L_16 = il2cpp_unsafe_add<uint8_t,int32_t>(L_15, 1);
|
|
Il2CppFullySharedGenericStruct* L_17 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_18, L_17, SizeOf_T1_t1E2023682A82A1A49AA52110004A3F541EDF1AE0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, L_16, L_18);
|
|
uint8_t* L_19 = L_15;
|
|
int32_t L_20;
|
|
L_20 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_21;
|
|
L_21 = il2cpp_unsafe_add<uint8_t,int32_t>(L_19, ((int32_t)il2cpp_codegen_add(L_20, 1)));
|
|
Il2CppFullySharedGenericStruct* L_22 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_23, L_22, SizeOf_T2_tB1806C523828757D329A9E877E0383C6FEB6BBEC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_21, L_23);
|
|
uint8_t* L_24 = L_19;
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_27;
|
|
L_27 = il2cpp_unsafe_add<uint8_t,int32_t>(L_24, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_25, L_26)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_28 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_29, L_28, SizeOf_T3_tE712BDD2CE7259251EB2BEBE5605037F39EA6E6F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_27, L_29);
|
|
uint8_t* L_30 = L_24;
|
|
int32_t L_31;
|
|
L_31 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_34;
|
|
L_34 = il2cpp_unsafe_add<uint8_t,int32_t>(L_30, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_31, L_32)), L_33)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_35 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_36, L_35, SizeOf_T4_t4F04F61ABE24029D3A27BA13701B2AE44C5DCEB2);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_34, L_36);
|
|
uint8_t* L_37 = L_30;
|
|
int32_t L_38;
|
|
L_38 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_42;
|
|
L_42 = il2cpp_unsafe_add<uint8_t,int32_t>(L_37, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_38, L_39)), L_40)), L_41)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_43 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_44, L_43, SizeOf_T5_tDB4570921CC354A02332E60CD88CF7A81A86E1B4);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_42, L_44);
|
|
uint8_t* L_45 = L_37;
|
|
int32_t L_46;
|
|
L_46 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_51;
|
|
L_51 = il2cpp_unsafe_add<uint8_t,int32_t>(L_45, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_46, L_47)), L_48)), L_49)), L_50)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_52 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_53, L_52, SizeOf_T6_t6CF9C173354B1486E566C913F50E9DD1926A97A8);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_51, L_53);
|
|
uint8_t* L_54 = L_45;
|
|
int32_t L_55;
|
|
L_55 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_61;
|
|
L_61 = il2cpp_unsafe_add<uint8_t,int32_t>(L_54, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_55, L_56)), L_57)), L_58)), L_59)), L_60)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_62 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_63, L_62, SizeOf_T7_t71D47B4CEB8BC73E7E7B023569E93B3F71212278);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_61, L_63);
|
|
uint8_t* L_64 = L_54;
|
|
int32_t L_65;
|
|
L_65 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_72;
|
|
L_72 = il2cpp_unsafe_add<uint8_t,int32_t>(L_64, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_65, L_66)), L_67)), L_68)), L_69)), L_70)), L_71)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_73 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_74, L_73, SizeOf_T8_t9394550FC298146071D08E3806D1C90873D19D0F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 34)), il2cpp_rgctx_method(method->rgctx_data, 34), NULL, L_72, L_74);
|
|
uint8_t* L_75 = L_64;
|
|
int32_t L_76;
|
|
L_76 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_84;
|
|
L_84 = il2cpp_unsafe_add<uint8_t,int32_t>(L_75, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_76, L_77)), L_78)), L_79)), L_80)), L_81)), L_82)), L_83)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_85 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_86, L_85, SizeOf_T9_tF9A84DB6E9165E268CA6787D5B8111D838754694);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 37)), il2cpp_rgctx_method(method->rgctx_data, 37), NULL, L_84, L_86);
|
|
uint8_t* L_87 = L_75;
|
|
int32_t L_88;
|
|
L_88 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_97;
|
|
L_97 = il2cpp_unsafe_add<uint8_t,int32_t>(L_87, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_88, L_89)), L_90)), L_91)), L_92)), L_93)), L_94)), L_95)), L_96)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_98 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_99, L_98, SizeOf_T10_tC133AE0FAE6AB28763CF2D84D2707B663676C0B2);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 40)), il2cpp_rgctx_method(method->rgctx_data, 40), NULL, L_97, L_99);
|
|
int32_t L_100;
|
|
L_100 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_101;
|
|
L_101 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_110;
|
|
L_110 = il2cpp_unsafe_add<uint8_t,int32_t>(L_87, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_100, L_101)), L_102)), L_103)), L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_111 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_112, L_111, SizeOf_T11_t1B0580F5D7D3E9E75D94F789F667DF9873FC1383);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), NULL, L_110, L_112);
|
|
int32_t L_113 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_113, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mCB28B0AB0BCAFCB5B26C734431AD7EE7E4B5D098_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, Il2CppFullySharedGenericStruct* ___10_value10, Il2CppFullySharedGenericStruct* ___11_value11, Il2CppFullySharedGenericStruct* ___12_value12, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t97572DC1B0E4BECF20CB7853D7C9EA8BC7F29D6B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T2_tDD9094DE8F21B043061B4A45F6163B69177B3975 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T3_tFF74E9C76F55C7A5D54F708591751884A295960E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T4_t8403EB536FB159016031A59A7D37D677684968A4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T5_tE6EED10E9DC28F63A17F2AD589E34333B03DA243 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T6_t50430CE7EAC398FAE4B4CD28D0A6E263359C80CB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T7_t6CEC1D6B3F0B11136B365FC1BCB6BEDC63977DEE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T8_tB5495C7FC536A7315F7F3AEEF4AEBB283B06078B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const uint32_t SizeOf_T9_t67BA8947654217D0EB6A89C240042B5E20526D11 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T10_t2A2F99DD3BA751F5EF86E2CAE8550B96A43DDAFD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 40));
|
|
const uint32_t SizeOf_T11_t666D485CF3D854C926A472467A520345D5C2434B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 43));
|
|
const uint32_t SizeOf_T12_t5FF9F9E10798CF39FB7FF3AD09567E48403EE26F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 46));
|
|
const Il2CppFullySharedGenericStruct L_19 = alloca(SizeOf_T1_t97572DC1B0E4BECF20CB7853D7C9EA8BC7F29D6B);
|
|
const Il2CppFullySharedGenericStruct L_24 = alloca(SizeOf_T2_tDD9094DE8F21B043061B4A45F6163B69177B3975);
|
|
const Il2CppFullySharedGenericStruct L_30 = alloca(SizeOf_T3_tFF74E9C76F55C7A5D54F708591751884A295960E);
|
|
const Il2CppFullySharedGenericStruct L_37 = alloca(SizeOf_T4_t8403EB536FB159016031A59A7D37D677684968A4);
|
|
const Il2CppFullySharedGenericStruct L_45 = alloca(SizeOf_T5_tE6EED10E9DC28F63A17F2AD589E34333B03DA243);
|
|
const Il2CppFullySharedGenericStruct L_54 = alloca(SizeOf_T6_t50430CE7EAC398FAE4B4CD28D0A6E263359C80CB);
|
|
const Il2CppFullySharedGenericStruct L_64 = alloca(SizeOf_T7_t6CEC1D6B3F0B11136B365FC1BCB6BEDC63977DEE);
|
|
const Il2CppFullySharedGenericStruct L_75 = alloca(SizeOf_T8_tB5495C7FC536A7315F7F3AEEF4AEBB283B06078B);
|
|
const Il2CppFullySharedGenericStruct L_87 = alloca(SizeOf_T9_t67BA8947654217D0EB6A89C240042B5E20526D11);
|
|
const Il2CppFullySharedGenericStruct L_100 = alloca(SizeOf_T10_t2A2F99DD3BA751F5EF86E2CAE8550B96A43DDAFD);
|
|
const Il2CppFullySharedGenericStruct L_114 = alloca(SizeOf_T11_t666D485CF3D854C926A472467A520345D5C2434B);
|
|
const Il2CppFullySharedGenericStruct L_128 = alloca(SizeOf_T12_t5FF9F9E10798CF39FB7FF3AD09567E48403EE26F);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), 1));
|
|
int32_t L_12 = V_0;
|
|
uint8_t* L_13;
|
|
L_13 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_12, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_14 = L_13;
|
|
uint8_t L_15 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_14, L_15);
|
|
uint8_t* L_16 = L_14;
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<uint8_t,int32_t>(L_16, 1);
|
|
Il2CppFullySharedGenericStruct* L_18 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_19, L_18, SizeOf_T1_t97572DC1B0E4BECF20CB7853D7C9EA8BC7F29D6B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), NULL, L_17, L_19);
|
|
uint8_t* L_20 = L_16;
|
|
int32_t L_21;
|
|
L_21 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_22;
|
|
L_22 = il2cpp_unsafe_add<uint8_t,int32_t>(L_20, ((int32_t)il2cpp_codegen_add(L_21, 1)));
|
|
Il2CppFullySharedGenericStruct* L_23 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_24, L_23, SizeOf_T2_tDD9094DE8F21B043061B4A45F6163B69177B3975);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_22, L_24);
|
|
uint8_t* L_25 = L_20;
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_28;
|
|
L_28 = il2cpp_unsafe_add<uint8_t,int32_t>(L_25, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_26, L_27)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_29 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_30, L_29, SizeOf_T3_tFF74E9C76F55C7A5D54F708591751884A295960E);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_28, L_30);
|
|
uint8_t* L_31 = L_25;
|
|
int32_t L_32;
|
|
L_32 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_35;
|
|
L_35 = il2cpp_unsafe_add<uint8_t,int32_t>(L_31, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_32, L_33)), L_34)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_36 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_37, L_36, SizeOf_T4_t8403EB536FB159016031A59A7D37D677684968A4);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_35, L_37);
|
|
uint8_t* L_38 = L_31;
|
|
int32_t L_39;
|
|
L_39 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_43;
|
|
L_43 = il2cpp_unsafe_add<uint8_t,int32_t>(L_38, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_39, L_40)), L_41)), L_42)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_44 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_45, L_44, SizeOf_T5_tE6EED10E9DC28F63A17F2AD589E34333B03DA243);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_43, L_45);
|
|
uint8_t* L_46 = L_38;
|
|
int32_t L_47;
|
|
L_47 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_52;
|
|
L_52 = il2cpp_unsafe_add<uint8_t,int32_t>(L_46, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_48)), L_49)), L_50)), L_51)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_53 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_54, L_53, SizeOf_T6_t50430CE7EAC398FAE4B4CD28D0A6E263359C80CB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_52, L_54);
|
|
uint8_t* L_55 = L_46;
|
|
int32_t L_56;
|
|
L_56 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_62;
|
|
L_62 = il2cpp_unsafe_add<uint8_t,int32_t>(L_55, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_56, L_57)), L_58)), L_59)), L_60)), L_61)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_63 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_64, L_63, SizeOf_T7_t6CEC1D6B3F0B11136B365FC1BCB6BEDC63977DEE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_62, L_64);
|
|
uint8_t* L_65 = L_55;
|
|
int32_t L_66;
|
|
L_66 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_73;
|
|
L_73 = il2cpp_unsafe_add<uint8_t,int32_t>(L_65, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_66, L_67)), L_68)), L_69)), L_70)), L_71)), L_72)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_74 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_75, L_74, SizeOf_T8_tB5495C7FC536A7315F7F3AEEF4AEBB283B06078B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_73, L_75);
|
|
uint8_t* L_76 = L_65;
|
|
int32_t L_77;
|
|
L_77 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_85;
|
|
L_85 = il2cpp_unsafe_add<uint8_t,int32_t>(L_76, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_77, L_78)), L_79)), L_80)), L_81)), L_82)), L_83)), L_84)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_86 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_87, L_86, SizeOf_T9_t67BA8947654217D0EB6A89C240042B5E20526D11);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 38)), il2cpp_rgctx_method(method->rgctx_data, 38), NULL, L_85, L_87);
|
|
uint8_t* L_88 = L_76;
|
|
int32_t L_89;
|
|
L_89 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_98;
|
|
L_98 = il2cpp_unsafe_add<uint8_t,int32_t>(L_88, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_89, L_90)), L_91)), L_92)), L_93)), L_94)), L_95)), L_96)), L_97)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_99 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_100, L_99, SizeOf_T10_t2A2F99DD3BA751F5EF86E2CAE8550B96A43DDAFD);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 41)), il2cpp_rgctx_method(method->rgctx_data, 41), NULL, L_98, L_100);
|
|
uint8_t* L_101 = L_88;
|
|
int32_t L_102;
|
|
L_102 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_112;
|
|
L_112 = il2cpp_unsafe_add<uint8_t,int32_t>(L_101, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_102, L_103)), L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_113 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_114, L_113, SizeOf_T11_t666D485CF3D854C926A472467A520345D5C2434B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 44)), il2cpp_rgctx_method(method->rgctx_data, 44), NULL, L_112, L_114);
|
|
int32_t L_115;
|
|
L_115 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_116;
|
|
L_116 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_126;
|
|
L_126 = il2cpp_unsafe_add<uint8_t,int32_t>(L_101, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_115, L_116)), L_117)), L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_127 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_128, L_127, SizeOf_T12_t5FF9F9E10798CF39FB7FF3AD09567E48403EE26F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), NULL, L_126, L_128);
|
|
int32_t L_129 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_129, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m42B95324DB3E2166DDAAD2B1DF968C89A4285CDF_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, Il2CppFullySharedGenericStruct* ___10_value10, Il2CppFullySharedGenericStruct* ___11_value11, Il2CppFullySharedGenericStruct* ___12_value12, Il2CppFullySharedGenericStruct* ___13_value13, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t225A55C14F50A5FCD7F58F549FAB3B25A214BEB0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T2_tC7BA6136A318E1332227E700BF193B341BB6E638 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T3_t9531DC3A4F37DC06A74B5D41EA9690E651C31BF1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T4_tBCB3A1C102187C67900D7CF6A264C35B2CDFD654 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 23));
|
|
const uint32_t SizeOf_T5_t9226653ED8353F125CBF2B84FCA32545EDA7FABD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T6_t7C92EF9EE283F20FD8A25190166BF9E071D73D15 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T7_tBDA8C04ED7380F29DACA4EEDE8B73656904564B1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 32));
|
|
const uint32_t SizeOf_T8_t37C27345A6C3DEC9185BED39313F3A8B2EE4843F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 35));
|
|
const uint32_t SizeOf_T9_tAAD559FC9AF4647D5BBB64BFA7CF0180AE1B5634 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 38));
|
|
const uint32_t SizeOf_T10_t506AB6D10FF6861337B69A9F06C094663887104A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 41));
|
|
const uint32_t SizeOf_T11_t13B8885E63FABB732679B872D0C1E0BDF8A31445 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 44));
|
|
const uint32_t SizeOf_T12_t6BD170336200724C53EF4773C50E901C028D3082 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 47));
|
|
const uint32_t SizeOf_T13_tCE911796B266B21AF190E99427E48CC7AABEA737 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 50));
|
|
const Il2CppFullySharedGenericStruct L_20 = alloca(SizeOf_T1_t225A55C14F50A5FCD7F58F549FAB3B25A214BEB0);
|
|
const Il2CppFullySharedGenericStruct L_25 = alloca(SizeOf_T2_tC7BA6136A318E1332227E700BF193B341BB6E638);
|
|
const Il2CppFullySharedGenericStruct L_31 = alloca(SizeOf_T3_t9531DC3A4F37DC06A74B5D41EA9690E651C31BF1);
|
|
const Il2CppFullySharedGenericStruct L_38 = alloca(SizeOf_T4_tBCB3A1C102187C67900D7CF6A264C35B2CDFD654);
|
|
const Il2CppFullySharedGenericStruct L_46 = alloca(SizeOf_T5_t9226653ED8353F125CBF2B84FCA32545EDA7FABD);
|
|
const Il2CppFullySharedGenericStruct L_55 = alloca(SizeOf_T6_t7C92EF9EE283F20FD8A25190166BF9E071D73D15);
|
|
const Il2CppFullySharedGenericStruct L_65 = alloca(SizeOf_T7_tBDA8C04ED7380F29DACA4EEDE8B73656904564B1);
|
|
const Il2CppFullySharedGenericStruct L_76 = alloca(SizeOf_T8_t37C27345A6C3DEC9185BED39313F3A8B2EE4843F);
|
|
const Il2CppFullySharedGenericStruct L_88 = alloca(SizeOf_T9_tAAD559FC9AF4647D5BBB64BFA7CF0180AE1B5634);
|
|
const Il2CppFullySharedGenericStruct L_101 = alloca(SizeOf_T10_t506AB6D10FF6861337B69A9F06C094663887104A);
|
|
const Il2CppFullySharedGenericStruct L_115 = alloca(SizeOf_T11_t13B8885E63FABB732679B872D0C1E0BDF8A31445);
|
|
const Il2CppFullySharedGenericStruct L_130 = alloca(SizeOf_T12_t6BD170336200724C53EF4773C50E901C028D3082);
|
|
const Il2CppFullySharedGenericStruct L_145 = alloca(SizeOf_T13_tCE911796B266B21AF190E99427E48CC7AABEA737);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), 1));
|
|
int32_t L_13 = V_0;
|
|
uint8_t* L_14;
|
|
L_14 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_13, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_15 = L_14;
|
|
uint8_t L_16 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_15, L_16);
|
|
uint8_t* L_17 = L_15;
|
|
uint8_t* L_18;
|
|
L_18 = il2cpp_unsafe_add<uint8_t,int32_t>(L_17, 1);
|
|
Il2CppFullySharedGenericStruct* L_19 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_20, L_19, SizeOf_T1_t225A55C14F50A5FCD7F58F549FAB3B25A214BEB0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, L_18, L_20);
|
|
uint8_t* L_21 = L_17;
|
|
int32_t L_22;
|
|
L_22 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_unsafe_add<uint8_t,int32_t>(L_21, ((int32_t)il2cpp_codegen_add(L_22, 1)));
|
|
Il2CppFullySharedGenericStruct* L_24 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_25, L_24, SizeOf_T2_tC7BA6136A318E1332227E700BF193B341BB6E638);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 18)), il2cpp_rgctx_method(method->rgctx_data, 18), NULL, L_23, L_25);
|
|
uint8_t* L_26 = L_21;
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_29;
|
|
L_29 = il2cpp_unsafe_add<uint8_t,int32_t>(L_26, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_27, L_28)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_30 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_31, L_30, SizeOf_T3_t9531DC3A4F37DC06A74B5D41EA9690E651C31BF1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, L_29, L_31);
|
|
uint8_t* L_32 = L_26;
|
|
int32_t L_33;
|
|
L_33 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_36;
|
|
L_36 = il2cpp_unsafe_add<uint8_t,int32_t>(L_32, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_33, L_34)), L_35)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_37 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_38, L_37, SizeOf_T4_tBCB3A1C102187C67900D7CF6A264C35B2CDFD654);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 24)), il2cpp_rgctx_method(method->rgctx_data, 24), NULL, L_36, L_38);
|
|
uint8_t* L_39 = L_32;
|
|
int32_t L_40;
|
|
L_40 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_44;
|
|
L_44 = il2cpp_unsafe_add<uint8_t,int32_t>(L_39, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_40, L_41)), L_42)), L_43)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_45 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_46, L_45, SizeOf_T5_t9226653ED8353F125CBF2B84FCA32545EDA7FABD);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, L_44, L_46);
|
|
uint8_t* L_47 = L_39;
|
|
int32_t L_48;
|
|
L_48 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_53;
|
|
L_53 = il2cpp_unsafe_add<uint8_t,int32_t>(L_47, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_48, L_49)), L_50)), L_51)), L_52)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_54 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_55, L_54, SizeOf_T6_t7C92EF9EE283F20FD8A25190166BF9E071D73D15);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 30)), il2cpp_rgctx_method(method->rgctx_data, 30), NULL, L_53, L_55);
|
|
uint8_t* L_56 = L_47;
|
|
int32_t L_57;
|
|
L_57 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_63;
|
|
L_63 = il2cpp_unsafe_add<uint8_t,int32_t>(L_56, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_57, L_58)), L_59)), L_60)), L_61)), L_62)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_64 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_65, L_64, SizeOf_T7_tBDA8C04ED7380F29DACA4EEDE8B73656904564B1);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 33)), il2cpp_rgctx_method(method->rgctx_data, 33), NULL, L_63, L_65);
|
|
uint8_t* L_66 = L_56;
|
|
int32_t L_67;
|
|
L_67 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_74;
|
|
L_74 = il2cpp_unsafe_add<uint8_t,int32_t>(L_66, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_67, L_68)), L_69)), L_70)), L_71)), L_72)), L_73)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_75 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_76, L_75, SizeOf_T8_t37C27345A6C3DEC9185BED39313F3A8B2EE4843F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 36)), il2cpp_rgctx_method(method->rgctx_data, 36), NULL, L_74, L_76);
|
|
uint8_t* L_77 = L_66;
|
|
int32_t L_78;
|
|
L_78 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_86;
|
|
L_86 = il2cpp_unsafe_add<uint8_t,int32_t>(L_77, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_78, L_79)), L_80)), L_81)), L_82)), L_83)), L_84)), L_85)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_87 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_88, L_87, SizeOf_T9_tAAD559FC9AF4647D5BBB64BFA7CF0180AE1B5634);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), NULL, L_86, L_88);
|
|
uint8_t* L_89 = L_77;
|
|
int32_t L_90;
|
|
L_90 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_99;
|
|
L_99 = il2cpp_unsafe_add<uint8_t,int32_t>(L_89, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_90, L_91)), L_92)), L_93)), L_94)), L_95)), L_96)), L_97)), L_98)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_100 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_101, L_100, SizeOf_T10_t506AB6D10FF6861337B69A9F06C094663887104A);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 42)), il2cpp_rgctx_method(method->rgctx_data, 42), NULL, L_99, L_101);
|
|
uint8_t* L_102 = L_89;
|
|
int32_t L_103;
|
|
L_103 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_113;
|
|
L_113 = il2cpp_unsafe_add<uint8_t,int32_t>(L_102, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_103, L_104)), L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), L_112)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_114 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_115, L_114, SizeOf_T11_t13B8885E63FABB732679B872D0C1E0BDF8A31445);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 45)), il2cpp_rgctx_method(method->rgctx_data, 45), NULL, L_113, L_115);
|
|
uint8_t* L_116 = L_102;
|
|
int32_t L_117;
|
|
L_117 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_127;
|
|
L_127 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_128;
|
|
L_128 = il2cpp_unsafe_add<uint8_t,int32_t>(L_116, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_117, L_118)), L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)), L_127)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_129 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_130, L_129, SizeOf_T12_t6BD170336200724C53EF4773C50E901C028D3082);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 48)), il2cpp_rgctx_method(method->rgctx_data, 48), NULL, L_128, L_130);
|
|
int32_t L_131;
|
|
L_131 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_132;
|
|
L_132 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_143;
|
|
L_143 = il2cpp_unsafe_add<uint8_t,int32_t>(L_116, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_131, L_132)), L_133)), L_134)), L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_144 = ___13_value13;
|
|
il2cpp_codegen_memcpy(L_145, L_144, SizeOf_T13_tCE911796B266B21AF190E99427E48CC7AABEA737);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 51)), il2cpp_rgctx_method(method->rgctx_data, 51), NULL, L_143, L_145);
|
|
int32_t L_146 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_146, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m74BC1E18DE677E06C6589E1B86AD8315ADB5029A_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, Il2CppFullySharedGenericStruct* ___10_value10, Il2CppFullySharedGenericStruct* ___11_value11, Il2CppFullySharedGenericStruct* ___12_value12, Il2CppFullySharedGenericStruct* ___13_value13, Il2CppFullySharedGenericStruct* ___14_value14, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t0AD6441F26E9A4AFA48994AC4BAB8691486196EF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const uint32_t SizeOf_T2_tE9C824684A43CA84D632BCCF911BE1A6F9574BDE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T3_tEEEC09018F2B6F5DA396E9B7593D50C78A8E38F7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T4_tA36F557398F5D793D7ED99A1F32206EF788AE762 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T5_t37BA0DE96F3E8E1F802C1033003A91C59C686AB2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 27));
|
|
const uint32_t SizeOf_T6_t4801EE3609370A9CCFACD0569E4207EBCCB535DC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const uint32_t SizeOf_T7_tEB4F6E244F6BB581265D2B71E77D23EC37393414 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T8_tB78FCEBED3C61F7778CC2E8672EB3FF075BA7736 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 36));
|
|
const uint32_t SizeOf_T9_t5A3DC0ECE70512F6F837B5804500F17557D4D8F6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 39));
|
|
const uint32_t SizeOf_T10_tF155A2AC4E44FE7800DA7DC6BE9A6ED9F907D23F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 42));
|
|
const uint32_t SizeOf_T11_t7F86B83816C45BFDDB86C651CF95F40248663046 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 45));
|
|
const uint32_t SizeOf_T12_tAE2E43B2F1FD92934B6E8F2A9A4A6B6F539DA0BD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 48));
|
|
const uint32_t SizeOf_T13_t7650EC116ECA0A2A2FDB7700F91CA7A11AA27987 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 51));
|
|
const uint32_t SizeOf_T14_t49712A7941C3471C0CD5F5F7EEB6F9657C559E53 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 54));
|
|
const Il2CppFullySharedGenericStruct L_21 = alloca(SizeOf_T1_t0AD6441F26E9A4AFA48994AC4BAB8691486196EF);
|
|
const Il2CppFullySharedGenericStruct L_26 = alloca(SizeOf_T2_tE9C824684A43CA84D632BCCF911BE1A6F9574BDE);
|
|
const Il2CppFullySharedGenericStruct L_32 = alloca(SizeOf_T3_tEEEC09018F2B6F5DA396E9B7593D50C78A8E38F7);
|
|
const Il2CppFullySharedGenericStruct L_39 = alloca(SizeOf_T4_tA36F557398F5D793D7ED99A1F32206EF788AE762);
|
|
const Il2CppFullySharedGenericStruct L_47 = alloca(SizeOf_T5_t37BA0DE96F3E8E1F802C1033003A91C59C686AB2);
|
|
const Il2CppFullySharedGenericStruct L_56 = alloca(SizeOf_T6_t4801EE3609370A9CCFACD0569E4207EBCCB535DC);
|
|
const Il2CppFullySharedGenericStruct L_66 = alloca(SizeOf_T7_tEB4F6E244F6BB581265D2B71E77D23EC37393414);
|
|
const Il2CppFullySharedGenericStruct L_77 = alloca(SizeOf_T8_tB78FCEBED3C61F7778CC2E8672EB3FF075BA7736);
|
|
const Il2CppFullySharedGenericStruct L_89 = alloca(SizeOf_T9_t5A3DC0ECE70512F6F837B5804500F17557D4D8F6);
|
|
const Il2CppFullySharedGenericStruct L_102 = alloca(SizeOf_T10_tF155A2AC4E44FE7800DA7DC6BE9A6ED9F907D23F);
|
|
const Il2CppFullySharedGenericStruct L_116 = alloca(SizeOf_T11_t7F86B83816C45BFDDB86C651CF95F40248663046);
|
|
const Il2CppFullySharedGenericStruct L_131 = alloca(SizeOf_T12_tAE2E43B2F1FD92934B6E8F2A9A4A6B6F539DA0BD);
|
|
const Il2CppFullySharedGenericStruct L_147 = alloca(SizeOf_T13_t7650EC116ECA0A2A2FDB7700F91CA7A11AA27987);
|
|
const Il2CppFullySharedGenericStruct L_163 = alloca(SizeOf_T14_t49712A7941C3471C0CD5F5F7EEB6F9657C559E53);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), L_13)), 1));
|
|
int32_t L_14 = V_0;
|
|
uint8_t* L_15;
|
|
L_15 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_16 = L_15;
|
|
uint8_t L_17 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_16, L_17);
|
|
uint8_t* L_18 = L_16;
|
|
uint8_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<uint8_t,int32_t>(L_18, 1);
|
|
Il2CppFullySharedGenericStruct* L_20 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_21, L_20, SizeOf_T1_t0AD6441F26E9A4AFA48994AC4BAB8691486196EF);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), NULL, L_19, L_21);
|
|
uint8_t* L_22 = L_18;
|
|
int32_t L_23;
|
|
L_23 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_24;
|
|
L_24 = il2cpp_unsafe_add<uint8_t,int32_t>(L_22, ((int32_t)il2cpp_codegen_add(L_23, 1)));
|
|
Il2CppFullySharedGenericStruct* L_25 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_26, L_25, SizeOf_T2_tE9C824684A43CA84D632BCCF911BE1A6F9574BDE);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, L_24, L_26);
|
|
uint8_t* L_27 = L_22;
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_30;
|
|
L_30 = il2cpp_unsafe_add<uint8_t,int32_t>(L_27, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, L_29)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_31 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_32, L_31, SizeOf_T3_tEEEC09018F2B6F5DA396E9B7593D50C78A8E38F7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 22)), il2cpp_rgctx_method(method->rgctx_data, 22), NULL, L_30, L_32);
|
|
uint8_t* L_33 = L_27;
|
|
int32_t L_34;
|
|
L_34 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_37;
|
|
L_37 = il2cpp_unsafe_add<uint8_t,int32_t>(L_33, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_34, L_35)), L_36)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_38 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_39, L_38, SizeOf_T4_tA36F557398F5D793D7ED99A1F32206EF788AE762);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, L_37, L_39);
|
|
uint8_t* L_40 = L_33;
|
|
int32_t L_41;
|
|
L_41 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_45;
|
|
L_45 = il2cpp_unsafe_add<uint8_t,int32_t>(L_40, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_41, L_42)), L_43)), L_44)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_46 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_47, L_46, SizeOf_T5_t37BA0DE96F3E8E1F802C1033003A91C59C686AB2);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 28)), il2cpp_rgctx_method(method->rgctx_data, 28), NULL, L_45, L_47);
|
|
uint8_t* L_48 = L_40;
|
|
int32_t L_49;
|
|
L_49 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_54;
|
|
L_54 = il2cpp_unsafe_add<uint8_t,int32_t>(L_48, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_49, L_50)), L_51)), L_52)), L_53)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_55 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_56, L_55, SizeOf_T6_t4801EE3609370A9CCFACD0569E4207EBCCB535DC);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, L_54, L_56);
|
|
uint8_t* L_57 = L_48;
|
|
int32_t L_58;
|
|
L_58 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_64;
|
|
L_64 = il2cpp_unsafe_add<uint8_t,int32_t>(L_57, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_58, L_59)), L_60)), L_61)), L_62)), L_63)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_65 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_66, L_65, SizeOf_T7_tEB4F6E244F6BB581265D2B71E77D23EC37393414);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 34)), il2cpp_rgctx_method(method->rgctx_data, 34), NULL, L_64, L_66);
|
|
uint8_t* L_67 = L_57;
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_75;
|
|
L_75 = il2cpp_unsafe_add<uint8_t,int32_t>(L_67, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_68, L_69)), L_70)), L_71)), L_72)), L_73)), L_74)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_76 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_77, L_76, SizeOf_T8_tB78FCEBED3C61F7778CC2E8672EB3FF075BA7736);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 37)), il2cpp_rgctx_method(method->rgctx_data, 37), NULL, L_75, L_77);
|
|
uint8_t* L_78 = L_67;
|
|
int32_t L_79;
|
|
L_79 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_87;
|
|
L_87 = il2cpp_unsafe_add<uint8_t,int32_t>(L_78, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_79, L_80)), L_81)), L_82)), L_83)), L_84)), L_85)), L_86)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_88 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_89, L_88, SizeOf_T9_t5A3DC0ECE70512F6F837B5804500F17557D4D8F6);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 40)), il2cpp_rgctx_method(method->rgctx_data, 40), NULL, L_87, L_89);
|
|
uint8_t* L_90 = L_78;
|
|
int32_t L_91;
|
|
L_91 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_99;
|
|
L_99 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_100;
|
|
L_100 = il2cpp_unsafe_add<uint8_t,int32_t>(L_90, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_91, L_92)), L_93)), L_94)), L_95)), L_96)), L_97)), L_98)), L_99)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_101 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_102, L_101, SizeOf_T10_tF155A2AC4E44FE7800DA7DC6BE9A6ED9F907D23F);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), NULL, L_100, L_102);
|
|
uint8_t* L_103 = L_90;
|
|
int32_t L_104;
|
|
L_104 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_113;
|
|
L_113 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_114;
|
|
L_114 = il2cpp_unsafe_add<uint8_t,int32_t>(L_103, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_104, L_105)), L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), L_112)), L_113)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_115 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_116, L_115, SizeOf_T11_t7F86B83816C45BFDDB86C651CF95F40248663046);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 46)), il2cpp_rgctx_method(method->rgctx_data, 46), NULL, L_114, L_116);
|
|
uint8_t* L_117 = L_103;
|
|
int32_t L_118;
|
|
L_118 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_127;
|
|
L_127 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_128;
|
|
L_128 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_129;
|
|
L_129 = il2cpp_unsafe_add<uint8_t,int32_t>(L_117, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_118, L_119)), L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)), L_127)), L_128)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_130 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_131, L_130, SizeOf_T12_tAE2E43B2F1FD92934B6E8F2A9A4A6B6F539DA0BD);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 49)), il2cpp_rgctx_method(method->rgctx_data, 49), NULL, L_129, L_131);
|
|
uint8_t* L_132 = L_117;
|
|
int32_t L_133;
|
|
L_133 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_143;
|
|
L_143 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_144;
|
|
L_144 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_145;
|
|
L_145 = il2cpp_unsafe_add<uint8_t,int32_t>(L_132, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_133, L_134)), L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)), L_143)), L_144)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_146 = ___13_value13;
|
|
il2cpp_codegen_memcpy(L_147, L_146, SizeOf_T13_t7650EC116ECA0A2A2FDB7700F91CA7A11AA27987);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 52)), il2cpp_rgctx_method(method->rgctx_data, 52), NULL, L_145, L_147);
|
|
int32_t L_148;
|
|
L_148 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_149;
|
|
L_149 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_150;
|
|
L_150 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_151;
|
|
L_151 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_152;
|
|
L_152 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_153;
|
|
L_153 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_154;
|
|
L_154 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_155;
|
|
L_155 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_156;
|
|
L_156 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_157;
|
|
L_157 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_158;
|
|
L_158 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_159;
|
|
L_159 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_160;
|
|
L_160 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
uint8_t* L_161;
|
|
L_161 = il2cpp_unsafe_add<uint8_t,int32_t>(L_132, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_148, L_149)), L_150)), L_151)), L_152)), L_153)), L_154)), L_155)), L_156)), L_157)), L_158)), L_159)), L_160)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_162 = ___14_value14;
|
|
il2cpp_codegen_memcpy(L_163, L_162, SizeOf_T14_t49712A7941C3471C0CD5F5F7EEB6F9657C559E53);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 55)), il2cpp_rgctx_method(method->rgctx_data, 55), NULL, L_161, L_163);
|
|
int32_t L_164 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_164, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteUnmanagedWithObjectHeader_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m14A0FF933B876134E2CAF69C940C2F5B9B2ECA57_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_propertyCount, Il2CppFullySharedGenericStruct* ___1_value1, Il2CppFullySharedGenericStruct* ___2_value2, Il2CppFullySharedGenericStruct* ___3_value3, Il2CppFullySharedGenericStruct* ___4_value4, Il2CppFullySharedGenericStruct* ___5_value5, Il2CppFullySharedGenericStruct* ___6_value6, Il2CppFullySharedGenericStruct* ___7_value7, Il2CppFullySharedGenericStruct* ___8_value8, Il2CppFullySharedGenericStruct* ___9_value9, Il2CppFullySharedGenericStruct* ___10_value10, Il2CppFullySharedGenericStruct* ___11_value11, Il2CppFullySharedGenericStruct* ___12_value12, Il2CppFullySharedGenericStruct* ___13_value13, Il2CppFullySharedGenericStruct* ___14_value14, Il2CppFullySharedGenericStruct* ___15_value15, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T1_t1FA9019A8F87CF27542693A00A67D7B14C737E4C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T2_tE456354520236AA4F62165CBA609592E6A5BCDFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 19));
|
|
const uint32_t SizeOf_T3_t7289AD481AA98B17C07CA9B11D369962C83CC1C7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T4_t35A97E4796E01BA4359BC7F37CC77DCB81259963 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T5_t521CCF7A4FAA317EEB7F07DD700460B4A6CE84E0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T6_tF3E1FF18C63CF8D00963F1A8B3AFBDCAE0E59071 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 31));
|
|
const uint32_t SizeOf_T7_tEDFE219446A9DE1939FB94580BC19107B8CD34E0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 34));
|
|
const uint32_t SizeOf_T8_t285470EA304BAECC0786DFA85E9A735354BD50CB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T9_tCEE5832BC94B9755C3351ABBC222838B266C5436 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 40));
|
|
const uint32_t SizeOf_T10_t0C18583AF1AB274BE854155247F955CC86EE6439 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 43));
|
|
const uint32_t SizeOf_T11_t28295D4634442DBCE56E46ACABD73ACB22940AE5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 46));
|
|
const uint32_t SizeOf_T12_t21423FD9D663EBBDDD81C9125B674A643F05232B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 49));
|
|
const uint32_t SizeOf_T13_t4925617C325A1E9C8E2EFBB4C8E0F1E6C8047302 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 52));
|
|
const uint32_t SizeOf_T14_t8971F1F86DE7D715BE93FD73A9DE2D18ED5DF065 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 55));
|
|
const uint32_t SizeOf_T15_t942C067037FB4B8A49BB62CE6D6C421E70544831 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 58));
|
|
const Il2CppFullySharedGenericStruct L_22 = alloca(SizeOf_T1_t1FA9019A8F87CF27542693A00A67D7B14C737E4C);
|
|
const Il2CppFullySharedGenericStruct L_27 = alloca(SizeOf_T2_tE456354520236AA4F62165CBA609592E6A5BCDFF);
|
|
const Il2CppFullySharedGenericStruct L_33 = alloca(SizeOf_T3_t7289AD481AA98B17C07CA9B11D369962C83CC1C7);
|
|
const Il2CppFullySharedGenericStruct L_40 = alloca(SizeOf_T4_t35A97E4796E01BA4359BC7F37CC77DCB81259963);
|
|
const Il2CppFullySharedGenericStruct L_48 = alloca(SizeOf_T5_t521CCF7A4FAA317EEB7F07DD700460B4A6CE84E0);
|
|
const Il2CppFullySharedGenericStruct L_57 = alloca(SizeOf_T6_tF3E1FF18C63CF8D00963F1A8B3AFBDCAE0E59071);
|
|
const Il2CppFullySharedGenericStruct L_67 = alloca(SizeOf_T7_tEDFE219446A9DE1939FB94580BC19107B8CD34E0);
|
|
const Il2CppFullySharedGenericStruct L_78 = alloca(SizeOf_T8_t285470EA304BAECC0786DFA85E9A735354BD50CB);
|
|
const Il2CppFullySharedGenericStruct L_90 = alloca(SizeOf_T9_tCEE5832BC94B9755C3351ABBC222838B266C5436);
|
|
const Il2CppFullySharedGenericStruct L_103 = alloca(SizeOf_T10_t0C18583AF1AB274BE854155247F955CC86EE6439);
|
|
const Il2CppFullySharedGenericStruct L_117 = alloca(SizeOf_T11_t28295D4634442DBCE56E46ACABD73ACB22940AE5);
|
|
const Il2CppFullySharedGenericStruct L_132 = alloca(SizeOf_T12_t21423FD9D663EBBDDD81C9125B674A643F05232B);
|
|
const Il2CppFullySharedGenericStruct L_148 = alloca(SizeOf_T13_t4925617C325A1E9C8E2EFBB4C8E0F1E6C8047302);
|
|
const Il2CppFullySharedGenericStruct L_165 = alloca(SizeOf_T14_t8971F1F86DE7D715BE93FD73A9DE2D18ED5DF065);
|
|
const Il2CppFullySharedGenericStruct L_182 = alloca(SizeOf_T15_t942C067037FB4B8A49BB62CE6D6C421E70544831);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_6;
|
|
L_6 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_9;
|
|
L_9 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_11;
|
|
L_11 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_12;
|
|
L_12 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_13;
|
|
L_13 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)))(il2cpp_rgctx_method(method->rgctx_data, 14));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), L_2)), L_3)), L_4)), L_5)), L_6)), L_7)), L_8)), L_9)), L_10)), L_11)), L_12)), L_13)), L_14)), 1));
|
|
int32_t L_15 = V_0;
|
|
uint8_t* L_16;
|
|
L_16 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t* L_17 = L_16;
|
|
uint8_t L_18 = ___0_propertyCount;
|
|
il2cpp_unsafe_write_unaligned(L_17, L_18);
|
|
uint8_t* L_19 = L_17;
|
|
uint8_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<uint8_t,int32_t>(L_19, 1);
|
|
Il2CppFullySharedGenericStruct* L_21 = ___1_value1;
|
|
il2cpp_codegen_memcpy(L_22, L_21, SizeOf_T1_t1FA9019A8F87CF27542693A00A67D7B14C737E4C);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, L_20, L_22);
|
|
uint8_t* L_23 = L_19;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
uint8_t* L_25;
|
|
L_25 = il2cpp_unsafe_add<uint8_t,int32_t>(L_23, ((int32_t)il2cpp_codegen_add(L_24, 1)));
|
|
Il2CppFullySharedGenericStruct* L_26 = ___2_value2;
|
|
il2cpp_codegen_memcpy(L_27, L_26, SizeOf_T2_tE456354520236AA4F62165CBA609592E6A5BCDFF);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 20)), il2cpp_rgctx_method(method->rgctx_data, 20), NULL, L_25, L_27);
|
|
uint8_t* L_28 = L_23;
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_30;
|
|
L_30 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_31;
|
|
L_31 = il2cpp_unsafe_add<uint8_t,int32_t>(L_28, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_29, L_30)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_32 = ___3_value3;
|
|
il2cpp_codegen_memcpy(L_33, L_32, SizeOf_T3_t7289AD481AA98B17C07CA9B11D369962C83CC1C7);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, L_31, L_33);
|
|
uint8_t* L_34 = L_28;
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_36;
|
|
L_36 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_37;
|
|
L_37 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_38;
|
|
L_38 = il2cpp_unsafe_add<uint8_t,int32_t>(L_34, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_35, L_36)), L_37)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_39 = ___4_value4;
|
|
il2cpp_codegen_memcpy(L_40, L_39, SizeOf_T4_t35A97E4796E01BA4359BC7F37CC77DCB81259963);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 26)), il2cpp_rgctx_method(method->rgctx_data, 26), NULL, L_38, L_40);
|
|
uint8_t* L_41 = L_34;
|
|
int32_t L_42;
|
|
L_42 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_44;
|
|
L_44 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_45;
|
|
L_45 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_46;
|
|
L_46 = il2cpp_unsafe_add<uint8_t,int32_t>(L_41, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_42, L_43)), L_44)), L_45)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_47 = ___5_value5;
|
|
il2cpp_codegen_memcpy(L_48, L_47, SizeOf_T5_t521CCF7A4FAA317EEB7F07DD700460B4A6CE84E0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, L_46, L_48);
|
|
uint8_t* L_49 = L_41;
|
|
int32_t L_50;
|
|
L_50 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_51;
|
|
L_51 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_52;
|
|
L_52 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_53;
|
|
L_53 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_54;
|
|
L_54 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_55;
|
|
L_55 = il2cpp_unsafe_add<uint8_t,int32_t>(L_49, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_50, L_51)), L_52)), L_53)), L_54)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_56 = ___6_value6;
|
|
il2cpp_codegen_memcpy(L_57, L_56, SizeOf_T6_tF3E1FF18C63CF8D00963F1A8B3AFBDCAE0E59071);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 32)), il2cpp_rgctx_method(method->rgctx_data, 32), NULL, L_55, L_57);
|
|
uint8_t* L_58 = L_49;
|
|
int32_t L_59;
|
|
L_59 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_60;
|
|
L_60 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_61;
|
|
L_61 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_62;
|
|
L_62 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_63;
|
|
L_63 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_64;
|
|
L_64 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
uint8_t* L_65;
|
|
L_65 = il2cpp_unsafe_add<uint8_t,int32_t>(L_58, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_59, L_60)), L_61)), L_62)), L_63)), L_64)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_66 = ___7_value7;
|
|
il2cpp_codegen_memcpy(L_67, L_66, SizeOf_T7_tEDFE219446A9DE1939FB94580BC19107B8CD34E0);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), NULL, L_65, L_67);
|
|
uint8_t* L_68 = L_58;
|
|
int32_t L_69;
|
|
L_69 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_70;
|
|
L_70 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_71;
|
|
L_71 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_73;
|
|
L_73 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_74;
|
|
L_74 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_75;
|
|
L_75 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
uint8_t* L_76;
|
|
L_76 = il2cpp_unsafe_add<uint8_t,int32_t>(L_68, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_69, L_70)), L_71)), L_72)), L_73)), L_74)), L_75)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_77 = ___8_value8;
|
|
il2cpp_codegen_memcpy(L_78, L_77, SizeOf_T8_t285470EA304BAECC0786DFA85E9A735354BD50CB);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 38)), il2cpp_rgctx_method(method->rgctx_data, 38), NULL, L_76, L_78);
|
|
uint8_t* L_79 = L_68;
|
|
int32_t L_80;
|
|
L_80 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_81;
|
|
L_81 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_82;
|
|
L_82 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_83;
|
|
L_83 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_84;
|
|
L_84 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_85;
|
|
L_85 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_86;
|
|
L_86 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_87;
|
|
L_87 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint8_t* L_88;
|
|
L_88 = il2cpp_unsafe_add<uint8_t,int32_t>(L_79, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_80, L_81)), L_82)), L_83)), L_84)), L_85)), L_86)), L_87)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_89 = ___9_value9;
|
|
il2cpp_codegen_memcpy(L_90, L_89, SizeOf_T9_tCEE5832BC94B9755C3351ABBC222838B266C5436);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 41)), il2cpp_rgctx_method(method->rgctx_data, 41), NULL, L_88, L_90);
|
|
uint8_t* L_91 = L_79;
|
|
int32_t L_92;
|
|
L_92 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_93;
|
|
L_93 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_94;
|
|
L_94 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_95;
|
|
L_95 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_96;
|
|
L_96 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_97;
|
|
L_97 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_98;
|
|
L_98 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_99;
|
|
L_99 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_100;
|
|
L_100 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
uint8_t* L_101;
|
|
L_101 = il2cpp_unsafe_add<uint8_t,int32_t>(L_91, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_92, L_93)), L_94)), L_95)), L_96)), L_97)), L_98)), L_99)), L_100)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_102 = ___10_value10;
|
|
il2cpp_codegen_memcpy(L_103, L_102, SizeOf_T10_t0C18583AF1AB274BE854155247F955CC86EE6439);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 44)), il2cpp_rgctx_method(method->rgctx_data, 44), NULL, L_101, L_103);
|
|
uint8_t* L_104 = L_91;
|
|
int32_t L_105;
|
|
L_105 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_106;
|
|
L_106 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_107;
|
|
L_107 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_108;
|
|
L_108 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_109;
|
|
L_109 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_110;
|
|
L_110 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_111;
|
|
L_111 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_112;
|
|
L_112 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_113;
|
|
L_113 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_114;
|
|
L_114 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
uint8_t* L_115;
|
|
L_115 = il2cpp_unsafe_add<uint8_t,int32_t>(L_104, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_105, L_106)), L_107)), L_108)), L_109)), L_110)), L_111)), L_112)), L_113)), L_114)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_116 = ___11_value11;
|
|
il2cpp_codegen_memcpy(L_117, L_116, SizeOf_T11_t28295D4634442DBCE56E46ACABD73ACB22940AE5);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), NULL, L_115, L_117);
|
|
uint8_t* L_118 = L_104;
|
|
int32_t L_119;
|
|
L_119 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_120;
|
|
L_120 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_121;
|
|
L_121 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_122;
|
|
L_122 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_123;
|
|
L_123 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_124;
|
|
L_124 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_125;
|
|
L_125 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_126;
|
|
L_126 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_127;
|
|
L_127 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_128;
|
|
L_128 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_129;
|
|
L_129 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
uint8_t* L_130;
|
|
L_130 = il2cpp_unsafe_add<uint8_t,int32_t>(L_118, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_119, L_120)), L_121)), L_122)), L_123)), L_124)), L_125)), L_126)), L_127)), L_128)), L_129)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_131 = ___12_value12;
|
|
il2cpp_codegen_memcpy(L_132, L_131, SizeOf_T12_t21423FD9D663EBBDDD81C9125B674A643F05232B);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 50)), il2cpp_rgctx_method(method->rgctx_data, 50), NULL, L_130, L_132);
|
|
uint8_t* L_133 = L_118;
|
|
int32_t L_134;
|
|
L_134 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_135;
|
|
L_135 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_136;
|
|
L_136 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_137;
|
|
L_137 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_138;
|
|
L_138 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_139;
|
|
L_139 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_140;
|
|
L_140 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_141;
|
|
L_141 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_142;
|
|
L_142 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_143;
|
|
L_143 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_144;
|
|
L_144 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_145;
|
|
L_145 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
uint8_t* L_146;
|
|
L_146 = il2cpp_unsafe_add<uint8_t,int32_t>(L_133, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_134, L_135)), L_136)), L_137)), L_138)), L_139)), L_140)), L_141)), L_142)), L_143)), L_144)), L_145)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_147 = ___13_value13;
|
|
il2cpp_codegen_memcpy(L_148, L_147, SizeOf_T13_t4925617C325A1E9C8E2EFBB4C8E0F1E6C8047302);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 53)), il2cpp_rgctx_method(method->rgctx_data, 53), NULL, L_146, L_148);
|
|
uint8_t* L_149 = L_133;
|
|
int32_t L_150;
|
|
L_150 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_151;
|
|
L_151 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_152;
|
|
L_152 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_153;
|
|
L_153 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_154;
|
|
L_154 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_155;
|
|
L_155 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_156;
|
|
L_156 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_157;
|
|
L_157 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_158;
|
|
L_158 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_159;
|
|
L_159 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_160;
|
|
L_160 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_161;
|
|
L_161 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_162;
|
|
L_162 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
uint8_t* L_163;
|
|
L_163 = il2cpp_unsafe_add<uint8_t,int32_t>(L_149, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_150, L_151)), L_152)), L_153)), L_154)), L_155)), L_156)), L_157)), L_158)), L_159)), L_160)), L_161)), L_162)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_164 = ___14_value14;
|
|
il2cpp_codegen_memcpy(L_165, L_164, SizeOf_T14_t8971F1F86DE7D715BE93FD73A9DE2D18ED5DF065);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 56)), il2cpp_rgctx_method(method->rgctx_data, 56), NULL, L_163, L_165);
|
|
int32_t L_166;
|
|
L_166 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_167;
|
|
L_167 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_168;
|
|
L_168 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_169;
|
|
L_169 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_170;
|
|
L_170 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
int32_t L_171;
|
|
L_171 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
int32_t L_172;
|
|
L_172 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
int32_t L_173;
|
|
L_173 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int32_t L_174;
|
|
L_174 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
int32_t L_175;
|
|
L_175 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
int32_t L_176;
|
|
L_176 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
int32_t L_177;
|
|
L_177 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)))(il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
int32_t L_178;
|
|
L_178 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)))(il2cpp_rgctx_method(method->rgctx_data, 12));
|
|
int32_t L_179;
|
|
L_179 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)))(il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
uint8_t* L_180;
|
|
L_180 = il2cpp_unsafe_add<uint8_t,int32_t>(L_149, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_166, L_167)), L_168)), L_169)), L_170)), L_171)), L_172)), L_173)), L_174)), L_175)), L_176)), L_177)), L_178)), L_179)), 1)));
|
|
Il2CppFullySharedGenericStruct* L_181 = ___15_value15;
|
|
il2cpp_codegen_memcpy(L_182, L_181, SizeOf_T15_t942C067037FB4B8A49BB62CE6D6C421E70544831);
|
|
InvokerActionInvoker2< uint8_t*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 59)), il2cpp_rgctx_method(method->rgctx_data, 59), NULL, L_180, L_182);
|
|
int32_t L_183 = V_0;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_183, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteValue_TisIl2CppFullySharedGenericAny_m05C3D51D331A6ABE6205338AE2268F2DE8FF9972_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericAny* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = __this->___depth;
|
|
__this->___depth = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = __this->___depth;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)1000)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
MemoryPackSerializationException_ThrowReachedDepthLimit_m6C2218BB68F28BF3D787190047B467A7CA51044F(L_3, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
Il2CppFullySharedGenericAny* L_5 = ___0_value;
|
|
Il2CppFullySharedGenericAny* L_6;
|
|
L_6 = (( Il2CppFullySharedGenericAny* (*) (Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_5, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
NullCheck(L_4);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_4, __this, L_6);
|
|
int32_t L_7 = __this->___depth;
|
|
__this->___depth = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteValueWithFormatter_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m3435E20F45AFB6163EC1F6558A9C9D1FE11189DC_gshared (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Il2CppFullySharedGenericAny ___0_formatter, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
void* L_6 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
const Il2CppFullySharedGenericAny L_3 = L_1;
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
memset(V_0, 0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
Il2CppFullySharedGenericAny G_B2_0 = alloca(SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
memset(G_B2_0, 0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
Il2CppFullySharedGenericAny G_B1_0 = alloca(SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
memset(G_B1_0, 0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
{
|
|
int32_t L_0 = __this->___depth;
|
|
__this->___depth = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericAny*)V_0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
il2cpp_codegen_memcpy(L_1, V_0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
bool L_2 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 0), L_1);
|
|
if (L_2)
|
|
{
|
|
il2cpp_codegen_memcpy(G_B2_0, (Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___0_formatter : &___0_formatter), SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
goto IL_0028;
|
|
}
|
|
il2cpp_codegen_memcpy(G_B1_0, (Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___0_formatter : &___0_formatter), SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_3, G_B1_0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
il2cpp_codegen_memcpy(V_0, L_3, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
il2cpp_codegen_memcpy(G_B2_0, (Il2CppFullySharedGenericAny*)V_0, SizeOf_TFormatter_t7FDE84C0A87178CFE5837DF2E6780DDE6541D064);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_4 = ___1_value;
|
|
Il2CppFullySharedGenericAny* L_5;
|
|
L_5 = (( Il2CppFullySharedGenericAny* (*) (Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(L_4, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
ConstrainedActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 4), L_6, (void*)G_B2_0, __this, L_5);
|
|
int32_t L_7 = __this->___depth;
|
|
__this->___depth = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryPoolFormatter_1_Serialize_TisRuntimeObject_m67CE130560ED1B1C9D28D624852A499DE0108539_gshared (MemoryPoolFormatter_1_tD90AF821EFE0D7B9E9EC037E7405495BBBC72A55* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, Memory_1_t762D61B435521D1706EEDC25CA8C8EA1AE19AFEA* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_0 = ___0_writer;
|
|
Memory_1_t762D61B435521D1706EEDC25CA8C8EA1AE19AFEA* L_1 = ___1_value;
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 L_2;
|
|
L_2 = (( Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 (*) (Memory_1_t762D61B435521D1706EEDC25CA8C8EA1AE19AFEA*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m774F73A324062BD75AF0FA48903D9C9056F70577(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m32FF6C84613320EA404369B17E3ED90B58B06049(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEECEE87DEFB44346F99B77138291333E52CFF94A(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m9A085600C320307AD71C833F0352693C75103D4C(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_mBB565E811073C063FC64066CF8B4B03F90A5DCEB(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m73A8ABEBD43720688CCC1F25FE06A3D882139153_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m90E56A059BD7D9671D977566335CFA51FD429C3A(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m73A8ABEBD43720688CCC1F25FE06A3D882139153_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m73A8ABEBD43720688CCC1F25FE06A3D882139153(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9F4AF128CEBE2B647B7DF4A9D74232DEB3013AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3E4AF62978F92E52CE242CAC83115C8EA6C850A3_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mB3F276C0EE027AB50FD4597F6CC96D7330B326CE(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9F4AF128CEBE2B647B7DF4A9D74232DEB3013AEA_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9F4AF128CEBE2B647B7DF4A9D74232DEB3013AEA(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_Reinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m3D4808CE7773742533C8F35321DF4D9BDEF4122E_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mEC9469DBD91362D6135B8F5A81E90486BF328075_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m7B65247E6F26D02A6E53DCC9136A0EE5416DB0BA(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 NativeArray_1_Reinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m3D4808CE7773742533C8F35321DF4D9BDEF4122E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m3D4808CE7773742533C8F35321DF4D9BDEF4122E(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD2AA034A23820A45C4942020372581CA07AA4433_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB14DF0293604585E7AEF12A301C5BA893D597E0D(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD2AA034A23820A45C4942020372581CA07AA4433_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD2AA034A23820A45C4942020372581CA07AA4433(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_Reinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m7EA98E7E9E0369A617227E0EB1A828E574F3B01B_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mB2AF8CA03DEC485BAD3A37CCBE5CDEBA3C67758C_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m4E33945243D48D547CE8395CCD64E71C537B17C5(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD NativeArray_1_Reinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m7EA98E7E9E0369A617227E0EB1A828E574F3B01B_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_t97E2BFD61E13EEF2CDE34A313415FAD03AB993FD _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_m7EA98E7E9E0369A617227E0EB1A828E574F3B01B(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_Reinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m1DC2EDE7D441369C0AF59360E295FCFEAC0E1C5C_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m0B9FC11A134FEF6303B2D3EE1C73D3513515D3AC_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m4415B8FCB1B7AE5F61B7020229AACC387A7E7707(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A NativeArray_1_Reinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m1DC2EDE7D441369C0AF59360E295FCFEAC0E1C5C_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*>(__this + _offset);
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m1DC2EDE7D441369C0AF59360E295FCFEAC0E1C5C(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED_gshared (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m5C4C6FA53CA05FE88CA7926E8B1C0DF717B63550(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C*>(__this + _offset);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0672FA7EF8716D8649D0A61CB1EBFA5CD61A6306_gshared (NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_1;
|
|
L_1 = NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF0262EB3860ADC8A188A8A25C5AA566E2CEAEEED(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0672FA7EF8716D8649D0A61CB1EBFA5CD61A6306_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t8E042B4249B3126F27EE49887D2507798DC25F2C*>(__this + _offset);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0672FA7EF8716D8649D0A61CB1EBFA5CD61A6306(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m774F73A324062BD75AF0FA48903D9C9056F70577(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*>(__this + _offset);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_1;
|
|
L_1 = NativeArray_1_InternalReinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m0C988DC6B847A740A7108A75CF1C0F66D21EB757(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*>(__this + _offset);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m5C4C6FA53CA05FE88CA7926E8B1C0DF717B63550(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*>(__this + _offset);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m3A2155B778C72544765AAE3A75BDB08C78C4ED28(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*>(__this + _offset);
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mE35B299B99CAE9D89F0CA4CFB9BB037D0FA023AD_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_1;
|
|
L_1 = NativeArray_1_InternalReinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m636CA9ED40755CEEF621E8E84EFB5F1D7D6E1913(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mE35B299B99CAE9D89F0CA4CFB9BB037D0FA023AD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*>(__this + _offset);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mE35B299B99CAE9D89F0CA4CFB9BB037D0FA023AD(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_Reinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4A597B9676D4D59835A397DD5EA6EDACDCE98055_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0BD2704CD677D45FAEDAD35D6C7208EE167961F7_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB9796754455443576CEE1990F724883977EDC5E4(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 NativeArray_1_Reinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4A597B9676D4D59835A397DD5EA6EDACDCE98055_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*>(__this + _offset);
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4A597B9676D4D59835A397DD5EA6EDACDCE98055(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B_gshared (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEECEE87DEFB44346F99B77138291333E52CFF94A(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8*>(__this + _offset);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6F5600ECBB05C242CB83D5BA738085725B3DC6F1_gshared (NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_m2842DB279BEAD40C9CB39EC85BDE2241798CFFF7_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEC31951A327596DD5279B006D3449DABAF0F4B8B(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6F5600ECBB05C242CB83D5BA738085725B3DC6F1_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8*>(__this + _offset);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6F5600ECBB05C242CB83D5BA738085725B3DC6F1(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_InternalReinterpret_TisIl2CppFullySharedGenericStruct_mB0CDEB18464001F253D27086821B2DEE7C1859E8_gshared (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_3;
|
|
L_3 = (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_InternalReinterpret_TisIl2CppFullySharedGenericStruct_mB0CDEB18464001F253D27086821B2DEE7C1859E8_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*>(__this + _offset);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisIl2CppFullySharedGenericStruct_mB0CDEB18464001F253D27086821B2DEE7C1859E8(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m1FE7062E31411B740E16829B437A95E0BC1FE66E_gshared (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4)))(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_1;
|
|
L_1 = (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m1FE7062E31411B740E16829B437A95E0BC1FE66E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*>(__this + _offset);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m1FE7062E31411B740E16829B437A95E0BC1FE66E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m0A4282BEF39DA967523E47AF7251C3F5A58651F8_gshared (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4)))(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_7;
|
|
L_7 = (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m0A4282BEF39DA967523E47AF7251C3F5A58651F8_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18*>(__this + _offset);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisIl2CppFullySharedGenericStruct_m0A4282BEF39DA967523E47AF7251C3F5A58651F8(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m9084C95DCF71501F440D82C0A261927C7987EE6F(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*>(__this + _offset);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_1;
|
|
L_1 = NativeArray_1_InternalReinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m5592F68C117C8A48135AB9CB21A322ACE42ED0DC(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*>(__this + _offset);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592_gshared (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
int32_t L_1 = ___0_length;
|
|
int32_t L_2 = __this->___m_AllocatorLabel;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
|
|
L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA(L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_3;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592_AdjustorThunk (RuntimeObject* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A*>(__this + _offset);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF _returnValue;
|
|
_returnValue = NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592(_thisAdjusted, ___0_length, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1CD2FBB9DFE91461C0CB3F1CC4BFCD2A660178E8_gshared (NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = UnsafeUtility_SizeOf_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m0B9FC11A134FEF6303B2D3EE1C73D3513515D3AC_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
V_0 = ((int64_t)L_0);
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_1 = ((int64_t)L_1);
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH((__this)->___m_Length);
|
|
int64_t L_3 = V_0;
|
|
V_2 = ((int64_t)il2cpp_codegen_multiply(((int64_t)L_2), L_3));
|
|
int64_t L_4 = V_2;
|
|
int64_t L_5 = V_1;
|
|
V_3 = ((int64_t)(L_4/L_5));
|
|
int64_t L_6 = V_3;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_7;
|
|
L_7 = NativeArray_1_InternalReinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1FA8A09B3BEEFA5544678D0145F0948FA0DE1592(__this, ((int32_t)L_6), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_8 = V_4;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1CD2FBB9DFE91461C0CB3F1CC4BFCD2A660178E8_AdjustorThunk (RuntimeObject* __this, int32_t ___0_expectedTypeSize, const RuntimeMethod* method)
|
|
{
|
|
NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeArray_1_tBA7C3E15B67AEC95EB7BED61838A132B300A973A*>(__this + _offset);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF _returnValue;
|
|
_returnValue = NativeArray_1_Reinterpret_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1CD2FBB9DFE91461C0CB3F1CC4BFCD2A660178E8(_thisAdjusted, ___0_expectedTypeSize, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m18AD05BA5802DEBB3E1FBD1D0B7804F474A92DD8_gshared (NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t82CE3FFA6BE851C496ACF9DA72A3729B89D7DFDC* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6AD6F355DA0E33BC54B8685A2C4AC7911121B02(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m18AD05BA5802DEBB3E1FBD1D0B7804F474A92DD8_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t5FE7A3B332F53D2975AE4D120047503D463799CB*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m18AD05BA5802DEBB3E1FBD1D0B7804F474A92DD8(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m67A3CCF564F9EAC5F0B44322104AD7A377B836EF_gshared (NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t992261DF45A734DEB130F79025C5BF88D0C2CDC7* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4665957ACCB3339258C5F12B1F17DCA8BB06F38B(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m67A3CCF564F9EAC5F0B44322104AD7A377B836EF_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t1A94CC8D245554512B29D5AFB5727CF7838B8373*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m67A3CCF564F9EAC5F0B44322104AD7A377B836EF(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8954AD451139BF29FBE86E6405E8ED3493937978_gshared (NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tCC883249B8F95C4AD5632E72EAD324BA3F53915A* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m94C56E09C78EF215B2209EE88A359E59436451E1(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8954AD451139BF29FBE86E6405E8ED3493937978_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tFE5AD86174D6ECCD4E4CC6D775C090AAC0F53B30*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8954AD451139BF29FBE86E6405E8ED3493937978(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC20F039C3774238CCF20E4964208310D17BCB671_gshared (NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tC398CC6607C9075D2AE819DE88719D2168E0FCEC* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC8BCB3A909A1A9CD595CF6E7A9AFB30C21572D99(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC20F039C3774238CCF20E4964208310D17BCB671_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t0E8F99CBD0349EB2EDB94A940345E760399356C0*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC20F039C3774238CCF20E4964208310D17BCB671(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mCAB87114ECD43D0963842C600BB69B099852D6BB_gshared (NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tCFDCC580A90753F362AA7EA5DFE667A1452664F8* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m45958C6099052E558A822FA1093BE152A406C3CE(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mCAB87114ECD43D0963842C600BB69B099852D6BB_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t50EF7494D5DE96412C6EA67378B11EE5C5C8EE89*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mCAB87114ECD43D0963842C600BB69B099852D6BB(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8740F1D65218947A863337C24A03A06FAD0F7CE8_gshared (NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tED362B173BBF71D34F0DD132675AB962081FEBAB* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1F9B74217D635B4807E4D9A7321B1FCCA689191C(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8740F1D65218947A863337C24A03A06FAD0F7CE8_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t0C5987871D198C5E0E8BFE6CAAEC095CDEF0E71A*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8740F1D65218947A863337C24A03A06FAD0F7CE8(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD00D262905C5105DC06F193CE0E6D8189F2581B1_gshared (NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t63B5C5C34A6F0AA798780FFCAB916CE54ABF71AE* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m980D5D9D9FE22089A4BCF7CC2D4778BDECD964E6(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD00D262905C5105DC06F193CE0E6D8189F2581B1_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tB02983DE9435CC8A61E19981200774644353DFBB*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD00D262905C5105DC06F193CE0E6D8189F2581B1(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8562D674D98BF1B8FFA0292FED6227B7475D58CE_gshared (NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t34AEFBE320B1031BD5A746EFCFCA94DF69D9044C* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1FCF4AEAB44F505DBAFE79C974CEA4EF9A2791CE(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8562D674D98BF1B8FFA0292FED6227B7475D58CE_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t8241184D23A22BA25C6CF82158DE1ACE4143D075*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m8562D674D98BF1B8FFA0292FED6227B7475D58CE(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m212E7DE5541E6AD2D8177A5BDE3F7B11E252532E_gshared (NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t72FFFA60411F6BB2F2C776571F608CDA569E5999* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC8C6D31CB226B974EEFC892A0A28DA9D125A6B0(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m212E7DE5541E6AD2D8177A5BDE3F7B11E252532E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t1D61E7A10C219D777910F52AFB34761004F5A1A0*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m212E7DE5541E6AD2D8177A5BDE3F7B11E252532E(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mA6B869F899031AB0E989998A692FBC4E96A064B9_gshared (NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t7F7887FAE17B6FDBF7C159C37BC83911C5F9A184* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFC0AEF19BEAB683B042493023253CA0F9513D288(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mA6B869F899031AB0E989998A692FBC4E96A064B9_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tFE7952B5C306B3ABF1A85DF42956B696B4BCF5DC*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mA6B869F899031AB0E989998A692FBC4E96A064B9(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m652947C438EF33AC352088D2309A51253516B014_gshared (NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t86D2231E0AF64C72BA7C266D36B9F3FE399B41EB* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFDCBD92CE263DC78726610F1DF009E02CBE79370(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m652947C438EF33AC352088D2309A51253516B014_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t7C049872825FD2E53BA2AD96FB06944DF07AFF08*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m652947C438EF33AC352088D2309A51253516B014(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD9B3D4A8E08B380809B55B97C0CEAD15A9E41BBB_gshared (NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m4DB090110E6F860F89BC396A0B289CD2F76E2B6F(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD9B3D4A8E08B380809B55B97C0CEAD15A9E41BBB_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t0EA735A94E6EBF8FE7F3B79411C98BF692EA2213*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD9B3D4A8E08B380809B55B97C0CEAD15A9E41BBB(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2620B43CDBB522330B8F4F6F133D6394D3B687B5_gshared (NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t6B33FA0D43DCA4560A225E333E6722C55B5E2FC9* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7326E88D838EA99F981DF6C9A2C63FE6B211983E(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2620B43CDBB522330B8F4F6F133D6394D3B687B5_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tF05833EAAE5AC2EE627773E213F31E568613D11C*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2620B43CDBB522330B8F4F6F133D6394D3B687B5(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2BCD7CE86909EBBA1DAB10F58751FB5EECD8F180_gshared (NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tF1A798781EDA1BEAD331A2241888A227A6E2891D* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFE43EB8F3871E6B2473C70581E7662F4B037322E(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2BCD7CE86909EBBA1DAB10F58751FB5EECD8F180_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t53EAF24037BDCAF4EBF0C2060BFD6694AFAC35AD*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2BCD7CE86909EBBA1DAB10F58751FB5EECD8F180(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m72CAB2544831F7D09ADA66729DA1A64D0EE5AECE_gshared (NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t466025709A4C0CCFAD422C17FFAB3956BEBAF9D2* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m270688BB98BC284DC844ECF1477AE5194149D675(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m72CAB2544831F7D09ADA66729DA1A64D0EE5AECE_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t985BEF7B4509E25DDC0567AA7F3E7BBD8115E2CB*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m72CAB2544831F7D09ADA66729DA1A64D0EE5AECE(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1D0D13785F6065E7C5E9BA33B94C51D8A85909D3_gshared (NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tC35C17A98C45EDE2BAEEF51E5546B6AE96871E29* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m333116543868890A84D6E8DB99A64569D00AA479(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1D0D13785F6065E7C5E9BA33B94C51D8A85909D3_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t6979B4DD02A6530CBD36841E5BAF6B7975E55CBB*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1D0D13785F6065E7C5E9BA33B94C51D8A85909D3(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mAF7330F673D2AB3BB9A880D2F4EADDA26CFD9EBC_gshared (NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t2698BCDA35C9A619C8B06830DF4348F090657175* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m44635865D8BA326C38EAB99915EEACCB7D8B264E(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mAF7330F673D2AB3BB9A880D2F4EADDA26CFD9EBC_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tCE9294F8D50CBBA2C6B0936EF47668AABCBFC129*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mAF7330F673D2AB3BB9A880D2F4EADDA26CFD9EBC(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF7D1C7183F9248429EF3AB143CB784AA1568DCA7_gshared (NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tAF9272F566E901F8A09846C464F6535AF6B6B16B* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m657116052467916447A90150FF803C20C5CEE31B(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF7D1C7183F9248429EF3AB143CB784AA1568DCA7_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tA510052F24CA28040AE5D7A8BE6C6002296124A7*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF7D1C7183F9248429EF3AB143CB784AA1568DCA7(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m20FE4900544C737948E4C87B376FE73B17A66E8E_gshared (NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t173126F6552F1541EC0D24B76A2112626EA85FC5* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m307C17F4A16A76027789F559BC82C19040712ED3(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m20FE4900544C737948E4C87B376FE73B17A66E8E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tC4B04B5B98BEA4587A1187DC60F8C87F0920C4B1*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m20FE4900544C737948E4C87B376FE73B17A66E8E(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m14A872A4EAF7A269F1F6F9BFE0ED49F85A04A6C6_gshared (NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t71F5F4076B4F42633307814D517033CCA6FE8E34* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m07C8F63E51F1251DA94CCBE4179AD6FCF8F2EB30(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m14A872A4EAF7A269F1F6F9BFE0ED49F85A04A6C6_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t60650BAC55FA3E0806E2A7B303C8A4B1B3176735*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m14A872A4EAF7A269F1F6F9BFE0ED49F85A04A6C6(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mABB61BB12976C6588D79849FB8968302C01E75E2_gshared (NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tB9426D20C074F7429E5534019CDCC127142BAC51* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBDE422E785C9AE9FC69193558A45C144CD485A12(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mABB61BB12976C6588D79849FB8968302C01E75E2_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tAD91DD25D285B5D001ACB76D5C1B638BA3E8E74D*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mABB61BB12976C6588D79849FB8968302C01E75E2(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFEBBEB7E5ED020350B79CDCAE305AD4B6D77C411_gshared (NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tDFCE3387AE8658A87077253BEC37F88FD603DF84* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mDBD5820BFDCD05712FD930EBB1480501EE194210(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFEBBEB7E5ED020350B79CDCAE305AD4B6D77C411_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tB3DABDBC2CD98907BC398426279D21CF380DD910*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mFEBBEB7E5ED020350B79CDCAE305AD4B6D77C411(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C846E8A1BCDFC3492874AA742AC1EC6EA06D28A_gshared (NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t96307A04898BD0C49DFF733D301684A2628959F2* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m55B2E09FAAE6E34227D59770FCF38FE177A4C2BB(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C846E8A1BCDFC3492874AA742AC1EC6EA06D28A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t63E603CC13098D57EE39281831362F9D13564D34*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C846E8A1BCDFC3492874AA742AC1EC6EA06D28A(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC3B5AEDF0BF283FC2A2C10E5F8B5138E83252006_gshared (NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tAAB699F827C515727975973202558FB27BEC605E* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6D10F2B2AE23B17D070908EE78D30AE17050C535(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC3B5AEDF0BF283FC2A2C10E5F8B5138E83252006_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t7E4EB94D72E542AD9AE709E29DD6C427017735C8*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC3B5AEDF0BF283FC2A2C10E5F8B5138E83252006(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7A654038B87E3CAAB01B15C1ACA51BBB02FBB071_gshared (NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tACD8CB556CD69F1AC50A8B4894D6B230BE884C2A* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m826E2BB83A1EC8F3F77B980C74B2C1B20173F2E0(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7A654038B87E3CAAB01B15C1ACA51BBB02FBB071_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t849341A90D92C0EDCE3EB2109A577334F76D37DA*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7A654038B87E3CAAB01B15C1ACA51BBB02FBB071(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6BAD277E18F76D4388622AC579FE6D5C1979F1E_gshared (NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tE0925972F51EBAB33C5335A86B2E02801BEF7D8C* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m92CD6E62E9A90F1B8383A394FF69F3C45C443B0D(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6BAD277E18F76D4388622AC579FE6D5C1979F1E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t8669CE2F5F28A2FCC6C5AFE126A15F0661AE0B6D*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mE6BAD277E18F76D4388622AC579FE6D5C1979F1E(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA90E8883695268AB9A029B28CCE6B97235E3D6E_gshared (NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t5BA00307630DB630A2010F3369C343509AE94A06* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mC07086057642BA29F97964F4917ECABB3234C4C6(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA90E8883695268AB9A029B28CCE6B97235E3D6E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t959C2708BDFCE76B695843BBB6CB994043416657*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA90E8883695268AB9A029B28CCE6B97235E3D6E(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA6EA004C917701A46CAEF8883365C17EC72EF84_gshared (NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t5587650D065DD59DDA21A042C17145BA4B6813AC* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m571A6231AB80B738F7CF1B22EF880E05DB8D64D8(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA6EA004C917701A46CAEF8883365C17EC72EF84_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tD22C3232FF9B49AD6C28A2FF59564AFB594D3D92*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mBA6EA004C917701A46CAEF8883365C17EC72EF84(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9926CCCB5436863666A1EFA8FBAD4F34EA9E951E_gshared (NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tA2B6A040C4F2656D88ABB4345257ADE8F2F30F35* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m0D6E7B9DB895B65C8B54DADEEC5EA951299A598D(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9926CCCB5436863666A1EFA8FBAD4F34EA9E951E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t3F484BD58C4375864F2F924BAC1D588941D48ACF*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9926CCCB5436863666A1EFA8FBAD4F34EA9E951E(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Dispose_TisIl2CppFullySharedGenericStruct_mC1029EC6803B86B2C7577203E6B311E262BE4F65_gshared (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* __this, Il2CppFullySharedGenericStruct* ___0_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
bool L_0;
|
|
L_0 = (( bool (*) (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 33)))(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 33));
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6* L_1 = __this->___m_ListData;
|
|
Il2CppFullySharedGenericStruct* L_2 = ___0_allocator;
|
|
(( void (*) (UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6*, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = (UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6*)((uintptr_t)0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Dispose_TisIl2CppFullySharedGenericStruct_mC1029EC6803B86B2C7577203E6B311E262BE4F65_AdjustorThunk (RuntimeObject* __this, Il2CppFullySharedGenericStruct* ___0_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1*>(__this + _offset);
|
|
NativeList_1_Dispose_TisIl2CppFullySharedGenericStruct_mC1029EC6803B86B2C7577203E6B311E262BE4F65(_thisAdjusted, ___0_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisIl2CppFullySharedGenericStruct_m84B39CC62859C7E4EDB87CA79D4F1B31FCCA4C54_gshared (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* __this, int32_t ___0_initialCapacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
Il2CppFullySharedGenericStruct* L_1 = ___1_allocator;
|
|
UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6* L_2;
|
|
L_2 = (( UnsafeList_1_t3A26A222433F7993EC942046A500D6EA3DCB97E6* (*) (int32_t, Il2CppFullySharedGenericStruct*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisIl2CppFullySharedGenericStruct_m84B39CC62859C7E4EDB87CA79D4F1B31FCCA4C54_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1*>(__this + _offset);
|
|
NativeList_1_Initialize_TisIl2CppFullySharedGenericStruct_m84B39CC62859C7E4EDB87CA79D4F1B31FCCA4C54(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1 NativeList_1_New_TisIl2CppFullySharedGenericStruct_mF0A2D2C08F5012C306A1BB78E1A6FB3312755382_gshared (int32_t ___0_initialCapacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1));
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
Il2CppFullySharedGenericStruct* L_1 = ___1_allocator;
|
|
(( void (*) (NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1*, int32_t, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
NativeList_1_tC1434025FAC1738D2E1A0029AA90EC61D91370C1 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7672D85E1E4C258C48EDD041454E5AD0A9F89901_gshared (NativeList_1_tA78554A4805525762FFDFAC177852313219B5383* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t3C558FC5C2688389AF4264830148C53464D01E23* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m9C39BB1D7DA463EAD661706E568567675FBE414D(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7672D85E1E4C258C48EDD041454E5AD0A9F89901_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tA78554A4805525762FFDFAC177852313219B5383* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tA78554A4805525762FFDFAC177852313219B5383*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m7672D85E1E4C258C48EDD041454E5AD0A9F89901(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF35BDF60662A2DBD8F49FAD41FD28DC71212F1D8_gshared (NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t176765C8600ACA8C102D843301B50E7ED070AF98* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m2C12BEB4BC76831F8DC1E665DC9B75B575449EB4(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF35BDF60662A2DBD8F49FAD41FD28DC71212F1D8_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t902856D039AB8993F5FC55297B678E063D0372B7*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF35BDF60662A2DBD8F49FAD41FD28DC71212F1D8(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1736CB8FAF37E6FA9ACE54FF5D23E260C5B15516_gshared (NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t3F38690D85271A8ADA9D58F82E41003FF0AB256D* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mED01F1FF210FB77A3760AA09388CA150D4B7925F(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1736CB8FAF37E6FA9ACE54FF5D23E260C5B15516_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_t006A61C5E07DE47DD2FC020A873ECEFC81D02A88*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m1736CB8FAF37E6FA9ACE54FF5D23E260C5B15516(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m16AE4C5E47FD1D1EA044DBFC343E491F593BE90F_gshared (NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t32D453EB9CD75257217D0A2E7ACB98E0A23EA5AA* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m037FD5ACBC4B49652DFCA6A6144BD67034E85EFA(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m16AE4C5E47FD1D1EA044DBFC343E491F593BE90F_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tCF3E394EA54717ED0C569129893AB4AE755DF09C*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m16AE4C5E47FD1D1EA044DBFC343E491F593BE90F(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6258D08944D7A96FE2232389338CB1B747EA53C1_gshared (NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_tB27AD3CB321614AC6FA21D53846794B77943121C* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m81065188E32A96B6794424732ED739711527F2CE(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6258D08944D7A96FE2232389338CB1B747EA53C1_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tA7B42EBA39EBB7D9E8E5B82AFBF542894517C9CF*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m6258D08944D7A96FE2232389338CB1B747EA53C1(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD3A7F0D95D44C61000BE69C7D033168DC01CECDD_gshared (NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_initialCapacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
UnsafeList_1_t5324648C0890229F0FE531FDD1C786CAEE3243D7* L_2;
|
|
L_2 = UnsafeList_1_Create_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m78EE726E3742E6FEA6CE4417ED298CE305695C07(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
__this->___m_ListData = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD3A7F0D95D44C61000BE69C7D033168DC01CECDD_AdjustorThunk (RuntimeObject* __this, int32_t ___0_initialCapacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeList_1_tCC7DC8BFCE32C0047BC2C8A2465220C312878333*>(__this + _offset);
|
|
NativeList_1_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mD3A7F0D95D44C61000BE69C7D033168DC01CECDD(_thisAdjusted, ___0_initialCapacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeParallelMultiHashMap_2_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m05BE238C6E3FA9BDEC6C93E17DE222799E1C8997_gshared (NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int32_t L_0 = ___0_capacity;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_1 = ___1_allocator;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2;
|
|
L_2 = AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2(L_1, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
UnsafeParallelMultiHashMap_2_tAC644254A5A65EC96A9EDD9D83F9C7EA1BF75D8E L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
UnsafeParallelMultiHashMap_2__ctor_m5077BDC802F35E115E649B0453FC2247DFE52002((&L_3), L_0, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
__this->___m_MultiHashMapData = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeParallelMultiHashMap_2_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m05BE238C6E3FA9BDEC6C93E17DE222799E1C8997_AdjustorThunk (RuntimeObject* __this, int32_t ___0_capacity, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeParallelMultiHashMap_2_t172C4BF674F1229B07342E39139897436494C171*>(__this + _offset);
|
|
NativeParallelMultiHashMap_2_Initialize_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m05BE238C6E3FA9BDEC6C93E17DE222799E1C8997(_thisAdjusted, ___0_capacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeParallelMultiHashMap_2_Initialize_TisIl2CppFullySharedGenericStruct_m2CC90C1465EF6DD13E90098CD56B88C04A24607C_gshared (NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22* __this, int32_t ___0_capacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
void* L_2 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
{
|
|
int32_t L_0 = ___0_capacity;
|
|
Il2CppFullySharedGenericStruct* L_1 = ___1_allocator;
|
|
AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_3;
|
|
L_3 = ConstrainedFuncInvoker0< AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 1), il2cpp_rgctx_method(method->rgctx_data, 2), L_2, (void*)L_1);
|
|
UnsafeParallelMultiHashMap_2_t4E7810C26A0DC9AFBF2B30BA797D0ACF99B4573F L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
UnsafeParallelMultiHashMap_2__ctor_m2E9AAA535D5D589B1D9CA34C9CCD9D66CF1DF44B((&L_4), L_0, L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
__this->___m_MultiHashMapData = L_4;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void NativeParallelMultiHashMap_2_Initialize_TisIl2CppFullySharedGenericStruct_m2CC90C1465EF6DD13E90098CD56B88C04A24607C_AdjustorThunk (RuntimeObject* __this, int32_t ___0_capacity, Il2CppFullySharedGenericStruct* ___1_allocator, const RuntimeMethod* method)
|
|
{
|
|
NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<NativeParallelMultiHashMap_2_t5A59639521C01B33A0ACC62CC3D8F1C5E6BD0C22*>(__this + _offset);
|
|
NativeParallelMultiHashMap_2_Initialize_TisIl2CppFullySharedGenericStruct_m2CC90C1465EF6DD13E90098CD56B88C04A24607C(_thisAdjusted, ___0_capacity, ___1_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullableFormatter_1_Serialize_TisRuntimeObject_m6CAFBA7E9EFC0568E2CEA0B8F8E15AAACC012444_gshared (NullableFormatter_1_tEA87E8072903C7F61821615A881B92DB189BC71D* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_t6F4FA67AD11965B812E284A4E7E2035D18030275 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericStruct L_9 = alloca(SizeOf_T_t6F4FA67AD11965B812E284A4E7E2035D18030275);
|
|
Il2CppFullySharedGenericStruct V_0 = alloca(SizeOf_T_t6F4FA67AD11965B812E284A4E7E2035D18030275);
|
|
memset(V_0, 0, SizeOf_T_t6F4FA67AD11965B812E284A4E7E2035D18030275);
|
|
{
|
|
bool L_0;
|
|
L_0 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_1 = ___0_writer;
|
|
Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* L_2 = ___1_value;
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* L_3 = ___1_value;
|
|
bool L_4;
|
|
L_4 = (( bool (*) (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
if (L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullObjectHeader_m48D9A3AB6855F349EABE2A1B0F3A5FD85864E985_inline(L_5, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_6 = ___0_writer;
|
|
MemoryPackWriter_1_WriteObjectHeader_mE187B22DEFD5FBF26F62C613AD28333349B388D7_inline(L_6, (uint8_t)1, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_7 = ___0_writer;
|
|
Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* L_8 = ___1_value;
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)), il2cpp_rgctx_method(method->klass->rgctx_data, 4), L_8, (Il2CppFullySharedGenericStruct*)L_9);
|
|
il2cpp_codegen_memcpy(V_0, L_9, SizeOf_T_t6F4FA67AD11965B812E284A4E7E2035D18030275);
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(L_7, (Il2CppFullySharedGenericStruct*)V_0, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObservableCollectionFormatter_1_Serialize_TisRuntimeObject_m8176AA2D6B820297B2946FD5E64AC0417E3D2FA4_gshared (ObservableCollectionFormatter_1_t205D3F2D3A4E0790387EA3D293BAA4E0AE3BB35A* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T_tC1351A0CBEE7ADEABA36449F604E1E1C25B4A726 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T_tC1351A0CBEE7ADEABA36449F604E1E1C25B4A726);
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_tC1351A0CBEE7ADEABA36449F604E1E1C25B4A726);
|
|
memset(V_2, 0, SizeOf_T_tC1351A0CBEE7ADEABA36449F604E1E1C25B4A726);
|
|
{
|
|
ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8** L_0 = ___1_value;
|
|
ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8* L_1 = *((ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8** L_6 = ___1_value;
|
|
ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8* L_7 = *((ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8**)L_6);
|
|
NullCheck((Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E*)L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))((Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E*)L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8** L_9 = ___1_value;
|
|
ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8* L_10 = *((ObservableCollection_1_t88F7DA7F7087023443CFAD5538FB4B4B561318A8**)L_9);
|
|
NullCheck((Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E*)L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = (( RuntimeObject* (*) (Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Collection_1_t64F5801B7817C08B013BC2F8613C49D0A43A562E*)L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
V_1 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0043:
|
|
{
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck((RuntimeObject*)L_13);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0029_1:
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_14, (Il2CppFullySharedGenericAny*)L_15);
|
|
il2cpp_codegen_memcpy(V_2, L_15, SizeOf_T_tC1351A0CBEE7ADEABA36449F604E1E1C25B4A726);
|
|
RuntimeObject* L_16 = V_0;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_17 = ___0_writer;
|
|
NullCheck(L_16);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_16, L_17, (Il2CppFullySharedGenericAny*)V_2);
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
RuntimeObject* L_18 = V_1;
|
|
NullCheck((RuntimeObject*)L_18);
|
|
bool L_19;
|
|
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_0029_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m27AF1282CC8406066C450F28C992AF67EF310985_gshared (OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA* __this, Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546* L_4 = (OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
OrderedEnumerable_2__ctor_m5A5492A71F9D3F956F16D4F7B1F04BE47AC7FEB7(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m38895102FE301D19C516487216BC8FA67EBBFC63_gshared (OrderedEnumerable_1_t49A81D3EAEB40201506836E577654DE2F8EC8941* __this, Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_tF8ACBB86793AC8EBB434A64BA219B2B144660DC7* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC* L_4 = (OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
OrderedEnumerable_2__ctor_mBE93BE0656C7137FCB68076DDD39D1CEB5BBB3F6(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_tB2BB1ECCB0DE7D81D21CB503C6E9B7434D24B9EC* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m59C32817F275AED6A199C5BFEA0BFA2D21006AB2_gshared (OrderedEnumerable_1_tFFE2D41E419F999B45E7C9636190F547FE16EA00* __this, Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_tF80AFEAB653E375ACD0F49E44AE42BAE8761DB6F* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692* L_4 = (OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
OrderedEnumerable_2__ctor_m0FEDB4E6B2EAC112C01BF5AC4605305543466402(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_t956A813D199E81970CA808468C12A778277A6692* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m16946251D211C92C78D483BEA8C9A1325943C98F_gshared (OrderedEnumerable_1_t2CA7B89590CC51BDE981B85FB02BE2FC4175E2D6* __this, Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_tE6D7532D9B01F3BFD1639BCA3C00C19CCA5FF609* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29* L_4 = (OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
OrderedEnumerable_2__ctor_mA4C9424073C1ADF71C6D1C4A093AFC11BFA78162(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_tD338B74543352DB35E19D630DBC13C34FB211F29* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mEB74BF7F933F20EA5B61577342CA3914815E798B_gshared (OrderedEnumerable_1_tA6269C578EE7D3423C79F32258D574795AEF1151* __this, Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_t7025554EC975A118D5815ACF437B2080C169F1C0* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA* L_4 = (OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
OrderedEnumerable_2__ctor_m74A1E4ECECDEE6443DD3588E46C32D34F3CAAAAF(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_tAACC54129C37109328AFDC1477A535FCF5BE8CBA* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m0EE552DCF111C57052B512913FF80AFAB07B4582_gshared (OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51* __this, Func_2_tB86D019F1289E2D123C00796B373933613385952* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_tB86D019F1289E2D123C00796B373933613385952* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1* L_4 = (OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
OrderedEnumerable_2__ctor_mDBD22B8FD21EB8AA78E215E6189E6A53CC537403(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisIl2CppFullySharedGenericAny_m98823854D3405FA4B9739CA06EB8773970E89480_gshared (OrderedEnumerable_1_t9FC254A996960AAA55B70FA7417B36D16C123B28* __this, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* ___0_keySelector, RuntimeObject* ___1_comparer, bool ___2_descending, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
RuntimeObject* L_0 = __this->___source;
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* L_1 = ___0_keySelector;
|
|
RuntimeObject* L_2 = ___1_comparer;
|
|
bool L_3 = ___2_descending;
|
|
OrderedEnumerable_2_tA5E665AC53BEDC7E4FD6924BFED49DE6B7A54475* L_4 = (OrderedEnumerable_2_tA5E665AC53BEDC7E4FD6924BFED49DE6B7A54475*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
(( void (*) (OrderedEnumerable_2_tA5E665AC53BEDC7E4FD6924BFED49DE6B7A54475*, RuntimeObject*, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, RuntimeObject*, bool, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_4, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
OrderedEnumerable_2_tA5E665AC53BEDC7E4FD6924BFED49DE6B7A54475* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
L_5->___parent = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___parent), (void*)__this);
|
|
return (RuntimeObject*)L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Property_2_GetAttribute_TisRuntimeObject_mFCFB1C436513FC620906D49F30CF039752EDF6CD_gshared (Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* __this, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeObject* V_3 = NULL;
|
|
bool V_4 = false;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
RuntimeObject* V_7 = NULL;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B7_0;
|
|
memset((&G_B7_0), 0, sizeof(G_B7_0));
|
|
int32_t G_B7_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* L_0 = __this->___m_Attributes;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_2;
|
|
L_2 = List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E(L_0, L_1, List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E_RuntimeMethod_var);
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
RuntimeObject* L_3 = V_1;
|
|
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
V_3 = L_5;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* L_8 = __this->___m_Attributes;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* L_9 = L_8;
|
|
if (L_9)
|
|
{
|
|
G_B6_0 = L_9;
|
|
G_B6_1 = L_7;
|
|
goto IL_004b;
|
|
}
|
|
G_B5_0 = L_9;
|
|
G_B5_1 = L_7;
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_6), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_10 = V_6;
|
|
G_B7_0 = L_10;
|
|
G_B7_1 = G_B5_1;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
int32_t L_11;
|
|
L_11 = List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_inline(G_B6_0, List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_RuntimeMethod_var);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_12), L_11, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
G_B7_0 = L_12;
|
|
G_B7_1 = G_B6_1;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
V_5 = G_B7_0;
|
|
int32_t L_13;
|
|
L_13 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_5), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
|
|
bool L_14;
|
|
L_14 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_5), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
V_4 = (bool)((int32_t)(((((int32_t)G_B7_1) < ((int32_t)L_13))? 1 : 0)&(int32_t)L_14));
|
|
bool L_15 = V_4;
|
|
if (L_15)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_7), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_16 = V_7;
|
|
V_3 = L_16;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
RuntimeObject* L_17 = V_3;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Property_2_HasAttribute_TisRuntimeObject_m84BDDFB507CD91D0DBBACF9F6E81D4566BC61EA4_gshared (Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* __this, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B7_0;
|
|
memset((&G_B7_0), 0, sizeof(G_B7_0));
|
|
int32_t G_B7_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* L_0 = __this->___m_Attributes;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_2;
|
|
L_2 = List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E(L_0, L_1, List_1_get_Item_m6392D7C48D6856D8F4819D37652869A269AD059E_RuntimeMethod_var);
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, il2cpp_rgctx_data(method->rgctx_data, 0)))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* L_6 = __this->___m_Attributes;
|
|
List_1_t4A27DCC9A4080D8DA642DEA4EFFEBA72D6471715* L_7 = L_6;
|
|
if (L_7)
|
|
{
|
|
G_B6_0 = L_7;
|
|
G_B6_1 = L_5;
|
|
goto IL_003f;
|
|
}
|
|
G_B5_0 = L_7;
|
|
G_B5_1 = L_5;
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_5), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = V_5;
|
|
G_B7_0 = L_8;
|
|
G_B7_1 = G_B5_1;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
int32_t L_9;
|
|
L_9 = List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_inline(G_B6_0, List_1_get_Count_m7A61592E5FE84D3A67A379166626C78396A7E506_RuntimeMethod_var);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_10), L_9, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
G_B7_0 = L_10;
|
|
G_B7_1 = G_B6_1;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
V_4 = G_B7_0;
|
|
int32_t L_11;
|
|
L_11 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_4), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
|
|
bool L_12;
|
|
L_12 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_4), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
V_3 = (bool)((int32_t)(((((int32_t)G_B7_1) < ((int32_t)L_11))? 1 : 0)&(int32_t)L_12));
|
|
bool L_13 = V_3;
|
|
if (L_13)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
bool L_14 = V_2;
|
|
return L_14;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueFormatter_1_Serialize_TisRuntimeObject_m2F19815C4EEA9A36B37DBC6E7DBF2AF80BCE3B81_gshared (QueueFormatter_1_t1A3EFCE5D331814DB263BAEE7689EE969E66F795* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_Enumerator_t32A15674448DE106337CE6C1405A7276D0C74264 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const uint32_t SizeOf_T_t28BA00F1BB1D0BB7F169775D7CE6DC9C006A1D9D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 8));
|
|
void* L_12 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T_t28BA00F1BB1D0BB7F169775D7CE6DC9C006A1D9D);
|
|
const Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C L_11 = alloca(SizeOf_Enumerator_t32A15674448DE106337CE6C1405A7276D0C74264);
|
|
RuntimeObject* V_0 = NULL;
|
|
Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C V_1 = alloca(SizeOf_Enumerator_t32A15674448DE106337CE6C1405A7276D0C74264);
|
|
memset(V_1, 0, SizeOf_Enumerator_t32A15674448DE106337CE6C1405A7276D0C74264);
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_t28BA00F1BB1D0BB7F169775D7CE6DC9C006A1D9D);
|
|
memset(V_2, 0, SizeOf_T_t28BA00F1BB1D0BB7F169775D7CE6DC9C006A1D9D);
|
|
{
|
|
Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41** L_0 = ___1_value;
|
|
Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* L_1 = *((Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41** L_6 = ___1_value;
|
|
Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* L_7 = *((Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41**)L_6);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41** L_9 = ___1_value;
|
|
Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* L_10 = *((Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41**)L_9);
|
|
NullCheck(L_10);
|
|
InvokerActionInvoker1< Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)), il2cpp_rgctx_method(method->klass->rgctx_data, 4), L_10, (Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C*)L_11);
|
|
il2cpp_codegen_memcpy(V_1, L_11, SizeOf_Enumerator_t32A15674448DE106337CE6C1405A7276D0C74264);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0045:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 5), il2cpp_rgctx_method(method->klass->rgctx_data, 11), L_12, (void*)(Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C*)V_1);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_003a_1;
|
|
}
|
|
|
|
IL_0029_1:
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)), il2cpp_rgctx_method(method->klass->rgctx_data, 6), (Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C*)V_1, (Il2CppFullySharedGenericAny*)L_13);
|
|
il2cpp_codegen_memcpy(V_2, L_13, SizeOf_T_t28BA00F1BB1D0BB7F169775D7CE6DC9C006A1D9D);
|
|
RuntimeObject* L_14 = V_0;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_15 = ___0_writer;
|
|
NullCheck(L_14);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_14, L_15, (Il2CppFullySharedGenericAny*)V_2);
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
bool L_16;
|
|
L_16 = (( bool (*) (Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))((Enumerator_tFA6E7D5BA5EFB0C82F2AA1342FFD5C2B753D673C*)V_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
if (L_16)
|
|
{
|
|
goto IL_0029_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollectionFormatter_1_Serialize_TisRuntimeObject_m6CE85AA321F5CADFB64EEA608BE41F67BABE525B_gshared (ReadOnlyCollectionFormatter_1_tAC85C30BCFD264529811EE9677E826C8D0D5E0ED* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T_t61818E8E3005316BBC0FE16D547BE14BBFBDE3C8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T_t61818E8E3005316BBC0FE16D547BE14BBFBDE3C8);
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_t61818E8E3005316BBC0FE16D547BE14BBFBDE3C8);
|
|
memset(V_2, 0, SizeOf_T_t61818E8E3005316BBC0FE16D547BE14BBFBDE3C8);
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8** L_0 = ___1_value;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_1 = *((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8** L_6 = ___1_value;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_7 = *((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8**)L_6);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8** L_9 = ___1_value;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_10 = *((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8**)L_9);
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = (( RuntimeObject* (*) (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
V_1 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0043:
|
|
{
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck((RuntimeObject*)L_13);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0029_1:
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_14, (Il2CppFullySharedGenericAny*)L_15);
|
|
il2cpp_codegen_memcpy(V_2, L_15, SizeOf_T_t61818E8E3005316BBC0FE16D547BE14BBFBDE3C8);
|
|
RuntimeObject* L_16 = V_0;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_17 = ___0_writer;
|
|
NullCheck(L_16);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_16, L_17, (Il2CppFullySharedGenericAny*)V_2);
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
RuntimeObject* L_18 = V_1;
|
|
NullCheck((RuntimeObject*)L_18);
|
|
bool L_19;
|
|
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_0029_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyMemoryFormatter_1_Serialize_TisRuntimeObject_mCDCAD4CBACC7288FDC593FCA199A5E52A97C4A30_gshared (ReadOnlyMemoryFormatter_1_t74EE1C8181A5D7F40B969EE8BFAEB2225B79F2CF* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_0 = ___0_writer;
|
|
ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4* L_1 = ___1_value;
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_2;
|
|
L_2 = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyMemoryPoolFormatter_1_Serialize_TisRuntimeObject_mA6B1DF7C288116B1D7888F063612B5E38DF8760B_gshared (ReadOnlyMemoryPoolFormatter_1_tE2E949C916CC0FAA8E907B5866F4CC1486C2B6BD* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_0 = ___0_writer;
|
|
ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4* L_1 = ___1_value;
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_2;
|
|
L_2 = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyObservableCollectionFormatter_1_Serialize_TisRuntimeObject_mC2AE5E387DB47F941C336384FF39C1152BC069DA_gshared (ReadOnlyObservableCollectionFormatter_1_t9CF1F49B787A2959F51A77EDC8204755AB519299* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T_t65A1EF1C87F15AC7A893439605A2A30A31905696 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T_t65A1EF1C87F15AC7A893439605A2A30A31905696);
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_t65A1EF1C87F15AC7A893439605A2A30A31905696);
|
|
memset(V_2, 0, SizeOf_T_t65A1EF1C87F15AC7A893439605A2A30A31905696);
|
|
{
|
|
ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6** L_0 = ___1_value;
|
|
ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6* L_1 = *((ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6** L_6 = ___1_value;
|
|
ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6* L_7 = *((ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6**)L_6);
|
|
NullCheck((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*)L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*)L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6** L_9 = ___1_value;
|
|
ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6* L_10 = *((ReadOnlyObservableCollection_1_tEE85386C201F8C8490489FDEC05654DD005248D6**)L_9);
|
|
NullCheck((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*)L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = (( RuntimeObject* (*) (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*)L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
V_1 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0043:
|
|
{
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck((RuntimeObject*)L_13);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0029_1:
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_14, (Il2CppFullySharedGenericAny*)L_15);
|
|
il2cpp_codegen_memcpy(V_2, L_15, SizeOf_T_t65A1EF1C87F15AC7A893439605A2A30A31905696);
|
|
RuntimeObject* L_16 = V_0;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_17 = ___0_writer;
|
|
NullCheck(L_16);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_16, L_17, (Il2CppFullySharedGenericAny*)V_2);
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
RuntimeObject* L_18 = V_1;
|
|
NullCheck((RuntimeObject*)L_18);
|
|
bool L_19;
|
|
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_0029_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlySequenceFormatter_1_Serialize_TisRuntimeObject_m8C0A0AF52B4EA7EBB446E81EE611167392EE2CE3_gshared (ReadOnlySequenceFormatter_1_t36266827034862726B67CEB00ADD4C21625BD5E7* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Enumerator_t3B58A5EDEC3FD278F1EAAE4308FB042DEC812DBE V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1* L_0 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bool L_1;
|
|
L_1 = (( bool (*) (ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1* L_3 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_4;
|
|
L_4 = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_2, L_4, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1* L_6 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int64_t L_7;
|
|
L_7 = (( int64_t (*) (ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
if ((int64_t)(L_7) > 2147483647LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, ((int32_t)L_7), il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1* L_8 = ___1_value;
|
|
Enumerator_t3B58A5EDEC3FD278F1EAAE4308FB042DEC812DBE L_9;
|
|
L_9 = (( Enumerator_t3B58A5EDEC3FD278F1EAAE4308FB042DEC812DBE (*) (ReadOnlySequence_1_t5457EF2B3DB30EB3B93D93BD8C020D1078D03AB1*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)))(L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
V_0 = L_9;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4 L_10;
|
|
L_10 = (( ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4 (*) (Enumerator_t3B58A5EDEC3FD278F1EAAE4308FB042DEC812DBE*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
V_1 = L_10;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_11 = ___0_writer;
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_12;
|
|
L_12 = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (ReadOnlyMemory_1_t192441E248CAB66088AAEDBD64DFEE110ADBEED4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))((&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
(( void (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_11, L_12, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
bool L_13;
|
|
L_13 = (( bool (*) (Enumerator_t3B58A5EDEC3FD278F1EAAE4308FB042DEC812DBE*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
if (L_13)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectedPropertyBag_1_AddProperty_TisIl2CppFullySharedGenericAny_m79764CEC7EFDE365D48FA05127DABA5B59964722_gshared (ReflectedPropertyBag_1_tE1C09DA96513A538F766F89263E88809EE14AF79* __this, Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* ___0_property, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeUtility_t62F146E51B66BB18FA0E1EFA84A564FF2B8AAD03_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0486DE6855E70A57C021FE842262A0AF7E3D00A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77A4D95C5A66881369906720C24690D7097D85DC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral825FA1DD8AB4D9C138AF4C902F17201DA2CD593C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DC60AC845BB1AF7FF83CC77ACB0A5FBDD02044);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7C7EB6D4B1A1BE6355C4EADB334269A56E2116D);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TContainer_tBA215EB9698B59359CC8C9BF2B8B633F8E1225BB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0));
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TContainer_tBA215EB9698B59359CC8C9BF2B8B633F8E1225BB);
|
|
memset(V_0, 0, SizeOf_TContainer_tBA215EB9698B59359CC8C9BF2B8B633F8E1225BB);
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericAny*)V_0, SizeOf_TContainer_tBA215EB9698B59359CC8C9BF2B8B633F8E1225BB);
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_0 = ___0_property;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(12, L_0);
|
|
NullCheck((ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424*)__this);
|
|
bool L_2;
|
|
L_2 = (( bool (*) (ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424*, Il2CppFullySharedGenericAny*, String_t*, RuntimeObject**, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))((ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424*)__this, (Il2CppFullySharedGenericAny*)V_0, L_1, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
V_2 = L_2;
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
NullCheck((RuntimeObject*)L_4);
|
|
Type_t* L_5;
|
|
L_5 = InterfaceFuncInvoker0< Type_t* >::Invoke(1, IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 2)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
bool L_8;
|
|
L_8 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_5, L_7, NULL);
|
|
V_3 = L_8;
|
|
bool L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10;
|
|
NullCheck(L_11);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE7C7EB6D4B1A1BE6355C4EADB334269A56E2116D);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_14;
|
|
L_14 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_13, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TypeUtility_t62F146E51B66BB18FA0E1EFA84A564FF2B8AAD03_il2cpp_TypeInfo_var);
|
|
String_t* L_15;
|
|
L_15 = TypeUtility_GetTypeDisplayName_m45C565A0737008926DD1D4CA6B453A475C8E77FD(L_14, NULL);
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_15);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_12;
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralA3DC60AC845BB1AF7FF83CC77ACB0A5FBDD02044);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_18 = ___0_property;
|
|
NullCheck(L_18);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(12, L_18);
|
|
NullCheck(L_17);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_19);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = L_17;
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral0486DE6855E70A57C021FE842262A0AF7E3D00A0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = L_20;
|
|
RuntimeObject* L_22 = V_1;
|
|
NullCheck((RuntimeObject*)L_22);
|
|
Type_t* L_23;
|
|
L_23 = InterfaceFuncInvoker0< Type_t* >::Invoke(1, IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var, (RuntimeObject*)L_22);
|
|
String_t* L_24;
|
|
L_24 = TypeUtility_GetTypeDisplayName_m45C565A0737008926DD1D4CA6B453A475C8E77FD(L_23, NULL);
|
|
NullCheck(L_21);
|
|
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_24);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = L_21;
|
|
NullCheck(L_25);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral825FA1DD8AB4D9C138AF4C902F17201DA2CD593C);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = L_25;
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_27 = ___0_property;
|
|
NullCheck(L_27);
|
|
Type_t* L_28;
|
|
L_28 = (( Type_t* (*) (Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_27, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_29;
|
|
L_29 = TypeUtility_GetTypeDisplayName_m45C565A0737008926DD1D4CA6B453A475C8E77FD(L_28, NULL);
|
|
NullCheck(L_26);
|
|
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_26;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral77A4D95C5A66881369906720C24690D7097D85DC);
|
|
String_t* L_31;
|
|
L_31 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_30, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)L_31, NULL);
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_32 = ___0_property;
|
|
NullCheck((ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424*)__this);
|
|
(( void (*) (ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424*, Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))((ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424*)__this, L_32, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SecurePooledObject_1_IsOwned_TisIl2CppFullySharedGenericStruct_m7DF2375133FF47BCDBA40B32C0C87867AC49A13B_gshared (SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC* __this, Il2CppFullySharedGenericStruct* ___0_caller, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
void* L_1 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
{
|
|
Il2CppFullySharedGenericStruct* L_0 = ___0_caller;
|
|
int32_t L_2;
|
|
L_2 = ConstrainedFuncInvoker0< int32_t >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 1), il2cpp_rgctx_method(method->rgctx_data, 2), L_1, (void*)L_0);
|
|
int32_t L_3 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2),1));
|
|
return (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SecurePooledObject_1_TryUse_TisIl2CppFullySharedGenericStruct_m6AF421711935B05D94AF96E238FD7181B4242129_gshared (SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC* __this, Il2CppFullySharedGenericStruct* ___0_caller, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0));
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
{
|
|
Il2CppFullySharedGenericStruct* L_0 = ___0_caller;
|
|
bool L_1;
|
|
L_1 = (( bool (*) (SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC*, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (!L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_2 = ___1_value;
|
|
il2cpp_codegen_memcpy(L_3, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2),0)), SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_2, L_3, SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 0), (void**)(Il2CppFullySharedGenericAny*)L_2, (void*)L_3);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_4 = ___1_value;
|
|
il2cpp_codegen_initobj(L_4, SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurePooledObject_1_Use_TisIl2CppFullySharedGenericStruct_m3961BF1F79A0F610ED9BCCFFD4C12944C20D5C13_gshared (SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC* __this, Il2CppFullySharedGenericStruct* ___0_caller, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TCaller_t97B7DBBE2FCE8D00F438BB075D8D63341B3848F9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0));
|
|
const Il2CppFullySharedGenericStruct L_3 = alloca(SizeOf_TCaller_t97B7DBBE2FCE8D00F438BB075D8D63341B3848F9);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
{
|
|
Il2CppFullySharedGenericStruct* L_0 = ___0_caller;
|
|
bool L_1;
|
|
L_1 = (( bool (*) (SecurePooledObject_1_tB41A569B91ED04D56C211BA433285BBCC8C711AC*, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(__this, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericStruct* L_2 = ___0_caller;
|
|
il2cpp_codegen_memcpy(L_3, L_2, SizeOf_TCaller_t97B7DBBE2FCE8D00F438BB075D8D63341B3848F9);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_3);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
il2cpp_codegen_memcpy(L_4, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2),0)), SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_4, SizeOf_T_t22D06EA41DCCB89BAEC447B490D3CF41E81BB3CB);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetValueVisitor_1_VisitPath_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1C736D2157FAD6EDA0E4F87B9F40A7A2E42924E9_gshared (SetValueVisitor_1_t9F8375B4EA106BA863CE89AC21063AB486248660* __this, Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* ___0_property, Il2CppFullySharedGenericAny* ___1_container, Il2CppFullySharedGenericAny* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
const Il2CppFullySharedGenericAny L_14 = L_9;
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
memset(V_0, 0, SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
Il2CppFullySharedGenericAny V_3 = alloca(SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
memset(V_3, 0, SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
bool V_4 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_0 = ___0_property;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker0< bool >::Invoke(13, L_0);
|
|
V_1 = L_1;
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
NullCheck((PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446*)__this);
|
|
PathVisitor_set_ReturnCode_mB5629AE0124C70E479D9C4D44A8E552DA8BA19E0_inline((PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446*)__this, (int32_t)6, NULL);
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_3;
|
|
L_3 = (( ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* (*) (SetValueVisitor_1_t9F8375B4EA106BA863CE89AC21063AB486248660*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4;
|
|
L_4 = (( ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* (*) (SetValueVisitor_1_t9F8375B4EA106BA863CE89AC21063AB486248660*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))(L_4, (((Il2CppFullySharedGenericAny*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),1)))), (Il2CppFullySharedGenericAny*)V_0, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
G_B5_0 = ((int32_t)(L_5));
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
V_2 = (bool)G_B5_0;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_7 = ___0_property;
|
|
Il2CppFullySharedGenericAny* L_8 = ___1_container;
|
|
il2cpp_codegen_memcpy(L_9, V_0, SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
NullCheck(L_7);
|
|
VirtualActionInvoker2Invoker< Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny >::Invoke(15, L_7, L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_9: *(void**)L_9));
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = (( bool (*) (Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))((((Il2CppFullySharedGenericAny*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),1)))), (Il2CppFullySharedGenericAny*)V_3, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_4 = L_10;
|
|
bool L_11 = V_4;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
Property_2_tE9B27417C17E0D8EA0D6A88F71B3C9347F2332A3* L_12 = ___0_property;
|
|
Il2CppFullySharedGenericAny* L_13 = ___1_container;
|
|
il2cpp_codegen_memcpy(L_14, V_3, SizeOf_TValue_tBA72959E8FFA195B0E4B5A28193411112E5B54DA);
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker2Invoker< Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny >::Invoke(15, L_12, L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_14: *(void**)L_14));
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
NullCheck((PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446*)__this);
|
|
PathVisitor_set_ReturnCode_mB5629AE0124C70E479D9C4D44A8E552DA8BA19E0_inline((PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446*)__this, (int32_t)5, NULL);
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_t82FE1DCC76AE9AF3DDDA1472151EEF68858CE976_m092ACFA2BB4B62A430B54BA8D637D0CC40A3A0B0_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_t82FE1DCC76AE9AF3DDDA1472151EEF68858CE976_mF406F4A8EEDB21069BF045968FB3647C0C412AB5(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_t531492AAE2A0CC46F30E1151715140443DF9EBDE_m6ADB6766C2B7C343275E4E6E344CA6707E3FC6A1_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_t531492AAE2A0CC46F30E1151715140443DF9EBDE_m197451F45A6299E4DFC983447A2B1235A2E701F5(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_tFA026EED004440AB13FB96680FBB802EC06A0637_m8FA1841E411FEA61067568E03D8DD442F2922A8F_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_tFA026EED004440AB13FB96680FBB802EC06A0637_mB27A7FF33AAB386045C7BA54F75FB7741AF795F6(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_tAB70A942463BA39DC3970BA6B694CFE5D0D966DD_mD8BDE55BB2B53861ADC26334EBA6CD73C6A160DA_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_tAB70A942463BA39DC3970BA6B694CFE5D0D966DD_m786D0CBF87B2E6BFCA616B6D8D6F4132F58DB29A(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_t6E436619321F6CA11F646C1D0865C3B46ED2499F_mD0907E3C706A2CFA497D8711680A9F3A16F754AF_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_t6E436619321F6CA11F646C1D0865C3B46ED2499F_m368D6F5F31DECCC50791A2FC184DE5274DA0A313(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_t0827DBBBCFCD98D0F017FC5D16C42BF77EF3C7CB_mE4F4557A7AB7128B8084246A084A9165628B8E88_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_t0827DBBBCFCD98D0F017FC5D16C42BF77EF3C7CB_m502E3720DA119E62B3950310E875FCD9F7730638(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_t7D4041DF12531E7E97FBE35B3D9BEE667D648D1C_m8BCAF870D6D60C97223498EEF1A39BA45F5A264A_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_t7D4041DF12531E7E97FBE35B3D9BEE667D648D1C_m87B66E17E92304247CFE304E03375B5ADC85B844(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_t071E29BF77D320738D7C5491E147758B1DF5A972_m4ECD2A9E63FFA8D396CD85543658AA10E565564A_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_t071E29BF77D320738D7C5491E147758B1DF5A972_mAC32C7C3D3791BFA6903ACD4B038F7C44F2E5029(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisForJobStruct_1_tF0D5C70B0548157708D433CE2F9B065804239845_mA44516BD4520EB82C400CB0A5C5A445BC943A5EF_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisForJobStruct_1_tF0D5C70B0548157708D433CE2F9B065804239845_m488BD3FCCAD1B7B5720EB3BA57F1E1547EE28C17(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tB335BE3E222FEFFBA94D48B738E26C60BB280AD4_m511317E8B52B52095748151622BA19836A9A77F4_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tB335BE3E222FEFFBA94D48B738E26C60BB280AD4_mCED504886A1F077D04BE6D54EA15A0C341D74230(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tB1699C1806AA3CB8C55AED0C5D71EF39FD806967_m27005FC379971E70CB3F1C3ADD8FB21F7EE6863C_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tB1699C1806AA3CB8C55AED0C5D71EF39FD806967_m6D5F673469DBCE69EA53D3E0DC781C519D7ED84D(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t0E023EEFF5856D3A06085DB7B9BB8AE0F3A36A92_m163D8B4FD2F1C626BD16A2D0AA7331BF2AA32C92_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t0E023EEFF5856D3A06085DB7B9BB8AE0F3A36A92_m83BEF73EFC16965A7D1288EC81C1F5597C702D16(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t3D164E442296852B02B541BD69992113751E8D09_m559DFFE30AA8E2724FC19E68DAAF1DFCFA61713B_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t3D164E442296852B02B541BD69992113751E8D09_mBFB092F8DBBA717C8D4E6AD6CC012331906FC26B(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t9ED727D56D4E63907D11A47FADD26F3A1778FCA6_m2185A0F82237F7D7A096C03D0751F34795ED7D95_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t9ED727D56D4E63907D11A47FADD26F3A1778FCA6_mC3EC3BAEEFF3DFFB8D871C1C68C50EC16D8BA669(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t0E1EA68CC733192D5C0DC9BE19DEE329F74C074D_m455AF010CF440557AEEF7F13343451C51511EA04_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t0E1EA68CC733192D5C0DC9BE19DEE329F74C074D_m988F1957834AD1F8063D2B90A11D3C99A5D9DF1B(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t00917949B940AC19091B997DCFD370DFECE38FE9_m5CA0A528A6A534DAB3E7964C4747EBC30F4870F0_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t00917949B940AC19091B997DCFD370DFECE38FE9_m3C646029675CC25C9D06BE2B7C4B34752E8A9255(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t6EB9A6D4E1ECE62B02A7E3ACBEB37B6B25B89E7F_m3AFDF61BE082B95FE71AD4AABCC668C079650D93_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t6EB9A6D4E1ECE62B02A7E3ACBEB37B6B25B89E7F_m1327474A75AFE89176F5E070BCCFEC18E2E9E363(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t890D9223E4EB910E7788D46FA6ABDEDE1352182A_m6F3D689D3BC0E2739BFD0B6B36B7F92D51221DE4_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t890D9223E4EB910E7788D46FA6ABDEDE1352182A_m96514D159AD286C785D797E437C10095BE5D8E5C(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t9C24DB4B7EE6A1CD756F9C6708F31C9AEE702F66_m7113953FE21E9C81819E2F96BA1154DB8C1F564C_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t9C24DB4B7EE6A1CD756F9C6708F31C9AEE702F66_m32735A0D7E89B780F844FA90D4A39893F6D1ACBD(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t5B7D8154095323B2AF129E93B24BC93BA2F1B833_mCA2A7119E1F3226925A31368AE04B9AF93B1123F_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t5B7D8154095323B2AF129E93B24BC93BA2F1B833_mDDE7E31F4DA7BB727499E6D568971B4CD3415B6D(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t8B199FB4EF242DFFFAD1DCD519F636EAD8F17289_m292042141A2835A610EE26EF8CBDD6E3F18D455F_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t8B199FB4EF242DFFFAD1DCD519F636EAD8F17289_mD6AAE56D82AF54522E2E58548C6EF765B39979C6(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t424D70E5F52FE05C9A6F5A74306B282E536A5950_m76F84C5AD879E2B1BF144BC8575B786BD9B23DF9_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t424D70E5F52FE05C9A6F5A74306B282E536A5950_m3371C825174AF1CC12C4CF523B770EA787B74D24(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t4C0B7BF9853E55BE375E3304E31593FEFCD76E16_m823D6B3B7592B4B6DBA8078D85244EA76B83FD02_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t4C0B7BF9853E55BE375E3304E31593FEFCD76E16_m452BCDE130A057AC5D39927415370370E5F354A8(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tA47F731959268B5473E0B848F4BB1867DC24BA49_mD866327CAB739ACD8D173D6B9F792A2305DBF10E_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tA47F731959268B5473E0B848F4BB1867DC24BA49_m0ADB08E94B58501A9EEDBBE3CCA26FA2F2F6E01C(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tBC50FEEFF2AB4106501ECCC5C93C49514F3A95E9_m8DF39E39E0500C7566E0A1D2E434C0C5949732C7_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tBC50FEEFF2AB4106501ECCC5C93C49514F3A95E9_m71700B6DF639242958DBBAF0D70B708FBCA8836F(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t8945D0C1062873D441B458483BA77CECF20CF088_m802239E04DF4369BA7100AB928E469E83A6B5E5D_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t8945D0C1062873D441B458483BA77CECF20CF088_m099D22518DABE349D2EBC1348091BB7AB19600A6(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t0FA796943B0D2D4AF0282F204C8777E2571688D7_m8C3155200C6A4F902B61822C157678392CC0D7DA_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t0FA796943B0D2D4AF0282F204C8777E2571688D7_m1ACD092F5C667A34D4D34B762F7BE433DDB8E862(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tB0658A7306F669774009ADA5DB6E265BA665FD31_m1F9ABE276F1731694AB741217B4FD710D286C8FD_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tB0658A7306F669774009ADA5DB6E265BA665FD31_mEE5EB1CDD0123FC328BC532FD3C38DE0BA22F956(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tCF007F6FD9F2D7FE1B2F0674ED2A883398ECD985_m07B17FBA7DE8241D06D9B40B550AC11D62BF2481_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tCF007F6FD9F2D7FE1B2F0674ED2A883398ECD985_m41F6B8256DA51907C52548DD3610E514BC1CAC3F(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t7DA9941879B20347789683661078D0F3B528FA92_m01EFED6B6764D334970A76EAB32105EB0104C932_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t7DA9941879B20347789683661078D0F3B528FA92_mEE7AA46A6B6D93672B53EED9FE5F5A72E6BE93D6(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t991D9919F0467821B9AA3F6C283A7962DD7A5746_m40C2643C8BD73F9229E8A1A957232E93860A93B2_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t991D9919F0467821B9AA3F6C283A7962DD7A5746_m90F7668BA98B6909311FB180037DE1A5F682F582(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t0750E8E7DE99CDD37B3DBB824068FA88E9F6E4C1_m85F411FE8EE6FC4A634746CA1EB765CA031C2D20_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t0750E8E7DE99CDD37B3DBB824068FA88E9F6E4C1_mCE67FB6A75ADEBFF5E71F4655846A3C5F7090CDA(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t380B6860108F97119E394D7D76E7A978EA6B5E0D_m5A0C600129FEE0EA94FBFBE07016777E0FFBB3F4_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t380B6860108F97119E394D7D76E7A978EA6B5E0D_m2E8EDEC8017939B4524DD7D00F9210996533A958(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tA216BB13EE9189155009913CD6BCE46B6667EC2E_mF8F6D471247942980E56A34B42D9D20CD62C78FD_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tA216BB13EE9189155009913CD6BCE46B6667EC2E_m38D4B9F331E31CA49067312E853CE17C5D7140E6(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t4893E7C416E7915C2BE94817517EC2CAEEA9038D_mFC62B5F2224F02C38C40DA19E7ADA209BF8A7EB8_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t4893E7C416E7915C2BE94817517EC2CAEEA9038D_mA0A18913D2D0AB9A96A68D300970949DFD57D129(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t50BE75CA652DEB31071FA579130333FA79653079_m662432A73EF5B5AD5F20C83486589C06FEBD693B_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t50BE75CA652DEB31071FA579130333FA79653079_m80A3ED26E7050BFD31FDDAAE2E8414BB7AAE1860(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t9EB5C9ED29911125326893A8E77EE2D636BCD32F_m62532D28EBBCC136E31D20872E4C39FC9635CC5A_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t9EB5C9ED29911125326893A8E77EE2D636BCD32F_mE66202E3C3E907DEC5EDB2C0A8715F114B4AE6EF(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tEE5084685EBD9FAF27CCA92C7DEFED901EFD9518_m92E408356D74B9A24341B74E706ED5BAFEF03245_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tEE5084685EBD9FAF27CCA92C7DEFED901EFD9518_m57CE2E44B682A8897C79E6219D28332A4FE117FE(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tE9B102673F655EDBF297325B9BAC26D3EB778B06_m1C4AD3ED1D30C2A25B77911351C486543CE86CC0_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tE9B102673F655EDBF297325B9BAC26D3EB778B06_mDF93F1372A78E3147EE964B10FDD47C11A560BAD(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_tB734C09BFD6922AB895D644BDDE01AC7A8510C72_m387AB26299724BECE2811EE84E1F4EF73E49C9BB_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_tB734C09BFD6922AB895D644BDDE01AC7A8510C72_m70C39B892FC51A321297F6E0BC020F011F5D5DC7(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t26D49AAB3F1B079B680DAE4C2A28F2CAE89DDA72_m792D3D563601A474B309AF5D97C6084A46BB0531_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t26D49AAB3F1B079B680DAE4C2A28F2CAE89DDA72_m20CBFF16570F598FA2A8824BF4784C09E62FCA76(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t7FF8E576D3C8BC4DD24F19FD6E0906888CAC2717_m49545ADF9B646858706CDF3E92CCDCD648DEC48B_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t7FF8E576D3C8BC4DD24F19FD6E0906888CAC2717_m48C2320147024B006FF2AB2AE1912119619621AB(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t256A7C289152588D86B81F532D204650E6E00EB3_mB024B197D3F077AE026863E206B7019BCFDF6C47_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t256A7C289152588D86B81F532D204650E6E00EB3_mFCA610F77730580DC1EC779587CF0AF8FFE68852(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisJobStruct_1_t1AD15154F5FCF717FDB6B0B280C49766B4D14137_m011B0D7E53E803BFF5E07A1567DAB1EDCCE21428_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisJobStruct_1_t1AD15154F5FCF717FDB6B0B280C49766B4D14137_m121BAD3952F93497FCBC7390F47A4F41D95E2942(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t4A3199F0D7FD487CFB500FD748B5B2003C22EE55_m343F749F5AFB976572A57520D11603B1A5FF7C9B_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A3199F0D7FD487CFB500FD748B5B2003C22EE55_m5DA1232DB7123C86B109DF95CE22F7F5E4E37E4D(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t61B5A4A610410E1B5E86A3665C45C3803C7592EE_m15C45A1618A4944B707B9BA646B708AE186BB38C_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t61B5A4A610410E1B5E86A3665C45C3803C7592EE_m8AB400511890A46364109096F8368C4CA63167EB(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_tE984E806290C7040E2250FBF1CD156D4A87ABBE3_mFF3A1A371FC35B054574E6CDD9DCA3C0A2801A93_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE984E806290C7040E2250FBF1CD156D4A87ABBE3_m56DBA8A70CE0395345DB4653A6D256512E190674(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_tB4C2158B416D17DDD248CD1F2E0DFEF8327BC4D6_m93387BCD23F3822303FD54DA64BD2F7FADACE310_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tB4C2158B416D17DDD248CD1F2E0DFEF8327BC4D6_m4561829ED91A55C7CFBD45460A6F4F79FCA7D82E(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t27C350DE7B8F627BFCE779F296EE44797353D1D0_m7CD91AA96A93D85F7DFE7CF4C4657B07FC50E771_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t27C350DE7B8F627BFCE779F296EE44797353D1D0_m193CCE88074CAFF2BBC5CC7767436D45280E3187(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t38084700F299A46ADC6D51D6FD7EB3D0F9962EDC_m22B1B31816B15F610A01D2F9A9291108998F2717_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t38084700F299A46ADC6D51D6FD7EB3D0F9962EDC_m39892862746C23F37D72D90975D5AF814FAE566E(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t2697899555706F25E6AE86F2432578842EC621D1_m96577206FD2F4E9FBC22D108FA694AF7EFF1A27B_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t2697899555706F25E6AE86F2432578842EC621D1_m81120983BCB0CC307EBDE9A9161E31149D575AD4(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_tACC0AEB51A3D8EF191C11C9C8B6358DFC00DACCC_m3223C60703958675F163962D2A1756BD7DBEBBAF_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tACC0AEB51A3D8EF191C11C9C8B6358DFC00DACCC_m812FE05A1D9B245688F790744CF276DB21D0AA5C(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t961692D3952C1F6D4F30B6BAC07E9CD186C66F31_m433649099BC1309B0FEB95F0CE869B014E887448_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t961692D3952C1F6D4F30B6BAC07E9CD186C66F31_m9B85B3F2F624D2A830B87CF38F3AF795C2DF3DF7(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t9E9CB87132A33EEF9E532A3A703C0D285ADB71E2_m1BEA17784835D895D54846B76355CCB4E42A4727_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E9CB87132A33EEF9E532A3A703C0D285ADB71E2_m42A47534A1D14217F01678F9E49A69A9978FDC93(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t758AE7966A2E22F06595DCBFF5CDD219207B71E2_mF100C07F14B9EFCFC9DD468A37AC5CF68D1D3251_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t758AE7966A2E22F06595DCBFF5CDD219207B71E2_m0074981E038B03BE3BD7A3722F34BBA7B030CA70(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t509445D2125F0871131DA13B592FA4A9657F5AA3_mEE64419311B13E1476D33587682020FC3F92C395_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t509445D2125F0871131DA13B592FA4A9657F5AA3_m76EA61813D784CD25276DF68FD2116ED3C6930D6(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t7A9FF3D868A2F2AD69ED514B7607FD35D7819143_m921F8D87ACE8DE78E55FFD1314290C86B8FFE3E5_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7A9FF3D868A2F2AD69ED514B7607FD35D7819143_m3BA4B2B37F1F68CAE2E1E8B297BAF68F76E25038(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_tE3940B0A77A7F084149FB706BF7F1382C2CC6894_mDA5373A7BC0FFD360366CD7C05533024B8BD3CFF_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_tE3940B0A77A7F084149FB706BF7F1382C2CC6894_m3A569E9347079D503672607881ECA776C2B198E8(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t81FACA0319AA796083C8ECE95C995DB3542D8A2E_mACBBDC1877B64FF76D97306719273F6A427D0EF3_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t81FACA0319AA796083C8ECE95C995DB3542D8A2E_m63FE0B207F291F915D0805D84B8EA4CC93F6388F(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t4A21E4E3B137372075645DE6FE4A22ADC4598532_mC15C35B49444E864948CCFD6523EECF5DCCD17D0_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t4A21E4E3B137372075645DE6FE4A22ADC4598532_m33C2BFC6B23318AB472027B0E2DFA7EDD03A3A84(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t9E5F4A6DEFCAEEFDA5D7D16F86D49AF6F18DFBA0_mA4A23EE6299BD9776C2E0AA91E79CDF9DF5DD733_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t9E5F4A6DEFCAEEFDA5D7D16F86D49AF6F18DFBA0_mC868D7951E7B13E58A1845BA8CDA43F54206ECD9(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t194E9263F9E278076331CFC3296E74ABAA89D391_m8F0A8535D17A235493ABF341520F40613C401D6D_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t194E9263F9E278076331CFC3296E74ABAA89D391_mF521C55221FF0D0F2200C5A5881E77D03F6F1742(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t7CE30E4F7E5070AEDF18707A56561EF7C715ADD9_m16A19AFC64FA11AA6BF20487B806A80469769BAB_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t7CE30E4F7E5070AEDF18707A56561EF7C715ADD9_mBA8A54E3552535D1AF17EA90471BBD5D90A1EBA1(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t64F389F7CF0153EAF6AB628929F2873F0FD9A0A3_m2BD00F13BD144FB161A86311108B07D1584A7593_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t64F389F7CF0153EAF6AB628929F2873F0FD9A0A3_m5CB40651FAD4BD498147C7FD32D719ED2FBB9593(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisParallelForJobStruct_1_t5FAFA25EADD61355075A981C5FDE8B3024C58F34_m0B75CB54C47C76B0FD9DA467ECF542048C743552_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisParallelForJobStruct_1_t5FAFA25EADD61355075A981C5FDE8B3024C58F34_m841756BC0676293AB7A0012F688C3DCE69D1693A(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 SharedStatic_1_GetOrCreate_TisTransformParallelForLoopStruct_1_tB280C75DF37D8BB52EB670F970BDBDA72C40572E_mDC7F02DA65727F0FE3A60544A2BFF1A7C61C151F_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = BurstRuntime_GetHashCode64_TisTransformParallelForLoopStruct_1_tB280C75DF37D8BB52EB670F970BDBDA72C40572E_m06EC66901E593B74D8BA09605435B77C5E846EEF(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_inline(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08 SharedStatic_1_GetOrCreate_TisIl2CppFullySharedGenericAny_mF16A75212123E5753652A70CB766A3FC03C89071_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
int64_t L_0;
|
|
L_0 = (( int64_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
uint32_t L_2 = ___0_alignment;
|
|
void* L_3;
|
|
L_3 = SharedStatic_GetOrCreateSharedStaticInternal_mA2EDCD03A23E5C9D8AC312E73F81232E126DA304(L_0, ((int64_t)0), (uint32_t)L_1, L_2, NULL);
|
|
SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
SharedStatic_1__ctor_m467F9A64986F442AA4853C5C314D0A54D887CDDC_inline((&L_4), L_3, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t0BC9036A453E1965D76D9B3BE6C780F42C402BBD_m78A9E2A68485DBF74078B5D41F05F0813B6AAC38_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t0BC9036A453E1965D76D9B3BE6C780F42C402BBD_m6A163700BA4F18E3DF651E0D197DA2D234B9DD7C_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_tE832AA34CAE2057E4F9E9B490B1B284D43B961AB_mB9CD344331299922C898823480CCCDBBFAA6A1FA_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE832AA34CAE2057E4F9E9B490B1B284D43B961AB_m9B60F0D4B41D3F3A027331725767A4FEBEC97D8B_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t97F62BD9B81457B3C951E4731A189682A75B0618_mBF95B35F4ED833C5983DDB25B3F9DFFC6EA49B39_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t97F62BD9B81457B3C951E4731A189682A75B0618_m452E81BDA5B4D572CBC1C0B2FA4D5609D578A502_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t4B219CBD450518068824DE0C112518BC2384C721_m6D421864A9302F825215EABB4453B4656FC625A8_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t4B219CBD450518068824DE0C112518BC2384C721_mE16070B428834E590A710A12F880FFDB3DE9F24F_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t2D0A24921EF91E7ECCFCEC7F881A27622B8F2A70_mD2A5BC283BF7046F2711B57C0979679857EEAC60_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t2D0A24921EF91E7ECCFCEC7F881A27622B8F2A70_mB967F2697C91AB840A9202023B02D8465000F449_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t58F74E58E137EF1DE356A985ABA4748586462B89_mDE11664521482FA0B89B78B83214732F345422B1_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t58F74E58E137EF1DE356A985ABA4748586462B89_mF8D2B2184797A3249B22C20E9CE3037E58760AB5_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t69439B0894C33F9B27AD85917AD7E0DAE9016112_mE557FC2711D12218B099BFA13E14D2203F846D1F_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t69439B0894C33F9B27AD85917AD7E0DAE9016112_mAF531E97828F6EA873611A4571BDDD25F990D368_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t655382769C4282682A84F553F5FF0B1AB97370EA_mE87ED6CDED873880AA95AE954A6E1746B98F1C58_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t655382769C4282682A84F553F5FF0B1AB97370EA_m9ACB4FE7846789D8E3F49F5DED3B35839E51B0E6_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t3E06B0B953E3304DB73E71071FC7DB2646022C2C_m4A31D534AE4628E633AEE1DAA46CE9D055CB4C96_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t3E06B0B953E3304DB73E71071FC7DB2646022C2C_mAB129228331E6149CB76835022FC9F8E60D2B347_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t18FA6B9845CACA8547C4FAEAC0C5FF7C6E487DAF_m2B717285EC52E54833758C5E94F4596F976C3676_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t18FA6B9845CACA8547C4FAEAC0C5FF7C6E487DAF_m5764084E845D08310A8F59782C5314965084EFE7_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t1CDF7FDFE988A5218A7D870586CD04293F25682E_m2E02634C768AA8D887C9581192DC96E8846EEA92_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t1CDF7FDFE988A5218A7D870586CD04293F25682E_mB3F1D65A7AF0C35CE47E0AAD490420B640CF00C1_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_tE8D83243564C34800FF950A808D4733A2ACB852D_mD2E227855D4FC55F6C15678708AC1E9CBD4F72F7_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE8D83243564C34800FF950A808D4733A2ACB852D_mB6A684433C5061494098A9D16C1215872FC44AB3_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreate_TisJobParallelForBatchProducer_1_t93B90034EC7615CA68546F4CF38E2C812CB52105_m7CCA9AC5F08B4CF755DC4073ED96E791FC951B5D_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t93B90034EC7615CA68546F4CF38E2C812CB52105_m0460A39EC62EA75F5D6D35DE720B842933C70F79_inline(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_2;
|
|
L_2 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C SharedStatic_1_GetOrCreate_TisIl2CppFullySharedGenericAny_m81680C541BEC597AC94046D6444ED6041C195C4D_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = (( int64_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C L_2;
|
|
L_2 = (( SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C (*) (uint32_t, int64_t, int64_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3)))(L_0, L_1, ((int64_t)0), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C SharedStatic_1_GetOrCreate_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m62EBD46343F75A03CD42B5E372C17F7C38BC6B11_gshared (uint32_t ___0_alignment, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
uint32_t L_0 = ___0_alignment;
|
|
int64_t L_1;
|
|
L_1 = (( int64_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int64_t L_2;
|
|
L_2 = (( int64_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C L_3;
|
|
L_3 = (( SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C (*) (uint32_t, int64_t, int64_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3)))(L_0, L_1, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C SharedStatic_1_GetOrCreatePartiallyUnsafeWithHashCode_TisIl2CppFullySharedGenericAny_m24F755B0C049B8184818666FC2B637100E3C8F74_gshared (uint32_t ___0_alignment, int64_t ___1_hashCode, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t G_B2_0 = 0;
|
|
int64_t G_B2_1 = 0;
|
|
int64_t G_B2_2 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int64_t G_B1_1 = 0;
|
|
int64_t G_B1_2 = 0;
|
|
uint32_t G_B3_0 = 0;
|
|
int32_t G_B3_1 = 0;
|
|
int64_t G_B3_2 = 0;
|
|
int64_t G_B3_3 = 0;
|
|
{
|
|
int64_t L_0 = ___1_hashCode;
|
|
int64_t L_1;
|
|
L_1 = (( int64_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uint32_t L_3 = ___0_alignment;
|
|
if (!L_3)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_1;
|
|
G_B2_2 = L_0;
|
|
goto IL_0011;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_1;
|
|
G_B1_2 = L_0;
|
|
}
|
|
{
|
|
uint32_t L_4 = ___0_alignment;
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B1_0;
|
|
G_B3_2 = G_B1_1;
|
|
G_B3_3 = G_B1_2;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
G_B3_0 = ((uint32_t)(((int32_t)16)));
|
|
G_B3_1 = G_B2_0;
|
|
G_B3_2 = G_B2_1;
|
|
G_B3_3 = G_B2_2;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
void* L_5;
|
|
L_5 = SharedStatic_GetOrCreateSharedStaticInternal_m9850783202F2E2DCA43597CD97C129C683D6FEBD(G_B3_3, G_B3_2, (uint32_t)G_B3_1, G_B3_0, NULL);
|
|
SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_inline((&L_6), L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C SharedStatic_1_GetOrCreatePartiallyUnsafeWithSubHashCode_TisIl2CppFullySharedGenericAny_mC9E6A2771C5D910CB4871C588BAA15C902291985_gshared (uint32_t ___0_alignment, int64_t ___1_subHashCode, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t G_B2_0 = 0;
|
|
int64_t G_B2_1 = 0;
|
|
int64_t G_B2_2 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int64_t G_B1_1 = 0;
|
|
int64_t G_B1_2 = 0;
|
|
uint32_t G_B3_0 = 0;
|
|
int32_t G_B3_1 = 0;
|
|
int64_t G_B3_2 = 0;
|
|
int64_t G_B3_3 = 0;
|
|
{
|
|
int64_t L_0;
|
|
L_0 = (( int64_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
int64_t L_1 = ___1_subHashCode;
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
uint32_t L_3 = ___0_alignment;
|
|
if (!L_3)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_1;
|
|
G_B2_2 = L_0;
|
|
goto IL_0011;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_1;
|
|
G_B1_2 = L_0;
|
|
}
|
|
{
|
|
uint32_t L_4 = ___0_alignment;
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B1_0;
|
|
G_B3_2 = G_B1_1;
|
|
G_B3_3 = G_B1_2;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
G_B3_0 = ((uint32_t)(((int32_t)16)));
|
|
G_B3_1 = G_B2_0;
|
|
G_B3_2 = G_B2_1;
|
|
G_B3_3 = G_B2_2;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
void* L_5;
|
|
L_5 = SharedStatic_GetOrCreateSharedStaticInternal_m9850783202F2E2DCA43597CD97C129C683D6FEBD(G_B3_3, G_B3_2, (uint32_t)G_B3_1, G_B3_0, NULL);
|
|
SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_inline((&L_6), L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleFSM_1_Register_TisRuntimeObject_mBEF9D30EE15F609882AF2E63E9234C39601B198C_gshared (SimpleFSM_1_t7189BE3EE4E867D6B5132034F7212E9B016B94AC* __this, uint8_t ___0_stateId, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
{
|
|
uint8_t L_0 = ___0_stateId;
|
|
uint8_t L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2), &L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_3;
|
|
L_3 = Convert_ToInt32_m9FEA65DB96264479B5268014F10754787382D297(L_2, NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63887B421AFDD5DDA04AD3739FDBAC5D1461BE41)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* L_7 = __this->____states;
|
|
NullCheck(L_7);
|
|
if ((((int32_t)L_6) < ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
SimpleFSM_1_Resize_m05B689A45EE8651368C8D9A97B6A9D48A59E7204(__this, ((int32_t)il2cpp_codegen_add(L_8, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* L_9 = __this->____states;
|
|
int32_t L_10 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RuntimeObject* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
V_1 = L_12;
|
|
RuntimeObject* L_13 = V_1;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = InterfaceFuncInvoker0< bool >::Invoke(2, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_14);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
InterfaceActionInvoker0::Invoke(8, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_16);
|
|
int32_t L_17 = __this->____registeredCount;
|
|
__this->____registeredCount = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
V_2 = (RuntimeObject*)NULL;
|
|
RuntimeObject* L_18;
|
|
L_18 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_2 = (RuntimeObject*)L_18;
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* L_19 = __this->____states;
|
|
int32_t L_20 = V_0;
|
|
RuntimeObject* L_21 = V_2;
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_21);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (RuntimeObject*)L_21);
|
|
RuntimeObject* L_22 = V_2;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = InterfaceFuncInvoker0< bool >::Invoke(2, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_22);
|
|
if (L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_2;
|
|
NullCheck(L_24);
|
|
InterfaceActionInvoker1< RuntimeObject* >::Invoke(1, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_24, (RuntimeObject*)__this);
|
|
RuntimeObject* L_25 = V_2;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker0::Invoke(4, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_25);
|
|
RuntimeObject* L_26 = V_2;
|
|
NullCheck(L_26);
|
|
InterfaceActionInvoker1< bool >::Invoke(3, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_26, (bool)1);
|
|
int32_t L_27 = __this->____registeredCount;
|
|
__this->____registeredCount = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleFSM_1_Register_TisRuntimeObject_m7E7D1AACED192C94CC63265A32E33EACC3141B5F_gshared (SimpleFSM_1_t9D1312E58D442B51EC901F9FCB7DC3045899599B* __this, Il2CppFullySharedGenericStruct ___0_stateId, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TState_tE9ECD36F991B72EAE514F7B5BAC31B6678B0E786 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericStruct L_0 = alloca(SizeOf_TState_tE9ECD36F991B72EAE514F7B5BAC31B6678B0E786);
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, ___0_stateId, SizeOf_TState_tE9ECD36F991B72EAE514F7B5BAC31B6678B0E786);
|
|
RuntimeObject* L_1 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2), L_0);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Convert_ToInt32_m9FEA65DB96264479B5268014F10754787382D297(L_1, NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63887B421AFDD5DDA04AD3739FDBAC5D1461BE41)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* L_6 = *(IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),0));
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
(( void (*) (SimpleFSM_1_t9D1312E58D442B51EC901F9FCB7DC3045899599B*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 7)))(__this, ((int32_t)il2cpp_codegen_add(L_7, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* L_8 = *(IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),0));
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_1 = L_11;
|
|
RuntimeObject* L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = InterfaceFuncInvoker0< bool >::Invoke(2, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_13);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = V_1;
|
|
NullCheck(L_15);
|
|
InterfaceActionInvoker0::Invoke(8, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_15);
|
|
int32_t L_16 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),3));
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),3), ((int32_t)il2cpp_codegen_subtract(L_16, 1)));
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
V_2 = (RuntimeObject*)NULL;
|
|
RuntimeObject* L_17;
|
|
L_17 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_2 = (RuntimeObject*)L_17;
|
|
IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4* L_18 = *(IStateU5BU5D_t16DE0A74F5F65F55AC2B2BC07C1C0684599D69C4**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),0));
|
|
int32_t L_19 = V_0;
|
|
RuntimeObject* L_20 = V_2;
|
|
NullCheck(L_18);
|
|
ArrayElementTypeCheck (L_18, L_20);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject*)L_20);
|
|
RuntimeObject* L_21 = V_2;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(2, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_23 = V_2;
|
|
NullCheck(L_23);
|
|
InterfaceActionInvoker1< RuntimeObject* >::Invoke(1, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_23, (RuntimeObject*)__this);
|
|
RuntimeObject* L_24 = V_2;
|
|
NullCheck(L_24);
|
|
InterfaceActionInvoker0::Invoke(4, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_24);
|
|
RuntimeObject* L_25 = V_2;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker1< bool >::Invoke(3, IState_tD09E6A3E4D8D2ADE5AE7CBCF13DD3237AEFA2E26_il2cpp_TypeInfo_var, L_25, (bool)1);
|
|
int32_t L_26 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),3));
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0),3), ((int32_t)il2cpp_codegen_add(L_26, 1)));
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedDictionaryFormatter_2_Serialize_TisRuntimeObject_m560EDA1352798B88D1DB170ED2A52DB7FFB13D55_gshared (SortedDictionaryFormatter_2_t4D5E96CEF7E8E5872D42687CBE04D187D247B596* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 14));
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_14 = alloca(SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B);
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_18 = alloca(SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B);
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 V_3 = alloca(SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B);
|
|
memset(V_3, 0, SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B);
|
|
{
|
|
SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232** L_0 = ___1_value;
|
|
SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232* L_1 = *((SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
RuntimeObject* L_6;
|
|
L_6 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_5, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_1 = L_6;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_7 = ___0_writer;
|
|
SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232** L_8 = ___1_value;
|
|
SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232* L_9 = *((SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232**)L_8);
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)))(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_7, L_10, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232** L_11 = ___1_value;
|
|
SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232* L_12 = *((SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232**)L_11);
|
|
NullCheck(L_12);
|
|
Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4 L_13;
|
|
L_13 = (( Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4 (*) (SortedDictionary_2_tB900DE4248E687595E974E867FD2400C5AC5F232*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
V_2 = L_13;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004c:
|
|
{
|
|
Enumerator_Dispose_m7C0F723CD15AC0F1B5F6D2937235CFD7306329E5((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0041_1;
|
|
}
|
|
|
|
IL_0030_1:
|
|
{
|
|
InvokerActionInvoker1< KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)), il2cpp_rgctx_method(method->klass->rgctx_data, 12), (&V_2), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)L_14);
|
|
il2cpp_codegen_memcpy(V_3, L_14, SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B);
|
|
RuntimeObject* L_15 = V_0;
|
|
RuntimeObject* L_16 = V_1;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_17 = ___0_writer;
|
|
il2cpp_codegen_memcpy(L_18, V_3, SizeOf_KeyValuePair_2_tE9DE53C688D336D4FFB470ADBCA44725655C161B);
|
|
InvokerActionInvoker4< RuntimeObject*, RuntimeObject*, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), NULL, L_15, L_16, L_17, L_18);
|
|
}
|
|
|
|
IL_0041_1:
|
|
{
|
|
bool L_19;
|
|
L_19 = (( bool (*) (Enumerator_t6C2EA3C5E2783C9D331AFD95E98BB5FC8A28C5C4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
|
|
if (L_19)
|
|
{
|
|
goto IL_0030_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListFormatter_2_Serialize_TisRuntimeObject_m286346AD87E400077F9A1B13CFE081634FB9A1B4_gshared (SortedListFormatter_2_tE30F1FD2DB6BD5009D174F8BCB3283230BBA6767* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 13));
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_17 = alloca(SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA);
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_21 = alloca(SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA);
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 V_3 = alloca(SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA);
|
|
memset(V_3, 0, SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA);
|
|
{
|
|
SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075** L_0 = ___1_value;
|
|
SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075* L_1 = *((SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
RuntimeObject* L_6;
|
|
L_6 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_5, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_1 = L_6;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_7 = ___0_writer;
|
|
SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075** L_8 = ___1_value;
|
|
SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075* L_9 = *((SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075**)L_8);
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = (( int32_t (*) (SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)))(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_7, L_10, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075** L_11 = ___1_value;
|
|
SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075* L_12 = *((SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075**)L_11);
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_13;
|
|
L_13 = (( RuntimeObject* (*) (SortedList_2_tB366C73C1DC35DFDB021DECF0F314B4CC58F6075*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
V_2 = L_13;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004a:
|
|
{
|
|
{
|
|
RuntimeObject* L_14 = V_2;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = V_2;
|
|
NullCheck((RuntimeObject*)L_15);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0040_1;
|
|
}
|
|
|
|
IL_0030_1:
|
|
{
|
|
RuntimeObject* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
InterfaceActionInvoker1Invoker< KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 11), L_16, (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)L_17);
|
|
il2cpp_codegen_memcpy(V_3, L_17, SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA);
|
|
RuntimeObject* L_18 = V_0;
|
|
RuntimeObject* L_19 = V_1;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_20 = ___0_writer;
|
|
il2cpp_codegen_memcpy(L_21, V_3, SizeOf_KeyValuePair_2_t8B214DC5546FED9251DADBCE22E33D3F49776BBA);
|
|
InvokerActionInvoker4< RuntimeObject*, RuntimeObject*, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), NULL, L_18, L_19, L_20, L_21);
|
|
}
|
|
|
|
IL_0040_1:
|
|
{
|
|
RuntimeObject* L_22 = V_2;
|
|
NullCheck((RuntimeObject*)L_22);
|
|
bool L_23;
|
|
L_23 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_22);
|
|
if (L_23)
|
|
{
|
|
goto IL_0030_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedSetFormatter_1_Serialize_TisRuntimeObject_m60A926597531167D46323BB9618AA25A089BD771_gshared (SortedSetFormatter_1_t42D9B014E153433C50528B7EBB0CEEB10F1BBFD1* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_t282758F47645850A4904379B3574CF3BE2290E84 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 13));
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T_t282758F47645850A4904379B3574CF3BE2290E84);
|
|
RuntimeObject* V_0 = NULL;
|
|
Enumerator_t71F09436B846CE1804083C9B36997E4573540582 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_t282758F47645850A4904379B3574CF3BE2290E84);
|
|
memset(V_2, 0, SizeOf_T_t282758F47645850A4904379B3574CF3BE2290E84);
|
|
{
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D** L_0 = ___1_value;
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D* L_1 = *((SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D** L_6 = ___1_value;
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D* L_7 = *((SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D**)L_6);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D** L_9 = ___1_value;
|
|
SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D* L_10 = *((SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D**)L_9);
|
|
NullCheck(L_10);
|
|
Enumerator_t71F09436B846CE1804083C9B36997E4573540582 L_11;
|
|
L_11 = (( Enumerator_t71F09436B846CE1804083C9B36997E4573540582 (*) (SortedSet_1_t5F3E6B262FACA2263604FC55791E6B85C1E0D52D*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)))(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
V_1 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0045:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_codegen_method_get_declaring_type(il2cpp_rgctx_method(method->klass->rgctx_data, 16)));
|
|
Enumerator_Dispose_m1B66D14092A623BE5F8A22939E7A7A57B47232BE((&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_003a_1;
|
|
}
|
|
|
|
IL_0029_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)), il2cpp_rgctx_method(method->klass->rgctx_data, 11), (&V_1), (Il2CppFullySharedGenericAny*)L_12);
|
|
il2cpp_codegen_memcpy(V_2, L_12, SizeOf_T_t282758F47645850A4904379B3574CF3BE2290E84);
|
|
RuntimeObject* L_13 = V_0;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_14 = ___0_writer;
|
|
NullCheck(L_13);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_13, L_14, (Il2CppFullySharedGenericAny*)V_2);
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
bool L_15;
|
|
L_15 = (( bool (*) (Enumerator_t71F09436B846CE1804083C9B36997E4573540582*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))((&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
|
|
if (L_15)
|
|
{
|
|
goto IL_0029_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackFormatter_1_Serialize_TisRuntimeObject_mE0CC7C101C6FFB9A3989CE88C92C09140EE50306_gshared (StackFormatter_1_tF1C7B7935C317D571FB0E40F786A98200BC9B399* __this, MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* ___0_writer, Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T_tE6ABFB5F8C5A49EF12C54304A7A8ADDCC20B6903 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_16 = alloca(SizeOf_T_tE6ABFB5F8C5A49EF12C54304A7A8ADDCC20B6903);
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_tE6ABFB5F8C5A49EF12C54304A7A8ADDCC20B6903);
|
|
memset(V_2, 0, SizeOf_T_tE6ABFB5F8C5A49EF12C54304A7A8ADDCC20B6903);
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A** L_0 = ___1_value;
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_1 = *((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A**)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_2 = ___0_writer;
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_3 = ___0_writer;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_4;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_5 = ___0_writer;
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A** L_6 = ___1_value;
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_7 = *((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A**)L_6);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A** L_9 = ___1_value;
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_10 = *((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A**)L_9);
|
|
RuntimeObject* L_11;
|
|
L_11 = (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((RuntimeObject*)L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_12;
|
|
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_11);
|
|
V_1 = L_12;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0048:
|
|
{
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck((RuntimeObject*)L_14);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_003e_1;
|
|
}
|
|
|
|
IL_002e_1:
|
|
{
|
|
RuntimeObject* L_15 = V_1;
|
|
NullCheck(L_15);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_15, (Il2CppFullySharedGenericAny*)L_16);
|
|
il2cpp_codegen_memcpy(V_2, L_16, SizeOf_T_tE6ABFB5F8C5A49EF12C54304A7A8ADDCC20B6903);
|
|
RuntimeObject* L_17 = V_0;
|
|
MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* L_18 = ___0_writer;
|
|
NullCheck(L_17);
|
|
GenericInterfaceActionInvoker2< MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_method(method->rgctx_data, 5), L_17, L_18, (Il2CppFullySharedGenericAny*)V_2);
|
|
}
|
|
|
|
IL_003e_1:
|
|
{
|
|
RuntimeObject* L_19 = V_1;
|
|
NullCheck((RuntimeObject*)L_19);
|
|
bool L_20;
|
|
L_20 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_19);
|
|
if (L_20)
|
|
{
|
|
goto IL_002e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033_m6830D1AB58237D998DEAF6E1C3414B273E6BB618_gshared (RuntimeObject* ___0_thisRef, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 ___1_args, Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748* ___2_beginMethod, Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* ___3_endMethod, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_thisRef;
|
|
Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* L_1 = ___3_endMethod;
|
|
FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* L_2 = (FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
FromAsyncTrimPromise_1__ctor_mB70C0819ACF4C395D239289203F9819BB3499891(L_2, L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748* L_3 = ___2_beginMethod;
|
|
RuntimeObject* L_4 = ___0_thisRef;
|
|
ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 L_5 = ___1_args;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 6));
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_6 = ((FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 6)))->___s_completeFromAsyncResult;
|
|
FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* L_7 = V_0;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_8;
|
|
L_8 = Func_5_Invoke_mF4497C19D277F476C482EF59ACB37E92694AAF87_inline(L_3, L_4, L_5, L_6, (RuntimeObject*)L_7, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_1 = L_8;
|
|
RuntimeObject* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(3, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___0_thisRef;
|
|
Func_3_tDAAD31BAF6C284129F857C2B5AEC7BFA8D4B35F1* L_13 = ___3_endMethod;
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_11);
|
|
FromAsyncTrimPromise_1_Complete_m56AE76FCEF30ABD41523638898E9B529F718D951(L_11, L_12, L_13, L_14, (bool)0, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
FromAsyncTrimPromise_1_tD68DEC921B8ED0D5E2D521C49A8C1FEC886D11A2* L_15 = V_0;
|
|
return (Task_1_t4C228DE57804012969575431CFF12D57C875552D*)L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* TaskFactory_1_FromAsync_TisRuntimeObject_m16F75695628F97AF1C1327C9E529B2DF8F97752C_gshared (TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B* __this, Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* ___0_beginMethod, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___1_endMethod, RuntimeObject* ___2_arg1, RuntimeObject* ___3_state, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_0 = ___0_beginMethod;
|
|
Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* L_1 = ___1_endMethod;
|
|
RuntimeObject* L_2 = ___2_arg1;
|
|
RuntimeObject* L_3 = ___3_state;
|
|
int32_t L_4 = __this->___m_defaultCreationOptions;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_5;
|
|
L_5 = TaskFactory_1_FromAsyncImpl_TisRuntimeObject_m2A8BC78767980FEF02961056F231ABBFD568A5CB(L_0, L_1, (Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*)NULL, L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* TaskFactory_1_FromAsyncImpl_TisRuntimeObject_m2A8BC78767980FEF02961056F231ABBFD568A5CB_gshared (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* ___0_beginMethod, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, RuntimeObject* ___3_arg1, RuntimeObject* ___4_state, int32_t ___5_creationOptions, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* G_B8_0 = NULL;
|
|
String_t* G_B8_1 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* G_B8_2 = NULL;
|
|
int32_t G_B8_3 = 0;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* G_B7_2 = NULL;
|
|
int32_t G_B7_3 = 0;
|
|
String_t* G_B9_0 = NULL;
|
|
String_t* G_B9_1 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* G_B9_2 = NULL;
|
|
int32_t G_B9_3 = 0;
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_0 = (U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
U3CU3Ec__DisplayClass38_0_1__ctor_mBB8552CCE9B72174252EB2543299D93837DF77E2(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_1 = V_0;
|
|
Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* L_2 = ___1_endFunction;
|
|
NullCheck(L_1);
|
|
L_1->___endFunction = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___endFunction), (void*)L_2);
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_3 = V_0;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_4 = ___2_endAction;
|
|
NullCheck(L_3);
|
|
L_3->___endAction = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_3->___endAction), (void*)L_4);
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_5 = ___0_beginMethod;
|
|
if (L_5)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_6 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* L_8 = L_7->___endFunction;
|
|
if (L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_10 = L_9->___endAction;
|
|
if (L_10)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_11 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC52F77B7D44C96CE5B91F76A3587ACE8C88748FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_12 = ___5_creationOptions;
|
|
TaskFactory_CheckFromAsyncOptions_m4A9F58FE062B3FA48BE85BA90A45F842AFC8D372(L_12, (bool)1, NULL);
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_13 = V_0;
|
|
RuntimeObject* L_14 = ___4_state;
|
|
int32_t L_15 = ___5_creationOptions;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_16 = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
Task_1__ctor_m7A65D2C0E3F203AD5EFAF7F28D3D62D9E8C65F80(L_16, L_14, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
NullCheck(L_13);
|
|
L_13->___promise = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_13->___promise), (void*)L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_19 = L_18->___promise;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_20 = ___0_beginMethod;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_21 = L_20;
|
|
if (L_21)
|
|
{
|
|
G_B8_0 = L_21;
|
|
G_B8_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B8_2 = L_19;
|
|
G_B8_3 = 0;
|
|
goto IL_006f;
|
|
}
|
|
G_B7_0 = L_21;
|
|
G_B7_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B7_2 = L_19;
|
|
G_B7_3 = 0;
|
|
}
|
|
{
|
|
G_B9_0 = ((String_t*)(NULL));
|
|
G_B9_1 = G_B7_1;
|
|
G_B9_2 = G_B7_2;
|
|
G_B9_3 = G_B7_3;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B8_0);
|
|
String_t* L_22;
|
|
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B8_0);
|
|
G_B9_0 = L_22;
|
|
G_B9_1 = G_B8_1;
|
|
G_B9_2 = G_B8_2;
|
|
G_B9_3 = G_B8_3;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
String_t* L_23;
|
|
L_23 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B9_1, G_B9_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_TraceOperationCreation_m311097028455DBEED9480F6315649693464F2C06((int32_t)G_B9_3, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)G_B9_2, L_23, (uint64_t)((int64_t)0), NULL);
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_25 = L_24->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_AddToActiveTasks_mF592C309CB2AE9C85563BE114DDDB6D226AD9E3E_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_25, NULL);
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_26 = ___0_beginMethod;
|
|
RuntimeObject* L_27 = ___3_arg1;
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_28 = V_0;
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_29 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_29, (RuntimeObject*)L_28, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 4)), NULL);
|
|
RuntimeObject* L_30 = ___4_state;
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_31;
|
|
L_31 = Func_4_Invoke_m8FCEF932E38FD951EC24B33A5F705D7F0B7379FC_inline(L_26, L_27, L_29, L_30, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
V_1 = L_31;
|
|
RuntimeObject* L_32 = V_1;
|
|
NullCheck(L_32);
|
|
bool L_33;
|
|
L_33 = InterfaceFuncInvoker0< bool >::Invoke(3, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_32);
|
|
if (!L_33)
|
|
{
|
|
goto IL_00c2_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_34 = V_1;
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_35 = V_0;
|
|
NullCheck(L_35);
|
|
Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* L_36 = L_35->___endFunction;
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_37 = V_0;
|
|
NullCheck(L_37);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_38 = L_37->___endAction;
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_39 = V_0;
|
|
NullCheck(L_39);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_40 = L_39->___promise;
|
|
TaskFactory_1_FromAsyncCoreLogic_mA518E3A5F3C963950D8B9D56203B84428CA73782(L_34, L_36, L_38, L_40, (bool)0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 17));
|
|
}
|
|
|
|
IL_00c2_1:
|
|
{
|
|
goto IL_00fb;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (il2cpp_defaults.object_class, il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00c4;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00c4:
|
|
{
|
|
{
|
|
RuntimeObject* L_41 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
bool L_42;
|
|
L_42 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_43 = V_0;
|
|
NullCheck(L_43);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_44 = L_43->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_TraceOperationCompletion_m7047A96BCB7DC4835B38D1B965B4BC3049AF62CB((int32_t)0, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_44, (int32_t)3, NULL);
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_45 = V_0;
|
|
NullCheck(L_45);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_46 = L_45->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_RemoveFromActiveTasks_m19229D30DAA2447DDAB524F2A0E9718D070A1251_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_46, NULL);
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_47 = V_0;
|
|
NullCheck(L_47);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_48 = L_47->___promise;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_49 = V_2;
|
|
NullCheck(L_48);
|
|
bool L_50;
|
|
L_50 = Task_1_TrySetResult_m2EE766FD3F76F4824990F4A93ED1F7253ECE014C(L_48, L_49, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t3FE8DE82C3354CE2918C67C9E3C7F5104ED03FDC* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_52 = L_51->___promise;
|
|
return L_52;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* TaskFactory_1_FromAsync_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4786ED43833F7F82DA82F2F18CD518B4C72BFBE6_gshared (TaskFactory_1_t998BD1F4A33BA4687E88533F2E186C74044C2B05* __this, Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* ___0_beginMethod, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___1_endMethod, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___2_arg1, int32_t ___3_arg2, RuntimeObject* ___4_state, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* L_0 = ___0_beginMethod;
|
|
Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* L_1 = ___1_endMethod;
|
|
ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 L_2 = ___2_arg1;
|
|
int32_t L_3 = ___3_arg2;
|
|
RuntimeObject* L_4 = ___4_state;
|
|
int32_t L_5 = __this->___m_defaultCreationOptions;
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_6;
|
|
L_6 = TaskFactory_1_FromAsyncImpl_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m00CC21AD1300E72E7B502B47A4E8A60EAC29A624(L_0, L_1, (Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*)NULL, L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* TaskFactory_1_FromAsyncImpl_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m00CC21AD1300E72E7B502B47A4E8A60EAC29A624_gshared (Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* ___0_beginMethod, Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___3_arg1, int32_t ___4_arg2, RuntimeObject* ___5_state, int32_t ___6_creationOptions, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* G_B8_0 = NULL;
|
|
String_t* G_B8_1 = NULL;
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* G_B8_2 = NULL;
|
|
int32_t G_B8_3 = 0;
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* G_B7_2 = NULL;
|
|
int32_t G_B7_3 = 0;
|
|
String_t* G_B9_0 = NULL;
|
|
String_t* G_B9_1 = NULL;
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* G_B9_2 = NULL;
|
|
int32_t G_B9_3 = 0;
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_0 = (U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
U3CU3Ec__DisplayClass41_0_2__ctor_m536B6CAAB0591D40CCDD777F86131E06307A299D(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_1 = V_0;
|
|
Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* L_2 = ___1_endFunction;
|
|
NullCheck(L_1);
|
|
L_1->___endFunction = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___endFunction), (void*)L_2);
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_3 = V_0;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_4 = ___2_endAction;
|
|
NullCheck(L_3);
|
|
L_3->___endAction = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_3->___endAction), (void*)L_4);
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* L_5 = ___0_beginMethod;
|
|
if (L_5)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_6 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* L_8 = L_7->___endFunction;
|
|
if (L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_10 = L_9->___endAction;
|
|
if (L_10)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_11 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_12 = ___6_creationOptions;
|
|
TaskFactory_CheckFromAsyncOptions_m4A9F58FE062B3FA48BE85BA90A45F842AFC8D372(L_12, (bool)1, NULL);
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_13 = V_0;
|
|
RuntimeObject* L_14 = ___5_state;
|
|
int32_t L_15 = ___6_creationOptions;
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_16 = (Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
Task_1__ctor_m698B606B2774E066B369294BD237EA3DCCD490E0(L_16, L_14, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
NullCheck(L_13);
|
|
L_13->___promise = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_13->___promise), (void*)L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_19 = L_18->___promise;
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* L_20 = ___0_beginMethod;
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* L_21 = L_20;
|
|
if (L_21)
|
|
{
|
|
G_B8_0 = L_21;
|
|
G_B8_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B8_2 = L_19;
|
|
G_B8_3 = 0;
|
|
goto IL_006f;
|
|
}
|
|
G_B7_0 = L_21;
|
|
G_B7_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B7_2 = L_19;
|
|
G_B7_3 = 0;
|
|
}
|
|
{
|
|
G_B9_0 = ((String_t*)(NULL));
|
|
G_B9_1 = G_B7_1;
|
|
G_B9_2 = G_B7_2;
|
|
G_B9_3 = G_B7_3;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B8_0);
|
|
String_t* L_22;
|
|
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B8_0);
|
|
G_B9_0 = L_22;
|
|
G_B9_1 = G_B8_1;
|
|
G_B9_2 = G_B8_2;
|
|
G_B9_3 = G_B8_3;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
String_t* L_23;
|
|
L_23 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B9_1, G_B9_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_TraceOperationCreation_m311097028455DBEED9480F6315649693464F2C06((int32_t)G_B9_3, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)G_B9_2, L_23, (uint64_t)((int64_t)0), NULL);
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_25 = L_24->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_AddToActiveTasks_mF592C309CB2AE9C85563BE114DDDB6D226AD9E3E_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_25, NULL);
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Func_5_t8494295AD40975E086D63C1A2098CD0FF056A4B4* L_26 = ___0_beginMethod;
|
|
ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 L_27 = ___3_arg1;
|
|
int32_t L_28 = ___4_arg2;
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_29 = V_0;
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_30 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_30, (RuntimeObject*)L_29, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 5)), NULL);
|
|
RuntimeObject* L_31 = ___5_state;
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_32;
|
|
L_32 = Func_5_Invoke_m8F7F0E992AC1EA4BDC5C2EC54327DA35AD4BA0CA_inline(L_26, L_27, L_28, L_30, L_31, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
V_1 = L_32;
|
|
RuntimeObject* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
bool L_34;
|
|
L_34 = InterfaceFuncInvoker0< bool >::Invoke(3, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_33);
|
|
if (!L_34)
|
|
{
|
|
goto IL_00c4_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_35 = V_1;
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_36 = V_0;
|
|
NullCheck(L_36);
|
|
Func_2_t95A7CC3655B962B893A2E141BAFA590AB8F5EA8F* L_37 = L_36->___endFunction;
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_39 = L_38->___endAction;
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_40 = V_0;
|
|
NullCheck(L_40);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_41 = L_40->___promise;
|
|
TaskFactory_1_FromAsyncCoreLogic_m3A6C0AB3D11B6D5C89224AF37FDD27795BFC6E16(L_35, L_37, L_39, L_41, (bool)0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 17));
|
|
}
|
|
|
|
IL_00c4_1:
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (il2cpp_defaults.object_class, il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00c6;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00c6:
|
|
{
|
|
{
|
|
RuntimeObject* L_42 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
bool L_43;
|
|
L_43 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_44 = V_0;
|
|
NullCheck(L_44);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_45 = L_44->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_TraceOperationCompletion_m7047A96BCB7DC4835B38D1B965B4BC3049AF62CB((int32_t)0, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_45, (int32_t)3, NULL);
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_47 = L_46->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_RemoveFromActiveTasks_m19229D30DAA2447DDAB524F2A0E9718D070A1251_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_47, NULL);
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_48 = V_0;
|
|
NullCheck(L_48);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_49 = L_48->___promise;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B));
|
|
SocketReceiveFromResult_t53649672B974DA5C4009A226A234C9F73EF0414B L_50 = V_2;
|
|
NullCheck(L_49);
|
|
bool L_51;
|
|
L_51 = Task_1_TrySetResult_m91F6C4495958F44115C8BA067D59FBE99CC10FE5(L_49, L_50, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tA5AE479AD436F4C872693FF7E71A5555F8C6918E* L_52 = V_0;
|
|
NullCheck(L_52);
|
|
Task_1_t6FF3A8092B60B335B5695AFEBDCF86A0FE7782BB* L_53 = L_52->___promise;
|
|
return L_53;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* TaskFactory_1_FromAsyncImpl_TisRuntimeObject_m07D8893FAE82409A470EEFE74C72A56D88F6DFFC_gshared (Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* ___0_beginMethod, Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, RuntimeObject* ___3_arg1, RuntimeObject* ___4_state, int32_t ___5_creationOptions, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* G_B8_0 = NULL;
|
|
String_t* G_B8_1 = NULL;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* G_B8_2 = NULL;
|
|
int32_t G_B8_3 = 0;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* G_B7_2 = NULL;
|
|
int32_t G_B7_3 = 0;
|
|
String_t* G_B9_0 = NULL;
|
|
String_t* G_B9_1 = NULL;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* G_B9_2 = NULL;
|
|
int32_t G_B9_3 = 0;
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_0 = (U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
U3CU3Ec__DisplayClass38_0_1__ctor_m1616CD8C357244C87D6A6080586EE5D10D1F29D6(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_1 = V_0;
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* L_2 = ___1_endFunction;
|
|
NullCheck(L_1);
|
|
L_1->___endFunction = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___endFunction), (void*)L_2);
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_3 = V_0;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_4 = ___2_endAction;
|
|
NullCheck(L_3);
|
|
L_3->___endAction = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_3->___endAction), (void*)L_4);
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_5 = ___0_beginMethod;
|
|
if (L_5)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_6 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* L_8 = L_7->___endFunction;
|
|
if (L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_10 = L_9->___endAction;
|
|
if (L_10)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_11 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC52F77B7D44C96CE5B91F76A3587ACE8C88748FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_12 = ___5_creationOptions;
|
|
TaskFactory_CheckFromAsyncOptions_m4A9F58FE062B3FA48BE85BA90A45F842AFC8D372(L_12, (bool)1, NULL);
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_13 = V_0;
|
|
RuntimeObject* L_14 = ___4_state;
|
|
int32_t L_15 = ___5_creationOptions;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_16 = (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
Task_1__ctor_m8E9811A47CB38FE7842D6339433133CD283F515B(L_16, L_14, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
NullCheck(L_13);
|
|
L_13->___promise = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_13->___promise), (void*)L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_19 = L_18->___promise;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_20 = ___0_beginMethod;
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_21 = L_20;
|
|
if (L_21)
|
|
{
|
|
G_B8_0 = L_21;
|
|
G_B8_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B8_2 = L_19;
|
|
G_B8_3 = 0;
|
|
goto IL_006f;
|
|
}
|
|
G_B7_0 = L_21;
|
|
G_B7_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B7_2 = L_19;
|
|
G_B7_3 = 0;
|
|
}
|
|
{
|
|
G_B9_0 = ((String_t*)(NULL));
|
|
G_B9_1 = G_B7_1;
|
|
G_B9_2 = G_B7_2;
|
|
G_B9_3 = G_B7_3;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B8_0);
|
|
String_t* L_22;
|
|
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B8_0);
|
|
G_B9_0 = L_22;
|
|
G_B9_1 = G_B8_1;
|
|
G_B9_2 = G_B8_2;
|
|
G_B9_3 = G_B8_3;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
String_t* L_23;
|
|
L_23 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B9_1, G_B9_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_TraceOperationCreation_m311097028455DBEED9480F6315649693464F2C06((int32_t)G_B9_3, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)G_B9_2, L_23, (uint64_t)((int64_t)0), NULL);
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_25 = L_24->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_AddToActiveTasks_mF592C309CB2AE9C85563BE114DDDB6D226AD9E3E_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_25, NULL);
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Func_4_t52E8A0837DB4E6228CB49F92F452987A63FBEC4D* L_26 = ___0_beginMethod;
|
|
RuntimeObject* L_27 = ___3_arg1;
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_28 = V_0;
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_29 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_29, (RuntimeObject*)L_28, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 4)), NULL);
|
|
RuntimeObject* L_30 = ___4_state;
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_31;
|
|
L_31 = Func_4_Invoke_m8FCEF932E38FD951EC24B33A5F705D7F0B7379FC_inline(L_26, L_27, L_29, L_30, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
V_1 = L_31;
|
|
RuntimeObject* L_32 = V_1;
|
|
NullCheck(L_32);
|
|
bool L_33;
|
|
L_33 = InterfaceFuncInvoker0< bool >::Invoke(3, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_32);
|
|
if (!L_33)
|
|
{
|
|
goto IL_00c2_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_34 = V_1;
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_35 = V_0;
|
|
NullCheck(L_35);
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* L_36 = L_35->___endFunction;
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_37 = V_0;
|
|
NullCheck(L_37);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_38 = L_37->___endAction;
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_39 = V_0;
|
|
NullCheck(L_39);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_40 = L_39->___promise;
|
|
TaskFactory_1_FromAsyncCoreLogic_mE22E1786CA9D7E8022C121AFF42BA025A2BF384B(L_34, L_36, L_38, L_40, (bool)0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 17));
|
|
}
|
|
|
|
IL_00c2_1:
|
|
{
|
|
goto IL_00fb;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (il2cpp_defaults.object_class, il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00c4;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00c4:
|
|
{
|
|
{
|
|
RuntimeObject* L_41 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
bool L_42;
|
|
L_42 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_43 = V_0;
|
|
NullCheck(L_43);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_44 = L_43->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_TraceOperationCompletion_m7047A96BCB7DC4835B38D1B965B4BC3049AF62CB((int32_t)0, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_44, (int32_t)3, NULL);
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_45 = V_0;
|
|
NullCheck(L_45);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_46 = L_45->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_RemoveFromActiveTasks_m19229D30DAA2447DDAB524F2A0E9718D070A1251_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_46, NULL);
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_47 = V_0;
|
|
NullCheck(L_47);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_48 = L_47->___promise;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC));
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC L_49 = V_2;
|
|
NullCheck(L_48);
|
|
bool L_50;
|
|
L_50 = Task_1_TrySetResult_m80576355963E201DD03E813734ED4CDA847E199E(L_48, L_49, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
U3CU3Ec__DisplayClass38_0_1_t665D56E00F48048A43D8386710EC091125460590* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_52 = L_51->___promise;
|
|
return L_52;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* TaskFactory_1_FromAsyncImpl_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m7D9FA6F2A19B70C8115DB6EE2ECCE8FDEAAEB482_gshared (Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* ___0_beginMethod, Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* ___1_endFunction, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* ___2_endAction, RuntimeObject* ___3_arg1, int32_t ___4_arg2, RuntimeObject* ___5_state, int32_t ___6_creationOptions, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* G_B8_0 = NULL;
|
|
String_t* G_B8_1 = NULL;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* G_B8_2 = NULL;
|
|
int32_t G_B8_3 = 0;
|
|
Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* G_B7_2 = NULL;
|
|
int32_t G_B7_3 = 0;
|
|
String_t* G_B9_0 = NULL;
|
|
String_t* G_B9_1 = NULL;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* G_B9_2 = NULL;
|
|
int32_t G_B9_3 = 0;
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_0 = (U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
U3CU3Ec__DisplayClass41_0_2__ctor_m8D311421DC3898557AF1012280C38DB4B9E1F08E(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_1 = V_0;
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* L_2 = ___1_endFunction;
|
|
NullCheck(L_1);
|
|
L_1->___endFunction = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___endFunction), (void*)L_2);
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_3 = V_0;
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_4 = ___2_endAction;
|
|
NullCheck(L_3);
|
|
L_3->___endAction = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_3->___endAction), (void*)L_4);
|
|
Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* L_5 = ___0_beginMethod;
|
|
if (L_5)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_6 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* L_8 = L_7->___endFunction;
|
|
if (L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_10 = L_9->___endAction;
|
|
if (L_10)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_11 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_12 = ___6_creationOptions;
|
|
TaskFactory_CheckFromAsyncOptions_m4A9F58FE062B3FA48BE85BA90A45F842AFC8D372(L_12, (bool)1, NULL);
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_13 = V_0;
|
|
RuntimeObject* L_14 = ___5_state;
|
|
int32_t L_15 = ___6_creationOptions;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_16 = (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
Task_1__ctor_m8E9811A47CB38FE7842D6339433133CD283F515B(L_16, L_14, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
NullCheck(L_13);
|
|
L_13->___promise = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_13->___promise), (void*)L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_19 = L_18->___promise;
|
|
Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* L_20 = ___0_beginMethod;
|
|
Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* L_21 = L_20;
|
|
if (L_21)
|
|
{
|
|
G_B8_0 = L_21;
|
|
G_B8_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B8_2 = L_19;
|
|
G_B8_3 = 0;
|
|
goto IL_006f;
|
|
}
|
|
G_B7_0 = L_21;
|
|
G_B7_1 = _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092;
|
|
G_B7_2 = L_19;
|
|
G_B7_3 = 0;
|
|
}
|
|
{
|
|
G_B9_0 = ((String_t*)(NULL));
|
|
G_B9_1 = G_B7_1;
|
|
G_B9_2 = G_B7_2;
|
|
G_B9_3 = G_B7_3;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B8_0);
|
|
String_t* L_22;
|
|
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B8_0);
|
|
G_B9_0 = L_22;
|
|
G_B9_1 = G_B8_1;
|
|
G_B9_2 = G_B8_2;
|
|
G_B9_3 = G_B8_3;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
String_t* L_23;
|
|
L_23 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B9_1, G_B9_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_TraceOperationCreation_m311097028455DBEED9480F6315649693464F2C06((int32_t)G_B9_3, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)G_B9_2, L_23, (uint64_t)((int64_t)0), NULL);
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_25 = L_24->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_AddToActiveTasks_mF592C309CB2AE9C85563BE114DDDB6D226AD9E3E_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_25, NULL);
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Func_5_tA07BEDDD813173420A179C25AEDEA235CEB634BB* L_26 = ___0_beginMethod;
|
|
RuntimeObject* L_27 = ___3_arg1;
|
|
int32_t L_28 = ___4_arg2;
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_29 = V_0;
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_30 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
|
|
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_30, (RuntimeObject*)L_29, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 5)), NULL);
|
|
RuntimeObject* L_31 = ___5_state;
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_32;
|
|
L_32 = Func_5_Invoke_m382F87CDB10B4E52E6EFC0D88D10C93B0B87C666_inline(L_26, L_27, L_28, L_30, L_31, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
V_1 = L_32;
|
|
RuntimeObject* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
bool L_34;
|
|
L_34 = InterfaceFuncInvoker0< bool >::Invoke(3, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_33);
|
|
if (!L_34)
|
|
{
|
|
goto IL_00c4_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_35 = V_1;
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_36 = V_0;
|
|
NullCheck(L_36);
|
|
Func_2_tB94FD0871A189804122B115BF7F49B3F0B035706* L_37 = L_36->___endFunction;
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780* L_39 = L_38->___endAction;
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_40 = V_0;
|
|
NullCheck(L_40);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_41 = L_40->___promise;
|
|
TaskFactory_1_FromAsyncCoreLogic_mE22E1786CA9D7E8022C121AFF42BA025A2BF384B(L_35, L_37, L_39, L_41, (bool)0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 17));
|
|
}
|
|
|
|
IL_00c4_1:
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (il2cpp_defaults.object_class, il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00c6;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00c6:
|
|
{
|
|
{
|
|
RuntimeObject* L_42 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
bool L_43;
|
|
L_43 = DebuggerSupport_get_LoggingOn_mD838646A5A048C62BAB034257EF0F2F852AF0ABB(NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_44 = V_0;
|
|
NullCheck(L_44);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_45 = L_44->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_TraceOperationCompletion_m7047A96BCB7DC4835B38D1B965B4BC3049AF62CB((int32_t)0, (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_45, (int32_t)3, NULL);
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_47 = L_46->___promise;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var)));
|
|
DebuggerSupport_RemoveFromActiveTasks_m19229D30DAA2447DDAB524F2A0E9718D070A1251_inline((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_47, NULL);
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_48 = V_0;
|
|
NullCheck(L_48);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_49 = L_48->___promise;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC));
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC L_50 = V_2;
|
|
NullCheck(L_49);
|
|
bool L_51;
|
|
L_51 = Task_1_TrySetResult_m80576355963E201DD03E813734ED4CDA847E199E(L_49, L_50, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
U3CU3Ec__DisplayClass41_0_2_tF59D0792B90C5E96F117F65DE4B0FBDC2E6A06E3* L_52 = V_0;
|
|
NullCheck(L_52);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_53 = L_52->___promise;
|
|
return L_53;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* TaskFactory_1_FromAsyncTrim_TisRuntimeObject_TisReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033_mB0CE53566DC602BC27369A55B46E7176A1AC9DE3_gshared (RuntimeObject* ___0_thisRef, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 ___1_args, Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748* ___2_beginMethod, Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* ___3_endMethod, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_thisRef;
|
|
Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* L_1 = ___3_endMethod;
|
|
FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* L_2 = (FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
FromAsyncTrimPromise_1__ctor_m659379BBA5519550116198DB83B594BBB0ED21F4(L_2, L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
Func_5_tE5E3C054A0A1D158ED2C75F19065E2DE163DC748* L_3 = ___2_beginMethod;
|
|
RuntimeObject* L_4 = ___0_thisRef;
|
|
ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 L_5 = ___1_args;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 6));
|
|
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_6 = ((FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 6)))->___s_completeFromAsyncResult;
|
|
FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* L_7 = V_0;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_8;
|
|
L_8 = Func_5_Invoke_mF4497C19D277F476C482EF59ACB37E92694AAF87_inline(L_3, L_4, L_5, L_6, (RuntimeObject*)L_7, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_1 = L_8;
|
|
RuntimeObject* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(3, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___0_thisRef;
|
|
Func_3_t947E668D09E04ED404CE9DC6074285F8363A170E* L_13 = ___3_endMethod;
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_11);
|
|
FromAsyncTrimPromise_1_Complete_m7985C0BDF0CF2E27AE73927FCCB5FEFBB624A2C5(L_11, L_12, L_13, L_14, (bool)0, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
FromAsyncTrimPromise_1_t0E0A4281A25DE65D9B0FF5BC0A245BDBB486D145* L_15 = V_0;
|
|
return (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* TaskFactory_1_FromAsync_TisIl2CppFullySharedGenericAny_mA5A0933297F4326F20E225A5B381C56408077FC4_gshared (TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D* __this, Func_4_t601AF6F2F5149E1FAFBFBEF804A1200A25072799* ___0_beginMethod, Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467* ___1_endMethod, Il2CppFullySharedGenericAny ___2_arg1, RuntimeObject* ___3_state, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TArg1_t239D14D8563D68B520C3F30C414BC9030A714BB5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_TArg1_t239D14D8563D68B520C3F30C414BC9030A714BB5);
|
|
{
|
|
Func_4_t601AF6F2F5149E1FAFBFBEF804A1200A25072799* L_0 = ___0_beginMethod;
|
|
Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467* L_1 = ___1_endMethod;
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg1 : &___2_arg1), SizeOf_TArg1_t239D14D8563D68B520C3F30C414BC9030A714BB5);
|
|
RuntimeObject* L_3 = ___3_state;
|
|
int32_t L_4 = __this->___m_defaultCreationOptions;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_5;
|
|
L_5 = InvokerFuncInvoker6< Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, Func_4_t601AF6F2F5149E1FAFBFBEF804A1200A25072799*, Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, Il2CppFullySharedGenericAny, RuntimeObject*, int32_t >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), NULL, L_0, L_1, (Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*)NULL, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* TaskFactory_1_FromAsync_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m8B3244B3E88B61E56A026E817A74EDF1047194B5_gshared (TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D* __this, Func_5_tEFCEEADE431DADF31E384EC513E2FE5E59197CE9* ___0_beginMethod, Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467* ___1_endMethod, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, RuntimeObject* ___4_state, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TArg1_tC6CEC40B8E98BA2759E5F6E538DD4308C5D394D2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_TArg2_tAE13A65F53E7B10D75CB41D9F81D0B4280855B56 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_TArg1_tC6CEC40B8E98BA2759E5F6E538DD4308C5D394D2);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_TArg2_tAE13A65F53E7B10D75CB41D9F81D0B4280855B56);
|
|
{
|
|
Func_5_tEFCEEADE431DADF31E384EC513E2FE5E59197CE9* L_0 = ___0_beginMethod;
|
|
Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467* L_1 = ___1_endMethod;
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg1 : &___2_arg1), SizeOf_TArg1_tC6CEC40B8E98BA2759E5F6E538DD4308C5D394D2);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_TArg2_tAE13A65F53E7B10D75CB41D9F81D0B4280855B56);
|
|
RuntimeObject* L_4 = ___4_state;
|
|
int32_t L_5 = __this->___m_defaultCreationOptions;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_6;
|
|
L_6 = InvokerFuncInvoker7< Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, Func_5_tEFCEEADE431DADF31E384EC513E2FE5E59197CE9*, Func_2_t59F3729DFCEB2F33965C02095F954A24B146C467*, Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, RuntimeObject*, int32_t >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_0, L_1, (Action_1_t8AE9CB3E5DC764211C9FEAC59DE7B65AD1444780*)NULL, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), L_4, L_5);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Unsafe_CopyBlockUnaligned_mDF58F6B66FE59AF2A00CE0E2B885DA6F2865BA8A_inline (uint8_t* ___0_destination, uint8_t* ___1_source, uint32_t ___2_byteCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t* L_0 = ___0_destination;
|
|
uint8_t* L_1 = ___1_source;
|
|
uint32_t L_2 = ___2_byteCount;
|
|
il2cpp_codegen_memcpy(L_0, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PathVisitor_set_ReturnCode_mB5629AE0124C70E479D9C4D44A8E552DA8BA19E0_inline (PathVisitor_tCD0947C41CDBDB774D22D560E5FFA01EF61C4446* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CReturnCodeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebuggerSupport_AddToActiveTasks_mF592C309CB2AE9C85563BE114DDDB6D226AD9E3E_inline (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields*)il2cpp_codegen_static_fields_for(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var))->___s_asyncDebuggingEnabled;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_1 = ___0_task;
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_AddToActiveTasksNonInlined_m28785ADBB0443B6CCDC12C4A7DA297F1FFAEF889(L_1, NULL);
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebuggerSupport_RemoveFromActiveTasks_m19229D30DAA2447DDAB524F2A0E9718D070A1251_inline (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields*)il2cpp_codegen_static_fields_for(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var))->___s_asyncDebuggingEnabled;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_1 = ___0_task;
|
|
il2cpp_codegen_runtime_class_init_inline(DebuggerSupport_tDD9572640CC0FDE885CA0394A44CB639ADFF69E2_il2cpp_TypeInfo_var);
|
|
DebuggerSupport_RemoveFromActiveTasksNonInlined_m328F6FE7F9066EAD92528B6AD6BB08B12BA9A2C0(L_1, NULL);
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_sizeHint, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = __this->___bufferLength;
|
|
int32_t L_1 = ___0_sizeHint;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_sizeHint;
|
|
MemoryPackWriter_1_RequestNewBuffer_mE3A14E274D798D478F3D4D6D62C6EBBDD087DCDD(__this, L_2, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_3 = __this->___bufferReference;
|
|
uint8_t* L_4;
|
|
L_4 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_3, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6_RuntimeMethod_var);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
int32_t L_1 = __this->___bufferLength;
|
|
int32_t L_2 = ___0_count;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackSerializationException_ThrowInvalidAdvance_m4E44A948382C5DDA16B6232B6CFBA940FFF191F9(NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
__this->___bufferLength = L_4;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* L_5 = (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*)(&__this->___bufferReference);
|
|
int32_t L_6 = ___0_count;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_7;
|
|
L_7 = Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline(L_5, L_6, Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var);
|
|
__this->___bufferReference = L_7;
|
|
int32_t L_8 = __this->___advancedCount;
|
|
int32_t L_9 = ___0_count;
|
|
__this->___advancedCount = ((int32_t)il2cpp_codegen_add(L_8, L_9));
|
|
int32_t L_10 = __this->___writtenCount;
|
|
int32_t L_11 = ___0_count;
|
|
__this->___writtenCount = ((int32_t)il2cpp_codegen_add(L_10, L_11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t* L_0;
|
|
L_0 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, 4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
il2cpp_unsafe_write_unaligned(L_0, (-1));
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, 4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, int32_t ___0_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t* L_0;
|
|
L_0 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, 4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
int32_t L_1 = ___0_length;
|
|
il2cpp_unsafe_write_unaligned(L_0, L_1);
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, 4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA6BF691D470370FD8F155567D2D6408047BDE9EA_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
uint8_t* V_2 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 20));
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_value;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(__this, 0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 21));
|
|
return;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = il2cpp_unsafe_sizeof<uint8_t>();
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_value;
|
|
NullCheck(L_3);
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)(((RuntimeArray*)L_3)->max_length))));
|
|
int32_t L_4 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_4, 4));
|
|
int32_t L_5 = V_1;
|
|
uint8_t* L_6;
|
|
L_6 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___0_value;
|
|
uint8_t* L_8;
|
|
L_8 = MemoryMarshalEx_GetArrayDataReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4F71B3A9B2711B859F1974DC341C043AA00D8A19_inline(L_7, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_9;
|
|
L_9 = il2cpp_unsafe_as_ref<uint8_t>(L_8);
|
|
V_2 = L_9;
|
|
uint8_t* L_10 = L_6;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___0_value;
|
|
NullCheck(L_11);
|
|
il2cpp_unsafe_write_unaligned(L_10, ((int32_t)(((RuntimeArray*)L_11)->max_length)));
|
|
uint8_t* L_12;
|
|
L_12 = il2cpp_unsafe_add<uint8_t,int32_t>(L_10, 4);
|
|
uint8_t* L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
Unsafe_CopyBlockUnaligned_mDF58F6B66FE59AF2A00CE0E2B885DA6F2865BA8A_inline(L_12, L_13, (uint32_t)L_14, NULL);
|
|
int32_t L_15 = V_1;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m9BADB3379AE3BD1159871808A92EE0D0CFD982E4_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
uint8_t* V_2 = NULL;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_WriteNullCollectionHeader_m50FF378467D6A0F9D87A3C6228257CF2F06CC3BC_inline(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 20));
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___0_value;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(__this, 0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 21));
|
|
return;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = il2cpp_unsafe_sizeof<int32_t>();
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = ___0_value;
|
|
NullCheck(L_3);
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)(((RuntimeArray*)L_3)->max_length))));
|
|
int32_t L_4 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_4, 4));
|
|
int32_t L_5 = V_1;
|
|
uint8_t* L_6;
|
|
L_6 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_5, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = ___0_value;
|
|
int32_t* L_8;
|
|
L_8 = MemoryMarshalEx_GetArrayDataReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28F48BB1170C8FFC45F7349A5B54684E3845C4AC_inline(L_7, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
uint8_t* L_9;
|
|
L_9 = il2cpp_unsafe_as_ref<uint8_t>(L_8);
|
|
V_2 = L_9;
|
|
uint8_t* L_10 = L_6;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_11 = ___0_value;
|
|
NullCheck(L_11);
|
|
il2cpp_unsafe_write_unaligned(L_10, ((int32_t)(((RuntimeArray*)L_11)->max_length)));
|
|
uint8_t* L_12;
|
|
L_12 = il2cpp_unsafe_add<uint8_t,int32_t>(L_10, 4);
|
|
uint8_t* L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
Unsafe_CopyBlockUnaligned_mDF58F6B66FE59AF2A00CE0E2B885DA6F2865BA8A_inline(L_12, L_13, (uint32_t)L_14, NULL);
|
|
int32_t L_15 = V_1;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_15, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_DangerousWriteUnmanagedSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mC82F32B3F2C830693F79DF2B577562FFFB66C303_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
uint8_t* V_2 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
MemoryPackWriter_1_WriteCollectionHeader_mA80B2914F476DB61DA59B0DDC5BF67B942147203_inline(__this, 0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 21));
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1;
|
|
L_1 = il2cpp_unsafe_sizeof<uint8_t>();
|
|
int32_t L_2;
|
|
L_2 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_1, L_2));
|
|
int32_t L_3 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_3, 4));
|
|
int32_t L_4 = V_1;
|
|
uint8_t* L_5;
|
|
L_5 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_6 = ___0_value;
|
|
uint8_t* L_7;
|
|
L_7 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_6, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_as_ref<uint8_t>(L_7);
|
|
V_2 = L_8;
|
|
uint8_t* L_9 = L_5;
|
|
int32_t L_10;
|
|
L_10 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___0_value), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
il2cpp_unsafe_write_unaligned(L_9, L_10);
|
|
uint8_t* L_11;
|
|
L_11 = il2cpp_unsafe_add<uint8_t,int32_t>(L_9, 4);
|
|
uint8_t* L_12 = V_2;
|
|
int32_t L_13 = V_0;
|
|
Unsafe_CopyBlockUnaligned_mDF58F6B66FE59AF2A00CE0E2B885DA6F2865BA8A_inline(L_11, L_12, (uint32_t)L_13, NULL);
|
|
int32_t L_14 = V_1;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, L_14, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m97C7D5E5DE74DC60A0ECAA914830BEDF2C46ACAA_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(uint8_t);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3E4AF62978F92E52CE242CAC83115C8EA6C850A3_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(float);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mEC9469DBD91362D6135B8F5A81E90486BF328075_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(uint16_t);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mD5B3C428BB4E25A820C242BF663DC5471EFFA654_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(uint32_t);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mB2AF8CA03DEC485BAD3A37CCBE5CDEBA3C67758C_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m0B9FC11A134FEF6303B2D3EE1C73D3513515D3AC_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(Brick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0BD2704CD677D45FAEDAD35D6C7208EE167961F7_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(float4_t89D9A294E7A79BD81BFBDD18654508532958555E);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_m2842DB279BEAD40C9CB39EC85BDE2241798CFFF7_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteNullObjectHeader_m48D9A3AB6855F349EABE2A1B0F3A5FD85864E985_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t* L_0;
|
|
L_0 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, 1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
*((int8_t*)L_0) = (int8_t)((int32_t)255);
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, 1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MemoryPackWriter_1_WriteObjectHeader_mE187B22DEFD5FBF26F62C613AD28333349B388D7_gshared_inline (MemoryPackWriter_1_tBD1C917782DA0A103063E51EBCFDE26E948630FB* __this, uint8_t ___0_memberCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t L_0 = ___0_memberCount;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)250))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_1 = ___0_memberCount;
|
|
MemoryPackSerializationException_ThrowWriteInvalidMemberCount_mF5F69FB73079B1F242D9AD0AF4653C112E7D81C0(L_1, NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
uint8_t* L_2;
|
|
L_2 = MemoryPackWriter_1_GetSpanReference_m2B910A4897FEA9E133F527DA068BE0D3D3D37C8C_inline(__this, 1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
uint8_t L_3 = ___0_memberCount;
|
|
*((int8_t*)L_2) = (int8_t)L_3;
|
|
MemoryPackWriter_1_Advance_m2E42912DB5F7EC41D9CA0C2ED8FAC5E1636EC3E1_inline(__this, 1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 15));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___hasValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisIntPtr_t_mB2B3CFF1CB804C99734D4E2F5D8A8C9DB0D209A8_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(intptr_t);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SharedStatic_1__ctor_mF83D06637E10F1C230BA4F1A841E742F6A5ED399_gshared_inline (SharedStatic_1_t33583FDAFE4C36D5BA68FE6F5444170BB42F98C0* __this, void* ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_buffer;
|
|
__this->____buffer = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SharedStatic_1__ctor_m467F9A64986F442AA4853C5C314D0A54D887CDDC_gshared_inline (SharedStatic_1_t965CBE4F8A30F785649BF3D97C277D0927858D08* __this, void* ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_buffer;
|
|
__this->____buffer = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t0BC9036A453E1965D76D9B3BE6C780F42C402BBD_m6A163700BA4F18E3DF651E0D197DA2D234B9DD7C_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_tE17B8F4EB1955CE37A78FDA1D0940AD6B79DE88B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE832AA34CAE2057E4F9E9B490B1B284D43B961AB_m9B60F0D4B41D3F3A027331725767A4FEBEC97D8B_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t7D07C74DD41061E9ED06C78A82A6E8160CB46E07_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t97F62BD9B81457B3C951E4731A189682A75B0618_m452E81BDA5B4D572CBC1C0B2FA4D5609D578A502_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t45C902BA4A85819B6C31A686FF699BD734C810A3_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t4B219CBD450518068824DE0C112518BC2384C721_mE16070B428834E590A710A12F880FFDB3DE9F24F_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_tE592078EFC6F2A37620503BFAB99FEF70B71584A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t2D0A24921EF91E7ECCFCEC7F881A27622B8F2A70_mB967F2697C91AB840A9202023B02D8465000F449_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t843A0CF337E84638F3DEB38ADAFB4FC2204CA22F_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t58F74E58E137EF1DE356A985ABA4748586462B89_mF8D2B2184797A3249B22C20E9CE3037E58760AB5_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t6609EC1C8FD637D0704C9D40931A83EE7EBCA23D_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t69439B0894C33F9B27AD85917AD7E0DAE9016112_mAF531E97828F6EA873611A4571BDDD25F990D368_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_tD3243DF9FA8B7B703E45F521152F4E500EAA808E_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t655382769C4282682A84F553F5FF0B1AB97370EA_m9ACB4FE7846789D8E3F49F5DED3B35839E51B0E6_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t6494BEDFB3823C50BCCE1457CC83EBABF9FC3718_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t3E06B0B953E3304DB73E71071FC7DB2646022C2C_mAB129228331E6149CB76835022FC9F8E60D2B347_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t1E9825203BCACDE03EA9806FA3B6D9667833FDB7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t18FA6B9845CACA8547C4FAEAC0C5FF7C6E487DAF_m5764084E845D08310A8F59782C5314965084EFE7_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t7F36E26E9C60DAE7E6BF03E72A6B9BEB0E70508E_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t1CDF7FDFE988A5218A7D870586CD04293F25682E_mB3F1D65A7AF0C35CE47E0AAD490420B640CF00C1_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t728259C125E4C28AE80A80B41491CF221EF1B9B7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_tE8D83243564C34800FF950A808D4733A2ACB852D_mB6A684433C5061494098A9D16C1215872FC44AB3_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_tDA241AE7DD0993FBFA911AC316BB51A154854AC7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BurstRuntime_GetHashCode64_TisJobParallelForBatchProducer_1_t93B90034EC7615CA68546F4CF38E2C812CB52105_m0460A39EC62EA75F5D6D35DE720B842933C70F79_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
int64_t L_0 = ((HashCode64_1_t09ABD1A71EC5CE3684E6F1DA80681B54DB1691B5_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_gshared_inline (SharedStatic_1_t4FCF4588C706197A62B7B4C4DFA65B0457AB498C* __this, void* ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_buffer;
|
|
__this->____buffer = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_5_Invoke_m392D0C4E7D4413D3636EE05EC3A70F8D58CC74A1_gshared_inline (Func_5_tBD83535470C7532DCD8D3FEC6FAAEABA156B6E6C* __this, RuntimeObject* ___0_arg1, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033 ___1_arg2, RuntimeObject* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, ReadWriteParameters_t14911E85F7252B5A39D9A53466C7EDE243327033, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, ___2_arg3, ___3_arg4, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_4_Invoke_m9BAD5BBD30933FE9049B012CD3316FB2F24F3B8A_gshared_inline (Func_4_t5BEC908E1F7894319A22CA9728A897FA95522DAD* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, RuntimeObject* ___2_arg3, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, ___2_arg3, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_5_Invoke_mB0C00A2FFE86A20244AFAFC02C3F0DCF75C7D86B_gshared_inline (Func_5_tC9841A2BB550822F3D4C4B383D028E9875DF9C9D* __this, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093 ___0_arg1, int32_t ___1_arg2, RuntimeObject* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, ArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093, int32_t, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, ___2_arg3, ___3_arg4, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_5_Invoke_mEC1D034D1CAD44D4E743B3A0E36213B12B2ECFAA_gshared_inline (Func_5_tD02E129BCD67EF3C2C268C78FD4614374A3597CA* __this, RuntimeObject* ___0_arg1, int32_t ___1_arg2, RuntimeObject* ___2_arg3, RuntimeObject* ___3_arg4, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, int32_t, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, ___2_arg3, ___3_arg4, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___0_start, const RuntimeMethod* method)
|
|
{
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0 = ___0_start;
|
|
int32_t L_1 = __this->____length;
|
|
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_2 = __this->____pointer;
|
|
V_0 = L_2;
|
|
uint8_t* L_3;
|
|
L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(uint8_t, (Il2CppByReference*)(&V_0));
|
|
int32_t L_4 = ___0_start;
|
|
uint8_t* L_5;
|
|
L_5 = il2cpp_unsafe_add<uint8_t,int32_t>(L_3, L_4);
|
|
int32_t L_6 = __this->____length;
|
|
int32_t L_7 = ___0_start;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 19));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* MemoryMarshalEx_GetArrayDataReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4F71B3A9B2711B859F1974DC341C043AA00D8A19_gshared_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_inline(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_2;
|
|
L_2 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m81BE3C6812CE881C00AAA80CCFC9349F754F63A6(L_1, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t* MemoryMarshalEx_GetArrayDataReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28F48BB1170C8FFC45F7349A5B54684E3845C4AC_gshared_inline (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_array;
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m747B4E744F3001295814B04B43E787F0E1109D0F_inline(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t* L_2;
|
|
L_2 = MemoryMarshal_GetReference_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC9D303E66CF269E3E7B9C5E375C066446C3022C(L_1, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____length;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t* L_0 = ___0_ptr;
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
|
|
__this->____pointer = L_1;
|
|
int32_t L_2 = ___1_length;
|
|
__this->____length = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_gshared_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Span_1__ctor_m513968BDBFF3CFCE89F3F77FE44CAB22CA474EF9_inline((&L_1), L_0, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 MemoryExtensions_AsSpan_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m747B4E744F3001295814B04B43E787F0E1109D0F_gshared_inline (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_array;
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Span_1__ctor_m176441CFA181B7C6097611CC13C24C5ED7F14CFF_inline((&L_1), L_0, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m513968BDBFF3CFCE89F3F77FE44CAB22CA474EF9_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
uint8_t V_0 = 0x0;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(uint8_t));
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_array;
|
|
NullCheck((RuntimeArray*)L_2);
|
|
uint8_t* L_3;
|
|
L_3 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_2, NULL);
|
|
uint8_t* L_4;
|
|
L_4 = il2cpp_unsafe_as_ref<uint8_t>(L_3);
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4);
|
|
__this->____pointer = L_5;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___0_array;
|
|
NullCheck(L_6);
|
|
__this->____length = ((int32_t)(((RuntimeArray*)L_6)->max_length));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m176441CFA181B7C6097611CC13C24C5ED7F14CFF_gshared_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(int32_t));
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ___0_array;
|
|
NullCheck((RuntimeArray*)L_2);
|
|
uint8_t* L_3;
|
|
L_3 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_2, NULL);
|
|
int32_t* L_4;
|
|
L_4 = il2cpp_unsafe_as_ref<int32_t>(L_3);
|
|
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4);
|
|
__this->____pointer = L_5;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ___0_array;
|
|
NullCheck(L_6);
|
|
__this->____length = ((int32_t)(((RuntimeArray*)L_6)->max_length));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0* L_0;
|
|
L_0 = il2cpp_unsafe_as<RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0*>(__this);
|
|
NullCheck(L_0);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___Data);
|
|
return L_1;
|
|
}
|
|
}
|