Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Unity.Collections.cpp 353KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715
  1. #include "pch-cpp.hpp"
  2. struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710;
  3. struct EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7;
  4. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  5. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
  6. struct List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7;
  7. struct UnsafeHashMap_2_t6892CF3B588ADF9763FD2CF34FE217B37C312C00;
  8. struct UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258;
  9. struct UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6;
  10. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  11. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  12. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  13. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  14. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  15. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  16. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  17. struct TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5;
  18. struct EarlyInitFunctionU5BU5D_t56709F311AB48CB97FAF8B8EE2DA9BE17BD21F01;
  19. struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
  20. struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F;
  21. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  22. struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42;
  23. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
  24. struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
  25. struct BurstCompilerOptions_t5F93118F305E1B0C950C6F9AF8BCA74033DA01C9;
  26. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3;
  27. struct DOTSCompilerGeneratedAttribute_t4240DED0AAD134B4F3558C2592BDB48CE2A5AE23;
  28. struct Delegate_t;
  29. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  30. struct EmbeddedAttribute_t02DB10C6AF87332FEE7D19025B26687C7B784141;
  31. struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377;
  32. struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82;
  33. struct Exception_t;
  34. struct ExcludeFromBurstCompatTestingAttribute_tD101D6AEB31C340592E71C069D8F72AB6B7AABD4;
  35. struct GenerateTestsForBurstCompatibilityAttribute_tB0112CEF7F88E4A8D216747735F5CD09E66BDAD1;
  36. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  37. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C;
  38. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  39. struct IsUnmanagedAttribute_tA4BF73E3582F0C271AD8AD4501C839CE5D557059;
  40. struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
  41. struct MethodInfo_t;
  42. struct RegisterGenericJobTypeAttribute_tD5D0C2798899CA2B0812CDF0203AA95944DBF2AF;
  43. struct ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692;
  44. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  45. struct String_t;
  46. struct Type_t;
  47. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF;
  48. struct UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C;
  49. struct UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4;
  50. struct UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926;
  51. struct UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C;
  52. struct UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0;
  53. struct UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2;
  54. struct UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C;
  55. struct UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67;
  56. struct UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2;
  57. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  58. struct TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA;
  59. struct EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802;
  60. IL2CPP_EXTERN_C RuntimeClass* AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_il2cpp_TypeInfo_var;
  61. IL2CPP_EXTERN_C RuntimeClass* AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var;
  62. IL2CPP_EXTERN_C RuntimeClass* Allocator_t996642592271AAD9EE688F142741D512C07B5824_il2cpp_TypeInfo_var;
  63. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  64. IL2CPP_EXTERN_C RuntimeClass* BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8_il2cpp_TypeInfo_var;
  65. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  66. IL2CPP_EXTERN_C RuntimeClass* EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var;
  67. IL2CPP_EXTERN_C RuntimeClass* EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var;
  68. IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
  69. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  70. IL2CPP_EXTERN_C RuntimeClass* Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var;
  71. IL2CPP_EXTERN_C RuntimeClass* Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E_il2cpp_TypeInfo_var;
  72. IL2CPP_EXTERN_C RuntimeClass* TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_il2cpp_TypeInfo_var;
  73. IL2CPP_EXTERN_C RuntimeClass* TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5_il2cpp_TypeInfo_var;
  74. IL2CPP_EXTERN_C RuntimeClass* UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var;
  75. IL2CPP_EXTERN_C String_t* _stringLiteral1A49AA3EAE32A0ACEB1822588EBAA4A05DEA2664;
  76. IL2CPP_EXTERN_C String_t* _stringLiteral55E10EEA67F908C03E76CA4B92A10DD2FA288A89;
  77. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  78. IL2CPP_EXTERN_C String_t* _stringLiteralEC898F808E19AF57D0662145D1AE7C9A70CC3DCB;
  79. IL2CPP_EXTERN_C String_t* _stringLiteralF4415CBA61060E30CD982CD7DBE0D90186579608;
  80. IL2CPP_EXTERN_C const RuntimeMethod* AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_RuntimeMethod_var;
  81. IL2CPP_EXTERN_C const RuntimeMethod* AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC_RuntimeMethod_var;
  82. IL2CPP_EXTERN_C const RuntimeMethod* AllocatorManager_forward_mono_allocate_block_mD2A9A49DFC8CBDC39F27E2749048ABC91E124519_RuntimeMethod_var;
  83. IL2CPP_EXTERN_C const RuntimeMethod* Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F_RuntimeMethod_var;
  84. IL2CPP_EXTERN_C const RuntimeMethod* FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160_RuntimeMethod_var;
  85. IL2CPP_EXTERN_C const RuntimeMethod* FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_RuntimeMethod_var;
  86. IL2CPP_EXTERN_C const RuntimeMethod* FunctionPointer_1_get_Invoke_m97C18B13503F4392E7606936FDC209ECE77A7EFB_RuntimeMethod_var;
  87. IL2CPP_EXTERN_C const RuntimeMethod* HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04_RuntimeMethod_var;
  88. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787_RuntimeMethod_var;
  89. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2_RuntimeMethod_var;
  90. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C_RuntimeMethod_var;
  91. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7_RuntimeMethod_var;
  92. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384_RuntimeMethod_var;
  93. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619_RuntimeMethod_var;
  94. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5_RuntimeMethod_var;
  95. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997_RuntimeMethod_var;
  96. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E_RuntimeMethod_var;
  97. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80_RuntimeMethod_var;
  98. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38_RuntimeMethod_var;
  99. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE_RuntimeMethod_var;
  100. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941_RuntimeMethod_var;
  101. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96_RuntimeMethod_var;
  102. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B_RuntimeMethod_var;
  103. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338_RuntimeMethod_var;
  104. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521_RuntimeMethod_var;
  105. IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2_RuntimeMethod_var;
  106. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mBAFDF51514863C7DE856D04A729D060CD47C15F5_RuntimeMethod_var;
  107. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m7E7A1608E40278125E5C0749E2DE03C4251EE4B8_RuntimeMethod_var;
  108. IL2CPP_EXTERN_C const RuntimeMethod* SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9_RuntimeMethod_var;
  109. IL2CPP_EXTERN_C const RuntimeMethod* SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9_RuntimeMethod_var;
  110. IL2CPP_EXTERN_C const RuntimeMethod* SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1_RuntimeMethod_var;
  111. IL2CPP_EXTERN_C const RuntimeMethod* SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_RuntimeMethod_var;
  112. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271_RuntimeMethod_var;
  113. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64_RuntimeMethod_var;
  114. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E_RuntimeMethod_var;
  115. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655_RuntimeMethod_var;
  116. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_RuntimeMethod_var;
  117. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3_RuntimeMethod_var;
  118. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22_RuntimeMethod_var;
  119. IL2CPP_EXTERN_C const RuntimeMethod* Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84_RuntimeMethod_var;
  120. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeBitArray_Free_m593DC0AC7ADB85F86BF8E27CDCA5EF1395650D0D_RuntimeMethod_var;
  121. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66_RuntimeMethod_var;
  122. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1_RuntimeMethod_var;
  123. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_RuntimeMethod_var;
  124. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_RuntimeMethod_var;
  125. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeQueueBlockPool_OnDomainUnload_mEEFD68B2157CF6B0E66FFB06ACED2B4697862620_RuntimeMethod_var;
  126. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317_RuntimeMethod_var;
  127. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D_RuntimeMethod_var;
  128. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeText_Free_m22C162680EFB31663020E8FE94BE67596994A98B_RuntimeMethod_var;
  129. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_RuntimeMethod_var;
  130. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var;
  131. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_RuntimeMethod_var;
  132. struct Delegate_t_marshaled_com;
  133. struct Delegate_t_marshaled_pinvoke;
  134. struct Exception_t_marshaled_com;
  135. struct Exception_t_marshaled_pinvoke;
  136. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  137. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  138. struct TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5;
  139. IL2CPP_EXTERN_C_BEGIN
  140. IL2CPP_EXTERN_C_END
  141. #ifdef __clang__
  142. #pragma clang diagnostic push
  143. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  144. #pragma clang diagnostic ignored "-Wunused-variable"
  145. #endif
  146. struct U3CModuleU3E_tA52E71F6F7203C8166EF9F4D0375AB04277990CA
  147. {
  148. };
  149. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  150. {
  151. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
  152. int32_t ____size;
  153. int32_t ____version;
  154. RuntimeObject* ____syncRoot;
  155. };
  156. struct List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7 : public RuntimeObject
  157. {
  158. EarlyInitFunctionU5BU5D_t56709F311AB48CB97FAF8B8EE2DA9BE17BD21F01* ____items;
  159. int32_t ____size;
  160. int32_t ____version;
  161. RuntimeObject* ____syncRoot;
  162. };
  163. struct U24BurstDirectCallInitializer_tA1A76DB7D22C7A6F0D0A955A4E82DA30C35D0CBD : public RuntimeObject
  164. {
  165. };
  166. struct AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C : public RuntimeObject
  167. {
  168. };
  169. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
  170. {
  171. };
  172. struct BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8 : public RuntimeObject
  173. {
  174. };
  175. struct BurstCompilerOptions_t5F93118F305E1B0C950C6F9AF8BCA74033DA01C9 : public RuntimeObject
  176. {
  177. bool ____enableBurstCompilation;
  178. bool ____enableBurstSafetyChecks;
  179. bool ___U3CIsGlobalU3Ek__BackingField;
  180. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3COptionsChangedU3Ek__BackingField;
  181. };
  182. struct CollectionHelper_tFFE15A31BD8AE2BE545F4A412EC3C11352298482 : public RuntimeObject
  183. {
  184. };
  185. struct EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A : public RuntimeObject
  186. {
  187. };
  188. struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
  189. {
  190. };
  191. struct FixedStringMethods_t0186BBFA8912D005C81E1BF812B2FFA2AEBE692B : public RuntimeObject
  192. {
  193. };
  194. struct IJobParallelForBatchExtensions_t69F5ECCFDF878E3EB52452562C083D22B405D540 : public RuntimeObject
  195. {
  196. };
  197. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
  198. {
  199. RuntimeObject* ____identity;
  200. };
  201. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
  202. {
  203. Il2CppIUnknown* ____identity;
  204. };
  205. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
  206. {
  207. Il2CppIUnknown* ____identity;
  208. };
  209. struct MemberInfo_t : public RuntimeObject
  210. {
  211. };
  212. struct NativeArrayExtensions_t9A6F3FA904DDB64CC47FB8CECF1EE92FAFD47BA2 : public RuntimeObject
  213. {
  214. };
  215. struct NativeListExtensions_t703C0674A863EE05A97019B7CF6316AB98DE8817 : public RuntimeObject
  216. {
  217. };
  218. struct NativeListUnsafeUtility_t76856F085F46022FE3879DD4EE833AE8FE1EFB19 : public RuntimeObject
  219. {
  220. };
  221. struct NativeSortExtension_t69298E80751CF0D0DB847C79277B6E0A2C92A4F2 : public RuntimeObject
  222. {
  223. };
  224. struct String_t : public RuntimeObject
  225. {
  226. int32_t ____stringLength;
  227. Il2CppChar ____firstChar;
  228. };
  229. struct UnsafeBitArrayDebugView_t1E4C4AFAB453FEFF1F6614FA95D38FBCE8D05D70 : public RuntimeObject
  230. {
  231. };
  232. struct UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8 : public RuntimeObject
  233. {
  234. };
  235. struct UnsafeTextExtensions_tCDC7E502EA126D2DD4FAE5426953286CB0A54454 : public RuntimeObject
  236. {
  237. };
  238. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  239. {
  240. };
  241. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  242. {
  243. };
  244. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  245. {
  246. };
  247. struct __JobReflectionRegistrationOutput__1652832624114795843_tEDE51FEFB90C932C2454FC7F36FF16E4CD8217A7 : public RuntimeObject
  248. {
  249. };
  250. struct Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D : public RuntimeObject
  251. {
  252. };
  253. struct SharedStatics_t1BB591F9E205BC35764C232444F95ED00379162D : public RuntimeObject
  254. {
  255. };
  256. struct TableEntry_tC168732547D3913880E602CC895BCCDAED550A04 : public RuntimeObject
  257. {
  258. };
  259. struct SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E
  260. {
  261. void* ____buffer;
  262. };
  263. struct SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F
  264. {
  265. void* ____buffer;
  266. };
  267. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  268. {
  269. bool ___m_value;
  270. };
  271. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  272. {
  273. uint8_t ___m_value;
  274. };
  275. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  276. {
  277. Il2CppChar ___m_value;
  278. };
  279. struct DOTSCompilerGeneratedAttribute_t4240DED0AAD134B4F3558C2592BDB48CE2A5AE23 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  280. {
  281. };
  282. struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
  283. {
  284. double ___m_value;
  285. };
  286. struct EmbeddedAttribute_t02DB10C6AF87332FEE7D19025B26687C7B784141 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  287. {
  288. };
  289. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  290. {
  291. };
  292. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  293. {
  294. };
  295. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  296. {
  297. };
  298. struct ExcludeFromBurstCompatTestingAttribute_tD101D6AEB31C340592E71C069D8F72AB6B7AABD4 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  299. {
  300. String_t* ___U3CReasonU3Ek__BackingField;
  301. };
  302. struct GenerateTestsForBurstCompatibilityAttribute_tB0112CEF7F88E4A8D216747735F5CD09E66BDAD1 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  303. {
  304. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___U3CGenericTypeArgumentsU3Ek__BackingField;
  305. String_t* ___RequiredUnityDefine;
  306. };
  307. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  308. {
  309. int32_t ___m_value;
  310. };
  311. struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
  312. {
  313. int64_t ___m_value;
  314. };
  315. struct IntPtr_t
  316. {
  317. void* ___m_value;
  318. };
  319. struct IsUnmanagedAttribute_tA4BF73E3582F0C271AD8AD4501C839CE5D557059 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  320. {
  321. };
  322. struct Memory_t1CFA31375CE2BD22D3FC5859A3DD18B7B247A1F5
  323. {
  324. union
  325. {
  326. struct
  327. {
  328. };
  329. uint8_t Memory_t1CFA31375CE2BD22D3FC5859A3DD18B7B247A1F5__padding[1];
  330. };
  331. };
  332. struct NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356
  333. {
  334. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* ___m_ListData;
  335. };
  336. struct NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE
  337. {
  338. UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258* ___m_QueueData;
  339. };
  340. struct NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478
  341. {
  342. UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6* ___m_QueueData;
  343. };
  344. struct NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA
  345. {
  346. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___m_TextData;
  347. };
  348. struct RegisterGenericJobTypeAttribute_tD5D0C2798899CA2B0812CDF0203AA95944DBF2AF : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  349. {
  350. Type_t* ___ConcreteType;
  351. };
  352. struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
  353. {
  354. uint16_t ___m_value;
  355. };
  356. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  357. {
  358. uint32_t ___m_value;
  359. };
  360. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  361. {
  362. uint64_t ___m_value;
  363. };
  364. struct Unicode_t12971576E9BF3361EDDED82E38BDE63AB13E1557
  365. {
  366. union
  367. {
  368. struct
  369. {
  370. };
  371. uint8_t Unicode_t12971576E9BF3361EDDED82E38BDE63AB13E1557__padding[1];
  372. };
  373. };
  374. struct UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62
  375. {
  376. int32_t* ___Counter;
  377. };
  378. struct UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926
  379. {
  380. union
  381. {
  382. #pragma pack(push, tp, 1)
  383. struct
  384. {
  385. uint8_t* ___values;
  386. };
  387. #pragma pack(pop, tp)
  388. struct
  389. {
  390. uint8_t* ___values_forAlignmentOnly;
  391. };
  392. #pragma pack(push, tp, 1)
  393. struct
  394. {
  395. char ___keys_OffsetPadding[8];
  396. uint8_t* ___keys;
  397. };
  398. #pragma pack(pop, tp)
  399. struct
  400. {
  401. char ___keys_OffsetPadding_forAlignmentOnly[8];
  402. uint8_t* ___keys_forAlignmentOnly;
  403. };
  404. #pragma pack(push, tp, 1)
  405. struct
  406. {
  407. char ___next_OffsetPadding[16];
  408. uint8_t* ___next;
  409. };
  410. #pragma pack(pop, tp)
  411. struct
  412. {
  413. char ___next_OffsetPadding_forAlignmentOnly[16];
  414. uint8_t* ___next_forAlignmentOnly;
  415. };
  416. #pragma pack(push, tp, 1)
  417. struct
  418. {
  419. char ___buckets_OffsetPadding[24];
  420. uint8_t* ___buckets;
  421. };
  422. #pragma pack(pop, tp)
  423. struct
  424. {
  425. char ___buckets_OffsetPadding_forAlignmentOnly[24];
  426. uint8_t* ___buckets_forAlignmentOnly;
  427. };
  428. #pragma pack(push, tp, 1)
  429. struct
  430. {
  431. char ___keyCapacity_OffsetPadding[32];
  432. int32_t ___keyCapacity;
  433. };
  434. #pragma pack(pop, tp)
  435. struct
  436. {
  437. char ___keyCapacity_OffsetPadding_forAlignmentOnly[32];
  438. int32_t ___keyCapacity_forAlignmentOnly;
  439. };
  440. #pragma pack(push, tp, 1)
  441. struct
  442. {
  443. char ___bucketCapacityMask_OffsetPadding[36];
  444. int32_t ___bucketCapacityMask;
  445. };
  446. #pragma pack(pop, tp)
  447. struct
  448. {
  449. char ___bucketCapacityMask_OffsetPadding_forAlignmentOnly[36];
  450. int32_t ___bucketCapacityMask_forAlignmentOnly;
  451. };
  452. #pragma pack(push, tp, 1)
  453. struct
  454. {
  455. char ___allocatedIndexLength_OffsetPadding[40];
  456. int32_t ___allocatedIndexLength;
  457. };
  458. #pragma pack(pop, tp)
  459. struct
  460. {
  461. char ___allocatedIndexLength_OffsetPadding_forAlignmentOnly[40];
  462. int32_t ___allocatedIndexLength_forAlignmentOnly;
  463. };
  464. };
  465. };
  466. struct UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5
  467. {
  468. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___m_Buffer;
  469. int32_t ___m_Index;
  470. int32_t ___m_BucketIndex;
  471. int32_t ___m_NextIndex;
  472. };
  473. struct UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C
  474. {
  475. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___m_NextBlock;
  476. int32_t ___m_NumItems;
  477. };
  478. struct UnsafeStreamRange_tF5953324FD7FC591B632D6464C49C83C9429AAA9
  479. {
  480. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* ___Block;
  481. int32_t ___OffsetInFirstBlock;
  482. int32_t ___ElementCount;
  483. int32_t ___LastOffset;
  484. int32_t ___NumberOfBlocks;
  485. };
  486. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  487. {
  488. union
  489. {
  490. struct
  491. {
  492. };
  493. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  494. };
  495. };
  496. struct AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148
  497. {
  498. uint16_t ___Index;
  499. uint16_t ___Version;
  500. };
  501. struct DummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF
  502. {
  503. union
  504. {
  505. struct
  506. {
  507. };
  508. uint8_t DummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF__padding[1];
  509. };
  510. };
  511. struct Unmanaged_t06043455F062B5BBF755BE852B0A7AB1876E3310
  512. {
  513. union
  514. {
  515. struct
  516. {
  517. };
  518. uint8_t Unmanaged_t06043455F062B5BBF755BE852B0A7AB1876E3310__padding[1];
  519. };
  520. };
  521. struct Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E
  522. {
  523. int32_t ___value;
  524. };
  525. struct U3CDataU3Ee__FixedBuffer_t60155FEDF2B8430C4B466CB3CDD85327C03F1116
  526. {
  527. union
  528. {
  529. struct
  530. {
  531. uint8_t ___FixedElementField;
  532. };
  533. uint8_t U3CDataU3Ee__FixedBuffer_t60155FEDF2B8430C4B466CB3CDD85327C03F1116__padding[1];
  534. };
  535. };
  536. struct LongDoubleUnion_tD71C400B6C4CD1A7F13CE8125AC6BBC7A22791CA
  537. {
  538. union
  539. {
  540. #pragma pack(push, tp, 1)
  541. struct
  542. {
  543. int64_t ___longValue;
  544. };
  545. #pragma pack(pop, tp)
  546. struct
  547. {
  548. int64_t ___longValue_forAlignmentOnly;
  549. };
  550. #pragma pack(push, tp, 1)
  551. struct
  552. {
  553. double ___doubleValue;
  554. };
  555. #pragma pack(pop, tp)
  556. struct
  557. {
  558. double ___doubleValue_forAlignmentOnly;
  559. };
  560. };
  561. };
  562. struct Array_t3B8F006A80A48C83471DE3516556F1AFE6873381
  563. {
  564. union
  565. {
  566. struct
  567. {
  568. };
  569. uint8_t Array_t3B8F006A80A48C83471DE3516556F1AFE6873381__padding[1];
  570. };
  571. };
  572. struct FunctionPointer_1_tE1DC1EC606FB2242FB50357BBA39BB4AEDECFCB2
  573. {
  574. intptr_t ____ptr;
  575. };
  576. struct FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C
  577. {
  578. intptr_t ____ptr;
  579. };
  580. struct HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B
  581. {
  582. uint8_t* ___Ptr;
  583. int32_t* ___Keys;
  584. int32_t* ___Next;
  585. int32_t* ___Buckets;
  586. int32_t ___Count;
  587. int32_t ___Capacity;
  588. int32_t ___Log2MinGrowth;
  589. int32_t ___BucketCapacity;
  590. int32_t ___AllocatedIndex;
  591. int32_t ___FirstFreeIdx;
  592. int32_t ___SizeOfTValue;
  593. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  594. };
  595. struct UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D
  596. {
  597. uint8_t* ___Ptr;
  598. int32_t ___m_length;
  599. int32_t ___m_capacity;
  600. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  601. int32_t ___padding;
  602. };
  603. struct UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718
  604. {
  605. int32_t* ___Ptr;
  606. int32_t ___m_length;
  607. int32_t ___m_capacity;
  608. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  609. int32_t ___padding;
  610. };
  611. struct UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258
  612. {
  613. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* ___m_Buffer;
  614. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* ___m_QueuePool;
  615. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_AllocatorLabel;
  616. };
  617. struct UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6
  618. {
  619. int32_t* ___Ptr;
  620. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  621. int32_t ___m_Capacity;
  622. int32_t ___m_Filled;
  623. int32_t ___m_Write;
  624. int32_t ___m_Read;
  625. };
  626. struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
  627. {
  628. int32_t ___value__;
  629. };
  630. struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
  631. {
  632. intptr_t ____mono_app_domain;
  633. RuntimeObject* ____evidence;
  634. RuntimeObject* ____granted;
  635. int32_t ____principalPolicy;
  636. AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* ___AssemblyLoad;
  637. ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___AssemblyResolve;
  638. EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___DomainUnload;
  639. EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___ProcessExit;
  640. ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ResourceResolve;
  641. ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___TypeResolve;
  642. UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C* ___UnhandledException;
  643. EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7* ___FirstChanceException;
  644. RuntimeObject* ____domain_manager;
  645. ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ReflectionOnlyAssemblyResolve;
  646. RuntimeObject* ____activation;
  647. RuntimeObject* ____applicationIdentity;
  648. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch;
  649. };
  650. struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
  651. {
  652. intptr_t ____mono_app_domain;
  653. Il2CppIUnknown* ____evidence;
  654. Il2CppIUnknown* ____granted;
  655. int32_t ____principalPolicy;
  656. Il2CppMethodPointer ___AssemblyLoad;
  657. Il2CppMethodPointer ___AssemblyResolve;
  658. Il2CppMethodPointer ___DomainUnload;
  659. Il2CppMethodPointer ___ProcessExit;
  660. Il2CppMethodPointer ___ResourceResolve;
  661. Il2CppMethodPointer ___TypeResolve;
  662. Il2CppMethodPointer ___UnhandledException;
  663. Il2CppMethodPointer ___FirstChanceException;
  664. Il2CppIUnknown* ____domain_manager;
  665. Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve;
  666. Il2CppIUnknown* ____activation;
  667. Il2CppIUnknown* ____applicationIdentity;
  668. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch;
  669. };
  670. struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
  671. {
  672. intptr_t ____mono_app_domain;
  673. Il2CppIUnknown* ____evidence;
  674. Il2CppIUnknown* ____granted;
  675. int32_t ____principalPolicy;
  676. Il2CppMethodPointer ___AssemblyLoad;
  677. Il2CppMethodPointer ___AssemblyResolve;
  678. Il2CppMethodPointer ___DomainUnload;
  679. Il2CppMethodPointer ___ProcessExit;
  680. Il2CppMethodPointer ___ResourceResolve;
  681. Il2CppMethodPointer ___TypeResolve;
  682. Il2CppMethodPointer ___UnhandledException;
  683. Il2CppMethodPointer ___FirstChanceException;
  684. Il2CppIUnknown* ____domain_manager;
  685. Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve;
  686. Il2CppIUnknown* ____activation;
  687. Il2CppIUnknown* ____applicationIdentity;
  688. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch;
  689. };
  690. struct ConversionError_tA911789C09E2326E83B161606EE817DDF5ED8FA9
  691. {
  692. int32_t ___value__;
  693. };
  694. struct Delegate_t : public RuntimeObject
  695. {
  696. intptr_t ___method_ptr;
  697. intptr_t ___invoke_impl;
  698. RuntimeObject* ___m_target;
  699. intptr_t ___method;
  700. intptr_t ___delegate_trampoline;
  701. intptr_t ___extra_arg;
  702. intptr_t ___method_code;
  703. intptr_t ___interp_method;
  704. intptr_t ___interp_invoke_impl;
  705. MethodInfo_t* ___method_info;
  706. MethodInfo_t* ___original_method_info;
  707. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  708. bool ___method_is_virtual;
  709. };
  710. struct Delegate_t_marshaled_pinvoke
  711. {
  712. intptr_t ___method_ptr;
  713. intptr_t ___invoke_impl;
  714. Il2CppIUnknown* ___m_target;
  715. intptr_t ___method;
  716. intptr_t ___delegate_trampoline;
  717. intptr_t ___extra_arg;
  718. intptr_t ___method_code;
  719. intptr_t ___interp_method;
  720. intptr_t ___interp_invoke_impl;
  721. MethodInfo_t* ___method_info;
  722. MethodInfo_t* ___original_method_info;
  723. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  724. int32_t ___method_is_virtual;
  725. };
  726. struct Delegate_t_marshaled_com
  727. {
  728. intptr_t ___method_ptr;
  729. intptr_t ___invoke_impl;
  730. Il2CppIUnknown* ___m_target;
  731. intptr_t ___method;
  732. intptr_t ___delegate_trampoline;
  733. intptr_t ___extra_arg;
  734. intptr_t ___method_code;
  735. intptr_t ___interp_method;
  736. intptr_t ___interp_invoke_impl;
  737. MethodInfo_t* ___method_info;
  738. MethodInfo_t* ___original_method_info;
  739. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  740. int32_t ___method_is_virtual;
  741. };
  742. struct Exception_t : public RuntimeObject
  743. {
  744. String_t* ____className;
  745. String_t* ____message;
  746. RuntimeObject* ____data;
  747. Exception_t* ____innerException;
  748. String_t* ____helpURL;
  749. RuntimeObject* ____stackTrace;
  750. String_t* ____stackTraceString;
  751. String_t* ____remoteStackTraceString;
  752. int32_t ____remoteStackIndex;
  753. RuntimeObject* ____dynamicMethods;
  754. int32_t ____HResult;
  755. String_t* ____source;
  756. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  757. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  758. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  759. int32_t ___caught_in_unmanaged;
  760. };
  761. struct Exception_t_marshaled_pinvoke
  762. {
  763. char* ____className;
  764. char* ____message;
  765. RuntimeObject* ____data;
  766. Exception_t_marshaled_pinvoke* ____innerException;
  767. char* ____helpURL;
  768. Il2CppIUnknown* ____stackTrace;
  769. char* ____stackTraceString;
  770. char* ____remoteStackTraceString;
  771. int32_t ____remoteStackIndex;
  772. Il2CppIUnknown* ____dynamicMethods;
  773. int32_t ____HResult;
  774. char* ____source;
  775. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  776. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  777. Il2CppSafeArray* ___native_trace_ips;
  778. int32_t ___caught_in_unmanaged;
  779. };
  780. struct Exception_t_marshaled_com
  781. {
  782. Il2CppChar* ____className;
  783. Il2CppChar* ____message;
  784. RuntimeObject* ____data;
  785. Exception_t_marshaled_com* ____innerException;
  786. Il2CppChar* ____helpURL;
  787. Il2CppIUnknown* ____stackTrace;
  788. Il2CppChar* ____stackTraceString;
  789. Il2CppChar* ____remoteStackTraceString;
  790. int32_t ____remoteStackIndex;
  791. Il2CppIUnknown* ____dynamicMethods;
  792. int32_t ____HResult;
  793. Il2CppChar* ____source;
  794. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  795. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  796. Il2CppSafeArray* ___native_trace_ips;
  797. int32_t ___caught_in_unmanaged;
  798. };
  799. struct NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493
  800. {
  801. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* ___m_BitArrayData;
  802. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_Allocator;
  803. };
  804. struct NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5
  805. {
  806. UnsafeHashMap_2_t6892CF3B588ADF9763FD2CF34FE217B37C312C00* ___m_HashMapData;
  807. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_Allocator;
  808. };
  809. struct NativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F
  810. {
  811. NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356 ___Data;
  812. };
  813. struct NativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5
  814. {
  815. NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE ___Data;
  816. };
  817. struct NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D
  818. {
  819. void* ___m_Data;
  820. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_AllocatorLabel;
  821. };
  822. struct NativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21
  823. {
  824. NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478 ___Data;
  825. };
  826. struct NativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6
  827. {
  828. NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA ___Data;
  829. };
  830. struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
  831. {
  832. intptr_t ___value;
  833. };
  834. struct UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4
  835. {
  836. uint64_t* ___Ptr;
  837. int32_t ___Length;
  838. int32_t ___Capacity;
  839. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  840. };
  841. struct UnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8
  842. {
  843. void* ___Ptr;
  844. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  845. };
  846. struct UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A
  847. {
  848. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___m_Buffer;
  849. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_AllocatorLabel;
  850. };
  851. struct UnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26
  852. {
  853. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___Data;
  854. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  855. };
  856. struct UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0
  857. {
  858. intptr_t ___m_FirstBlock;
  859. int32_t ___m_NumBlocks;
  860. int32_t ___m_MaxBlocks;
  861. int32_t ___m_AllocLock;
  862. };
  863. struct UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2
  864. {
  865. intptr_t ___m_FirstBlock;
  866. intptr_t ___m_LastBlock;
  867. int32_t ___m_MaxItems;
  868. int32_t ___m_CurrentRead;
  869. uint8_t* ___m_CurrentWriteBlockTLS;
  870. };
  871. struct UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271
  872. {
  873. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* ___m_Buffer;
  874. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* ___m_QueuePool;
  875. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___m_AllocatorLabel;
  876. };
  877. struct UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C
  878. {
  879. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* ___Next;
  880. U3CDataU3Ee__FixedBuffer_t60155FEDF2B8430C4B466CB3CDD85327C03F1116 ___Data;
  881. };
  882. struct UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2
  883. {
  884. void* ___Ptr;
  885. int32_t ___m_length;
  886. int32_t ___m_capacity;
  887. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  888. int32_t ___padding;
  889. };
  890. struct Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC
  891. {
  892. intptr_t ___Pointer;
  893. int32_t ___Items;
  894. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  895. };
  896. struct TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE
  897. {
  898. intptr_t ___function;
  899. intptr_t ___state;
  900. };
  901. struct Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F
  902. {
  903. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f0;
  904. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f1;
  905. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f2;
  906. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f3;
  907. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f4;
  908. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f5;
  909. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f6;
  910. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f7;
  911. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f8;
  912. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f9;
  913. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f10;
  914. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f11;
  915. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f12;
  916. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f13;
  917. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f14;
  918. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE ___f15;
  919. };
  920. struct NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C
  921. {
  922. void* ___m_Buffer;
  923. int32_t ___m_Length;
  924. int32_t ___m_AllocatorLabel;
  925. };
  926. struct UnsafeHashMap_2_t6892CF3B588ADF9763FD2CF34FE217B37C312C00
  927. {
  928. HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B ___m_Data;
  929. };
  930. struct MulticastDelegate_t : public Delegate_t
  931. {
  932. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  933. };
  934. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  935. {
  936. Delegate_t_marshaled_pinvoke** ___delegates;
  937. };
  938. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  939. {
  940. Delegate_t_marshaled_com** ___delegates;
  941. };
  942. struct NativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA
  943. {
  944. NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493 ___Data;
  945. };
  946. struct NativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E
  947. {
  948. NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5 ___Data;
  949. };
  950. struct NativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2
  951. {
  952. NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D ___Data;
  953. };
  954. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  955. {
  956. };
  957. struct Type_t : public MemberInfo_t
  958. {
  959. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
  960. };
  961. struct UnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D
  962. {
  963. UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A ___Data;
  964. };
  965. struct UnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8
  966. {
  967. UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271 ___Data;
  968. };
  969. struct UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67
  970. {
  971. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2 ___m_UntypedListData;
  972. };
  973. struct Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3
  974. {
  975. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC ___Range;
  976. int32_t ___BytesPerItem;
  977. int32_t ___AllocatedItems;
  978. uint8_t ___Log2Alignment;
  979. uint8_t ___Padding0;
  980. uint16_t ___Padding1;
  981. uint32_t ___Padding2;
  982. };
  983. struct Array256_1_t5410033DC9920374048839AA4B80BA4420373D59
  984. {
  985. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f0;
  986. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f1;
  987. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f2;
  988. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f3;
  989. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f4;
  990. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f5;
  991. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f6;
  992. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f7;
  993. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f8;
  994. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f9;
  995. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f10;
  996. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f11;
  997. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f12;
  998. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f13;
  999. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f14;
  1000. Array16_1_tD7DC1805EB67B07DF30FB4A25D3C1D0D5C0F9A9F ___f15;
  1001. };
  1002. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1003. {
  1004. String_t* ____paramName;
  1005. };
  1006. struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82 : public MulticastDelegate_t
  1007. {
  1008. };
  1009. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1010. {
  1011. };
  1012. struct UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66
  1013. {
  1014. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 ___m_BlockData;
  1015. };
  1016. struct UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6
  1017. {
  1018. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Allocator;
  1019. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C** ___Blocks;
  1020. int32_t ___BlockCount;
  1021. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 ___Ranges;
  1022. int32_t ___RangeCount;
  1023. };
  1024. struct TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA : public MulticastDelegate_t
  1025. {
  1026. };
  1027. struct EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802 : public MulticastDelegate_t
  1028. {
  1029. };
  1030. struct Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8
  1031. {
  1032. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f0;
  1033. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f1;
  1034. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f2;
  1035. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f3;
  1036. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f4;
  1037. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f5;
  1038. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f6;
  1039. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f7;
  1040. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f8;
  1041. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f9;
  1042. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f10;
  1043. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f11;
  1044. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f12;
  1045. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f13;
  1046. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f14;
  1047. Array256_1_t5410033DC9920374048839AA4B80BA4420373D59 ___f15;
  1048. };
  1049. struct NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376
  1050. {
  1051. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66 ___m_Stream;
  1052. };
  1053. struct NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C
  1054. {
  1055. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66 ___m_StreamData;
  1056. };
  1057. struct ConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1
  1058. {
  1059. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66 ___Container;
  1060. NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___Length;
  1061. };
  1062. struct ConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F
  1063. {
  1064. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66 ___Container;
  1065. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* ___List;
  1066. };
  1067. struct DisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467
  1068. {
  1069. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66 ___Container;
  1070. };
  1071. struct Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6
  1072. {
  1073. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f0;
  1074. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f1;
  1075. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f2;
  1076. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f3;
  1077. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f4;
  1078. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f5;
  1079. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f6;
  1080. Array4096_1_t97465F61B5971FE36BADFE9A629DEB33EF47E8D8 ___f7;
  1081. };
  1082. struct NativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001
  1083. {
  1084. NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C ___Data;
  1085. };
  1086. struct ConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4
  1087. {
  1088. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376 ___Container;
  1089. NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___Length;
  1090. };
  1091. struct ConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707
  1092. {
  1093. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376 ___Container;
  1094. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* ___List;
  1095. };
  1096. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  1097. {
  1098. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
  1099. };
  1100. struct List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7_StaticFields
  1101. {
  1102. EarlyInitFunctionU5BU5D_t56709F311AB48CB97FAF8B8EE2DA9BE17BD21F01* ___s_emptyArray;
  1103. };
  1104. struct AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields
  1105. {
  1106. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Invalid;
  1107. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___None;
  1108. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Temp;
  1109. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___TempJob;
  1110. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___Persistent;
  1111. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___AudioKernel;
  1112. uint16_t ___NumGlobalScratchAllocators;
  1113. uint16_t ___MaxNumGlobalAllocators;
  1114. uint32_t ___GlobalAllocatorBaseIndex;
  1115. uint32_t ___FirstGlobalScratchpadAllocatorIndex;
  1116. };
  1117. struct BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8_StaticFields
  1118. {
  1119. bool ____IsEnabled;
  1120. BurstCompilerOptions_t5F93118F305E1B0C950C6F9AF8BCA74033DA01C9* ___Options;
  1121. MethodInfo_t* ___DummyMethodInfo;
  1122. };
  1123. struct BurstCompilerOptions_t5F93118F305E1B0C950C6F9AF8BCA74033DA01C9_StaticFields
  1124. {
  1125. bool ___ForceDisableBurstCompilation;
  1126. bool ___ForceBurstCompilationSynchronously;
  1127. bool ___IsSecondaryUnityProcess;
  1128. };
  1129. struct EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_StaticFields
  1130. {
  1131. List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* ___s_PendingDelegates;
  1132. };
  1133. struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
  1134. {
  1135. EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty;
  1136. };
  1137. struct String_t_StaticFields
  1138. {
  1139. String_t* ___Empty;
  1140. };
  1141. struct UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_StaticFields
  1142. {
  1143. SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F ___Data;
  1144. };
  1145. struct Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_StaticFields
  1146. {
  1147. TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5* ___TryFunctionDelegates;
  1148. };
  1149. struct TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_StaticFields
  1150. {
  1151. SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E ___Ref;
  1152. };
  1153. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  1154. {
  1155. String_t* ___TrueString;
  1156. String_t* ___FalseString;
  1157. };
  1158. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  1159. {
  1160. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
  1161. };
  1162. struct IntPtr_t_StaticFields
  1163. {
  1164. intptr_t ___Zero;
  1165. };
  1166. struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_StaticFields
  1167. {
  1168. String_t* ____process_guid;
  1169. };
  1170. struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_ThreadStaticFields
  1171. {
  1172. Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___type_resolve_in_progress;
  1173. Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress;
  1174. Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_refonly;
  1175. };
  1176. struct Exception_t_StaticFields
  1177. {
  1178. RuntimeObject* ___s_EDILock;
  1179. };
  1180. struct Type_t_StaticFields
  1181. {
  1182. Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
  1183. Il2CppChar ___Delimiter;
  1184. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
  1185. RuntimeObject* ___Missing;
  1186. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
  1187. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
  1188. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
  1189. };
  1190. #ifdef __clang__
  1191. #pragma clang diagnostic pop
  1192. #endif
  1193. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  1194. {
  1195. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  1196. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  1197. {
  1198. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1199. return m_Items[index];
  1200. }
  1201. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  1202. {
  1203. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1204. return m_Items + index;
  1205. }
  1206. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  1207. {
  1208. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1209. m_Items[index] = value;
  1210. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1211. }
  1212. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  1213. {
  1214. return m_Items[index];
  1215. }
  1216. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1217. {
  1218. return m_Items + index;
  1219. }
  1220. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  1221. {
  1222. m_Items[index] = value;
  1223. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1224. }
  1225. };
  1226. struct TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5 : public RuntimeArray
  1227. {
  1228. ALIGN_FIELD (8) TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* m_Items[1];
  1229. inline TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* GetAt(il2cpp_array_size_t index) const
  1230. {
  1231. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1232. return m_Items[index];
  1233. }
  1234. inline TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA** GetAddressAt(il2cpp_array_size_t index)
  1235. {
  1236. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1237. return m_Items + index;
  1238. }
  1239. inline void SetAt(il2cpp_array_size_t index, TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* value)
  1240. {
  1241. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1242. m_Items[index] = value;
  1243. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1244. }
  1245. inline TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* GetAtUnchecked(il2cpp_array_size_t index) const
  1246. {
  1247. return m_Items[index];
  1248. }
  1249. inline TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1250. {
  1251. return m_Items + index;
  1252. }
  1253. inline void SetAtUnchecked(il2cpp_array_size_t index, TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* value)
  1254. {
  1255. m_Items[index] = value;
  1256. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1257. }
  1258. };
  1259. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
  1260. {
  1261. ALIGN_FIELD (8) Type_t* m_Items[1];
  1262. inline Type_t* GetAt(il2cpp_array_size_t index) const
  1263. {
  1264. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1265. return m_Items[index];
  1266. }
  1267. inline Type_t** GetAddressAt(il2cpp_array_size_t index)
  1268. {
  1269. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1270. return m_Items + index;
  1271. }
  1272. inline void SetAt(il2cpp_array_size_t index, Type_t* value)
  1273. {
  1274. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1275. m_Items[index] = value;
  1276. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1277. }
  1278. inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
  1279. {
  1280. return m_Items[index];
  1281. }
  1282. inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1283. {
  1284. return m_Items + index;
  1285. }
  1286. inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
  1287. {
  1288. m_Items[index] = value;
  1289. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1290. }
  1291. };
  1292. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1293. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1294. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC_gshared (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___0_t, uint8_t* ___1_pointer, int32_t ___2_items, const RuntimeMethod* method) ;
  1295. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FunctionPointer_1__ctor_mE2BD136AA4DB860E4183D3293D3AE1A04B978DA3_gshared_inline (FunctionPointer_1_tE1DC1EC606FB2242FB50357BBA39BB4AEDECFCB2* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
  1296. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FunctionPointer_1_get_Invoke_m3E7098A72E4D4E432490A6F99AF8749B862ACF93_gshared (FunctionPointer_1_tE1DC1EC606FB2242FB50357BBA39BB4AEDECFCB2* __this, const RuntimeMethod* method) ;
  1297. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6* SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1_gshared (SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E* __this, const RuntimeMethod* method) ;
  1298. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F_gshared (Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1299. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9_gshared (uint32_t ___0_alignment, int64_t ___1_hashCode, int64_t ___2_subHashCode, const RuntimeMethod* method) ;
  1300. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04_gshared (HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B* ___0_data, const RuntimeMethod* method) ;
  1301. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66_gshared (UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* ___0_listData, const RuntimeMethod* method) ;
  1302. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317_gshared (UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258* ___0_data, const RuntimeMethod* method) ;
  1303. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D_gshared (UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6* ___0_data, const RuntimeMethod* method) ;
  1304. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_gshared (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1305. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_gshared_inline (SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F* __this, const RuntimeMethod* method) ;
  1306. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_gshared_inline (const RuntimeMethod* method) ;
  1307. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3_gshared (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1308. 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) ;
  1309. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22_gshared (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1310. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t* UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_gshared_inline (void* ___0_ptr, const RuntimeMethod* method) ;
  1311. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E_gshared (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1312. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64_gshared (uint64_t* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1313. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271_gshared (uint8_t* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1314. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655_gshared (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1315. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___0_t, int32_t ___1_sizeOf, int32_t ___2_alignOf, int32_t ___3_items, const RuntimeMethod* method) ;
  1316. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_gshared_inline (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* ___0_from, const RuntimeMethod* method) ;
  1317. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_gshared_inline (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method) ;
  1318. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84_gshared (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1319. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1_gshared (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method) ;
  1320. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_gshared_inline (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method) ;
  1321. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160_gshared (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_fs, const RuntimeMethod* method) ;
  1322. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619_gshared (const RuntimeMethod* method) ;
  1323. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5_gshared (const RuntimeMethod* method) ;
  1324. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997_gshared (const RuntimeMethod* method) ;
  1325. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E_gshared (const RuntimeMethod* method) ;
  1326. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80_gshared (const RuntimeMethod* method) ;
  1327. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38_gshared (const RuntimeMethod* method) ;
  1328. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE_gshared (const RuntimeMethod* method) ;
  1329. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2_gshared (const RuntimeMethod* method) ;
  1330. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7_gshared (const RuntimeMethod* method) ;
  1331. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941_gshared (const RuntimeMethod* method) ;
  1332. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96_gshared (const RuntimeMethod* method) ;
  1333. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2_gshared (const RuntimeMethod* method) ;
  1334. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B_gshared (const RuntimeMethod* method) ;
  1335. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338_gshared (const RuntimeMethod* method) ;
  1336. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521_gshared (const RuntimeMethod* method) ;
  1337. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384_gshared (const RuntimeMethod* method) ;
  1338. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787_gshared (const RuntimeMethod* method) ;
  1339. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C_gshared (const RuntimeMethod* method) ;
  1340. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
  1341. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitHelpers_FlushEarlyInits_m2B9C35967B87AF2BD2018C649BF964DFD5C40033 (const RuntimeMethod* method) ;
  1342. inline EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* List_1_get_Item_m7E7A1608E40278125E5C0749E2DE03C4251EE4B8 (List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* __this, int32_t ___0_index, const RuntimeMethod* method)
  1343. {
  1344. return (( EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* (*) (List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1345. }
  1346. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_inline (EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method) ;
  1347. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0 (Exception_t* ___0_exception, const RuntimeMethod* method) ;
  1348. inline int32_t List_1_get_Count_mBAFDF51514863C7DE856D04A729D060CD47C15F5_inline (List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* __this, const RuntimeMethod* method)
  1349. {
  1350. return (( int32_t (*) (List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
  1351. }
  1352. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
  1353. inline void AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___0_t, uint8_t* ___1_pointer, int32_t ___2_items, const RuntimeMethod* method)
  1354. {
  1355. (( void (*) (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, uint8_t*, int32_t, const RuntimeMethod*))AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC_gshared)(___0_t, ___1_pointer, ___2_items, method);
  1356. }
  1357. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_CheckDelegate_m52D3F12472A2BBC5A28D2F4B5011B19D2E36AC61 (bool* ___0_useDelegate, const RuntimeMethod* method) ;
  1358. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1359. inline void FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_inline (FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
  1360. {
  1361. (( void (*) (FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C*, intptr_t, const RuntimeMethod*))FunctionPointer_1__ctor_mE2BD136AA4DB860E4183D3293D3AE1A04B978DA3_gshared_inline)(__this, ___0_ptr, method);
  1362. }
  1363. inline TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* FunctionPointer_1_get_Invoke_m97C18B13503F4392E7606936FDC209ECE77A7EFB (FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C* __this, const RuntimeMethod* method)
  1364. {
  1365. return (( TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* (*) (FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C*, const RuntimeMethod*))FunctionPointer_1_get_Invoke_m3E7098A72E4D4E432490A6F99AF8749B862ACF93_gshared)(__this, method);
  1366. }
  1367. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_inline (TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method) ;
  1368. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1370. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1371. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  1372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Block_get_Bytes_m4BB90CD1C72FC56C573BE09951BF1CA68E8BD7D7 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method) ;
  1373. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Block_get_Alignment_mC2388F87008B204A333664B9323BD38AA20FD633 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method) ;
  1374. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_LegacyOf_mAD212C1A7F5295C8987A6C9D7F81E8FF42E0A3BF (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_handle, const RuntimeMethod* method) ;
  1375. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D (int32_t ___0_a, const RuntimeMethod* method) ;
  1376. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Unmanaged_Allocate_m7310B1FE896DEFFA18303D961C9859C8FF3D21E5 (int64_t ___0_size, int32_t ___1_align, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___2_allocator, const RuntimeMethod* method) ;
  1377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D (void* ___0_value, const RuntimeMethod* method) ;
  1378. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF (intptr_t ___0_value, const RuntimeMethod* method) ;
  1379. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_m09F6EA89F368ED2C9E5EC5EA60C894C4434F4FD1 (void* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1380. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_TryLegacy_mF4F0B8CE7B0293504FA12A6F9C4ACFF28B59FF79 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method) ;
  1381. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AllocatorManager_UseDelegate_mEB18420309DAA2CC710BA123C6996C9FB6FC3798 (const RuntimeMethod* method) ;
  1382. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_forward_mono_allocate_block_mD2A9A49DFC8CBDC39F27E2749048ABC91E124519 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, int32_t* ___1_error, const RuntimeMethod* method) ;
  1383. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_allocate_block_mBEB6E6FDC334118DB679CF2619EBB3FF4FDD7FB5 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method) ;
  1384. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JobsUtility_get_ThreadIndexCount_m88A954344398143540618B35943F863B92465676 (const RuntimeMethod* method) ;
  1385. inline Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6* SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1 (SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E* __this, const RuntimeMethod* method)
  1386. {
  1387. return (( Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6* (*) (SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E*, const RuntimeMethod*))SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1_gshared)(__this, method);
  1388. }
  1389. inline TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F (Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6* __this, int32_t ___0_index, const RuntimeMethod* method)
  1390. {
  1391. return (( TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* (*) (Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6*, int32_t, const RuntimeMethod*))Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F_gshared)(__this, ___0_index, method);
  1392. }
  1393. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorHandle_Rewind_mC0426BBD1E638878C33164F91AC3ADC66C850AC1 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1394. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_Try_m24A6A4EF594F8909B5677C94C4788F365E02E7F9 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method) ;
  1395. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_Try_m4E8677E100693A0F015076408244AF2BA827CBC9 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method) ;
  1396. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1397. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorHandle_Dispose_mB74CBC8980962C016A6C85F09D3F94775A2C58E3 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1398. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AllocatorHandle_Equals_mF2E151E2C3E8881305EA7EA9A46EA58D7CE44C9A (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1399. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AllocatorHandle_Equals_m2A603E4EBB8FDB0937A4801F9CB161E0D8458939_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method) ;
  1400. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AllocatorHandle_GetHashCode_mE5C215E6AEDF384713522C73D29E4D6E82E4E243_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method) ;
  1401. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AllocatorHandle_CompareTo_mBC5073E933F44F999E6D112CE04E9EE79E2AF6A4_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method) ;
  1402. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method) ;
  1403. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Range_Dispose_mEABC7B5F5F72CBAC69BAB12C80B8EDEE86B3737A (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* __this, const RuntimeMethod* method) ;
  1404. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Block_get_AllocatedBytes_mFE126B221F670BDA89C5D59C9E63C9724F79BE08 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method) ;
  1405. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline (int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method) ;
  1406. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_lzcnt_mA6B7E71DB1B5D4CE8B67C66FF1AC4339FA368D07_inline (int32_t ___0_x, const RuntimeMethod* method) ;
  1407. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Block_set_Alignment_m4E74D90E827C5F58B3EBE91B2F5B097388E0500F (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  1408. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Block_TryFree_m0C5FA80AF51DA6F40F40DAE7E97975C3BB402225 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method) ;
  1409. inline SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9 (uint32_t ___0_alignment, int64_t ___1_hashCode, int64_t ___2_subHashCode, const RuntimeMethod* method)
  1410. {
  1411. return (( SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E (*) (uint32_t, int64_t, int64_t, const RuntimeMethod*))SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9_gshared)(___0_alignment, ___1_hashCode, ___2_subHashCode, method);
  1412. }
  1413. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_lzcnt_m121BDDDEE89F5A401E2E5F0AD900D22E47C8741C_inline (uint32_t ___0_x, const RuntimeMethod* method) ;
  1414. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DummyJob_Execute_mFD529845FB6001C124D6E93F4CB30AC87842D085 (DummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1415. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExcludeFromBurstCompatTestingAttribute_set_Reason_m54DAB86449D0D2B47E1521F71AE433D1EC2598E5_inline (ExcludeFromBurstCompatTestingAttribute_tD101D6AEB31C340592E71C069D8F72AB6B7AABD4* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1416. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Array_Resize_mC7BE2965DE3FCF4014D43B606D94951480A65380 (void* ___0_oldPointer, int64_t ___1_oldCount, int64_t ___2_newCount, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___3_allocator, int64_t ___4_size, int32_t ___5_align, const RuntimeMethod* method) ;
  1417. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_IsCustom_m7651BFF84F5AEFA592FEE86C834A85C373DDC126 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_allocator, const RuntimeMethod* method) ;
  1418. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Array_CustomResize_mB51497D583399092F23AA773ABB64F0780610D82 (void* ___0_oldPointer, int64_t ___1_oldCount, int64_t ___2_newCount, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___3_allocator, int64_t ___4_size, int32_t ___5_align, const RuntimeMethod* method) ;
  1419. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UnsafeUtility_MallocTracked_m618762A86F170FB10656114217D3D125D60CE297 (int64_t ___0_size, int32_t ___1_alignment, int32_t ___2_allocator, int32_t ___3_callstacksToSkip, const RuntimeMethod* method) ;
  1420. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t math_min_mA22BCFB62A81B533821704D26BE23D8D6402C8EB_inline (int64_t ___0_x, int64_t ___1_y, const RuntimeMethod* method) ;
  1421. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177 (void* ___0_destination, void* ___1_source, int64_t ___2_size, const RuntimeMethod* method) ;
  1422. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_FreeTracked_mB96B3C035F2CD1517BF8C29218CBD7B710B3279A (void* ___0_memory, int32_t ___1_allocator, const RuntimeMethod* method) ;
  1423. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeBitArray_Free_m593DC0AC7ADB85F86BF8E27CDCA5EF1395650D0D (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* ___0_data, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1424. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeBitArrayDispose_Dispose_m1B62640BDF4CD7C212D576F9E96E7C09591BA6FA (NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493* __this, const RuntimeMethod* method) ;
  1425. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeBitArrayDisposeJob_Execute_mFB5CEA927325091B306954255DAF283AFDC34780 (NativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1426. inline void HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04 (HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B* ___0_data, const RuntimeMethod* method)
  1427. {
  1428. (( void (*) (HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B*, const RuntimeMethod*))HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04_gshared)(___0_data, method);
  1429. }
  1430. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeHashMapDispose_Dispose_mC3C0B4D350083ECD98FB33653ECA5B9E64ECC8A0 (NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5* __this, const RuntimeMethod* method) ;
  1431. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeHashMapDisposeJob_Execute_m1A16F21E2C5C17AECCBA47BED1155479D219E792 (NativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1432. inline void UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66 (UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* ___0_listData, const RuntimeMethod* method)
  1433. {
  1434. (( void (*) (UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718*, const RuntimeMethod*))UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66_gshared)(___0_listData, method);
  1435. }
  1436. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeListDispose_Dispose_m3B82496C41B796C86D1461D40A96B0FB87D83223 (NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356* __this, const RuntimeMethod* method) ;
  1437. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeListDisposeJob_Execute_mCADA5ED914628592A5834C51F76A20B7CEC1BF2E (NativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1438. inline void UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317 (UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258* ___0_data, const RuntimeMethod* method)
  1439. {
  1440. (( void (*) (UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258*, const RuntimeMethod*))UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317_gshared)(___0_data, method);
  1441. }
  1442. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeQueueDispose_Dispose_m078AB5F16073B57EF2AA25087E8E5C03C7D0654D (NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE* __this, const RuntimeMethod* method) ;
  1443. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeQueueDisposeJob_Execute_m3DBE1DF633A0DE99FD815F98A975B1A5DA0292B9 (NativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1444. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeReferenceDispose_Dispose_mA377C7A0AEC92DC8071534DD15F6A463021F4E81 (NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D* __this, const RuntimeMethod* method) ;
  1445. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeReferenceDisposeJob_Execute_mE349F3D29F93F04237909925E49CE635ED5E7DC5 (NativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1446. inline void UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D (UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6* ___0_data, const RuntimeMethod* method)
  1447. {
  1448. (( void (*) (UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6*, const RuntimeMethod*))UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D_gshared)(___0_data, method);
  1449. }
  1450. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeRingQueueDispose_Dispose_mAFC3E885E53F715512815E9D5BAEC6F54B4419EE (NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478* __this, const RuntimeMethod* method) ;
  1451. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeRingQueueDisposeJob_Execute_m917869AD688F9A0B3F0B7F0CE60BC42136DC4BD4 (NativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1452. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method) ;
  1453. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeStream_get_IsCreated_m139F58FDEA696FB948C962A2BBC0F13B583B2F64_inline (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, const RuntimeMethod* method) ;
  1454. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStream_Dispose_m4D493F40C6ED4C7346017C05FBC006B5632AE49C (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method) ;
  1455. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeStream_Dispose_mD811E61D5C945B23F47323E9C553AD7510889B92 (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, const RuntimeMethod* method) ;
  1456. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065 (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, int32_t ___0_forEachCount, const RuntimeMethod* method) ;
  1457. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeStream_AllocateForEach_mF01F5D8EDB5CF944B8618FB4DB412A4F68A0AAF9 (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, int32_t ___0_forEachCount, const RuntimeMethod* method) ;
  1458. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJobList_Execute_m7A858340428CA2870C89EF776C7E205F7C0961A1 (ConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1459. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJob_Execute_m167E59B46B52E41BD4BFA6053CAA2E94BE9DB922 (ConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1460. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeStreamDispose_Dispose_m2896546615BEF6A590E2D60ACA6FD27BFD224692 (NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C* __this, const RuntimeMethod* method) ;
  1461. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeStreamDisposeJob_Execute_m4DFC0A231FE4B2DD7F1E4C16A2C2BD5EA2103A77 (NativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1462. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeText_Free_m22C162680EFB31663020E8FE94BE67596994A98B (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_data, const RuntimeMethod* method) ;
  1463. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeTextDispose_Dispose_m78F766D5AE3C4A7734C025650944A8BF1F472D52 (NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA* __this, const RuntimeMethod* method) ;
  1464. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeTextDisposeJob_Execute_mCA918E48AB23694F215614FAFF4511B2C9F57972 (NativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1465. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E Unicode_get_ReplacementCharacter_m525CDE0E6CAB489454025711F93FF832A600556A (const RuntimeMethod* method) ;
  1466. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD (uint8_t ___0_b, const RuntimeMethod* method) ;
  1467. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Unicode_IsValidCodePoint_m6F8516FA18D35B6D052FD6BDE01D9D497EA06B9D (int32_t ___0_codepoint, const RuntimeMethod* method) ;
  1468. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Unicode_Utf8ToUcs_m013E3A507C4B6F5459B09C6EA8EA229BDC979827 (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* ___0_rune, uint8_t* ___1_buffer, int32_t* ___2_index, int32_t ___3_capacity, const RuntimeMethod* method) ;
  1469. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Unicode_UcsToUtf16_m14C1098270C0DFFAF6B48D47C3214344FD4FAE0E (Il2CppChar* ___0_buffer, int32_t* ___1_index, int32_t ___2_capacity, Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E ___3_rune, const RuntimeMethod* method) ;
  1470. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Rune_Equals_mE3D6609368AB40A856C04A58E887B4123B0066E7 (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1471. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Rune_GetHashCode_m68368D05A3983D96C4402F27AB0B760B17F55729_inline (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* __this, const RuntimeMethod* method) ;
  1472. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_mB06E8737D3DA41F9FFBC38A6D0583D515EFB5717 (int32_t* ___0_location1, int32_t ___1_value, int32_t ___2_comparand, const RuntimeMethod* method) ;
  1473. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_m5810F59A9EF49D8003BA76D95398854254A091DF (int32_t* ___0_location1, int32_t ___1_value, const RuntimeMethod* method) ;
  1474. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_m3C240C32E8D9544EC050B74D4F28EEB58F1F9309 (int32_t* ___0_location, const RuntimeMethod* method) ;
  1475. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Interlocked_CompareExchange_m7AC708A0F5F20CADA50F64E6E2F34262D3BC45C6 (intptr_t* ___0_location1, intptr_t ___1_value, intptr_t ___2_comparand, const RuntimeMethod* method) ;
  1476. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueBlockPoolData_AllocateBlock_mE125EB9F7D9C853E6F4C6EF3E523DFE36FD82BE3 (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* __this, const RuntimeMethod* method) ;
  1477. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Decrement_m6AFAD2E874CBDA373B1EF7572F11D6E91813E75D (int32_t* ___0_location, const RuntimeMethod* method) ;
  1478. inline void Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1479. {
  1480. (( void (*) (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_gshared)(___0_pointer, ___1_allocator, method);
  1481. }
  1482. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueBlockPoolData_FreeBlock_mA0771AE409B2B98C9B69208A7612732536BE2816 (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* __this, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___0_block, const RuntimeMethod* method) ;
  1483. inline void* SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_inline (SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F* __this, const RuntimeMethod* method)
  1484. {
  1485. return (( void* (*) (SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F*, const RuntimeMethod*))SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_gshared_inline)(__this, method);
  1486. }
  1487. inline int32_t UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_inline (const RuntimeMethod* method)
  1488. {
  1489. return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_gshared_inline)(method);
  1490. }
  1491. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueBlockPool_AppDomainOnDomainUnload_m28670B75365C23F0B0213D0C34D4A36DA29AD985 (const RuntimeMethod* method) ;
  1492. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* AppDomain_get_CurrentDomain_m38D86FD149C2C62AD0FAB0159D70ECB13D841667 (const RuntimeMethod* method) ;
  1493. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2 (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
  1494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_add_DomainUnload_mC24E729ABD7550A0A1F018EBF215FDF03AA1064F (AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* __this, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___0_value, const RuntimeMethod* method) ;
  1495. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  1496. inline void Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3 (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1497. {
  1498. (( void (*) (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3_gshared)(___0_pointer, ___1_allocator, method);
  1499. }
  1500. inline SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9 (uint32_t ___0_alignment, int64_t ___1_hashCode, int64_t ___2_subHashCode, const RuntimeMethod* method)
  1501. {
  1502. return (( SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F (*) (uint32_t, int64_t, int64_t, const RuntimeMethod*))SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9_gshared)(___0_alignment, ___1_hashCode, ___2_subHashCode, method);
  1503. }
  1504. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueData_GetCurrentWriteBlockTLS_m51E3B0E146EF03939DC2ADB143AE4A6382F9AF12_inline (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* __this, int32_t ___0_threadIndex, const RuntimeMethod* method) ;
  1505. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeQueueData_SetCurrentWriteBlockTLS_mE8BF637642E13044DFF8A34A55B8AE0B33A5F727_inline (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* __this, int32_t ___0_threadIndex, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___1_currentWriteBlock, const RuntimeMethod* method) ;
  1506. inline void Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22 (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1507. {
  1508. (( void (*) (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22_gshared)(___0_pointer, ___1_allocator, method);
  1509. }
  1510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueData_DeallocateQueue_mF4E2184511650FED8D9B85ECDB14B6E43AB06373 (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* ___0_data, UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* ___1_pool, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___2_allocation, const RuntimeMethod* method) ;
  1511. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueDispose_Dispose_mC88928459218E24F22077B5D77A92A48B361A502 (UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271* __this, const RuntimeMethod* method) ;
  1512. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeQueueDisposeJob_Execute_m539787ED63E9D1A60DC2E7C76FE7102473D2808E (UnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1513. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeAtomicCounter32__ctor_m1758A643330E7D0582DF34ABC6603E1A70C39586_inline (UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* __this, void* ___0_ptr, const RuntimeMethod* method) ;
  1514. inline int32_t* UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_inline (void* ___0_ptr, const RuntimeMethod* method)
  1515. {
  1516. return (( int32_t* (*) (void*, const RuntimeMethod*))UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_gshared_inline)(___0_ptr, method);
  1517. }
  1518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Add_m2455208C56EEFD8832AEAD8AF7368A3FEB33A73C (int32_t* ___0_location1, int32_t ___1_value, const RuntimeMethod* method) ;
  1519. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeAtomicCounter32_Add_mDA7FAE5B9565EA6855FED9E398595C9B2E119194 (UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  1520. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1521. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeBitArray_Dispose_m95D39C0718064B87A854A3142329041E8244FCD2 (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* __this, const RuntimeMethod* method) ;
  1522. inline void Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1523. {
  1524. (( void (*) (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E_gshared)(___0_pointer, ___1_allocator, method);
  1525. }
  1526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeBitArray_get_IsCreated_m2C813128AFAA24077BA71E3B1C6A9EB6918F1DE1 (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* __this, const RuntimeMethod* method) ;
  1527. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionHelper_ShouldDeallocate_m505E7EDBA71F02BAF52CC9DCD7C593CDA85D5465 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_allocator, const RuntimeMethod* method) ;
  1528. inline void Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64 (uint64_t* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1529. {
  1530. (( void (*) (uint64_t*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64_gshared)(___0_pointer, ___1_allocator, method);
  1531. }
  1532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_Free_mB8AE9C4CB989A9121F4E3F2E6C7781076DFB3025 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_handle, void* ___1_pointer, const RuntimeMethod* method) ;
  1533. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeDisposeJob_Execute_m6D0C969CE5C1124239FB9B69EC2A1E486E4F38BC (UnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t* UnsafeParallelHashMapData_get_firstFreeTLS_m75A8F3E5E2ACC2BAA05561AC4D6CD59CC06F6CC5 (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* __this, const RuntimeMethod* method) ;
  1535. inline void Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271 (uint8_t* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1536. {
  1537. (( void (*) (uint8_t*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271_gshared)(___0_pointer, ___1_allocator, method);
  1538. }
  1539. inline void Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655 (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1540. {
  1541. (( void (*) (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655_gshared)(___0_pointer, ___1_allocator, method);
  1542. }
  1543. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_min_m02D43DF516544C279AF660EA4731449C82991849_inline (int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method) ;
  1544. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapData_MoveNextSearch_m470DB16F92234F8BF5C36E38E1B2D81A208634F4 (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, int32_t* ___1_bucketIndex, int32_t* ___2_nextIndex, int32_t* ___3_index, const RuntimeMethod* method) ;
  1545. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapData_DeallocateHashMap_m8D0FEE08B8522A1D05FBFFBBB43CB203304F114F (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method) ;
  1546. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataDispose_Dispose_mCFF4782249AE264F799027E84E4CC704737066A3 (UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A* __this, const RuntimeMethod* method) ;
  1547. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataDisposeJob_Execute_m129F30954F3CF5922C620E4DDB1E50E540A06DCC (UnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1548. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataEnumerator__ctor_m4BD89848A9562869AB65E15D3D1D24A194187736 (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, const RuntimeMethod* method) ;
  1549. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapData_MoveNext_m3A7C4662D2D479B740F657CECED1B78E1BDE1BDE_inline (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, int32_t* ___1_bucketIndex, int32_t* ___2_nextIndex, int32_t* ___3_index, const RuntimeMethod* method) ;
  1550. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapDataEnumerator_MoveNext_m15C57E6A73D44B6A1DEC165D193181FC30441204_inline (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, const RuntimeMethod* method) ;
  1551. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataEnumerator_Reset_m02FCCDAA74B79950CD2E1930AB863F55D6FD9D7A (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, const RuntimeMethod* method) ;
  1552. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDisposeJob_Execute_mCEF89FC4B3D6D8DC7E213FF274053A41805215E1 (UnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1553. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStreamBlockData_Free_m91AAAF7EB91E93E8806ACB6E87436DB1757D5464 (UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* __this, UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* ___0_oldBlock, const RuntimeMethod* method) ;
  1554. inline Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* ___0_t, int32_t ___1_sizeOf, int32_t ___2_alignOf, int32_t ___3_items, const RuntimeMethod* method)
  1555. {
  1556. return (( Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 (*) (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*, int32_t, int32_t, int32_t, const RuntimeMethod*))AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared)(___0_t, ___1_sizeOf, ___2_alignOf, ___3_items, method);
  1557. }
  1558. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemClear_m6C4377117084A11A667A567BC2F5E606A632A7C1 (void* ___0_destination, int64_t ___1_size, const RuntimeMethod* method) ;
  1559. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStream_Deallocate_mF13D45026C45A52DD441B1F021CC4BE9454D466C (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method) ;
  1560. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DisposeJob_Execute_m089DE6120E788ECA6418DFAB36FFC3F4E90FC10E (DisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1561. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJobList_Execute_mDECEE80A756D3E19EF0FC58ADB0C4665626F7DAB (ConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1562. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJob_Execute_mAA49F134BF92ED7BB0356BC460A30C9B39A87C50 (ConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
  1563. inline UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_inline (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* ___0_from, const RuntimeMethod* method)
  1564. {
  1565. return (( UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* (*) (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*, const RuntimeMethod*))UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_gshared_inline)(___0_from, method);
  1566. }
  1567. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 ___0_text, const RuntimeMethod* method) ;
  1568. inline bool UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_inline (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method)
  1569. {
  1570. return (( bool (*) (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D*, const RuntimeMethod*))UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_gshared_inline)(__this, method);
  1571. }
  1572. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeText_get_IsCreated_mEE504C37FEADA4DFD3A6AFB47751B20A1423BBF1_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method) ;
  1573. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeText_Dispose_m715EBE3FAD0BA5111276CFCB7F65419701F3BABC (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method) ;
  1574. inline void Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  1575. {
  1576. (( void (*) (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148, const RuntimeMethod*))Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84_gshared)(___0_pointer, ___1_allocator, method);
  1577. }
  1578. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* UnsafeTextExtensions_AsUnsafeListOfBytes_mA80ABFE08762E38D788ACF506BEB4A0E3621D439_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_text, const RuntimeMethod* method) ;
  1579. inline void UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1 (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method)
  1580. {
  1581. (( void (*) (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D*, const RuntimeMethod*))UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1_gshared)(__this, method);
  1582. }
  1583. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* UnsafeText_GetUnsafePtr_m1C1462A867C4714017B3A5974F1FAF3716FB8F8C (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method) ;
  1584. inline int32_t UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_inline (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method)
  1585. {
  1586. return (( int32_t (*) (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D*, const RuntimeMethod*))UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_gshared_inline)(__this, method);
  1587. }
  1588. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeText_get_Length_m7D4616C7F2AAA07EC0E98FB430C6D7DA2D4D5E40_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method) ;
  1589. inline String_t* FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_fs, const RuntimeMethod* method)
  1590. {
  1591. return (( String_t* (*) (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*, const RuntimeMethod*))FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160_gshared)(___0_fs, method);
  1592. }
  1593. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnsafeText_ToString_m02C6D467CDF758100B8CCC3199168304B1FCE2B2 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method) ;
  1594. inline void IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619 (const RuntimeMethod* method)
  1595. {
  1596. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619_gshared)(method);
  1597. }
  1598. inline void IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5 (const RuntimeMethod* method)
  1599. {
  1600. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5_gshared)(method);
  1601. }
  1602. inline void IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997 (const RuntimeMethod* method)
  1603. {
  1604. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997_gshared)(method);
  1605. }
  1606. inline void IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E (const RuntimeMethod* method)
  1607. {
  1608. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E_gshared)(method);
  1609. }
  1610. inline void IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80 (const RuntimeMethod* method)
  1611. {
  1612. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80_gshared)(method);
  1613. }
  1614. inline void IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38 (const RuntimeMethod* method)
  1615. {
  1616. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38_gshared)(method);
  1617. }
  1618. inline void IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE (const RuntimeMethod* method)
  1619. {
  1620. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE_gshared)(method);
  1621. }
  1622. inline void IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2 (const RuntimeMethod* method)
  1623. {
  1624. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2_gshared)(method);
  1625. }
  1626. inline void IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7 (const RuntimeMethod* method)
  1627. {
  1628. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7_gshared)(method);
  1629. }
  1630. inline void IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941 (const RuntimeMethod* method)
  1631. {
  1632. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941_gshared)(method);
  1633. }
  1634. inline void IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96 (const RuntimeMethod* method)
  1635. {
  1636. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96_gshared)(method);
  1637. }
  1638. inline void IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2 (const RuntimeMethod* method)
  1639. {
  1640. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2_gshared)(method);
  1641. }
  1642. inline void IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B (const RuntimeMethod* method)
  1643. {
  1644. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B_gshared)(method);
  1645. }
  1646. inline void IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338 (const RuntimeMethod* method)
  1647. {
  1648. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338_gshared)(method);
  1649. }
  1650. inline void IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521 (const RuntimeMethod* method)
  1651. {
  1652. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521_gshared)(method);
  1653. }
  1654. inline void IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384 (const RuntimeMethod* method)
  1655. {
  1656. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384_gshared)(method);
  1657. }
  1658. inline void IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787 (const RuntimeMethod* method)
  1659. {
  1660. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787_gshared)(method);
  1661. }
  1662. inline void IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C (const RuntimeMethod* method)
  1663. {
  1664. (( void (*) (const RuntimeMethod*))IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C_gshared)(method);
  1665. }
  1666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitHelpers_JobReflectionDataCreationFailed_mD6AB08D5BB411CCE38A87793C3C7062EC91FD1EC (Exception_t* ___0_ex, const RuntimeMethod* method) ;
  1667. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __JobReflectionRegistrationOutput__1652832624114795843_CreateJobReflectionData_m6F06A9348EFD949AABE2DB3703E98ECE169E5C2A (const RuntimeMethod* method) ;
  1668. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CollectionHelper_AssumePositive_mD1EC1F05F50F605141D9BA5D70C4332AC902B4B1_inline (int32_t ___0_value, const RuntimeMethod* method) ;
  1669. #ifdef __clang__
  1670. #pragma clang diagnostic push
  1671. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1672. #pragma clang diagnostic ignored "-Wunused-variable"
  1673. #endif
  1674. #ifdef __clang__
  1675. #pragma clang diagnostic pop
  1676. #endif
  1677. #ifdef __clang__
  1678. #pragma clang diagnostic push
  1679. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1680. #pragma clang diagnostic ignored "-Wunused-variable"
  1681. #endif
  1682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmbeddedAttribute__ctor_mB9EA4CCF3A3DC39A3BC92CFE9557FFAA77D15404 (EmbeddedAttribute_t02DB10C6AF87332FEE7D19025B26687C7B784141* __this, const RuntimeMethod* method)
  1683. {
  1684. {
  1685. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  1686. return;
  1687. }
  1688. }
  1689. #ifdef __clang__
  1690. #pragma clang diagnostic pop
  1691. #endif
  1692. #ifdef __clang__
  1693. #pragma clang diagnostic push
  1694. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1695. #pragma clang diagnostic ignored "-Wunused-variable"
  1696. #endif
  1697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IsUnmanagedAttribute__ctor_m15974D59768AFF916E346F7107F7FF7F6AD9099C (IsUnmanagedAttribute_tA4BF73E3582F0C271AD8AD4501C839CE5D557059* __this, const RuntimeMethod* method)
  1698. {
  1699. {
  1700. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  1701. return;
  1702. }
  1703. }
  1704. #ifdef __clang__
  1705. #pragma clang diagnostic pop
  1706. #endif
  1707. #ifdef __clang__
  1708. #pragma clang diagnostic push
  1709. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1710. #pragma clang diagnostic ignored "-Wunused-variable"
  1711. #endif
  1712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitHelpers__cctor_m19122BBB2CF7BC74606113B23BF74FA959A5D467 (const RuntimeMethod* method)
  1713. {
  1714. {
  1715. EarlyInitHelpers_FlushEarlyInits_m2B9C35967B87AF2BD2018C649BF964DFD5C40033(NULL);
  1716. return;
  1717. }
  1718. }
  1719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitHelpers_FlushEarlyInits_m2B9C35967B87AF2BD2018C649BF964DFD5C40033 (const RuntimeMethod* method)
  1720. {
  1721. static bool s_Il2CppMethodInitialized;
  1722. if (!s_Il2CppMethodInitialized)
  1723. {
  1724. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var);
  1725. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mBAFDF51514863C7DE856D04A729D060CD47C15F5_RuntimeMethod_var);
  1726. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m7E7A1608E40278125E5C0749E2DE03C4251EE4B8_RuntimeMethod_var);
  1727. s_Il2CppMethodInitialized = true;
  1728. }
  1729. List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* V_0 = NULL;
  1730. int32_t V_1 = 0;
  1731. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  1732. {
  1733. goto IL_0035;
  1734. }
  1735. IL_0002:
  1736. {
  1737. il2cpp_codegen_runtime_class_init_inline(EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var);
  1738. List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* L_0 = ((EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_StaticFields*)il2cpp_codegen_static_fields_for(EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var))->___s_PendingDelegates;
  1739. V_0 = L_0;
  1740. ((EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_StaticFields*)il2cpp_codegen_static_fields_for(EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var))->___s_PendingDelegates = (List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7*)NULL;
  1741. Il2CppCodeGenWriteBarrier((void**)(&((EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_StaticFields*)il2cpp_codegen_static_fields_for(EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var))->___s_PendingDelegates), (void*)(List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7*)NULL);
  1742. V_1 = 0;
  1743. goto IL_002c;
  1744. }
  1745. IL_0012:
  1746. {
  1747. }
  1748. try
  1749. {
  1750. List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* L_1 = V_0;
  1751. int32_t L_2 = V_1;
  1752. NullCheck(L_1);
  1753. EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* L_3;
  1754. L_3 = List_1_get_Item_m7E7A1608E40278125E5C0749E2DE03C4251EE4B8(L_1, L_2, List_1_get_Item_m7E7A1608E40278125E5C0749E2DE03C4251EE4B8_RuntimeMethod_var);
  1755. NullCheck(L_3);
  1756. EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_inline(L_3, NULL);
  1757. goto IL_0028;
  1758. }
  1759. catch(Il2CppExceptionWrapper& e)
  1760. {
  1761. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  1762. {
  1763. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1764. goto CATCH_0021;
  1765. }
  1766. throw e;
  1767. }
  1768. CATCH_0021:
  1769. {
  1770. Exception_t* L_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
  1771. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  1772. Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_4, NULL);
  1773. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  1774. goto IL_0028;
  1775. }
  1776. IL_0028:
  1777. {
  1778. int32_t L_5 = V_1;
  1779. V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  1780. }
  1781. IL_002c:
  1782. {
  1783. int32_t L_6 = V_1;
  1784. List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* L_7 = V_0;
  1785. NullCheck(L_7);
  1786. int32_t L_8;
  1787. L_8 = List_1_get_Count_mBAFDF51514863C7DE856D04A729D060CD47C15F5_inline(L_7, List_1_get_Count_mBAFDF51514863C7DE856D04A729D060CD47C15F5_RuntimeMethod_var);
  1788. if ((((int32_t)L_6) < ((int32_t)L_8)))
  1789. {
  1790. goto IL_0012;
  1791. }
  1792. }
  1793. IL_0035:
  1794. {
  1795. il2cpp_codegen_runtime_class_init_inline(EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var);
  1796. List_1_t4A2B6AA5A60A92C3D9F9FABCE0FEF7329D4A2EB7* L_9 = ((EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_StaticFields*)il2cpp_codegen_static_fields_for(EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var))->___s_PendingDelegates;
  1797. if (L_9)
  1798. {
  1799. goto IL_0002;
  1800. }
  1801. }
  1802. {
  1803. return;
  1804. }
  1805. }
  1806. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitHelpers_JobReflectionDataCreationFailed_mD6AB08D5BB411CCE38A87793C3C7062EC91FD1EC (Exception_t* ___0_ex, const RuntimeMethod* method)
  1807. {
  1808. static bool s_Il2CppMethodInitialized;
  1809. if (!s_Il2CppMethodInitialized)
  1810. {
  1811. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1812. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A49AA3EAE32A0ACEB1822588EBAA4A05DEA2664);
  1813. s_Il2CppMethodInitialized = true;
  1814. }
  1815. {
  1816. il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1817. Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteral1A49AA3EAE32A0ACEB1822588EBAA4A05DEA2664, NULL);
  1818. Exception_t* L_0 = ___0_ex;
  1819. Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_0, NULL);
  1820. return;
  1821. }
  1822. }
  1823. #ifdef __clang__
  1824. #pragma clang diagnostic pop
  1825. #endif
  1826. #ifdef __clang__
  1827. #pragma clang diagnostic push
  1828. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1829. #pragma clang diagnostic ignored "-Wunused-variable"
  1830. #endif
  1831. void EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_Multicast(EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method)
  1832. {
  1833. il2cpp_array_size_t length = __this->___delegates->max_length;
  1834. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  1835. for (il2cpp_array_size_t i = 0; i < length; i++)
  1836. {
  1837. EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* currentDelegate = reinterpret_cast<EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802*>(delegatesToInvoke[i]);
  1838. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1839. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  1840. }
  1841. }
  1842. void EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_OpenInst(EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method)
  1843. {
  1844. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1845. ((FunctionPointerType)__this->___method_ptr)(method);
  1846. }
  1847. void EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_OpenStatic(EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method)
  1848. {
  1849. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1850. ((FunctionPointerType)__this->___method_ptr)(method);
  1851. }
  1852. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802 (EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method)
  1853. {
  1854. typedef void (DEFAULT_CALL *PInvokeFunc)();
  1855. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  1856. il2cppPInvokeFunc();
  1857. }
  1858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitFunction__ctor_m74E4D36634E32C8FE21AA86C7D9597F7FD77E0B6 (EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  1859. {
  1860. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  1861. __this->___method = ___1_method;
  1862. __this->___m_target = ___0_object;
  1863. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  1864. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  1865. __this->___method_code = (intptr_t)__this;
  1866. if (MethodIsStatic((RuntimeMethod*)___1_method))
  1867. {
  1868. bool isOpen = parameterCount == 0;
  1869. if (isOpen)
  1870. __this->___invoke_impl = (intptr_t)&EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_OpenStatic;
  1871. else
  1872. {
  1873. __this->___invoke_impl = __this->___method_ptr;
  1874. __this->___method_code = (intptr_t)__this->___m_target;
  1875. }
  1876. }
  1877. else
  1878. {
  1879. if (___0_object == NULL)
  1880. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  1881. __this->___invoke_impl = __this->___method_ptr;
  1882. __this->___method_code = (intptr_t)__this->___m_target;
  1883. }
  1884. __this->___extra_arg = (intptr_t)&EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_Multicast;
  1885. }
  1886. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D (EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method)
  1887. {
  1888. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1889. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1890. }
  1891. #ifdef __clang__
  1892. #pragma clang diagnostic pop
  1893. #endif
  1894. #ifdef __clang__
  1895. #pragma clang diagnostic push
  1896. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1897. #pragma clang diagnostic ignored "-Wunused-variable"
  1898. #endif
  1899. #ifdef __clang__
  1900. #pragma clang diagnostic pop
  1901. #endif
  1902. #ifdef __clang__
  1903. #pragma clang diagnostic push
  1904. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1905. #pragma clang diagnostic ignored "-Wunused-variable"
  1906. #endif
  1907. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegisterGenericJobTypeAttribute__ctor_m477E5F1C2EA7264CD6533A7B415C6D76D9538D94 (RegisterGenericJobTypeAttribute_tD5D0C2798899CA2B0812CDF0203AA95944DBF2AF* __this, Type_t* ___0_type, const RuntimeMethod* method)
  1908. {
  1909. {
  1910. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  1911. Type_t* L_0 = ___0_type;
  1912. __this->___ConcreteType = L_0;
  1913. Il2CppCodeGenWriteBarrier((void**)(&__this->___ConcreteType), (void*)L_0);
  1914. return;
  1915. }
  1916. }
  1917. #ifdef __clang__
  1918. #pragma clang diagnostic pop
  1919. #endif
  1920. #ifdef __clang__
  1921. #pragma clang diagnostic push
  1922. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1923. #pragma clang diagnostic ignored "-Wunused-variable"
  1924. #endif
  1925. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DOTSCompilerGeneratedAttribute__ctor_m8689CDD675567BC580F1FADCCF386B0FEE07B0E5 (DOTSCompilerGeneratedAttribute_t4240DED0AAD134B4F3558C2592BDB48CE2A5AE23* __this, const RuntimeMethod* method)
  1926. {
  1927. {
  1928. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  1929. return;
  1930. }
  1931. }
  1932. #ifdef __clang__
  1933. #pragma clang diagnostic pop
  1934. #endif
  1935. #ifdef __clang__
  1936. #pragma clang diagnostic push
  1937. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1938. #pragma clang diagnostic ignored "-Wunused-variable"
  1939. #endif
  1940. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_Free_mB8AE9C4CB989A9121F4E3F2E6C7781076DFB3025 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_handle, void* ___1_pointer, const RuntimeMethod* method)
  1941. {
  1942. static bool s_Il2CppMethodInitialized;
  1943. if (!s_Il2CppMethodInitialized)
  1944. {
  1945. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC_RuntimeMethod_var);
  1946. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  1947. s_Il2CppMethodInitialized = true;
  1948. }
  1949. {
  1950. void* L_0 = ___1_pointer;
  1951. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  1952. AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC((&___0_handle), (uint8_t*)L_0, 1, AllocatorManager_Free_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CD9715357F39EAC82170472C6E0A5A35A7B32EC_RuntimeMethod_var);
  1953. return;
  1954. }
  1955. }
  1956. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_CheckDelegate_m52D3F12472A2BBC5A28D2F4B5011B19D2E36AC61 (bool* ___0_useDelegate, const RuntimeMethod* method)
  1957. {
  1958. {
  1959. bool* L_0 = ___0_useDelegate;
  1960. *((int8_t*)L_0) = (int8_t)1;
  1961. return;
  1962. }
  1963. }
  1964. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AllocatorManager_UseDelegate_mEB18420309DAA2CC710BA123C6996C9FB6FC3798 (const RuntimeMethod* method)
  1965. {
  1966. static bool s_Il2CppMethodInitialized;
  1967. if (!s_Il2CppMethodInitialized)
  1968. {
  1969. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  1970. s_Il2CppMethodInitialized = true;
  1971. }
  1972. bool V_0 = false;
  1973. {
  1974. V_0 = (bool)0;
  1975. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  1976. AllocatorManager_CheckDelegate_m52D3F12472A2BBC5A28D2F4B5011B19D2E36AC61((&V_0), NULL);
  1977. bool L_0 = V_0;
  1978. return L_0;
  1979. }
  1980. }
  1981. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_allocate_block_mBEB6E6FDC334118DB679CF2619EBB3FF4FDD7FB5 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method)
  1982. {
  1983. static bool s_Il2CppMethodInitialized;
  1984. if (!s_Il2CppMethodInitialized)
  1985. {
  1986. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_RuntimeMethod_var);
  1987. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FunctionPointer_1_get_Invoke_m97C18B13503F4392E7606936FDC209ECE77A7EFB_RuntimeMethod_var);
  1988. s_Il2CppMethodInitialized = true;
  1989. }
  1990. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE V_0;
  1991. memset((&V_0), 0, sizeof(V_0));
  1992. FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C V_1;
  1993. memset((&V_1), 0, sizeof(V_1));
  1994. {
  1995. il2cpp_codegen_initobj((&V_0), sizeof(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE));
  1996. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = ___0_block;
  1997. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  1998. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_2 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_1->___Allocator);
  1999. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* L_3;
  2000. L_3 = AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63(L_2, NULL);
  2001. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_4 = (*(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE*)L_3);
  2002. V_0 = L_4;
  2003. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_5 = V_0;
  2004. intptr_t L_6 = L_5.___function;
  2005. FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_inline((&V_1), L_6, FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_RuntimeMethod_var);
  2006. TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* L_7;
  2007. L_7 = FunctionPointer_1_get_Invoke_m97C18B13503F4392E7606936FDC209ECE77A7EFB((&V_1), FunctionPointer_1_get_Invoke_m97C18B13503F4392E7606936FDC209ECE77A7EFB_RuntimeMethod_var);
  2008. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_8 = V_0;
  2009. intptr_t L_9 = L_8.___state;
  2010. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_10 = ___0_block;
  2011. NullCheck(L_7);
  2012. int32_t L_11;
  2013. L_11 = TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_inline(L_7, L_9, L_10, NULL);
  2014. return L_11;
  2015. }
  2016. }
  2017. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager_forward_mono_allocate_block_mD2A9A49DFC8CBDC39F27E2749048ABC91E124519 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, int32_t* ___1_error, const RuntimeMethod* method)
  2018. {
  2019. static bool s_Il2CppMethodInitialized;
  2020. if (!s_Il2CppMethodInitialized)
  2021. {
  2022. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var);
  2023. s_Il2CppMethodInitialized = true;
  2024. }
  2025. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE V_0;
  2026. memset((&V_0), 0, sizeof(V_0));
  2027. TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA** V_1 = NULL;
  2028. {
  2029. il2cpp_codegen_initobj((&V_0), sizeof(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE));
  2030. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = ___0_block;
  2031. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  2032. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_2 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_1->___Allocator);
  2033. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* L_3;
  2034. L_3 = AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63(L_2, NULL);
  2035. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_4 = (*(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE*)L_3);
  2036. V_0 = L_4;
  2037. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_5 = ___0_block;
  2038. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_6 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_5->___Range);
  2039. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_7 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_6->___Allocator);
  2040. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_8;
  2041. L_8 = AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2(L_7, NULL);
  2042. uint16_t L_9 = L_8.___Index;
  2043. if ((((int32_t)L_9) < ((int32_t)((int32_t)32768))))
  2044. {
  2045. goto IL_0045;
  2046. }
  2047. }
  2048. {
  2049. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  2050. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral55E10EEA67F908C03E76CA4B92A10DD2FA288A89)), NULL);
  2051. IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AllocatorManager_forward_mono_allocate_block_mD2A9A49DFC8CBDC39F27E2749048ABC91E124519_RuntimeMethod_var)));
  2052. }
  2053. IL_0045:
  2054. {
  2055. il2cpp_codegen_runtime_class_init_inline(Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var);
  2056. TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5* L_11 = ((Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_StaticFields*)il2cpp_codegen_static_fields_for(Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var))->___TryFunctionDelegates;
  2057. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_12 = ___0_block;
  2058. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_13 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_12->___Range);
  2059. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_14 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_13->___Allocator);
  2060. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_15;
  2061. L_15 = AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2(L_14, NULL);
  2062. uint16_t L_16 = L_15.___Index;
  2063. NullCheck(L_11);
  2064. V_1 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)));
  2065. int32_t* L_17 = ___1_error;
  2066. TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA** L_18 = V_1;
  2067. TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* L_19 = *((TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA**)L_18);
  2068. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_20 = V_0;
  2069. intptr_t L_21 = L_20.___state;
  2070. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_22 = ___0_block;
  2071. NullCheck(L_19);
  2072. int32_t L_23;
  2073. L_23 = TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_inline(L_19, L_21, L_22, NULL);
  2074. *((int32_t*)L_17) = (int32_t)L_23;
  2075. return;
  2076. }
  2077. }
  2078. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_LegacyOf_mAD212C1A7F5295C8987A6C9D7F81E8FF42E0A3BF (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_handle, const RuntimeMethod* method)
  2079. {
  2080. {
  2081. int32_t L_0;
  2082. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&___0_handle), NULL);
  2083. if ((((int32_t)L_0) < ((int32_t)((int32_t)64))))
  2084. {
  2085. goto IL_000d;
  2086. }
  2087. }
  2088. {
  2089. return (int32_t)(4);
  2090. }
  2091. IL_000d:
  2092. {
  2093. int32_t L_1;
  2094. L_1 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&___0_handle), NULL);
  2095. return (int32_t)(L_1);
  2096. }
  2097. }
  2098. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_TryLegacy_mF4F0B8CE7B0293504FA12A6F9C4ACFF28B59FF79 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method)
  2099. {
  2100. static bool s_Il2CppMethodInitialized;
  2101. if (!s_Il2CppMethodInitialized)
  2102. {
  2103. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2104. s_Il2CppMethodInitialized = true;
  2105. }
  2106. {
  2107. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = ___0_block;
  2108. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  2109. intptr_t L_2 = L_1->___Pointer;
  2110. bool L_3;
  2111. L_3 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline(L_2, 0, NULL);
  2112. if (!L_3)
  2113. {
  2114. goto IL_0079;
  2115. }
  2116. }
  2117. {
  2118. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_4 = ___0_block;
  2119. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_5 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_4->___Range);
  2120. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_6 = ___0_block;
  2121. int64_t L_7;
  2122. L_7 = Block_get_Bytes_m4BB90CD1C72FC56C573BE09951BF1CA68E8BD7D7(L_6, NULL);
  2123. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_8 = ___0_block;
  2124. int32_t L_9;
  2125. L_9 = Block_get_Alignment_mC2388F87008B204A333664B9323BD38AA20FD633(L_8, NULL);
  2126. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_10 = ___0_block;
  2127. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_11 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_10->___Range);
  2128. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_12 = L_11->___Allocator;
  2129. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2130. int32_t L_13;
  2131. L_13 = AllocatorManager_LegacyOf_mAD212C1A7F5295C8987A6C9D7F81E8FF42E0A3BF(L_12, NULL);
  2132. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_14;
  2133. L_14 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(L_13, NULL);
  2134. void* L_15;
  2135. L_15 = Unmanaged_Allocate_m7310B1FE896DEFFA18303D961C9859C8FF3D21E5(L_7, L_9, L_14, NULL);
  2136. intptr_t L_16;
  2137. L_16 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D(L_15, NULL);
  2138. L_5->___Pointer = L_16;
  2139. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_17 = ___0_block;
  2140. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_18 = ___0_block;
  2141. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_19 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_18->___Range);
  2142. int32_t L_20 = L_19->___Items;
  2143. L_17->___AllocatedItems = L_20;
  2144. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_21 = ___0_block;
  2145. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_22 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_21->___Range);
  2146. intptr_t L_23 = L_22->___Pointer;
  2147. bool L_24;
  2148. L_24 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline(L_23, 0, NULL);
  2149. if (L_24)
  2150. {
  2151. goto IL_0077;
  2152. }
  2153. }
  2154. {
  2155. return 0;
  2156. }
  2157. IL_0077:
  2158. {
  2159. return (-1);
  2160. }
  2161. IL_0079:
  2162. {
  2163. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_25 = ___0_block;
  2164. int64_t L_26;
  2165. L_26 = Block_get_Bytes_m4BB90CD1C72FC56C573BE09951BF1CA68E8BD7D7(L_25, NULL);
  2166. if (L_26)
  2167. {
  2168. goto IL_00d7;
  2169. }
  2170. }
  2171. {
  2172. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_27 = ___0_block;
  2173. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_28 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_27->___Range);
  2174. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_29 = L_28->___Allocator;
  2175. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2176. int32_t L_30;
  2177. L_30 = AllocatorManager_LegacyOf_mAD212C1A7F5295C8987A6C9D7F81E8FF42E0A3BF(L_29, NULL);
  2178. if ((((int32_t)L_30) == ((int32_t)1)))
  2179. {
  2180. goto IL_00be;
  2181. }
  2182. }
  2183. {
  2184. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_31 = ___0_block;
  2185. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_32 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_31->___Range);
  2186. intptr_t L_33 = L_32->___Pointer;
  2187. void* L_34;
  2188. L_34 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_33, NULL);
  2189. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_35 = ___0_block;
  2190. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_36 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_35->___Range);
  2191. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_37 = L_36->___Allocator;
  2192. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2193. int32_t L_38;
  2194. L_38 = AllocatorManager_LegacyOf_mAD212C1A7F5295C8987A6C9D7F81E8FF42E0A3BF(L_37, NULL);
  2195. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_39;
  2196. L_39 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(L_38, NULL);
  2197. Unmanaged_Free_m09F6EA89F368ED2C9E5EC5EA60C894C4434F4FD1(L_34, L_39, NULL);
  2198. }
  2199. IL_00be:
  2200. {
  2201. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_40 = ___0_block;
  2202. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_41 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_40->___Range);
  2203. L_41->___Pointer = 0;
  2204. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_42 = ___0_block;
  2205. L_42->___AllocatedItems = 0;
  2206. return 0;
  2207. }
  2208. IL_00d7:
  2209. {
  2210. return (-1);
  2211. }
  2212. }
  2213. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorManager_Try_m24A6A4EF594F8909B5677C94C4788F365E02E7F9 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method)
  2214. {
  2215. static bool s_Il2CppMethodInitialized;
  2216. if (!s_Il2CppMethodInitialized)
  2217. {
  2218. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2219. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_RuntimeMethod_var);
  2220. s_Il2CppMethodInitialized = true;
  2221. }
  2222. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE V_0;
  2223. memset((&V_0), 0, sizeof(V_0));
  2224. int32_t V_1 = 0;
  2225. {
  2226. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = ___0_block;
  2227. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  2228. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_2 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_1->___Allocator);
  2229. int32_t L_3;
  2230. L_3 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(L_2, NULL);
  2231. if ((((int32_t)L_3) >= ((int32_t)((int32_t)64))))
  2232. {
  2233. goto IL_001b;
  2234. }
  2235. }
  2236. {
  2237. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_4 = ___0_block;
  2238. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2239. int32_t L_5;
  2240. L_5 = AllocatorManager_TryLegacy_mF4F0B8CE7B0293504FA12A6F9C4ACFF28B59FF79(L_4, NULL);
  2241. return L_5;
  2242. }
  2243. IL_001b:
  2244. {
  2245. il2cpp_codegen_initobj((&V_0), sizeof(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE));
  2246. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_6 = ___0_block;
  2247. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_7 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_6->___Range);
  2248. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_8 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_7->___Allocator);
  2249. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* L_9;
  2250. L_9 = AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63(L_8, NULL);
  2251. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_10 = (*(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE*)L_9);
  2252. V_0 = L_10;
  2253. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE L_11 = V_0;
  2254. intptr_t L_12 = L_11.___function;
  2255. FunctionPointer_1_tF99F1F7D7E9F1AC1CB5F7DE7BB02E8366FC2097C L_13;
  2256. memset((&L_13), 0, sizeof(L_13));
  2257. FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_inline((&L_13), L_12, FunctionPointer_1__ctor_mA6464FB1EEC3C76906932127ADC88D71257A9CB6_RuntimeMethod_var);
  2258. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2259. bool L_14;
  2260. L_14 = AllocatorManager_UseDelegate_mEB18420309DAA2CC710BA123C6996C9FB6FC3798(NULL);
  2261. if (!L_14)
  2262. {
  2263. goto IL_0058;
  2264. }
  2265. }
  2266. {
  2267. V_1 = 0;
  2268. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_15 = ___0_block;
  2269. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2270. AllocatorManager_forward_mono_allocate_block_mD2A9A49DFC8CBDC39F27E2749048ABC91E124519(L_15, (&V_1), NULL);
  2271. int32_t L_16 = V_1;
  2272. return L_16;
  2273. }
  2274. IL_0058:
  2275. {
  2276. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_17 = ___0_block;
  2277. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2278. int32_t L_18;
  2279. L_18 = AllocatorManager_allocate_block_mBEB6E6FDC334118DB679CF2619EBB3FF4FDD7FB5(L_17, NULL);
  2280. return L_18;
  2281. }
  2282. }
  2283. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorManager__cctor_m3E94344CB4CD852C9427FE9394EBE4EC36BFEEA1 (const RuntimeMethod* method)
  2284. {
  2285. static bool s_Il2CppMethodInitialized;
  2286. if (!s_Il2CppMethodInitialized)
  2287. {
  2288. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2289. s_Il2CppMethodInitialized = true;
  2290. }
  2291. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 V_0;
  2292. memset((&V_0), 0, sizeof(V_0));
  2293. {
  2294. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2295. (&V_0)->___Index = (uint16_t)0;
  2296. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_0 = V_0;
  2297. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___Invalid = L_0;
  2298. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2299. (&V_0)->___Index = (uint16_t)1;
  2300. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = V_0;
  2301. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___None = L_1;
  2302. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2303. (&V_0)->___Index = (uint16_t)2;
  2304. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2 = V_0;
  2305. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___Temp = L_2;
  2306. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2307. (&V_0)->___Index = (uint16_t)3;
  2308. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_3 = V_0;
  2309. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___TempJob = L_3;
  2310. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2311. (&V_0)->___Index = (uint16_t)4;
  2312. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_4 = V_0;
  2313. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___Persistent = L_4;
  2314. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2315. (&V_0)->___Index = (uint16_t)5;
  2316. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_5 = V_0;
  2317. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___AudioKernel = L_5;
  2318. int32_t L_6;
  2319. L_6 = JobsUtility_get_ThreadIndexCount_m88A954344398143540618B35943F863B92465676(NULL);
  2320. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___NumGlobalScratchAllocators = (uint16_t)((int32_t)(uint16_t)L_6);
  2321. int32_t L_7;
  2322. L_7 = JobsUtility_get_ThreadIndexCount_m88A954344398143540618B35943F863B92465676(NULL);
  2323. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___MaxNumGlobalAllocators = (uint16_t)((int32_t)(uint16_t)L_7);
  2324. uint16_t L_8 = ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___MaxNumGlobalAllocators;
  2325. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___GlobalAllocatorBaseIndex = ((int32_t)il2cpp_codegen_subtract(((int32_t)32768), (int32_t)L_8));
  2326. uint32_t L_9 = ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___GlobalAllocatorBaseIndex;
  2327. ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___FirstGlobalScratchpadAllocatorIndex = L_9;
  2328. return;
  2329. }
  2330. }
  2331. #ifdef __clang__
  2332. #pragma clang diagnostic pop
  2333. #endif
  2334. #ifdef __clang__
  2335. #pragma clang diagnostic push
  2336. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2337. #pragma clang diagnostic ignored "-Wunused-variable"
  2338. #endif
  2339. int32_t TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_Multicast(TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method)
  2340. {
  2341. il2cpp_array_size_t length = __this->___delegates->max_length;
  2342. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  2343. int32_t retVal = 0;
  2344. for (il2cpp_array_size_t i = 0; i < length; i++)
  2345. {
  2346. TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* currentDelegate = reinterpret_cast<TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA*>(delegatesToInvoke[i]);
  2347. typedef int32_t (*FunctionPointerType) (RuntimeObject*, intptr_t, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*, const RuntimeMethod*);
  2348. retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_allocatorState, ___1_block, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  2349. }
  2350. return retVal;
  2351. }
  2352. int32_t TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_OpenInst(TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method)
  2353. {
  2354. typedef int32_t (*FunctionPointerType) (intptr_t, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*, const RuntimeMethod*);
  2355. return ((FunctionPointerType)__this->___method_ptr)(___0_allocatorState, ___1_block, method);
  2356. }
  2357. int32_t TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_OpenStatic(TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method)
  2358. {
  2359. typedef int32_t (*FunctionPointerType) (intptr_t, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*, const RuntimeMethod*);
  2360. return ((FunctionPointerType)__this->___method_ptr)(___0_allocatorState, ___1_block, method);
  2361. }
  2362. IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA (TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method)
  2363. {
  2364. typedef int32_t (CDECL *PInvokeFunc)(intptr_t, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*);
  2365. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  2366. int32_t returnValue = il2cppPInvokeFunc(___0_allocatorState, ___1_block);
  2367. return returnValue;
  2368. }
  2369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryFunction__ctor_m10C4A7B32E87301727B84D8CBA081FABAE3CCE53 (TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  2370. {
  2371. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  2372. __this->___method = ___1_method;
  2373. __this->___m_target = ___0_object;
  2374. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  2375. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  2376. __this->___method_code = (intptr_t)__this;
  2377. if (MethodIsStatic((RuntimeMethod*)___1_method))
  2378. {
  2379. bool isOpen = parameterCount == 2;
  2380. if (isOpen)
  2381. __this->___invoke_impl = (intptr_t)&TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_OpenStatic;
  2382. else
  2383. {
  2384. __this->___invoke_impl = __this->___method_ptr;
  2385. __this->___method_code = (intptr_t)__this->___m_target;
  2386. }
  2387. }
  2388. else
  2389. {
  2390. if (___0_object == NULL)
  2391. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  2392. __this->___invoke_impl = __this->___method_ptr;
  2393. __this->___method_code = (intptr_t)__this->___m_target;
  2394. }
  2395. __this->___extra_arg = (intptr_t)&TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_Multicast;
  2396. }
  2397. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2 (TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method)
  2398. {
  2399. typedef int32_t (*FunctionPointerType) (RuntimeObject*, intptr_t, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*, const RuntimeMethod*);
  2400. return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_allocatorState, ___1_block, reinterpret_cast<RuntimeMethod*>(__this->___method));
  2401. }
  2402. #ifdef __clang__
  2403. #pragma clang diagnostic pop
  2404. #endif
  2405. #ifdef __clang__
  2406. #pragma clang diagnostic push
  2407. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2408. #pragma clang diagnostic ignored "-Wunused-variable"
  2409. #endif
  2410. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2411. {
  2412. static bool s_Il2CppMethodInitialized;
  2413. if (!s_Il2CppMethodInitialized)
  2414. {
  2415. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F_RuntimeMethod_var);
  2416. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1_RuntimeMethod_var);
  2417. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_il2cpp_TypeInfo_var);
  2418. s_Il2CppMethodInitialized = true;
  2419. }
  2420. {
  2421. il2cpp_codegen_runtime_class_init_inline(TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_il2cpp_TypeInfo_var);
  2422. Array32768_1_tF94DB9E949B98E267CCEE7E61378AA0A89C951D6* L_0;
  2423. L_0 = SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1((&((TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_StaticFields*)il2cpp_codegen_static_fields_for(TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_il2cpp_TypeInfo_var))->___Ref), SharedStatic_1_get_Data_m8180C13CDCA02B5FA3E363D8259EDD6AE7BC49B1_RuntimeMethod_var);
  2424. uint16_t L_1 = __this->___Index;
  2425. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* L_2;
  2426. L_2 = Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F(L_0, L_1, Array32768_1_ElementAt_mAF50A1B3FAA1E10902B5B1A6AFD81BE97AF4B59F_RuntimeMethod_var);
  2427. return L_2;
  2428. }
  2429. }
  2430. IL2CPP_EXTERN_C TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2431. {
  2432. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2433. int32_t _offset = 1;
  2434. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2435. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* _returnValue;
  2436. _returnValue = AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63(_thisAdjusted, method);
  2437. return _returnValue;
  2438. }
  2439. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorHandle_Rewind_mC0426BBD1E638878C33164F91AC3ADC66C850AC1 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2440. {
  2441. {
  2442. return;
  2443. }
  2444. }
  2445. IL2CPP_EXTERN_C void AllocatorHandle_Rewind_mC0426BBD1E638878C33164F91AC3ADC66C850AC1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2446. {
  2447. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2448. int32_t _offset = 1;
  2449. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2450. AllocatorHandle_Rewind_mC0426BBD1E638878C33164F91AC3ADC66C850AC1(_thisAdjusted, method);
  2451. }
  2452. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D (int32_t ___0_a, const RuntimeMethod* method)
  2453. {
  2454. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 V_0;
  2455. memset((&V_0), 0, sizeof(V_0));
  2456. {
  2457. il2cpp_codegen_initobj((&V_0), sizeof(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148));
  2458. int32_t L_0 = ___0_a;
  2459. (&V_0)->___Index = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_0&((int32_t)65535))));
  2460. (&V_0)->___Version = (uint16_t)0;
  2461. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = V_0;
  2462. return L_1;
  2463. }
  2464. }
  2465. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2466. {
  2467. {
  2468. uint16_t L_0 = __this->___Index;
  2469. return L_0;
  2470. }
  2471. }
  2472. IL2CPP_EXTERN_C int32_t AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2473. {
  2474. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2475. int32_t _offset = 1;
  2476. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2477. int32_t _returnValue;
  2478. _returnValue = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(_thisAdjusted, method);
  2479. return _returnValue;
  2480. }
  2481. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_Try_m4E8677E100693A0F015076408244AF2BA827CBC9 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method)
  2482. {
  2483. static bool s_Il2CppMethodInitialized;
  2484. if (!s_Il2CppMethodInitialized)
  2485. {
  2486. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2487. s_Il2CppMethodInitialized = true;
  2488. }
  2489. {
  2490. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = ___0_block;
  2491. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  2492. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2 = (*(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)__this);
  2493. L_1->___Allocator = L_2;
  2494. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_3 = ___0_block;
  2495. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2496. int32_t L_4;
  2497. L_4 = AllocatorManager_Try_m24A6A4EF594F8909B5677C94C4788F365E02E7F9(L_3, NULL);
  2498. return L_4;
  2499. }
  2500. }
  2501. IL2CPP_EXTERN_C int32_t AllocatorHandle_Try_m4E8677E100693A0F015076408244AF2BA827CBC9_AdjustorThunk (RuntimeObject* __this, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___0_block, const RuntimeMethod* method)
  2502. {
  2503. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2504. int32_t _offset = 1;
  2505. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2506. int32_t _returnValue;
  2507. _returnValue = AllocatorHandle_Try_m4E8677E100693A0F015076408244AF2BA827CBC9(_thisAdjusted, ___0_block, method);
  2508. return _returnValue;
  2509. }
  2510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2511. {
  2512. {
  2513. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_0 = (*(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)__this);
  2514. return L_0;
  2515. }
  2516. }
  2517. IL2CPP_EXTERN_C AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2518. {
  2519. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2520. int32_t _offset = 1;
  2521. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2522. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 _returnValue;
  2523. _returnValue = AllocatorHandle_get_Handle_m440EA9B9A4306115087775DA2AA0AC034107D0E2(_thisAdjusted, method);
  2524. return _returnValue;
  2525. }
  2526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2527. {
  2528. uint32_t V_0 = 0;
  2529. {
  2530. uint16_t L_0 = __this->___Index;
  2531. V_0 = L_0;
  2532. uint16_t L_1 = __this->___Version;
  2533. uint32_t L_2 = V_0;
  2534. return (int32_t)(((int32_t)(((int32_t)((int32_t)L_1<<((int32_t)16)))|(int32_t)L_2)));
  2535. }
  2536. }
  2537. IL2CPP_EXTERN_C int32_t AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2538. {
  2539. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2540. int32_t _offset = 1;
  2541. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2542. int32_t _returnValue;
  2543. _returnValue = AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF(_thisAdjusted, method);
  2544. return _returnValue;
  2545. }
  2546. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllocatorHandle_Dispose_mB74CBC8980962C016A6C85F09D3F94775A2C58E3 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2547. {
  2548. {
  2549. AllocatorHandle_Rewind_mC0426BBD1E638878C33164F91AC3ADC66C850AC1(__this, NULL);
  2550. TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE* L_0;
  2551. L_0 = AllocatorHandle_get_TableEntry_m09C5D57FF627FEAD3AAE73FB28CB4B9EEB811A63(__this, NULL);
  2552. il2cpp_codegen_initobj(L_0, sizeof(TableEntry_t5E44AFA7857A41AC654D7F248FD36B15D7835FFE));
  2553. return;
  2554. }
  2555. }
  2556. IL2CPP_EXTERN_C void AllocatorHandle_Dispose_mB74CBC8980962C016A6C85F09D3F94775A2C58E3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2557. {
  2558. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2559. int32_t _offset = 1;
  2560. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2561. AllocatorHandle_Dispose_mB74CBC8980962C016A6C85F09D3F94775A2C58E3(_thisAdjusted, method);
  2562. }
  2563. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AllocatorHandle_Equals_mF2E151E2C3E8881305EA7EA9A46EA58D7CE44C9A (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2564. {
  2565. static bool s_Il2CppMethodInitialized;
  2566. if (!s_Il2CppMethodInitialized)
  2567. {
  2568. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_il2cpp_TypeInfo_var);
  2569. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Allocator_t996642592271AAD9EE688F142741D512C07B5824_il2cpp_TypeInfo_var);
  2570. s_Il2CppMethodInitialized = true;
  2571. }
  2572. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 V_0;
  2573. memset((&V_0), 0, sizeof(V_0));
  2574. {
  2575. RuntimeObject* L_0 = ___0_obj;
  2576. if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_il2cpp_TypeInfo_var)))
  2577. {
  2578. goto IL_001f;
  2579. }
  2580. }
  2581. {
  2582. int32_t L_1;
  2583. L_1 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  2584. RuntimeObject* L_2 = ___0_obj;
  2585. V_0 = ((*(AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)UnBox(L_2, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_il2cpp_TypeInfo_var)));
  2586. int32_t L_3;
  2587. L_3 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&V_0), NULL);
  2588. return (bool)((((int32_t)L_1) == ((int32_t)L_3))? 1 : 0);
  2589. }
  2590. IL_001f:
  2591. {
  2592. RuntimeObject* L_4 = ___0_obj;
  2593. if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_4, Allocator_t996642592271AAD9EE688F142741D512C07B5824_il2cpp_TypeInfo_var)))
  2594. {
  2595. goto IL_0036;
  2596. }
  2597. }
  2598. {
  2599. int32_t L_5;
  2600. L_5 = AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF(__this, NULL);
  2601. RuntimeObject* L_6 = ___0_obj;
  2602. return (bool)((((int32_t)L_5) == ((int32_t)((*(int32_t*)UnBox(L_6, Allocator_t996642592271AAD9EE688F142741D512C07B5824_il2cpp_TypeInfo_var)))))? 1 : 0);
  2603. }
  2604. IL_0036:
  2605. {
  2606. return (bool)0;
  2607. }
  2608. }
  2609. IL2CPP_EXTERN_C bool AllocatorHandle_Equals_mF2E151E2C3E8881305EA7EA9A46EA58D7CE44C9A_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2610. {
  2611. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2612. int32_t _offset = 1;
  2613. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2614. bool _returnValue;
  2615. _returnValue = AllocatorHandle_Equals_mF2E151E2C3E8881305EA7EA9A46EA58D7CE44C9A(_thisAdjusted, ___0_obj, method);
  2616. return _returnValue;
  2617. }
  2618. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AllocatorHandle_Equals_m2A603E4EBB8FDB0937A4801F9CB161E0D8458939 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method)
  2619. {
  2620. {
  2621. int32_t L_0;
  2622. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  2623. int32_t L_1;
  2624. L_1 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&___0_other), NULL);
  2625. return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
  2626. }
  2627. }
  2628. IL2CPP_EXTERN_C bool AllocatorHandle_Equals_m2A603E4EBB8FDB0937A4801F9CB161E0D8458939_AdjustorThunk (RuntimeObject* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method)
  2629. {
  2630. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2631. int32_t _offset = 1;
  2632. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2633. bool _returnValue;
  2634. _returnValue = AllocatorHandle_Equals_m2A603E4EBB8FDB0937A4801F9CB161E0D8458939_inline(_thisAdjusted, ___0_other, method);
  2635. return _returnValue;
  2636. }
  2637. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_GetHashCode_mE5C215E6AEDF384713522C73D29E4D6E82E4E243 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  2638. {
  2639. {
  2640. int32_t L_0;
  2641. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  2642. return L_0;
  2643. }
  2644. }
  2645. IL2CPP_EXTERN_C int32_t AllocatorHandle_GetHashCode_mE5C215E6AEDF384713522C73D29E4D6E82E4E243_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2646. {
  2647. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2648. int32_t _offset = 1;
  2649. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2650. int32_t _returnValue;
  2651. _returnValue = AllocatorHandle_GetHashCode_mE5C215E6AEDF384713522C73D29E4D6E82E4E243_inline(_thisAdjusted, method);
  2652. return _returnValue;
  2653. }
  2654. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AllocatorHandle_CompareTo_mBC5073E933F44F999E6D112CE04E9EE79E2AF6A4 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method)
  2655. {
  2656. {
  2657. int32_t L_0;
  2658. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  2659. int32_t L_1;
  2660. L_1 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&___0_other), NULL);
  2661. return ((int32_t)il2cpp_codegen_subtract(L_0, L_1));
  2662. }
  2663. }
  2664. IL2CPP_EXTERN_C int32_t AllocatorHandle_CompareTo_mBC5073E933F44F999E6D112CE04E9EE79E2AF6A4_AdjustorThunk (RuntimeObject* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method)
  2665. {
  2666. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* _thisAdjusted;
  2667. int32_t _offset = 1;
  2668. _thisAdjusted = reinterpret_cast<AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*>(__this + _offset);
  2669. int32_t _returnValue;
  2670. _returnValue = AllocatorHandle_CompareTo_mBC5073E933F44F999E6D112CE04E9EE79E2AF6A4_inline(_thisAdjusted, ___0_other, method);
  2671. return _returnValue;
  2672. }
  2673. #ifdef __clang__
  2674. #pragma clang diagnostic pop
  2675. #endif
  2676. #ifdef __clang__
  2677. #pragma clang diagnostic push
  2678. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2679. #pragma clang diagnostic ignored "-Wunused-variable"
  2680. #endif
  2681. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Range_Dispose_mEABC7B5F5F72CBAC69BAB12C80B8EDEE86B3737A (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* __this, const RuntimeMethod* method)
  2682. {
  2683. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 V_0;
  2684. memset((&V_0), 0, sizeof(V_0));
  2685. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 V_1;
  2686. memset((&V_1), 0, sizeof(V_1));
  2687. {
  2688. il2cpp_codegen_initobj((&V_1), sizeof(Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3));
  2689. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC L_0 = (*(Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)__this);
  2690. (&V_1)->___Range = L_0;
  2691. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 L_1 = V_1;
  2692. V_0 = L_1;
  2693. Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED((&V_0), NULL);
  2694. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 L_2 = V_0;
  2695. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC L_3 = L_2.___Range;
  2696. *(Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)__this = L_3;
  2697. return;
  2698. }
  2699. }
  2700. IL2CPP_EXTERN_C void Range_Dispose_mEABC7B5F5F72CBAC69BAB12C80B8EDEE86B3737A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2701. {
  2702. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* _thisAdjusted;
  2703. int32_t _offset = 1;
  2704. _thisAdjusted = reinterpret_cast<Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*>(__this + _offset);
  2705. Range_Dispose_mEABC7B5F5F72CBAC69BAB12C80B8EDEE86B3737A(_thisAdjusted, method);
  2706. }
  2707. #ifdef __clang__
  2708. #pragma clang diagnostic pop
  2709. #endif
  2710. #ifdef __clang__
  2711. #pragma clang diagnostic push
  2712. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2713. #pragma clang diagnostic ignored "-Wunused-variable"
  2714. #endif
  2715. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Block_get_Bytes_m4BB90CD1C72FC56C573BE09951BF1CA68E8BD7D7 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method)
  2716. {
  2717. {
  2718. int32_t L_0 = __this->___BytesPerItem;
  2719. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&__this->___Range);
  2720. int32_t L_2 = L_1->___Items;
  2721. return ((int64_t)il2cpp_codegen_multiply(((int64_t)L_0), ((int64_t)L_2)));
  2722. }
  2723. }
  2724. IL2CPP_EXTERN_C int64_t Block_get_Bytes_m4BB90CD1C72FC56C573BE09951BF1CA68E8BD7D7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2725. {
  2726. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* _thisAdjusted;
  2727. int32_t _offset = 1;
  2728. _thisAdjusted = reinterpret_cast<Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*>(__this + _offset);
  2729. int64_t _returnValue;
  2730. _returnValue = Block_get_Bytes_m4BB90CD1C72FC56C573BE09951BF1CA68E8BD7D7(_thisAdjusted, method);
  2731. return _returnValue;
  2732. }
  2733. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Block_get_AllocatedBytes_mFE126B221F670BDA89C5D59C9E63C9724F79BE08 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method)
  2734. {
  2735. {
  2736. int32_t L_0 = __this->___BytesPerItem;
  2737. int32_t L_1 = __this->___AllocatedItems;
  2738. return ((int64_t)il2cpp_codegen_multiply(((int64_t)L_0), ((int64_t)L_1)));
  2739. }
  2740. }
  2741. IL2CPP_EXTERN_C int64_t Block_get_AllocatedBytes_mFE126B221F670BDA89C5D59C9E63C9724F79BE08_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2742. {
  2743. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* _thisAdjusted;
  2744. int32_t _offset = 1;
  2745. _thisAdjusted = reinterpret_cast<Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*>(__this + _offset);
  2746. int64_t _returnValue;
  2747. _returnValue = Block_get_AllocatedBytes_mFE126B221F670BDA89C5D59C9E63C9724F79BE08(_thisAdjusted, method);
  2748. return _returnValue;
  2749. }
  2750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Block_get_Alignment_mC2388F87008B204A333664B9323BD38AA20FD633 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method)
  2751. {
  2752. {
  2753. uint8_t L_0 = __this->___Log2Alignment;
  2754. return ((int32_t)(1<<((int32_t)((int32_t)L_0&((int32_t)31)))));
  2755. }
  2756. }
  2757. IL2CPP_EXTERN_C int32_t Block_get_Alignment_mC2388F87008B204A333664B9323BD38AA20FD633_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2758. {
  2759. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* _thisAdjusted;
  2760. int32_t _offset = 1;
  2761. _thisAdjusted = reinterpret_cast<Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*>(__this + _offset);
  2762. int32_t _returnValue;
  2763. _returnValue = Block_get_Alignment_mC2388F87008B204A333664B9323BD38AA20FD633(_thisAdjusted, method);
  2764. return _returnValue;
  2765. }
  2766. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Block_set_Alignment_m4E74D90E827C5F58B3EBE91B2F5B097388E0500F (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, int32_t ___0_value, const RuntimeMethod* method)
  2767. {
  2768. {
  2769. int32_t L_0 = ___0_value;
  2770. int32_t L_1;
  2771. L_1 = math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline(1, L_0, NULL);
  2772. int32_t L_2;
  2773. L_2 = math_lzcnt_mA6B7E71DB1B5D4CE8B67C66FF1AC4339FA368D07_inline(((int32_t)il2cpp_codegen_subtract(L_1, 1)), NULL);
  2774. __this->___Log2Alignment = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract(((int32_t)32), L_2)));
  2775. return;
  2776. }
  2777. }
  2778. IL2CPP_EXTERN_C void Block_set_Alignment_m4E74D90E827C5F58B3EBE91B2F5B097388E0500F_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
  2779. {
  2780. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* _thisAdjusted;
  2781. int32_t _offset = 1;
  2782. _thisAdjusted = reinterpret_cast<Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*>(__this + _offset);
  2783. Block_set_Alignment_m4E74D90E827C5F58B3EBE91B2F5B097388E0500F(_thisAdjusted, ___0_value, method);
  2784. }
  2785. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method)
  2786. {
  2787. {
  2788. int32_t L_0;
  2789. L_0 = Block_TryFree_m0C5FA80AF51DA6F40F40DAE7E97975C3BB402225(__this, NULL);
  2790. return;
  2791. }
  2792. }
  2793. IL2CPP_EXTERN_C void Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2794. {
  2795. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* _thisAdjusted;
  2796. int32_t _offset = 1;
  2797. _thisAdjusted = reinterpret_cast<Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*>(__this + _offset);
  2798. Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED(_thisAdjusted, method);
  2799. }
  2800. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Block_TryFree_m0C5FA80AF51DA6F40F40DAE7E97975C3BB402225 (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* __this, const RuntimeMethod* method)
  2801. {
  2802. static bool s_Il2CppMethodInitialized;
  2803. if (!s_Il2CppMethodInitialized)
  2804. {
  2805. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2806. s_Il2CppMethodInitialized = true;
  2807. }
  2808. {
  2809. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_0 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&__this->___Range);
  2810. L_0->___Items = 0;
  2811. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  2812. int32_t L_1;
  2813. L_1 = AllocatorManager_Try_m24A6A4EF594F8909B5677C94C4788F365E02E7F9(__this, NULL);
  2814. return L_1;
  2815. }
  2816. }
  2817. IL2CPP_EXTERN_C int32_t Block_TryFree_m0C5FA80AF51DA6F40F40DAE7E97975C3BB402225_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2818. {
  2819. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* _thisAdjusted;
  2820. int32_t _offset = 1;
  2821. _thisAdjusted = reinterpret_cast<Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*>(__this + _offset);
  2822. int32_t _returnValue;
  2823. _returnValue = Block_TryFree_m0C5FA80AF51DA6F40F40DAE7E97975C3BB402225(_thisAdjusted, method);
  2824. return _returnValue;
  2825. }
  2826. #ifdef __clang__
  2827. #pragma clang diagnostic pop
  2828. #endif
  2829. #ifdef __clang__
  2830. #pragma clang diagnostic push
  2831. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2832. #pragma clang diagnostic ignored "-Wunused-variable"
  2833. #endif
  2834. #ifdef __clang__
  2835. #pragma clang diagnostic pop
  2836. #endif
  2837. #ifdef __clang__
  2838. #pragma clang diagnostic push
  2839. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2840. #pragma clang diagnostic ignored "-Wunused-variable"
  2841. #endif
  2842. #ifdef __clang__
  2843. #pragma clang diagnostic pop
  2844. #endif
  2845. #ifdef __clang__
  2846. #pragma clang diagnostic push
  2847. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2848. #pragma clang diagnostic ignored "-Wunused-variable"
  2849. #endif
  2850. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TableEntry__cctor_mCA16889126B2ED5EF69666F8B0376FCC8834FCE1 (const RuntimeMethod* method)
  2851. {
  2852. static bool s_Il2CppMethodInitialized;
  2853. if (!s_Il2CppMethodInitialized)
  2854. {
  2855. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9_RuntimeMethod_var);
  2856. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_il2cpp_TypeInfo_var);
  2857. s_Il2CppMethodInitialized = true;
  2858. }
  2859. {
  2860. SharedStatic_1_t129696039C3927DC9D39A2FADEBB24D67B1CD74E L_0;
  2861. L_0 = SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9(0, ((int64_t)-1297938794087215229LL), ((int64_t)0LL), SharedStatic_1_GetOrCreateUnsafe_m3F14C3056028F85D1801C32FBECF240E44B618A9_RuntimeMethod_var);
  2862. ((TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_StaticFields*)il2cpp_codegen_static_fields_for(TableEntry_tC168732547D3913880E602CC895BCCDAED550A04_il2cpp_TypeInfo_var))->___Ref = L_0;
  2863. return;
  2864. }
  2865. }
  2866. #ifdef __clang__
  2867. #pragma clang diagnostic pop
  2868. #endif
  2869. #ifdef __clang__
  2870. #pragma clang diagnostic push
  2871. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2872. #pragma clang diagnostic ignored "-Wunused-variable"
  2873. #endif
  2874. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Managed__cctor_mE3BC99DF4AF7BC63DE01424848BDC790B53500BA (const RuntimeMethod* method)
  2875. {
  2876. static bool s_Il2CppMethodInitialized;
  2877. if (!s_Il2CppMethodInitialized)
  2878. {
  2879. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var);
  2880. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5_il2cpp_TypeInfo_var);
  2881. s_Il2CppMethodInitialized = true;
  2882. }
  2883. {
  2884. TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5* L_0 = (TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5*)(TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5*)SZArrayNew(TryFunctionU5BU5D_tDCC5B9036B1E592E072B5ED36243CCA274E75FF5_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32768));
  2885. ((Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_StaticFields*)il2cpp_codegen_static_fields_for(Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var))->___TryFunctionDelegates = L_0;
  2886. Il2CppCodeGenWriteBarrier((void**)(&((Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_StaticFields*)il2cpp_codegen_static_fields_for(Managed_t7CB1B315B8E0E50EE8A2993B3E4CDF35E2B4909D_il2cpp_TypeInfo_var))->___TryFunctionDelegates), (void*)L_0);
  2887. return;
  2888. }
  2889. }
  2890. #ifdef __clang__
  2891. #pragma clang diagnostic pop
  2892. #endif
  2893. #ifdef __clang__
  2894. #pragma clang diagnostic push
  2895. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2896. #pragma clang diagnostic ignored "-Wunused-variable"
  2897. #endif
  2898. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionHelper_Log2Floor_m67F9EE2135763C03633748FD8E819C2D3F46C1ED (int32_t ___0_value, const RuntimeMethod* method)
  2899. {
  2900. {
  2901. int32_t L_0 = ___0_value;
  2902. int32_t L_1;
  2903. L_1 = math_lzcnt_m121BDDDEE89F5A401E2E5F0AD900D22E47C8741C_inline(L_0, NULL);
  2904. return ((int32_t)il2cpp_codegen_subtract(((int32_t)31), L_1));
  2905. }
  2906. }
  2907. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionHelper_Align_m0F9A1D60694634D775C811136208ED02D7665F2F (int32_t ___0_size, int32_t ___1_alignmentPowerOfTwo, const RuntimeMethod* method)
  2908. {
  2909. {
  2910. int32_t L_0 = ___1_alignmentPowerOfTwo;
  2911. if (L_0)
  2912. {
  2913. goto IL_0005;
  2914. }
  2915. }
  2916. {
  2917. int32_t L_1 = ___0_size;
  2918. return L_1;
  2919. }
  2920. IL_0005:
  2921. {
  2922. int32_t L_2 = ___0_size;
  2923. int32_t L_3 = ___1_alignmentPowerOfTwo;
  2924. int32_t L_4 = ___1_alignmentPowerOfTwo;
  2925. return ((int32_t)(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_2, L_3)), 1))&((~((int32_t)il2cpp_codegen_subtract(L_4, 1))))));
  2926. }
  2927. }
  2928. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionHelper_ShouldDeallocate_m505E7EDBA71F02BAF52CC9DCD7C593CDA85D5465 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_allocator, const RuntimeMethod* method)
  2929. {
  2930. {
  2931. int32_t L_0;
  2932. L_0 = AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF((&___0_allocator), NULL);
  2933. return (bool)((((int32_t)L_0) > ((int32_t)1))? 1 : 0);
  2934. }
  2935. }
  2936. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionHelper_AssumePositive_mD1EC1F05F50F605141D9BA5D70C4332AC902B4B1 (int32_t ___0_value, const RuntimeMethod* method)
  2937. {
  2938. {
  2939. int32_t L_0 = ___0_value;
  2940. return L_0;
  2941. }
  2942. }
  2943. #ifdef __clang__
  2944. #pragma clang diagnostic pop
  2945. #endif
  2946. #ifdef __clang__
  2947. #pragma clang diagnostic push
  2948. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2949. #pragma clang diagnostic ignored "-Wunused-variable"
  2950. #endif
  2951. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DummyJob_Execute_mFD529845FB6001C124D6E93F4CB30AC87842D085 (DummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  2952. {
  2953. {
  2954. return;
  2955. }
  2956. }
  2957. IL2CPP_EXTERN_C void DummyJob_Execute_mFD529845FB6001C124D6E93F4CB30AC87842D085_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  2958. {
  2959. DummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF* _thisAdjusted;
  2960. int32_t _offset = 1;
  2961. _thisAdjusted = reinterpret_cast<DummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF*>(__this + _offset);
  2962. DummyJob_Execute_mFD529845FB6001C124D6E93F4CB30AC87842D085(_thisAdjusted, method);
  2963. }
  2964. #ifdef __clang__
  2965. #pragma clang diagnostic pop
  2966. #endif
  2967. #ifdef __clang__
  2968. #pragma clang diagnostic push
  2969. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2970. #pragma clang diagnostic ignored "-Wunused-variable"
  2971. #endif
  2972. #ifdef __clang__
  2973. #pragma clang diagnostic pop
  2974. #endif
  2975. #ifdef __clang__
  2976. #pragma clang diagnostic push
  2977. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2978. #pragma clang diagnostic ignored "-Wunused-variable"
  2979. #endif
  2980. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenerateTestsForBurstCompatibilityAttribute_set_GenericTypeArguments_mF1072BD236646D4159082D3BB685B365EA45C01A (GenerateTestsForBurstCompatibilityAttribute_tB0112CEF7F88E4A8D216747735F5CD09E66BDAD1* __this, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___0_value, const RuntimeMethod* method)
  2981. {
  2982. {
  2983. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0 = ___0_value;
  2984. __this->___U3CGenericTypeArgumentsU3Ek__BackingField = L_0;
  2985. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGenericTypeArgumentsU3Ek__BackingField), (void*)L_0);
  2986. return;
  2987. }
  2988. }
  2989. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenerateTestsForBurstCompatibilityAttribute__ctor_m86CEFB7F89EBCA8FECA15EC6F21CC9DFCDCDA235 (GenerateTestsForBurstCompatibilityAttribute_tB0112CEF7F88E4A8D216747735F5CD09E66BDAD1* __this, const RuntimeMethod* method)
  2990. {
  2991. {
  2992. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  2993. return;
  2994. }
  2995. }
  2996. #ifdef __clang__
  2997. #pragma clang diagnostic pop
  2998. #endif
  2999. #ifdef __clang__
  3000. #pragma clang diagnostic push
  3001. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3002. #pragma clang diagnostic ignored "-Wunused-variable"
  3003. #endif
  3004. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExcludeFromBurstCompatTestingAttribute_set_Reason_m54DAB86449D0D2B47E1521F71AE433D1EC2598E5 (ExcludeFromBurstCompatTestingAttribute_tD101D6AEB31C340592E71C069D8F72AB6B7AABD4* __this, String_t* ___0_value, const RuntimeMethod* method)
  3005. {
  3006. {
  3007. String_t* L_0 = ___0_value;
  3008. __this->___U3CReasonU3Ek__BackingField = L_0;
  3009. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CReasonU3Ek__BackingField), (void*)L_0);
  3010. return;
  3011. }
  3012. }
  3013. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExcludeFromBurstCompatTestingAttribute__ctor_mE85EC7FAEC0AF711D75010FE42AD803D9442806D (ExcludeFromBurstCompatTestingAttribute_tD101D6AEB31C340592E71C069D8F72AB6B7AABD4* __this, String_t* ___0__reason, const RuntimeMethod* method)
  3014. {
  3015. {
  3016. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  3017. String_t* L_0 = ___0__reason;
  3018. ExcludeFromBurstCompatTestingAttribute_set_Reason_m54DAB86449D0D2B47E1521F71AE433D1EC2598E5_inline(__this, L_0, NULL);
  3019. return;
  3020. }
  3021. }
  3022. #ifdef __clang__
  3023. #pragma clang diagnostic pop
  3024. #endif
  3025. #ifdef __clang__
  3026. #pragma clang diagnostic push
  3027. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3028. #pragma clang diagnostic ignored "-Wunused-variable"
  3029. #endif
  3030. #ifdef __clang__
  3031. #pragma clang diagnostic pop
  3032. #endif
  3033. #ifdef __clang__
  3034. #pragma clang diagnostic push
  3035. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3036. #pragma clang diagnostic ignored "-Wunused-variable"
  3037. #endif
  3038. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Unmanaged_Allocate_m7310B1FE896DEFFA18303D961C9859C8FF3D21E5 (int64_t ___0_size, int32_t ___1_align, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___2_allocator, const RuntimeMethod* method)
  3039. {
  3040. {
  3041. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_0 = ___2_allocator;
  3042. int64_t L_1 = ___0_size;
  3043. int32_t L_2 = ___1_align;
  3044. void* L_3;
  3045. L_3 = Array_Resize_mC7BE2965DE3FCF4014D43B606D94951480A65380((void*)((uintptr_t)0), ((int64_t)0), ((int64_t)1), L_0, L_1, L_2, NULL);
  3046. return L_3;
  3047. }
  3048. }
  3049. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Unmanaged_Free_m09F6EA89F368ED2C9E5EC5EA60C894C4434F4FD1 (void* ___0_pointer, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  3050. {
  3051. {
  3052. void* L_0 = ___0_pointer;
  3053. if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
  3054. {
  3055. goto IL_0006;
  3056. }
  3057. }
  3058. {
  3059. return;
  3060. }
  3061. IL_0006:
  3062. {
  3063. void* L_1 = ___0_pointer;
  3064. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2 = ___1_allocator;
  3065. void* L_3;
  3066. L_3 = Array_Resize_mC7BE2965DE3FCF4014D43B606D94951480A65380(L_1, ((int64_t)1), ((int64_t)0), L_2, ((int64_t)1), 1, NULL);
  3067. return;
  3068. }
  3069. }
  3070. #ifdef __clang__
  3071. #pragma clang diagnostic pop
  3072. #endif
  3073. #ifdef __clang__
  3074. #pragma clang diagnostic push
  3075. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3076. #pragma clang diagnostic ignored "-Wunused-variable"
  3077. #endif
  3078. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_IsCustom_m7651BFF84F5AEFA592FEE86C834A85C373DDC126 (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_allocator, const RuntimeMethod* method)
  3079. {
  3080. {
  3081. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_0 = ___0_allocator;
  3082. uint16_t L_1 = L_0.___Index;
  3083. return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)((int32_t)64)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3084. }
  3085. }
  3086. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Array_CustomResize_mB51497D583399092F23AA773ABB64F0780610D82 (void* ___0_oldPointer, int64_t ___1_oldCount, int64_t ___2_newCount, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___3_allocator, int64_t ___4_size, int32_t ___5_align, const RuntimeMethod* method)
  3087. {
  3088. static bool s_Il2CppMethodInitialized;
  3089. if (!s_Il2CppMethodInitialized)
  3090. {
  3091. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  3092. s_Il2CppMethodInitialized = true;
  3093. }
  3094. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 V_0;
  3095. memset((&V_0), 0, sizeof(V_0));
  3096. {
  3097. il2cpp_codegen_initobj((&V_0), sizeof(Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3));
  3098. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_0 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&(&V_0)->___Range);
  3099. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = ___3_allocator;
  3100. L_0->___Allocator = L_1;
  3101. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_2 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&(&V_0)->___Range);
  3102. int64_t L_3 = ___2_newCount;
  3103. L_2->___Items = ((int32_t)L_3);
  3104. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_4 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&(&V_0)->___Range);
  3105. void* L_5 = ___0_oldPointer;
  3106. intptr_t L_6;
  3107. L_6 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D(L_5, NULL);
  3108. L_4->___Pointer = L_6;
  3109. int64_t L_7 = ___4_size;
  3110. (&V_0)->___BytesPerItem = ((int32_t)L_7);
  3111. int32_t L_8 = ___5_align;
  3112. Block_set_Alignment_m4E74D90E827C5F58B3EBE91B2F5B097388E0500F((&V_0), L_8, NULL);
  3113. int64_t L_9 = ___1_oldCount;
  3114. (&V_0)->___AllocatedItems = ((int32_t)L_9);
  3115. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  3116. int32_t L_10;
  3117. L_10 = AllocatorManager_Try_m24A6A4EF594F8909B5677C94C4788F365E02E7F9((&V_0), NULL);
  3118. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 L_11 = V_0;
  3119. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC L_12 = L_11.___Range;
  3120. intptr_t L_13 = L_12.___Pointer;
  3121. void* L_14;
  3122. L_14 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_13, NULL);
  3123. return L_14;
  3124. }
  3125. }
  3126. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Array_Resize_mC7BE2965DE3FCF4014D43B606D94951480A65380 (void* ___0_oldPointer, int64_t ___1_oldCount, int64_t ___2_newCount, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___3_allocator, int64_t ___4_size, int32_t ___5_align, const RuntimeMethod* method)
  3127. {
  3128. int32_t V_0 = 0;
  3129. void* V_1 = NULL;
  3130. int64_t V_2 = 0;
  3131. {
  3132. int32_t L_0 = ___5_align;
  3133. int32_t L_1;
  3134. L_1 = math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline(((int32_t)64), L_0, NULL);
  3135. V_0 = L_1;
  3136. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2 = ___3_allocator;
  3137. bool L_3;
  3138. L_3 = Array_IsCustom_m7651BFF84F5AEFA592FEE86C834A85C373DDC126(L_2, NULL);
  3139. if (!L_3)
  3140. {
  3141. goto IL_001f;
  3142. }
  3143. }
  3144. {
  3145. void* L_4 = ___0_oldPointer;
  3146. int64_t L_5 = ___1_oldCount;
  3147. int64_t L_6 = ___2_newCount;
  3148. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_7 = ___3_allocator;
  3149. int64_t L_8 = ___4_size;
  3150. int32_t L_9 = V_0;
  3151. void* L_10;
  3152. L_10 = Array_CustomResize_mB51497D583399092F23AA773ABB64F0780610D82(L_4, L_5, L_6, L_7, L_8, L_9, NULL);
  3153. return L_10;
  3154. }
  3155. IL_001f:
  3156. {
  3157. il2cpp_codegen_initobj((&V_1), sizeof(void*));
  3158. int64_t L_11 = ___2_newCount;
  3159. if ((((int64_t)L_11) <= ((int64_t)((int64_t)0))))
  3160. {
  3161. goto IL_0057;
  3162. }
  3163. }
  3164. {
  3165. int64_t L_12 = ___2_newCount;
  3166. int64_t L_13 = ___4_size;
  3167. int32_t L_14 = V_0;
  3168. int32_t L_15;
  3169. L_15 = AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF((&___3_allocator), NULL);
  3170. void* L_16;
  3171. L_16 = UnsafeUtility_MallocTracked_m618762A86F170FB10656114217D3D125D60CE297(((int64_t)il2cpp_codegen_multiply(L_12, L_13)), L_14, L_15, 0, NULL);
  3172. V_1 = L_16;
  3173. int64_t L_17 = ___1_oldCount;
  3174. if ((((int64_t)L_17) <= ((int64_t)((int64_t)0))))
  3175. {
  3176. goto IL_0057;
  3177. }
  3178. }
  3179. {
  3180. int64_t L_18 = ___1_oldCount;
  3181. int64_t L_19 = ___2_newCount;
  3182. int64_t L_20;
  3183. L_20 = math_min_mA22BCFB62A81B533821704D26BE23D8D6402C8EB_inline(L_18, L_19, NULL);
  3184. int64_t L_21 = ___4_size;
  3185. V_2 = ((int64_t)il2cpp_codegen_multiply(L_20, L_21));
  3186. void* L_22 = V_1;
  3187. void* L_23 = ___0_oldPointer;
  3188. int64_t L_24 = V_2;
  3189. UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177(L_22, L_23, L_24, NULL);
  3190. }
  3191. IL_0057:
  3192. {
  3193. int64_t L_25 = ___1_oldCount;
  3194. if ((((int64_t)L_25) <= ((int64_t)((int64_t)0))))
  3195. {
  3196. goto IL_0069;
  3197. }
  3198. }
  3199. {
  3200. void* L_26 = ___0_oldPointer;
  3201. int32_t L_27;
  3202. L_27 = AllocatorHandle_get_ToAllocator_m34C297958A940D9D35C11B3D28B8E5A08E170FDF((&___3_allocator), NULL);
  3203. UnsafeUtility_FreeTracked_mB96B3C035F2CD1517BF8C29218CBD7B710B3279A(L_26, L_27, NULL);
  3204. }
  3205. IL_0069:
  3206. {
  3207. void* L_28 = V_1;
  3208. return L_28;
  3209. }
  3210. }
  3211. #ifdef __clang__
  3212. #pragma clang diagnostic pop
  3213. #endif
  3214. #ifdef __clang__
  3215. #pragma clang diagnostic push
  3216. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3217. #pragma clang diagnostic ignored "-Wunused-variable"
  3218. #endif
  3219. #ifdef __clang__
  3220. #pragma clang diagnostic pop
  3221. #endif
  3222. #ifdef __clang__
  3223. #pragma clang diagnostic push
  3224. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3225. #pragma clang diagnostic ignored "-Wunused-variable"
  3226. #endif
  3227. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeBitArrayDispose_Dispose_m1B62640BDF4CD7C212D576F9E96E7C09591BA6FA (NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493* __this, const RuntimeMethod* method)
  3228. {
  3229. {
  3230. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* L_0 = __this->___m_BitArrayData;
  3231. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = __this->___m_Allocator;
  3232. UnsafeBitArray_Free_m593DC0AC7ADB85F86BF8E27CDCA5EF1395650D0D(L_0, L_1, NULL);
  3233. return;
  3234. }
  3235. }
  3236. IL2CPP_EXTERN_C void NativeBitArrayDispose_Dispose_m1B62640BDF4CD7C212D576F9E96E7C09591BA6FA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3237. {
  3238. NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493* _thisAdjusted;
  3239. int32_t _offset = 1;
  3240. _thisAdjusted = reinterpret_cast<NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493*>(__this + _offset);
  3241. NativeBitArrayDispose_Dispose_m1B62640BDF4CD7C212D576F9E96E7C09591BA6FA(_thisAdjusted, method);
  3242. }
  3243. #ifdef __clang__
  3244. #pragma clang diagnostic pop
  3245. #endif
  3246. #ifdef __clang__
  3247. #pragma clang diagnostic push
  3248. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3249. #pragma clang diagnostic ignored "-Wunused-variable"
  3250. #endif
  3251. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeBitArrayDisposeJob_Execute_mFB5CEA927325091B306954255DAF283AFDC34780 (NativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3252. {
  3253. {
  3254. NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493* L_0 = (NativeBitArrayDispose_t7474976B7BCD8B1F1F6005CFF383B778CCF5E493*)(&__this->___Data);
  3255. NativeBitArrayDispose_Dispose_m1B62640BDF4CD7C212D576F9E96E7C09591BA6FA(L_0, NULL);
  3256. return;
  3257. }
  3258. }
  3259. IL2CPP_EXTERN_C void NativeBitArrayDisposeJob_Execute_mFB5CEA927325091B306954255DAF283AFDC34780_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3260. {
  3261. NativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA* _thisAdjusted;
  3262. int32_t _offset = 1;
  3263. _thisAdjusted = reinterpret_cast<NativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA*>(__this + _offset);
  3264. NativeBitArrayDisposeJob_Execute_mFB5CEA927325091B306954255DAF283AFDC34780(_thisAdjusted, method);
  3265. }
  3266. #ifdef __clang__
  3267. #pragma clang diagnostic pop
  3268. #endif
  3269. #ifdef __clang__
  3270. #pragma clang diagnostic push
  3271. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3272. #pragma clang diagnostic ignored "-Wunused-variable"
  3273. #endif
  3274. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeHashMapDispose_Dispose_mC3C0B4D350083ECD98FB33653ECA5B9E64ECC8A0 (NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5* __this, const RuntimeMethod* method)
  3275. {
  3276. static bool s_Il2CppMethodInitialized;
  3277. if (!s_Il2CppMethodInitialized)
  3278. {
  3279. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04_RuntimeMethod_var);
  3280. s_Il2CppMethodInitialized = true;
  3281. }
  3282. HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B* V_0 = NULL;
  3283. {
  3284. UnsafeHashMap_2_t6892CF3B588ADF9763FD2CF34FE217B37C312C00* L_0 = __this->___m_HashMapData;
  3285. V_0 = (HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B*)L_0;
  3286. HashMapHelper_1_t51F726D16732CD16EFBBB3DE324B481A05388D2B* L_1 = V_0;
  3287. HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04(L_1, HashMapHelper_1_Free_m184B353C9A4B65D322B577CCFBC1857DE1E33D04_RuntimeMethod_var);
  3288. return;
  3289. }
  3290. }
  3291. IL2CPP_EXTERN_C void NativeHashMapDispose_Dispose_mC3C0B4D350083ECD98FB33653ECA5B9E64ECC8A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3292. {
  3293. NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5* _thisAdjusted;
  3294. int32_t _offset = 1;
  3295. _thisAdjusted = reinterpret_cast<NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5*>(__this + _offset);
  3296. NativeHashMapDispose_Dispose_mC3C0B4D350083ECD98FB33653ECA5B9E64ECC8A0(_thisAdjusted, method);
  3297. }
  3298. #ifdef __clang__
  3299. #pragma clang diagnostic pop
  3300. #endif
  3301. #ifdef __clang__
  3302. #pragma clang diagnostic push
  3303. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3304. #pragma clang diagnostic ignored "-Wunused-variable"
  3305. #endif
  3306. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeHashMapDisposeJob_Execute_m1A16F21E2C5C17AECCBA47BED1155479D219E792 (NativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3307. {
  3308. {
  3309. NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5* L_0 = (NativeHashMapDispose_t08CB36F2BD662EA8E82B9E67B882067D33F09ED5*)(&__this->___Data);
  3310. NativeHashMapDispose_Dispose_mC3C0B4D350083ECD98FB33653ECA5B9E64ECC8A0(L_0, NULL);
  3311. return;
  3312. }
  3313. }
  3314. IL2CPP_EXTERN_C void NativeHashMapDisposeJob_Execute_m1A16F21E2C5C17AECCBA47BED1155479D219E792_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3315. {
  3316. NativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E* _thisAdjusted;
  3317. int32_t _offset = 1;
  3318. _thisAdjusted = reinterpret_cast<NativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E*>(__this + _offset);
  3319. NativeHashMapDisposeJob_Execute_m1A16F21E2C5C17AECCBA47BED1155479D219E792(_thisAdjusted, method);
  3320. }
  3321. #ifdef __clang__
  3322. #pragma clang diagnostic pop
  3323. #endif
  3324. #ifdef __clang__
  3325. #pragma clang diagnostic push
  3326. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3327. #pragma clang diagnostic ignored "-Wunused-variable"
  3328. #endif
  3329. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeListDispose_Dispose_m3B82496C41B796C86D1461D40A96B0FB87D83223 (NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356* __this, const RuntimeMethod* method)
  3330. {
  3331. static bool s_Il2CppMethodInitialized;
  3332. if (!s_Il2CppMethodInitialized)
  3333. {
  3334. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66_RuntimeMethod_var);
  3335. s_Il2CppMethodInitialized = true;
  3336. }
  3337. UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* V_0 = NULL;
  3338. {
  3339. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_0 = __this->___m_ListData;
  3340. V_0 = (UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718*)L_0;
  3341. UnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718* L_1 = V_0;
  3342. UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66(L_1, UnsafeList_1_Destroy_mD2ACC7BB7F5072207B924C42103A1F2D971E9A66_RuntimeMethod_var);
  3343. return;
  3344. }
  3345. }
  3346. IL2CPP_EXTERN_C void NativeListDispose_Dispose_m3B82496C41B796C86D1461D40A96B0FB87D83223_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3347. {
  3348. NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356* _thisAdjusted;
  3349. int32_t _offset = 1;
  3350. _thisAdjusted = reinterpret_cast<NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356*>(__this + _offset);
  3351. NativeListDispose_Dispose_m3B82496C41B796C86D1461D40A96B0FB87D83223(_thisAdjusted, method);
  3352. }
  3353. #ifdef __clang__
  3354. #pragma clang diagnostic pop
  3355. #endif
  3356. #ifdef __clang__
  3357. #pragma clang diagnostic push
  3358. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3359. #pragma clang diagnostic ignored "-Wunused-variable"
  3360. #endif
  3361. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeListDisposeJob_Execute_mCADA5ED914628592A5834C51F76A20B7CEC1BF2E (NativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3362. {
  3363. {
  3364. NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356* L_0 = (NativeListDispose_t081DF78D5512F3FDF19F9D8FA487EA30E8E02356*)(&__this->___Data);
  3365. NativeListDispose_Dispose_m3B82496C41B796C86D1461D40A96B0FB87D83223(L_0, NULL);
  3366. return;
  3367. }
  3368. }
  3369. IL2CPP_EXTERN_C void NativeListDisposeJob_Execute_mCADA5ED914628592A5834C51F76A20B7CEC1BF2E_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3370. {
  3371. NativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F* _thisAdjusted;
  3372. int32_t _offset = 1;
  3373. _thisAdjusted = reinterpret_cast<NativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F*>(__this + _offset);
  3374. NativeListDisposeJob_Execute_mCADA5ED914628592A5834C51F76A20B7CEC1BF2E(_thisAdjusted, method);
  3375. }
  3376. #ifdef __clang__
  3377. #pragma clang diagnostic pop
  3378. #endif
  3379. #ifdef __clang__
  3380. #pragma clang diagnostic push
  3381. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3382. #pragma clang diagnostic ignored "-Wunused-variable"
  3383. #endif
  3384. #ifdef __clang__
  3385. #pragma clang diagnostic pop
  3386. #endif
  3387. #ifdef __clang__
  3388. #pragma clang diagnostic push
  3389. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3390. #pragma clang diagnostic ignored "-Wunused-variable"
  3391. #endif
  3392. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeQueueDispose_Dispose_m078AB5F16073B57EF2AA25087E8E5C03C7D0654D (NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE* __this, const RuntimeMethod* method)
  3393. {
  3394. static bool s_Il2CppMethodInitialized;
  3395. if (!s_Il2CppMethodInitialized)
  3396. {
  3397. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317_RuntimeMethod_var);
  3398. s_Il2CppMethodInitialized = true;
  3399. }
  3400. {
  3401. UnsafeQueue_1_t0323897433D8F18174111DB978F6D9EB951CB258* L_0 = __this->___m_QueueData;
  3402. UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317(L_0, UnsafeQueue_1_Free_m18988E5522D1DC40594676D182E756688F6DD317_RuntimeMethod_var);
  3403. return;
  3404. }
  3405. }
  3406. IL2CPP_EXTERN_C void NativeQueueDispose_Dispose_m078AB5F16073B57EF2AA25087E8E5C03C7D0654D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3407. {
  3408. NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE* _thisAdjusted;
  3409. int32_t _offset = 1;
  3410. _thisAdjusted = reinterpret_cast<NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE*>(__this + _offset);
  3411. NativeQueueDispose_Dispose_m078AB5F16073B57EF2AA25087E8E5C03C7D0654D(_thisAdjusted, method);
  3412. }
  3413. #ifdef __clang__
  3414. #pragma clang diagnostic pop
  3415. #endif
  3416. #ifdef __clang__
  3417. #pragma clang diagnostic push
  3418. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3419. #pragma clang diagnostic ignored "-Wunused-variable"
  3420. #endif
  3421. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeQueueDisposeJob_Execute_m3DBE1DF633A0DE99FD815F98A975B1A5DA0292B9 (NativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3422. {
  3423. {
  3424. NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE* L_0 = (NativeQueueDispose_t7DE9FE7F5C1391CF51B3C74571ACCD24EB1876FE*)(&__this->___Data);
  3425. NativeQueueDispose_Dispose_m078AB5F16073B57EF2AA25087E8E5C03C7D0654D(L_0, NULL);
  3426. return;
  3427. }
  3428. }
  3429. IL2CPP_EXTERN_C void NativeQueueDisposeJob_Execute_m3DBE1DF633A0DE99FD815F98A975B1A5DA0292B9_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3430. {
  3431. NativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5* _thisAdjusted;
  3432. int32_t _offset = 1;
  3433. _thisAdjusted = reinterpret_cast<NativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5*>(__this + _offset);
  3434. NativeQueueDisposeJob_Execute_m3DBE1DF633A0DE99FD815F98A975B1A5DA0292B9(_thisAdjusted, method);
  3435. }
  3436. #ifdef __clang__
  3437. #pragma clang diagnostic pop
  3438. #endif
  3439. #ifdef __clang__
  3440. #pragma clang diagnostic push
  3441. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3442. #pragma clang diagnostic ignored "-Wunused-variable"
  3443. #endif
  3444. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeReferenceDispose_Dispose_mA377C7A0AEC92DC8071534DD15F6A463021F4E81 (NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D* __this, const RuntimeMethod* method)
  3445. {
  3446. {
  3447. void* L_0 = __this->___m_Data;
  3448. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = __this->___m_AllocatorLabel;
  3449. Unmanaged_Free_m09F6EA89F368ED2C9E5EC5EA60C894C4434F4FD1(L_0, L_1, NULL);
  3450. return;
  3451. }
  3452. }
  3453. IL2CPP_EXTERN_C void NativeReferenceDispose_Dispose_mA377C7A0AEC92DC8071534DD15F6A463021F4E81_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3454. {
  3455. NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D* _thisAdjusted;
  3456. int32_t _offset = 1;
  3457. _thisAdjusted = reinterpret_cast<NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D*>(__this + _offset);
  3458. NativeReferenceDispose_Dispose_mA377C7A0AEC92DC8071534DD15F6A463021F4E81(_thisAdjusted, method);
  3459. }
  3460. #ifdef __clang__
  3461. #pragma clang diagnostic pop
  3462. #endif
  3463. #ifdef __clang__
  3464. #pragma clang diagnostic push
  3465. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3466. #pragma clang diagnostic ignored "-Wunused-variable"
  3467. #endif
  3468. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeReferenceDisposeJob_Execute_mE349F3D29F93F04237909925E49CE635ED5E7DC5 (NativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3469. {
  3470. {
  3471. NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D* L_0 = (NativeReferenceDispose_t9D3C339491B9AE2DD5A8F3EB1CFD5EAD28495E6D*)(&__this->___Data);
  3472. NativeReferenceDispose_Dispose_mA377C7A0AEC92DC8071534DD15F6A463021F4E81(L_0, NULL);
  3473. return;
  3474. }
  3475. }
  3476. IL2CPP_EXTERN_C void NativeReferenceDisposeJob_Execute_mE349F3D29F93F04237909925E49CE635ED5E7DC5_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3477. {
  3478. NativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2* _thisAdjusted;
  3479. int32_t _offset = 1;
  3480. _thisAdjusted = reinterpret_cast<NativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2*>(__this + _offset);
  3481. NativeReferenceDisposeJob_Execute_mE349F3D29F93F04237909925E49CE635ED5E7DC5(_thisAdjusted, method);
  3482. }
  3483. #ifdef __clang__
  3484. #pragma clang diagnostic pop
  3485. #endif
  3486. #ifdef __clang__
  3487. #pragma clang diagnostic push
  3488. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3489. #pragma clang diagnostic ignored "-Wunused-variable"
  3490. #endif
  3491. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeRingQueueDispose_Dispose_mAFC3E885E53F715512815E9D5BAEC6F54B4419EE (NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478* __this, const RuntimeMethod* method)
  3492. {
  3493. static bool s_Il2CppMethodInitialized;
  3494. if (!s_Il2CppMethodInitialized)
  3495. {
  3496. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D_RuntimeMethod_var);
  3497. s_Il2CppMethodInitialized = true;
  3498. }
  3499. {
  3500. UnsafeRingQueue_1_tAF3191C06795E5D904223D7CA3372A4D56B5B5B6* L_0 = __this->___m_QueueData;
  3501. UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D(L_0, UnsafeRingQueue_1_Free_m578C60017F70E5B6F46B9FC3D6A05313C8F9C26D_RuntimeMethod_var);
  3502. return;
  3503. }
  3504. }
  3505. IL2CPP_EXTERN_C void NativeRingQueueDispose_Dispose_mAFC3E885E53F715512815E9D5BAEC6F54B4419EE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3506. {
  3507. NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478* _thisAdjusted;
  3508. int32_t _offset = 1;
  3509. _thisAdjusted = reinterpret_cast<NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478*>(__this + _offset);
  3510. NativeRingQueueDispose_Dispose_mAFC3E885E53F715512815E9D5BAEC6F54B4419EE(_thisAdjusted, method);
  3511. }
  3512. #ifdef __clang__
  3513. #pragma clang diagnostic pop
  3514. #endif
  3515. #ifdef __clang__
  3516. #pragma clang diagnostic push
  3517. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3518. #pragma clang diagnostic ignored "-Wunused-variable"
  3519. #endif
  3520. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeRingQueueDisposeJob_Execute_m917869AD688F9A0B3F0B7F0CE60BC42136DC4BD4 (NativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3521. {
  3522. {
  3523. NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478* L_0 = (NativeRingQueueDispose_t4DD4D528049B0190AAF7B29E2B208F02D54D1478*)(&__this->___Data);
  3524. NativeRingQueueDispose_Dispose_mAFC3E885E53F715512815E9D5BAEC6F54B4419EE(L_0, NULL);
  3525. return;
  3526. }
  3527. }
  3528. IL2CPP_EXTERN_C void NativeRingQueueDisposeJob_Execute_m917869AD688F9A0B3F0B7F0CE60BC42136DC4BD4_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3529. {
  3530. NativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21* _thisAdjusted;
  3531. int32_t _offset = 1;
  3532. _thisAdjusted = reinterpret_cast<NativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21*>(__this + _offset);
  3533. NativeRingQueueDisposeJob_Execute_m917869AD688F9A0B3F0B7F0CE60BC42136DC4BD4(_thisAdjusted, method);
  3534. }
  3535. #ifdef __clang__
  3536. #pragma clang diagnostic pop
  3537. #endif
  3538. #ifdef __clang__
  3539. #pragma clang diagnostic push
  3540. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3541. #pragma clang diagnostic ignored "-Wunused-variable"
  3542. #endif
  3543. #ifdef __clang__
  3544. #pragma clang diagnostic pop
  3545. #endif
  3546. #ifdef __clang__
  3547. #pragma clang diagnostic push
  3548. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3549. #pragma clang diagnostic ignored "-Wunused-variable"
  3550. #endif
  3551. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeStream_get_IsCreated_m139F58FDEA696FB948C962A2BBC0F13B583B2F64 (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, const RuntimeMethod* method)
  3552. {
  3553. {
  3554. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___m_Stream);
  3555. bool L_1;
  3556. L_1 = UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline(L_0, NULL);
  3557. return L_1;
  3558. }
  3559. }
  3560. IL2CPP_EXTERN_C bool NativeStream_get_IsCreated_m139F58FDEA696FB948C962A2BBC0F13B583B2F64_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3561. {
  3562. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* _thisAdjusted;
  3563. int32_t _offset = 1;
  3564. _thisAdjusted = reinterpret_cast<NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376*>(__this + _offset);
  3565. bool _returnValue;
  3566. _returnValue = NativeStream_get_IsCreated_m139F58FDEA696FB948C962A2BBC0F13B583B2F64_inline(_thisAdjusted, method);
  3567. return _returnValue;
  3568. }
  3569. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeStream_Dispose_mD811E61D5C945B23F47323E9C553AD7510889B92 (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, const RuntimeMethod* method)
  3570. {
  3571. {
  3572. bool L_0;
  3573. L_0 = NativeStream_get_IsCreated_m139F58FDEA696FB948C962A2BBC0F13B583B2F64_inline(__this, NULL);
  3574. if (L_0)
  3575. {
  3576. goto IL_0009;
  3577. }
  3578. }
  3579. {
  3580. return;
  3581. }
  3582. IL_0009:
  3583. {
  3584. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_1 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___m_Stream);
  3585. UnsafeStream_Dispose_m4D493F40C6ED4C7346017C05FBC006B5632AE49C(L_1, NULL);
  3586. return;
  3587. }
  3588. }
  3589. IL2CPP_EXTERN_C void NativeStream_Dispose_mD811E61D5C945B23F47323E9C553AD7510889B92_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3590. {
  3591. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* _thisAdjusted;
  3592. int32_t _offset = 1;
  3593. _thisAdjusted = reinterpret_cast<NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376*>(__this + _offset);
  3594. NativeStream_Dispose_mD811E61D5C945B23F47323E9C553AD7510889B92(_thisAdjusted, method);
  3595. }
  3596. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeStream_AllocateForEach_mF01F5D8EDB5CF944B8618FB4DB412A4F68A0AAF9 (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, int32_t ___0_forEachCount, const RuntimeMethod* method)
  3597. {
  3598. {
  3599. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___m_Stream);
  3600. int32_t L_1 = ___0_forEachCount;
  3601. UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065(L_0, L_1, NULL);
  3602. return;
  3603. }
  3604. }
  3605. IL2CPP_EXTERN_C void NativeStream_AllocateForEach_mF01F5D8EDB5CF944B8618FB4DB412A4F68A0AAF9_AdjustorThunk (RuntimeObject* __this, int32_t ___0_forEachCount, const RuntimeMethod* method)
  3606. {
  3607. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* _thisAdjusted;
  3608. int32_t _offset = 1;
  3609. _thisAdjusted = reinterpret_cast<NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376*>(__this + _offset);
  3610. NativeStream_AllocateForEach_mF01F5D8EDB5CF944B8618FB4DB412A4F68A0AAF9(_thisAdjusted, ___0_forEachCount, method);
  3611. }
  3612. #ifdef __clang__
  3613. #pragma clang diagnostic pop
  3614. #endif
  3615. #ifdef __clang__
  3616. #pragma clang diagnostic push
  3617. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3618. #pragma clang diagnostic ignored "-Wunused-variable"
  3619. #endif
  3620. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJobList_Execute_m7A858340428CA2870C89EF776C7E205F7C0961A1 (ConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3621. {
  3622. {
  3623. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* L_0 = (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376*)(&__this->___Container);
  3624. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_1 = __this->___List;
  3625. NullCheck(L_1);
  3626. int32_t L_2 = L_1->___m_length;
  3627. NativeStream_AllocateForEach_mF01F5D8EDB5CF944B8618FB4DB412A4F68A0AAF9(L_0, L_2, NULL);
  3628. return;
  3629. }
  3630. }
  3631. IL2CPP_EXTERN_C void ConstructJobList_Execute_m7A858340428CA2870C89EF776C7E205F7C0961A1_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3632. {
  3633. ConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707* _thisAdjusted;
  3634. int32_t _offset = 1;
  3635. _thisAdjusted = reinterpret_cast<ConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707*>(__this + _offset);
  3636. ConstructJobList_Execute_m7A858340428CA2870C89EF776C7E205F7C0961A1(_thisAdjusted, method);
  3637. }
  3638. #ifdef __clang__
  3639. #pragma clang diagnostic pop
  3640. #endif
  3641. #ifdef __clang__
  3642. #pragma clang diagnostic push
  3643. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3644. #pragma clang diagnostic ignored "-Wunused-variable"
  3645. #endif
  3646. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJob_Execute_m167E59B46B52E41BD4BFA6053CAA2E94BE9DB922 (ConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3647. {
  3648. {
  3649. NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* L_0 = (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376*)(&__this->___Container);
  3650. NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_1 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___Length);
  3651. int32_t L_2;
  3652. L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_1)->___m_Buffer, 0);
  3653. NativeStream_AllocateForEach_mF01F5D8EDB5CF944B8618FB4DB412A4F68A0AAF9(L_0, L_2, NULL);
  3654. return;
  3655. }
  3656. }
  3657. IL2CPP_EXTERN_C void ConstructJob_Execute_m167E59B46B52E41BD4BFA6053CAA2E94BE9DB922_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3658. {
  3659. ConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4* _thisAdjusted;
  3660. int32_t _offset = 1;
  3661. _thisAdjusted = reinterpret_cast<ConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4*>(__this + _offset);
  3662. ConstructJob_Execute_m167E59B46B52E41BD4BFA6053CAA2E94BE9DB922(_thisAdjusted, method);
  3663. }
  3664. #ifdef __clang__
  3665. #pragma clang diagnostic pop
  3666. #endif
  3667. #ifdef __clang__
  3668. #pragma clang diagnostic push
  3669. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3670. #pragma clang diagnostic ignored "-Wunused-variable"
  3671. #endif
  3672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeStreamDispose_Dispose_m2896546615BEF6A590E2D60ACA6FD27BFD224692 (NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C* __this, const RuntimeMethod* method)
  3673. {
  3674. {
  3675. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___m_StreamData);
  3676. UnsafeStream_Dispose_m4D493F40C6ED4C7346017C05FBC006B5632AE49C(L_0, NULL);
  3677. return;
  3678. }
  3679. }
  3680. IL2CPP_EXTERN_C void NativeStreamDispose_Dispose_m2896546615BEF6A590E2D60ACA6FD27BFD224692_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3681. {
  3682. NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C* _thisAdjusted;
  3683. int32_t _offset = 1;
  3684. _thisAdjusted = reinterpret_cast<NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C*>(__this + _offset);
  3685. NativeStreamDispose_Dispose_m2896546615BEF6A590E2D60ACA6FD27BFD224692(_thisAdjusted, method);
  3686. }
  3687. #ifdef __clang__
  3688. #pragma clang diagnostic pop
  3689. #endif
  3690. #ifdef __clang__
  3691. #pragma clang diagnostic push
  3692. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3693. #pragma clang diagnostic ignored "-Wunused-variable"
  3694. #endif
  3695. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeStreamDisposeJob_Execute_m4DFC0A231FE4B2DD7F1E4C16A2C2BD5EA2103A77 (NativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3696. {
  3697. {
  3698. NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C* L_0 = (NativeStreamDispose_t1698F2E13348D27AA8B702A7C61C0861D65BB44C*)(&__this->___Data);
  3699. NativeStreamDispose_Dispose_m2896546615BEF6A590E2D60ACA6FD27BFD224692(L_0, NULL);
  3700. return;
  3701. }
  3702. }
  3703. IL2CPP_EXTERN_C void NativeStreamDisposeJob_Execute_m4DFC0A231FE4B2DD7F1E4C16A2C2BD5EA2103A77_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3704. {
  3705. NativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001* _thisAdjusted;
  3706. int32_t _offset = 1;
  3707. _thisAdjusted = reinterpret_cast<NativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001*>(__this + _offset);
  3708. NativeStreamDisposeJob_Execute_m4DFC0A231FE4B2DD7F1E4C16A2C2BD5EA2103A77(_thisAdjusted, method);
  3709. }
  3710. #ifdef __clang__
  3711. #pragma clang diagnostic pop
  3712. #endif
  3713. #ifdef __clang__
  3714. #pragma clang diagnostic push
  3715. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3716. #pragma clang diagnostic ignored "-Wunused-variable"
  3717. #endif
  3718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeTextDispose_Dispose_m78F766D5AE3C4A7734C025650944A8BF1F472D52 (NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA* __this, const RuntimeMethod* method)
  3719. {
  3720. {
  3721. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_0 = __this->___m_TextData;
  3722. UnsafeText_Free_m22C162680EFB31663020E8FE94BE67596994A98B(L_0, NULL);
  3723. return;
  3724. }
  3725. }
  3726. IL2CPP_EXTERN_C void NativeTextDispose_Dispose_m78F766D5AE3C4A7734C025650944A8BF1F472D52_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3727. {
  3728. NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA* _thisAdjusted;
  3729. int32_t _offset = 1;
  3730. _thisAdjusted = reinterpret_cast<NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA*>(__this + _offset);
  3731. NativeTextDispose_Dispose_m78F766D5AE3C4A7734C025650944A8BF1F472D52(_thisAdjusted, method);
  3732. }
  3733. #ifdef __clang__
  3734. #pragma clang diagnostic pop
  3735. #endif
  3736. #ifdef __clang__
  3737. #pragma clang diagnostic push
  3738. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3739. #pragma clang diagnostic ignored "-Wunused-variable"
  3740. #endif
  3741. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void NativeTextDisposeJob_Execute_mCA918E48AB23694F215614FAFF4511B2C9F57972 (NativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3742. {
  3743. {
  3744. NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA* L_0 = (NativeTextDispose_tAA3B9C87135C6C5D6AC150D8DE3DEDF48FBD16EA*)(&__this->___Data);
  3745. NativeTextDispose_Dispose_m78F766D5AE3C4A7734C025650944A8BF1F472D52(L_0, NULL);
  3746. return;
  3747. }
  3748. }
  3749. IL2CPP_EXTERN_C void NativeTextDisposeJob_Execute_mCA918E48AB23694F215614FAFF4511B2C9F57972_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  3750. {
  3751. NativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6* _thisAdjusted;
  3752. int32_t _offset = 1;
  3753. _thisAdjusted = reinterpret_cast<NativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6*>(__this + _offset);
  3754. NativeTextDisposeJob_Execute_mCA918E48AB23694F215614FAFF4511B2C9F57972(_thisAdjusted, method);
  3755. }
  3756. #ifdef __clang__
  3757. #pragma clang diagnostic pop
  3758. #endif
  3759. #ifdef __clang__
  3760. #pragma clang diagnostic push
  3761. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3762. #pragma clang diagnostic ignored "-Wunused-variable"
  3763. #endif
  3764. #ifdef __clang__
  3765. #pragma clang diagnostic pop
  3766. #endif
  3767. #ifdef __clang__
  3768. #pragma clang diagnostic push
  3769. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3770. #pragma clang diagnostic ignored "-Wunused-variable"
  3771. #endif
  3772. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Unicode_IsValidCodePoint_m6F8516FA18D35B6D052FD6BDE01D9D497EA06B9D (int32_t ___0_codepoint, const RuntimeMethod* method)
  3773. {
  3774. {
  3775. int32_t L_0 = ___0_codepoint;
  3776. if ((((int32_t)L_0) <= ((int32_t)((int32_t)1114111))))
  3777. {
  3778. goto IL_000a;
  3779. }
  3780. }
  3781. {
  3782. return (bool)0;
  3783. }
  3784. IL_000a:
  3785. {
  3786. int32_t L_1 = ___0_codepoint;
  3787. if ((((int32_t)L_1) >= ((int32_t)0)))
  3788. {
  3789. goto IL_0010;
  3790. }
  3791. }
  3792. {
  3793. return (bool)0;
  3794. }
  3795. IL_0010:
  3796. {
  3797. return (bool)1;
  3798. }
  3799. }
  3800. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD (uint8_t ___0_b, const RuntimeMethod* method)
  3801. {
  3802. {
  3803. uint8_t L_0 = ___0_b;
  3804. return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&((int32_t)192)))) == ((int32_t)((int32_t)128)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3805. }
  3806. }
  3807. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E Unicode_get_ReplacementCharacter_m525CDE0E6CAB489454025711F93FF832A600556A (const RuntimeMethod* method)
  3808. {
  3809. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E V_0;
  3810. memset((&V_0), 0, sizeof(V_0));
  3811. {
  3812. il2cpp_codegen_initobj((&V_0), sizeof(Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E));
  3813. (&V_0)->___value = ((int32_t)65533);
  3814. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_0 = V_0;
  3815. return L_0;
  3816. }
  3817. }
  3818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Unicode_Utf8ToUcs_m013E3A507C4B6F5459B09C6EA8EA229BDC979827 (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* ___0_rune, uint8_t* ___1_buffer, int32_t* ___2_index, int32_t ___3_capacity, const RuntimeMethod* method)
  3819. {
  3820. int32_t V_0 = 0;
  3821. {
  3822. V_0 = 0;
  3823. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* L_0 = ___0_rune;
  3824. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_1;
  3825. L_1 = Unicode_get_ReplacementCharacter_m525CDE0E6CAB489454025711F93FF832A600556A(NULL);
  3826. *(Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E*)L_0 = L_1;
  3827. int32_t* L_2 = ___2_index;
  3828. int32_t L_3 = *((int32_t*)L_2);
  3829. int32_t L_4 = ___3_capacity;
  3830. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_3, 1))) <= ((int32_t)L_4)))
  3831. {
  3832. goto IL_0016;
  3833. }
  3834. }
  3835. {
  3836. return (int32_t)(1);
  3837. }
  3838. IL_0016:
  3839. {
  3840. uint8_t* L_5 = ___1_buffer;
  3841. int32_t* L_6 = ___2_index;
  3842. int32_t L_7 = *((int32_t*)L_6);
  3843. int32_t L_8 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, L_7))));
  3844. if (((int32_t)(L_8&((int32_t)128))))
  3845. {
  3846. goto IL_0036;
  3847. }
  3848. }
  3849. {
  3850. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* L_9 = ___0_rune;
  3851. uint8_t* L_10 = ___1_buffer;
  3852. int32_t* L_11 = ___2_index;
  3853. int32_t L_12 = *((int32_t*)L_11);
  3854. int32_t L_13 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_12))));
  3855. L_9->___value = L_13;
  3856. int32_t* L_14 = ___2_index;
  3857. int32_t* L_15 = ___2_index;
  3858. int32_t L_16 = *((int32_t*)L_15);
  3859. *((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_add(L_16, 1));
  3860. return (int32_t)(0);
  3861. }
  3862. IL_0036:
  3863. {
  3864. uint8_t* L_17 = ___1_buffer;
  3865. int32_t* L_18 = ___2_index;
  3866. int32_t L_19 = *((int32_t*)L_18);
  3867. int32_t L_20 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, L_19))));
  3868. if ((!(((uint32_t)((int32_t)(L_20&((int32_t)224)))) == ((uint32_t)((int32_t)192)))))
  3869. {
  3870. goto IL_009c;
  3871. }
  3872. }
  3873. {
  3874. int32_t* L_21 = ___2_index;
  3875. int32_t L_22 = *((int32_t*)L_21);
  3876. int32_t L_23 = ___3_capacity;
  3877. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_22, 2))) <= ((int32_t)L_23)))
  3878. {
  3879. goto IL_0057;
  3880. }
  3881. }
  3882. {
  3883. int32_t* L_24 = ___2_index;
  3884. int32_t* L_25 = ___2_index;
  3885. int32_t L_26 = *((int32_t*)L_25);
  3886. *((int32_t*)L_24) = (int32_t)((int32_t)il2cpp_codegen_add(L_26, 1));
  3887. return (int32_t)(1);
  3888. }
  3889. IL_0057:
  3890. {
  3891. uint8_t* L_27 = ___1_buffer;
  3892. int32_t* L_28 = ___2_index;
  3893. int32_t L_29 = *((int32_t*)L_28);
  3894. int32_t L_30 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, L_29))));
  3895. V_0 = ((int32_t)(L_30&((int32_t)31)));
  3896. int32_t L_31 = V_0;
  3897. uint8_t* L_32 = ___1_buffer;
  3898. int32_t* L_33 = ___2_index;
  3899. int32_t L_34 = *((int32_t*)L_33);
  3900. int32_t L_35 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, ((int32_t)il2cpp_codegen_add(L_34, 1))))));
  3901. V_0 = ((int32_t)(((int32_t)(L_31<<6))|((int32_t)(L_35&((int32_t)63)))));
  3902. int32_t L_36 = V_0;
  3903. if ((((int32_t)L_36) < ((int32_t)((int32_t)128))))
  3904. {
  3905. goto IL_0085;
  3906. }
  3907. }
  3908. {
  3909. uint8_t* L_37 = ___1_buffer;
  3910. int32_t* L_38 = ___2_index;
  3911. int32_t L_39 = *((int32_t*)L_38);
  3912. int32_t L_40 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, ((int32_t)il2cpp_codegen_add(L_39, 1))))));
  3913. bool L_41;
  3914. L_41 = Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD((uint8_t)L_40, NULL);
  3915. if (!L_41)
  3916. {
  3917. goto IL_008d;
  3918. }
  3919. }
  3920. IL_0085:
  3921. {
  3922. int32_t* L_42 = ___2_index;
  3923. int32_t* L_43 = ___2_index;
  3924. int32_t L_44 = *((int32_t*)L_43);
  3925. *((int32_t*)L_42) = (int32_t)((int32_t)il2cpp_codegen_add(L_44, 1));
  3926. return (int32_t)(2);
  3927. }
  3928. IL_008d:
  3929. {
  3930. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* L_45 = ___0_rune;
  3931. int32_t L_46 = V_0;
  3932. L_45->___value = L_46;
  3933. int32_t* L_47 = ___2_index;
  3934. int32_t* L_48 = ___2_index;
  3935. int32_t L_49 = *((int32_t*)L_48);
  3936. *((int32_t*)L_47) = (int32_t)((int32_t)il2cpp_codegen_add(L_49, 2));
  3937. return (int32_t)(0);
  3938. }
  3939. IL_009c:
  3940. {
  3941. uint8_t* L_50 = ___1_buffer;
  3942. int32_t* L_51 = ___2_index;
  3943. int32_t L_52 = *((int32_t*)L_51);
  3944. int32_t L_53 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_50, L_52))));
  3945. if ((!(((uint32_t)((int32_t)(L_53&((int32_t)240)))) == ((uint32_t)((int32_t)224)))))
  3946. {
  3947. goto IL_0127;
  3948. }
  3949. }
  3950. {
  3951. int32_t* L_54 = ___2_index;
  3952. int32_t L_55 = *((int32_t*)L_54);
  3953. int32_t L_56 = ___3_capacity;
  3954. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_55, 3))) <= ((int32_t)L_56)))
  3955. {
  3956. goto IL_00bd;
  3957. }
  3958. }
  3959. {
  3960. int32_t* L_57 = ___2_index;
  3961. int32_t* L_58 = ___2_index;
  3962. int32_t L_59 = *((int32_t*)L_58);
  3963. *((int32_t*)L_57) = (int32_t)((int32_t)il2cpp_codegen_add(L_59, 1));
  3964. return (int32_t)(1);
  3965. }
  3966. IL_00bd:
  3967. {
  3968. uint8_t* L_60 = ___1_buffer;
  3969. int32_t* L_61 = ___2_index;
  3970. int32_t L_62 = *((int32_t*)L_61);
  3971. int32_t L_63 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_60, L_62))));
  3972. V_0 = ((int32_t)(L_63&((int32_t)15)));
  3973. int32_t L_64 = V_0;
  3974. uint8_t* L_65 = ___1_buffer;
  3975. int32_t* L_66 = ___2_index;
  3976. int32_t L_67 = *((int32_t*)L_66);
  3977. int32_t L_68 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_65, ((int32_t)il2cpp_codegen_add(L_67, 1))))));
  3978. V_0 = ((int32_t)(((int32_t)(L_64<<6))|((int32_t)(L_68&((int32_t)63)))));
  3979. int32_t L_69 = V_0;
  3980. uint8_t* L_70 = ___1_buffer;
  3981. int32_t* L_71 = ___2_index;
  3982. int32_t L_72 = *((int32_t*)L_71);
  3983. int32_t L_73 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_70, ((int32_t)il2cpp_codegen_add(L_72, 2))))));
  3984. V_0 = ((int32_t)(((int32_t)(L_69<<6))|((int32_t)(L_73&((int32_t)63)))));
  3985. int32_t L_74 = V_0;
  3986. if ((((int32_t)L_74) < ((int32_t)((int32_t)2048))))
  3987. {
  3988. goto IL_0110;
  3989. }
  3990. }
  3991. {
  3992. int32_t L_75 = V_0;
  3993. bool L_76;
  3994. L_76 = Unicode_IsValidCodePoint_m6F8516FA18D35B6D052FD6BDE01D9D497EA06B9D(L_75, NULL);
  3995. if (!L_76)
  3996. {
  3997. goto IL_0110;
  3998. }
  3999. }
  4000. {
  4001. uint8_t* L_77 = ___1_buffer;
  4002. int32_t* L_78 = ___2_index;
  4003. int32_t L_79 = *((int32_t*)L_78);
  4004. int32_t L_80 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_77, ((int32_t)il2cpp_codegen_add(L_79, 1))))));
  4005. bool L_81;
  4006. L_81 = Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD((uint8_t)L_80, NULL);
  4007. if (L_81)
  4008. {
  4009. goto IL_0110;
  4010. }
  4011. }
  4012. {
  4013. uint8_t* L_82 = ___1_buffer;
  4014. int32_t* L_83 = ___2_index;
  4015. int32_t L_84 = *((int32_t*)L_83);
  4016. int32_t L_85 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_82, ((int32_t)il2cpp_codegen_add(L_84, 2))))));
  4017. bool L_86;
  4018. L_86 = Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD((uint8_t)L_85, NULL);
  4019. if (!L_86)
  4020. {
  4021. goto IL_0118;
  4022. }
  4023. }
  4024. IL_0110:
  4025. {
  4026. int32_t* L_87 = ___2_index;
  4027. int32_t* L_88 = ___2_index;
  4028. int32_t L_89 = *((int32_t*)L_88);
  4029. *((int32_t*)L_87) = (int32_t)((int32_t)il2cpp_codegen_add(L_89, 1));
  4030. return (int32_t)(2);
  4031. }
  4032. IL_0118:
  4033. {
  4034. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* L_90 = ___0_rune;
  4035. int32_t L_91 = V_0;
  4036. L_90->___value = L_91;
  4037. int32_t* L_92 = ___2_index;
  4038. int32_t* L_93 = ___2_index;
  4039. int32_t L_94 = *((int32_t*)L_93);
  4040. *((int32_t*)L_92) = (int32_t)((int32_t)il2cpp_codegen_add(L_94, 3));
  4041. return (int32_t)(0);
  4042. }
  4043. IL_0127:
  4044. {
  4045. uint8_t* L_95 = ___1_buffer;
  4046. int32_t* L_96 = ___2_index;
  4047. int32_t L_97 = *((int32_t*)L_96);
  4048. int32_t L_98 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_95, L_97))));
  4049. if ((!(((uint32_t)((int32_t)(L_98&((int32_t)248)))) == ((uint32_t)((int32_t)240)))))
  4050. {
  4051. goto IL_01d1;
  4052. }
  4053. }
  4054. {
  4055. int32_t* L_99 = ___2_index;
  4056. int32_t L_100 = *((int32_t*)L_99);
  4057. int32_t L_101 = ___3_capacity;
  4058. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_100, 4))) <= ((int32_t)L_101)))
  4059. {
  4060. goto IL_014b;
  4061. }
  4062. }
  4063. {
  4064. int32_t* L_102 = ___2_index;
  4065. int32_t* L_103 = ___2_index;
  4066. int32_t L_104 = *((int32_t*)L_103);
  4067. *((int32_t*)L_102) = (int32_t)((int32_t)il2cpp_codegen_add(L_104, 1));
  4068. return (int32_t)(1);
  4069. }
  4070. IL_014b:
  4071. {
  4072. uint8_t* L_105 = ___1_buffer;
  4073. int32_t* L_106 = ___2_index;
  4074. int32_t L_107 = *((int32_t*)L_106);
  4075. int32_t L_108 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_105, L_107))));
  4076. V_0 = ((int32_t)(L_108&7));
  4077. int32_t L_109 = V_0;
  4078. uint8_t* L_110 = ___1_buffer;
  4079. int32_t* L_111 = ___2_index;
  4080. int32_t L_112 = *((int32_t*)L_111);
  4081. int32_t L_113 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_110, ((int32_t)il2cpp_codegen_add(L_112, 1))))));
  4082. V_0 = ((int32_t)(((int32_t)(L_109<<6))|((int32_t)(L_113&((int32_t)63)))));
  4083. int32_t L_114 = V_0;
  4084. uint8_t* L_115 = ___1_buffer;
  4085. int32_t* L_116 = ___2_index;
  4086. int32_t L_117 = *((int32_t*)L_116);
  4087. int32_t L_118 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_115, ((int32_t)il2cpp_codegen_add(L_117, 2))))));
  4088. V_0 = ((int32_t)(((int32_t)(L_114<<6))|((int32_t)(L_118&((int32_t)63)))));
  4089. int32_t L_119 = V_0;
  4090. uint8_t* L_120 = ___1_buffer;
  4091. int32_t* L_121 = ___2_index;
  4092. int32_t L_122 = *((int32_t*)L_121);
  4093. int32_t L_123 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_120, ((int32_t)il2cpp_codegen_add(L_122, 3))))));
  4094. V_0 = ((int32_t)(((int32_t)(L_119<<6))|((int32_t)(L_123&((int32_t)63)))));
  4095. int32_t L_124 = V_0;
  4096. if ((((int32_t)L_124) < ((int32_t)((int32_t)65536))))
  4097. {
  4098. goto IL_01ba;
  4099. }
  4100. }
  4101. {
  4102. int32_t L_125 = V_0;
  4103. bool L_126;
  4104. L_126 = Unicode_IsValidCodePoint_m6F8516FA18D35B6D052FD6BDE01D9D497EA06B9D(L_125, NULL);
  4105. if (!L_126)
  4106. {
  4107. goto IL_01ba;
  4108. }
  4109. }
  4110. {
  4111. uint8_t* L_127 = ___1_buffer;
  4112. int32_t* L_128 = ___2_index;
  4113. int32_t L_129 = *((int32_t*)L_128);
  4114. int32_t L_130 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_127, ((int32_t)il2cpp_codegen_add(L_129, 1))))));
  4115. bool L_131;
  4116. L_131 = Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD((uint8_t)L_130, NULL);
  4117. if (L_131)
  4118. {
  4119. goto IL_01ba;
  4120. }
  4121. }
  4122. {
  4123. uint8_t* L_132 = ___1_buffer;
  4124. int32_t* L_133 = ___2_index;
  4125. int32_t L_134 = *((int32_t*)L_133);
  4126. int32_t L_135 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_132, ((int32_t)il2cpp_codegen_add(L_134, 2))))));
  4127. bool L_136;
  4128. L_136 = Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD((uint8_t)L_135, NULL);
  4129. if (L_136)
  4130. {
  4131. goto IL_01ba;
  4132. }
  4133. }
  4134. {
  4135. uint8_t* L_137 = ___1_buffer;
  4136. int32_t* L_138 = ___2_index;
  4137. int32_t L_139 = *((int32_t*)L_138);
  4138. int32_t L_140 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_137, ((int32_t)il2cpp_codegen_add(L_139, 3))))));
  4139. bool L_141;
  4140. L_141 = Unicode_NotTrailer_m9FD6FC331044FE0EFC90E29A2808C4A6535E4CAD((uint8_t)L_140, NULL);
  4141. if (!L_141)
  4142. {
  4143. goto IL_01c2;
  4144. }
  4145. }
  4146. IL_01ba:
  4147. {
  4148. int32_t* L_142 = ___2_index;
  4149. int32_t* L_143 = ___2_index;
  4150. int32_t L_144 = *((int32_t*)L_143);
  4151. *((int32_t*)L_142) = (int32_t)((int32_t)il2cpp_codegen_add(L_144, 1));
  4152. return (int32_t)(2);
  4153. }
  4154. IL_01c2:
  4155. {
  4156. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* L_145 = ___0_rune;
  4157. int32_t L_146 = V_0;
  4158. L_145->___value = L_146;
  4159. int32_t* L_147 = ___2_index;
  4160. int32_t* L_148 = ___2_index;
  4161. int32_t L_149 = *((int32_t*)L_148);
  4162. *((int32_t*)L_147) = (int32_t)((int32_t)il2cpp_codegen_add(L_149, 4));
  4163. return (int32_t)(0);
  4164. }
  4165. IL_01d1:
  4166. {
  4167. int32_t* L_150 = ___2_index;
  4168. int32_t* L_151 = ___2_index;
  4169. int32_t L_152 = *((int32_t*)L_151);
  4170. *((int32_t*)L_150) = (int32_t)((int32_t)il2cpp_codegen_add(L_152, 1));
  4171. return (int32_t)(2);
  4172. }
  4173. }
  4174. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Unicode_UcsToUtf16_m14C1098270C0DFFAF6B48D47C3214344FD4FAE0E (Il2CppChar* ___0_buffer, int32_t* ___1_index, int32_t ___2_capacity, Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E ___3_rune, const RuntimeMethod* method)
  4175. {
  4176. int32_t V_0 = 0;
  4177. int32_t V_1 = 0;
  4178. {
  4179. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_0 = ___3_rune;
  4180. int32_t L_1 = L_0.___value;
  4181. bool L_2;
  4182. L_2 = Unicode_IsValidCodePoint_m6F8516FA18D35B6D052FD6BDE01D9D497EA06B9D(L_1, NULL);
  4183. if (L_2)
  4184. {
  4185. goto IL_000f;
  4186. }
  4187. }
  4188. {
  4189. return (int32_t)(3);
  4190. }
  4191. IL_000f:
  4192. {
  4193. int32_t* L_3 = ___1_index;
  4194. int32_t L_4 = *((int32_t*)L_3);
  4195. int32_t L_5 = ___2_capacity;
  4196. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_4, 1))) <= ((int32_t)L_5)))
  4197. {
  4198. goto IL_0018;
  4199. }
  4200. }
  4201. {
  4202. return (int32_t)(1);
  4203. }
  4204. IL_0018:
  4205. {
  4206. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_6 = ___3_rune;
  4207. int32_t L_7 = L_6.___value;
  4208. if ((((int32_t)L_7) < ((int32_t)((int32_t)65536))))
  4209. {
  4210. goto IL_007e;
  4211. }
  4212. }
  4213. {
  4214. int32_t* L_8 = ___1_index;
  4215. int32_t L_9 = *((int32_t*)L_8);
  4216. int32_t L_10 = ___2_capacity;
  4217. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_9, 2))) <= ((int32_t)L_10)))
  4218. {
  4219. goto IL_002e;
  4220. }
  4221. }
  4222. {
  4223. return (int32_t)(1);
  4224. }
  4225. IL_002e:
  4226. {
  4227. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_11 = ___3_rune;
  4228. int32_t L_12 = L_11.___value;
  4229. V_0 = ((int32_t)il2cpp_codegen_subtract(L_12, ((int32_t)65536)));
  4230. int32_t L_13 = V_0;
  4231. if ((((int32_t)L_13) < ((int32_t)((int32_t)1048576))))
  4232. {
  4233. goto IL_0045;
  4234. }
  4235. }
  4236. {
  4237. return (int32_t)(2);
  4238. }
  4239. IL_0045:
  4240. {
  4241. Il2CppChar* L_14 = ___0_buffer;
  4242. int32_t* L_15 = ___1_index;
  4243. int32_t* L_16 = ___1_index;
  4244. int32_t L_17 = *((int32_t*)L_16);
  4245. V_1 = L_17;
  4246. int32_t L_18 = V_1;
  4247. *((int32_t*)L_15) = (int32_t)((int32_t)il2cpp_codegen_add(L_18, 1));
  4248. int32_t L_19 = V_1;
  4249. int32_t L_20 = V_0;
  4250. *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_19), 2))))) = (int16_t)((int32_t)(uint16_t)((int32_t)(((int32_t)55296)|((int32_t)(L_20>>((int32_t)10))))));
  4251. Il2CppChar* L_21 = ___0_buffer;
  4252. int32_t* L_22 = ___1_index;
  4253. int32_t* L_23 = ___1_index;
  4254. int32_t L_24 = *((int32_t*)L_23);
  4255. V_1 = L_24;
  4256. int32_t L_25 = V_1;
  4257. *((int32_t*)L_22) = (int32_t)((int32_t)il2cpp_codegen_add(L_25, 1));
  4258. int32_t L_26 = V_1;
  4259. int32_t L_27 = V_0;
  4260. *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_26), 2))))) = (int16_t)((int32_t)(uint16_t)((int32_t)(((int32_t)56320)|((int32_t)(L_27&((int32_t)1023))))));
  4261. return (int32_t)(0);
  4262. }
  4263. IL_007e:
  4264. {
  4265. Il2CppChar* L_28 = ___0_buffer;
  4266. int32_t* L_29 = ___1_index;
  4267. int32_t* L_30 = ___1_index;
  4268. int32_t L_31 = *((int32_t*)L_30);
  4269. V_1 = L_31;
  4270. int32_t L_32 = V_1;
  4271. *((int32_t*)L_29) = (int32_t)((int32_t)il2cpp_codegen_add(L_32, 1));
  4272. int32_t L_33 = V_1;
  4273. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_34 = ___3_rune;
  4274. int32_t L_35 = L_34.___value;
  4275. *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_33), 2))))) = (int16_t)((int32_t)(uint16_t)L_35);
  4276. return (int32_t)(0);
  4277. }
  4278. }
  4279. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Unicode_Utf8ToUtf16_mF3051E9181A57301EEF945C10B97D3C9356706DD (uint8_t* ___0_utf8Buffer, int32_t ___1_utf8Length, Il2CppChar* ___2_utf16Buffer, int32_t* ___3_utf16Length, int32_t ___4_utf16Capacity, const RuntimeMethod* method)
  4280. {
  4281. int32_t V_0 = 0;
  4282. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E V_1;
  4283. memset((&V_1), 0, sizeof(V_1));
  4284. {
  4285. int32_t* L_0 = ___3_utf16Length;
  4286. *((int32_t*)L_0) = (int32_t)0;
  4287. V_0 = 0;
  4288. goto IL_0022;
  4289. }
  4290. IL_0007:
  4291. {
  4292. uint8_t* L_1 = ___0_utf8Buffer;
  4293. int32_t L_2 = ___1_utf8Length;
  4294. int32_t L_3;
  4295. L_3 = Unicode_Utf8ToUcs_m013E3A507C4B6F5459B09C6EA8EA229BDC979827((&V_1), L_1, (&V_0), L_2, NULL);
  4296. Il2CppChar* L_4 = ___2_utf16Buffer;
  4297. int32_t* L_5 = ___3_utf16Length;
  4298. int32_t L_6 = ___4_utf16Capacity;
  4299. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E L_7 = V_1;
  4300. int32_t L_8;
  4301. L_8 = Unicode_UcsToUtf16_m14C1098270C0DFFAF6B48D47C3214344FD4FAE0E(L_4, L_5, L_6, L_7, NULL);
  4302. if ((!(((uint32_t)L_8) == ((uint32_t)1))))
  4303. {
  4304. goto IL_0022;
  4305. }
  4306. }
  4307. {
  4308. return (int32_t)(1);
  4309. }
  4310. IL_0022:
  4311. {
  4312. int32_t L_9 = V_0;
  4313. int32_t L_10 = ___1_utf8Length;
  4314. if ((((int32_t)L_9) < ((int32_t)L_10)))
  4315. {
  4316. goto IL_0007;
  4317. }
  4318. }
  4319. {
  4320. return (int32_t)(0);
  4321. }
  4322. }
  4323. #ifdef __clang__
  4324. #pragma clang diagnostic pop
  4325. #endif
  4326. #ifdef __clang__
  4327. #pragma clang diagnostic push
  4328. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4329. #pragma clang diagnostic ignored "-Wunused-variable"
  4330. #endif
  4331. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Rune_Equals_mE3D6609368AB40A856C04A58E887B4123B0066E7 (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4332. {
  4333. static bool s_Il2CppMethodInitialized;
  4334. if (!s_Il2CppMethodInitialized)
  4335. {
  4336. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E_il2cpp_TypeInfo_var);
  4337. s_Il2CppMethodInitialized = true;
  4338. }
  4339. {
  4340. RuntimeObject* L_0 = ___0_obj;
  4341. if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E_il2cpp_TypeInfo_var)))
  4342. {
  4343. goto IL_001c;
  4344. }
  4345. }
  4346. {
  4347. int32_t L_1 = __this->___value;
  4348. RuntimeObject* L_2 = ___0_obj;
  4349. int32_t L_3 = ((Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E*)UnBox(L_2, Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E_il2cpp_TypeInfo_var))->___value;
  4350. return (bool)((((int32_t)L_1) == ((int32_t)L_3))? 1 : 0);
  4351. }
  4352. IL_001c:
  4353. {
  4354. return (bool)0;
  4355. }
  4356. }
  4357. IL2CPP_EXTERN_C bool Rune_Equals_mE3D6609368AB40A856C04A58E887B4123B0066E7_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4358. {
  4359. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* _thisAdjusted;
  4360. int32_t _offset = 1;
  4361. _thisAdjusted = reinterpret_cast<Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E*>(__this + _offset);
  4362. bool _returnValue;
  4363. _returnValue = Rune_Equals_mE3D6609368AB40A856C04A58E887B4123B0066E7(_thisAdjusted, ___0_obj, method);
  4364. return _returnValue;
  4365. }
  4366. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Rune_GetHashCode_m68368D05A3983D96C4402F27AB0B760B17F55729 (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* __this, const RuntimeMethod* method)
  4367. {
  4368. {
  4369. int32_t L_0 = __this->___value;
  4370. return L_0;
  4371. }
  4372. }
  4373. IL2CPP_EXTERN_C int32_t Rune_GetHashCode_m68368D05A3983D96C4402F27AB0B760B17F55729_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4374. {
  4375. Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* _thisAdjusted;
  4376. int32_t _offset = 1;
  4377. _thisAdjusted = reinterpret_cast<Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E*>(__this + _offset);
  4378. int32_t _returnValue;
  4379. _returnValue = Rune_GetHashCode_m68368D05A3983D96C4402F27AB0B760B17F55729_inline(_thisAdjusted, method);
  4380. return _returnValue;
  4381. }
  4382. #ifdef __clang__
  4383. #pragma clang diagnostic pop
  4384. #endif
  4385. #ifdef __clang__
  4386. #pragma clang diagnostic push
  4387. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4388. #pragma clang diagnostic ignored "-Wunused-variable"
  4389. #endif
  4390. #ifdef __clang__
  4391. #pragma clang diagnostic pop
  4392. #endif
  4393. #ifdef __clang__
  4394. #pragma clang diagnostic push
  4395. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4396. #pragma clang diagnostic ignored "-Wunused-variable"
  4397. #endif
  4398. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueBlockPoolData_AllocateBlock_mE125EB9F7D9C853E6F4C6EF3E523DFE36FD82BE3 (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* __this, const RuntimeMethod* method)
  4399. {
  4400. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_0 = NULL;
  4401. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_1 = NULL;
  4402. IL_0000:
  4403. {
  4404. int32_t* L_0 = (int32_t*)(&__this->___m_AllocLock);
  4405. int32_t L_1;
  4406. L_1 = Interlocked_CompareExchange_mB06E8737D3DA41F9FFBC38A6D0583D515EFB5717(L_0, 1, 0, NULL);
  4407. if (L_1)
  4408. {
  4409. goto IL_0000;
  4410. }
  4411. }
  4412. {
  4413. intptr_t L_2 = __this->___m_FirstBlock;
  4414. void* L_3;
  4415. L_3 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_2, NULL);
  4416. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_3;
  4417. }
  4418. IL_001b:
  4419. {
  4420. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_4 = V_0;
  4421. V_1 = L_4;
  4422. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_5 = V_1;
  4423. if ((!(((uintptr_t)L_5) == ((uintptr_t)((uintptr_t)0)))))
  4424. {
  4425. goto IL_0051;
  4426. }
  4427. }
  4428. {
  4429. int32_t* L_6 = (int32_t*)(&__this->___m_AllocLock);
  4430. int32_t L_7;
  4431. L_7 = Interlocked_Exchange_m5810F59A9EF49D8003BA76D95398854254A091DF(L_6, 0, NULL);
  4432. int32_t* L_8 = (int32_t*)(&__this->___m_NumBlocks);
  4433. int32_t L_9;
  4434. L_9 = Interlocked_Increment_m3C240C32E8D9544EC050B74D4F28EEB58F1F9309(L_8, NULL);
  4435. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_10;
  4436. L_10 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(4, NULL);
  4437. void* L_11;
  4438. L_11 = Unmanaged_Allocate_m7310B1FE896DEFFA18303D961C9859C8FF3D21E5(((int64_t)((int32_t)16384)), ((int32_t)16), L_10, NULL);
  4439. V_1 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_11;
  4440. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_12 = V_1;
  4441. return L_12;
  4442. }
  4443. IL_0051:
  4444. {
  4445. intptr_t* L_13 = (intptr_t*)(&__this->___m_FirstBlock);
  4446. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_14 = V_1;
  4447. NullCheck(L_14);
  4448. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_15 = L_14->___m_NextBlock;
  4449. intptr_t L_16;
  4450. L_16 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_15, NULL);
  4451. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_17 = V_1;
  4452. intptr_t L_18;
  4453. L_18 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_17, NULL);
  4454. intptr_t L_19;
  4455. L_19 = Interlocked_CompareExchange_m7AC708A0F5F20CADA50F64E6E2F34262D3BC45C6(L_13, L_16, L_18, NULL);
  4456. void* L_20;
  4457. L_20 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_19, NULL);
  4458. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_20;
  4459. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_21 = V_0;
  4460. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_22 = V_1;
  4461. if ((!(((uintptr_t)L_21) == ((uintptr_t)L_22))))
  4462. {
  4463. goto IL_001b;
  4464. }
  4465. }
  4466. {
  4467. int32_t* L_23 = (int32_t*)(&__this->___m_AllocLock);
  4468. int32_t L_24;
  4469. L_24 = Interlocked_Exchange_m5810F59A9EF49D8003BA76D95398854254A091DF(L_23, 0, NULL);
  4470. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_25 = V_1;
  4471. return L_25;
  4472. }
  4473. }
  4474. IL2CPP_EXTERN_C UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueBlockPoolData_AllocateBlock_mE125EB9F7D9C853E6F4C6EF3E523DFE36FD82BE3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4475. {
  4476. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* _thisAdjusted;
  4477. int32_t _offset = 1;
  4478. _thisAdjusted = reinterpret_cast<UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*>(__this + _offset);
  4479. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* _returnValue;
  4480. _returnValue = UnsafeQueueBlockPoolData_AllocateBlock_mE125EB9F7D9C853E6F4C6EF3E523DFE36FD82BE3(_thisAdjusted, method);
  4481. return _returnValue;
  4482. }
  4483. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueBlockPoolData_FreeBlock_mA0771AE409B2B98C9B69208A7612732536BE2816 (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* __this, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___0_block, const RuntimeMethod* method)
  4484. {
  4485. static bool s_Il2CppMethodInitialized;
  4486. if (!s_Il2CppMethodInitialized)
  4487. {
  4488. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_RuntimeMethod_var);
  4489. s_Il2CppMethodInitialized = true;
  4490. }
  4491. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_0 = NULL;
  4492. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_1 = NULL;
  4493. {
  4494. int32_t L_0 = __this->___m_NumBlocks;
  4495. int32_t L_1 = __this->___m_MaxBlocks;
  4496. if ((((int32_t)L_0) <= ((int32_t)L_1)))
  4497. {
  4498. goto IL_003c;
  4499. }
  4500. }
  4501. {
  4502. int32_t* L_2 = (int32_t*)(&__this->___m_NumBlocks);
  4503. int32_t L_3;
  4504. L_3 = Interlocked_Decrement_m6AFAD2E874CBDA373B1EF7572F11D6E91813E75D(L_2, NULL);
  4505. int32_t L_4 = __this->___m_MaxBlocks;
  4506. if ((((int32_t)((int32_t)il2cpp_codegen_add(L_3, 1))) <= ((int32_t)L_4)))
  4507. {
  4508. goto IL_0030;
  4509. }
  4510. }
  4511. {
  4512. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_5 = ___0_block;
  4513. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_6;
  4514. L_6 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(4, NULL);
  4515. Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB(L_5, L_6, Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_RuntimeMethod_var);
  4516. return;
  4517. }
  4518. IL_0030:
  4519. {
  4520. int32_t* L_7 = (int32_t*)(&__this->___m_NumBlocks);
  4521. int32_t L_8;
  4522. L_8 = Interlocked_Increment_m3C240C32E8D9544EC050B74D4F28EEB58F1F9309(L_7, NULL);
  4523. }
  4524. IL_003c:
  4525. {
  4526. intptr_t L_9 = __this->___m_FirstBlock;
  4527. void* L_10;
  4528. L_10 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_9, NULL);
  4529. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_10;
  4530. }
  4531. IL_0048:
  4532. {
  4533. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_11 = V_0;
  4534. V_1 = L_11;
  4535. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_12 = ___0_block;
  4536. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_13 = V_0;
  4537. NullCheck(L_12);
  4538. L_12->___m_NextBlock = L_13;
  4539. intptr_t* L_14 = (intptr_t*)(&__this->___m_FirstBlock);
  4540. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_15 = ___0_block;
  4541. intptr_t L_16;
  4542. L_16 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_15, NULL);
  4543. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_17 = V_0;
  4544. intptr_t L_18;
  4545. L_18 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_17, NULL);
  4546. intptr_t L_19;
  4547. L_19 = Interlocked_CompareExchange_m7AC708A0F5F20CADA50F64E6E2F34262D3BC45C6(L_14, L_16, L_18, NULL);
  4548. void* L_20;
  4549. L_20 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_19, NULL);
  4550. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_20;
  4551. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_21 = V_0;
  4552. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_22 = V_1;
  4553. if ((!(((uintptr_t)L_21) == ((uintptr_t)L_22))))
  4554. {
  4555. goto IL_0048;
  4556. }
  4557. }
  4558. {
  4559. return;
  4560. }
  4561. }
  4562. IL2CPP_EXTERN_C void UnsafeQueueBlockPoolData_FreeBlock_mA0771AE409B2B98C9B69208A7612732536BE2816_AdjustorThunk (RuntimeObject* __this, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___0_block, const RuntimeMethod* method)
  4563. {
  4564. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* _thisAdjusted;
  4565. int32_t _offset = 1;
  4566. _thisAdjusted = reinterpret_cast<UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*>(__this + _offset);
  4567. UnsafeQueueBlockPoolData_FreeBlock_mA0771AE409B2B98C9B69208A7612732536BE2816(_thisAdjusted, ___0_block, method);
  4568. }
  4569. #ifdef __clang__
  4570. #pragma clang diagnostic pop
  4571. #endif
  4572. #ifdef __clang__
  4573. #pragma clang diagnostic push
  4574. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4575. #pragma clang diagnostic ignored "-Wunused-variable"
  4576. #endif
  4577. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* UnsafeQueueBlockPool_GetQueueBlockPool_m0303DF9D27B754A398BF10B418C7C7DFC9F2A92B (const RuntimeMethod* method)
  4578. {
  4579. static bool s_Il2CppMethodInitialized;
  4580. if (!s_Il2CppMethodInitialized)
  4581. {
  4582. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_RuntimeMethod_var);
  4583. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var);
  4584. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_RuntimeMethod_var);
  4585. s_Il2CppMethodInitialized = true;
  4586. }
  4587. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0** V_0 = NULL;
  4588. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* V_1 = NULL;
  4589. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_2 = NULL;
  4590. int32_t V_3 = 0;
  4591. int32_t V_4 = 0;
  4592. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_5 = NULL;
  4593. {
  4594. il2cpp_codegen_runtime_class_init_inline(UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var);
  4595. void* L_0;
  4596. L_0 = SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_inline((&((UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_StaticFields*)il2cpp_codegen_static_fields_for(UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var))->___Data), SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_RuntimeMethod_var);
  4597. V_0 = (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0**)L_0;
  4598. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0** L_1 = V_0;
  4599. intptr_t L_2 = *((intptr_t*)L_1);
  4600. V_1 = (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*)L_2;
  4601. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_3 = V_1;
  4602. if ((!(((uintptr_t)L_3) == ((uintptr_t)((uintptr_t)0)))))
  4603. {
  4604. goto IL_008d;
  4605. }
  4606. }
  4607. {
  4608. int32_t L_4;
  4609. L_4 = UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_inline(UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_RuntimeMethod_var);
  4610. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_5;
  4611. L_5 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(4, NULL);
  4612. void* L_6;
  4613. L_6 = Unmanaged_Allocate_m7310B1FE896DEFFA18303D961C9859C8FF3D21E5(((int64_t)L_4), 8, L_5, NULL);
  4614. V_1 = (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*)L_6;
  4615. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0** L_7 = V_0;
  4616. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_8 = V_1;
  4617. *((intptr_t*)L_7) = (intptr_t)L_8;
  4618. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_9 = V_1;
  4619. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_10 = V_1;
  4620. int32_t L_11 = ((int32_t)256);
  4621. V_3 = L_11;
  4622. NullCheck(L_10);
  4623. L_10->___m_MaxBlocks = L_11;
  4624. int32_t L_12 = V_3;
  4625. NullCheck(L_9);
  4626. L_9->___m_NumBlocks = L_12;
  4627. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_13 = V_1;
  4628. NullCheck(L_13);
  4629. L_13->___m_AllocLock = 0;
  4630. V_2 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)((uintptr_t)0);
  4631. V_4 = 0;
  4632. goto IL_0072;
  4633. }
  4634. IL_004c:
  4635. {
  4636. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_14;
  4637. L_14 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(4, NULL);
  4638. void* L_15;
  4639. L_15 = Unmanaged_Allocate_m7310B1FE896DEFFA18303D961C9859C8FF3D21E5(((int64_t)((int32_t)16384)), ((int32_t)16), L_14, NULL);
  4640. V_5 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_15;
  4641. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_16 = V_5;
  4642. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_17 = V_2;
  4643. NullCheck(L_16);
  4644. L_16->___m_NextBlock = L_17;
  4645. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_18 = V_5;
  4646. V_2 = L_18;
  4647. int32_t L_19 = V_4;
  4648. V_4 = ((int32_t)il2cpp_codegen_add(L_19, 1));
  4649. }
  4650. IL_0072:
  4651. {
  4652. int32_t L_20 = V_4;
  4653. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_21 = V_1;
  4654. NullCheck(L_21);
  4655. int32_t L_22 = L_21->___m_MaxBlocks;
  4656. if ((((int32_t)L_20) < ((int32_t)L_22)))
  4657. {
  4658. goto IL_004c;
  4659. }
  4660. }
  4661. {
  4662. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_23 = V_1;
  4663. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_24 = V_2;
  4664. intptr_t L_25;
  4665. L_25 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_24, NULL);
  4666. NullCheck(L_23);
  4667. L_23->___m_FirstBlock = L_25;
  4668. il2cpp_codegen_runtime_class_init_inline(UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var);
  4669. UnsafeQueueBlockPool_AppDomainOnDomainUnload_m28670B75365C23F0B0213D0C34D4A36DA29AD985(NULL);
  4670. }
  4671. IL_008d:
  4672. {
  4673. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_26 = V_1;
  4674. return L_26;
  4675. }
  4676. }
  4677. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueBlockPool_AppDomainOnDomainUnload_m28670B75365C23F0B0213D0C34D4A36DA29AD985 (const RuntimeMethod* method)
  4678. {
  4679. static bool s_Il2CppMethodInitialized;
  4680. if (!s_Il2CppMethodInitialized)
  4681. {
  4682. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
  4683. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeQueueBlockPool_OnDomainUnload_mEEFD68B2157CF6B0E66FFB06ACED2B4697862620_RuntimeMethod_var);
  4684. s_Il2CppMethodInitialized = true;
  4685. }
  4686. {
  4687. AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* L_0;
  4688. L_0 = AppDomain_get_CurrentDomain_m38D86FD149C2C62AD0FAB0159D70ECB13D841667(NULL);
  4689. EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_1 = (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)il2cpp_codegen_object_new(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
  4690. EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2(L_1, NULL, (intptr_t)((void*)UnsafeQueueBlockPool_OnDomainUnload_mEEFD68B2157CF6B0E66FFB06ACED2B4697862620_RuntimeMethod_var), NULL);
  4691. NullCheck(L_0);
  4692. AppDomain_add_DomainUnload_mC24E729ABD7550A0A1F018EBF215FDF03AA1064F(L_0, L_1, NULL);
  4693. return;
  4694. }
  4695. }
  4696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueBlockPool_OnDomainUnload_mEEFD68B2157CF6B0E66FFB06ACED2B4697862620 (RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
  4697. {
  4698. static bool s_Il2CppMethodInitialized;
  4699. if (!s_Il2CppMethodInitialized)
  4700. {
  4701. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_RuntimeMethod_var);
  4702. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_RuntimeMethod_var);
  4703. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3_RuntimeMethod_var);
  4704. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var);
  4705. s_Il2CppMethodInitialized = true;
  4706. }
  4707. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0** V_0 = NULL;
  4708. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* V_1 = NULL;
  4709. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_2 = NULL;
  4710. {
  4711. il2cpp_codegen_runtime_class_init_inline(UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var);
  4712. void* L_0;
  4713. L_0 = SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_inline((&((UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_StaticFields*)il2cpp_codegen_static_fields_for(UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var))->___Data), SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_RuntimeMethod_var);
  4714. V_0 = (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0**)L_0;
  4715. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0** L_1 = V_0;
  4716. intptr_t L_2 = *((intptr_t*)L_1);
  4717. V_1 = (UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*)L_2;
  4718. goto IL_0044;
  4719. }
  4720. IL_0010:
  4721. {
  4722. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_3 = V_1;
  4723. NullCheck(L_3);
  4724. intptr_t L_4 = L_3->___m_FirstBlock;
  4725. void* L_5;
  4726. L_5 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_4, NULL);
  4727. V_2 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_5;
  4728. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_6 = V_1;
  4729. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_7 = V_2;
  4730. NullCheck(L_7);
  4731. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_8 = L_7->___m_NextBlock;
  4732. intptr_t L_9;
  4733. L_9 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_8, NULL);
  4734. NullCheck(L_6);
  4735. L_6->___m_FirstBlock = L_9;
  4736. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_10 = V_2;
  4737. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_11;
  4738. L_11 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(4, NULL);
  4739. Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB(L_10, L_11, Unmanaged_Free_TisUnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C_m096E2AEE0566600497706AAD1E2B8CF599A2EFDB_RuntimeMethod_var);
  4740. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_12 = V_1;
  4741. NullCheck(L_12);
  4742. int32_t* L_13 = (int32_t*)(&L_12->___m_NumBlocks);
  4743. int32_t* L_14 = L_13;
  4744. int32_t L_15 = *((int32_t*)L_14);
  4745. *((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_15, 1));
  4746. }
  4747. IL_0044:
  4748. {
  4749. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_16 = V_1;
  4750. NullCheck(L_16);
  4751. intptr_t L_17 = L_16->___m_FirstBlock;
  4752. bool L_18;
  4753. L_18 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_17, 0, NULL);
  4754. if (L_18)
  4755. {
  4756. goto IL_0010;
  4757. }
  4758. }
  4759. {
  4760. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_19 = V_1;
  4761. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_20;
  4762. L_20 = AllocatorHandle_op_Implicit_mDCF4431F31BB4A09438AE644785C4273F86B2B8D(4, NULL);
  4763. Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3(L_19, L_20, Unmanaged_Free_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m54473320C5CFFA2187A2371E9CDF121254A5AAC3_RuntimeMethod_var);
  4764. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0** L_21 = V_0;
  4765. *((intptr_t*)L_21) = (intptr_t)((uintptr_t)0);
  4766. return;
  4767. }
  4768. }
  4769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueBlockPool__cctor_mA8C4C9D6B4ED74D6F987F7F8E8AC5470735F5D6B (const RuntimeMethod* method)
  4770. {
  4771. static bool s_Il2CppMethodInitialized;
  4772. if (!s_Il2CppMethodInitialized)
  4773. {
  4774. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9_RuntimeMethod_var);
  4775. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var);
  4776. s_Il2CppMethodInitialized = true;
  4777. }
  4778. {
  4779. SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F L_0;
  4780. L_0 = SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9(0, ((int64_t)8615650021869908731LL), ((int64_t)0LL), SharedStatic_1_GetOrCreateUnsafe_m0DD8434030AA0A323B8ADDCEFFBE9339D4B57AC9_RuntimeMethod_var);
  4781. ((UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_StaticFields*)il2cpp_codegen_static_fields_for(UnsafeQueueBlockPool_tF9234FDCDCAED17455F8803D4616B99CE39075A8_il2cpp_TypeInfo_var))->___Data = L_0;
  4782. return;
  4783. }
  4784. }
  4785. #ifdef __clang__
  4786. #pragma clang diagnostic pop
  4787. #endif
  4788. #ifdef __clang__
  4789. #pragma clang diagnostic push
  4790. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4791. #pragma clang diagnostic ignored "-Wunused-variable"
  4792. #endif
  4793. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueData_GetCurrentWriteBlockTLS_m51E3B0E146EF03939DC2ADB143AE4A6382F9AF12 (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* __this, int32_t ___0_threadIndex, const RuntimeMethod* method)
  4794. {
  4795. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** V_0 = NULL;
  4796. {
  4797. uint8_t* L_0 = __this->___m_CurrentWriteBlockTLS;
  4798. int32_t L_1 = ___0_threadIndex;
  4799. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C**)((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, ((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)64))))));
  4800. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** L_2 = V_0;
  4801. intptr_t L_3 = *((intptr_t*)L_2);
  4802. return (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)(L_3);
  4803. }
  4804. }
  4805. IL2CPP_EXTERN_C UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueData_GetCurrentWriteBlockTLS_m51E3B0E146EF03939DC2ADB143AE4A6382F9AF12_AdjustorThunk (RuntimeObject* __this, int32_t ___0_threadIndex, const RuntimeMethod* method)
  4806. {
  4807. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* _thisAdjusted;
  4808. int32_t _offset = 1;
  4809. _thisAdjusted = reinterpret_cast<UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2*>(__this + _offset);
  4810. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* _returnValue;
  4811. _returnValue = UnsafeQueueData_GetCurrentWriteBlockTLS_m51E3B0E146EF03939DC2ADB143AE4A6382F9AF12_inline(_thisAdjusted, ___0_threadIndex, method);
  4812. return _returnValue;
  4813. }
  4814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueData_SetCurrentWriteBlockTLS_mE8BF637642E13044DFF8A34A55B8AE0B33A5F727 (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* __this, int32_t ___0_threadIndex, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___1_currentWriteBlock, const RuntimeMethod* method)
  4815. {
  4816. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** V_0 = NULL;
  4817. {
  4818. uint8_t* L_0 = __this->___m_CurrentWriteBlockTLS;
  4819. int32_t L_1 = ___0_threadIndex;
  4820. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C**)((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, ((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)64))))));
  4821. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** L_2 = V_0;
  4822. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_3 = ___1_currentWriteBlock;
  4823. *((intptr_t*)L_2) = (intptr_t)L_3;
  4824. return;
  4825. }
  4826. }
  4827. IL2CPP_EXTERN_C void UnsafeQueueData_SetCurrentWriteBlockTLS_mE8BF637642E13044DFF8A34A55B8AE0B33A5F727_AdjustorThunk (RuntimeObject* __this, int32_t ___0_threadIndex, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___1_currentWriteBlock, const RuntimeMethod* method)
  4828. {
  4829. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* _thisAdjusted;
  4830. int32_t _offset = 1;
  4831. _thisAdjusted = reinterpret_cast<UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2*>(__this + _offset);
  4832. UnsafeQueueData_SetCurrentWriteBlockTLS_mE8BF637642E13044DFF8A34A55B8AE0B33A5F727_inline(_thisAdjusted, ___0_threadIndex, ___1_currentWriteBlock, method);
  4833. }
  4834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueData_DeallocateQueue_mF4E2184511650FED8D9B85ECDB14B6E43AB06373 (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* ___0_data, UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* ___1_pool, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___2_allocation, const RuntimeMethod* method)
  4835. {
  4836. static bool s_Il2CppMethodInitialized;
  4837. if (!s_Il2CppMethodInitialized)
  4838. {
  4839. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22_RuntimeMethod_var);
  4840. s_Il2CppMethodInitialized = true;
  4841. }
  4842. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* V_0 = NULL;
  4843. {
  4844. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* L_0 = ___0_data;
  4845. NullCheck(L_0);
  4846. intptr_t L_1 = L_0->___m_FirstBlock;
  4847. void* L_2;
  4848. L_2 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_1, NULL);
  4849. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)L_2;
  4850. goto IL_001c;
  4851. }
  4852. IL_000e:
  4853. {
  4854. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_3 = V_0;
  4855. NullCheck(L_3);
  4856. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_4 = L_3->___m_NextBlock;
  4857. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_5 = ___1_pool;
  4858. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_6 = V_0;
  4859. UnsafeQueueBlockPoolData_FreeBlock_mA0771AE409B2B98C9B69208A7612732536BE2816((UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0*)L_5, L_6, NULL);
  4860. V_0 = L_4;
  4861. }
  4862. IL_001c:
  4863. {
  4864. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_7 = V_0;
  4865. if ((!(((uintptr_t)L_7) == ((uintptr_t)((uintptr_t)0)))))
  4866. {
  4867. goto IL_000e;
  4868. }
  4869. }
  4870. {
  4871. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* L_8 = ___0_data;
  4872. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_9 = ___2_allocation;
  4873. Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22(L_8, L_9, Unmanaged_Free_TisUnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2_m2B126798068B361AB653416A8345288E9A242B22_RuntimeMethod_var);
  4874. return;
  4875. }
  4876. }
  4877. #ifdef __clang__
  4878. #pragma clang diagnostic pop
  4879. #endif
  4880. #ifdef __clang__
  4881. #pragma clang diagnostic push
  4882. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4883. #pragma clang diagnostic ignored "-Wunused-variable"
  4884. #endif
  4885. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeQueueDispose_Dispose_mC88928459218E24F22077B5D77A92A48B361A502 (UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271* __this, const RuntimeMethod* method)
  4886. {
  4887. {
  4888. UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* L_0 = __this->___m_Buffer;
  4889. UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0* L_1 = __this->___m_QueuePool;
  4890. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2 = __this->___m_AllocatorLabel;
  4891. UnsafeQueueData_DeallocateQueue_mF4E2184511650FED8D9B85ECDB14B6E43AB06373(L_0, L_1, L_2, NULL);
  4892. return;
  4893. }
  4894. }
  4895. IL2CPP_EXTERN_C void UnsafeQueueDispose_Dispose_mC88928459218E24F22077B5D77A92A48B361A502_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4896. {
  4897. UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271* _thisAdjusted;
  4898. int32_t _offset = 1;
  4899. _thisAdjusted = reinterpret_cast<UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271*>(__this + _offset);
  4900. UnsafeQueueDispose_Dispose_mC88928459218E24F22077B5D77A92A48B361A502(_thisAdjusted, method);
  4901. }
  4902. #ifdef __clang__
  4903. #pragma clang diagnostic pop
  4904. #endif
  4905. #ifdef __clang__
  4906. #pragma clang diagnostic push
  4907. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4908. #pragma clang diagnostic ignored "-Wunused-variable"
  4909. #endif
  4910. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeQueueDisposeJob_Execute_m539787ED63E9D1A60DC2E7C76FE7102473D2808E (UnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  4911. {
  4912. {
  4913. UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271* L_0 = (UnsafeQueueDispose_tB0B1A4762F6D143076FB7F9E28C81202184E0271*)(&__this->___Data);
  4914. UnsafeQueueDispose_Dispose_mC88928459218E24F22077B5D77A92A48B361A502(L_0, NULL);
  4915. return;
  4916. }
  4917. }
  4918. IL2CPP_EXTERN_C void UnsafeQueueDisposeJob_Execute_m539787ED63E9D1A60DC2E7C76FE7102473D2808E_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  4919. {
  4920. UnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8* _thisAdjusted;
  4921. int32_t _offset = 1;
  4922. _thisAdjusted = reinterpret_cast<UnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8*>(__this + _offset);
  4923. UnsafeQueueDisposeJob_Execute_m539787ED63E9D1A60DC2E7C76FE7102473D2808E(_thisAdjusted, method);
  4924. }
  4925. #ifdef __clang__
  4926. #pragma clang diagnostic pop
  4927. #endif
  4928. #ifdef __clang__
  4929. #pragma clang diagnostic push
  4930. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4931. #pragma clang diagnostic ignored "-Wunused-variable"
  4932. #endif
  4933. #ifdef __clang__
  4934. #pragma clang diagnostic pop
  4935. #endif
  4936. #ifdef __clang__
  4937. #pragma clang diagnostic push
  4938. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4939. #pragma clang diagnostic ignored "-Wunused-variable"
  4940. #endif
  4941. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeAtomicCounter32__ctor_m1758A643330E7D0582DF34ABC6603E1A70C39586 (UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* __this, void* ___0_ptr, const RuntimeMethod* method)
  4942. {
  4943. {
  4944. void* L_0 = ___0_ptr;
  4945. __this->___Counter = (int32_t*)L_0;
  4946. return;
  4947. }
  4948. }
  4949. IL2CPP_EXTERN_C void UnsafeAtomicCounter32__ctor_m1758A643330E7D0582DF34ABC6603E1A70C39586_AdjustorThunk (RuntimeObject* __this, void* ___0_ptr, const RuntimeMethod* method)
  4950. {
  4951. UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* _thisAdjusted;
  4952. int32_t _offset = 1;
  4953. _thisAdjusted = reinterpret_cast<UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62*>(__this + _offset);
  4954. UnsafeAtomicCounter32__ctor_m1758A643330E7D0582DF34ABC6603E1A70C39586_inline(_thisAdjusted, ___0_ptr, method);
  4955. }
  4956. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeAtomicCounter32_Add_mDA7FAE5B9565EA6855FED9E398595C9B2E119194 (UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* __this, int32_t ___0_value, const RuntimeMethod* method)
  4957. {
  4958. static bool s_Il2CppMethodInitialized;
  4959. if (!s_Il2CppMethodInitialized)
  4960. {
  4961. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_RuntimeMethod_var);
  4962. s_Il2CppMethodInitialized = true;
  4963. }
  4964. {
  4965. int32_t* L_0 = __this->___Counter;
  4966. int32_t* L_1;
  4967. L_1 = UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_inline((void*)L_0, UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_RuntimeMethod_var);
  4968. int32_t L_2 = ___0_value;
  4969. int32_t L_3;
  4970. L_3 = Interlocked_Add_m2455208C56EEFD8832AEAD8AF7368A3FEB33A73C(L_1, L_2, NULL);
  4971. int32_t L_4 = ___0_value;
  4972. return ((int32_t)il2cpp_codegen_subtract(L_3, L_4));
  4973. }
  4974. }
  4975. IL2CPP_EXTERN_C int32_t UnsafeAtomicCounter32_Add_mDA7FAE5B9565EA6855FED9E398595C9B2E119194_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
  4976. {
  4977. UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* _thisAdjusted;
  4978. int32_t _offset = 1;
  4979. _thisAdjusted = reinterpret_cast<UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62*>(__this + _offset);
  4980. int32_t _returnValue;
  4981. _returnValue = UnsafeAtomicCounter32_Add_mDA7FAE5B9565EA6855FED9E398595C9B2E119194(_thisAdjusted, ___0_value, method);
  4982. return _returnValue;
  4983. }
  4984. #ifdef __clang__
  4985. #pragma clang diagnostic pop
  4986. #endif
  4987. #ifdef __clang__
  4988. #pragma clang diagnostic push
  4989. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4990. #pragma clang diagnostic ignored "-Wunused-variable"
  4991. #endif
  4992. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeBitArray_Free_m593DC0AC7ADB85F86BF8E27CDCA5EF1395650D0D (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* ___0_data, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  4993. {
  4994. static bool s_Il2CppMethodInitialized;
  4995. if (!s_Il2CppMethodInitialized)
  4996. {
  4997. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E_RuntimeMethod_var);
  4998. s_Il2CppMethodInitialized = true;
  4999. }
  5000. {
  5001. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* L_0 = ___0_data;
  5002. if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
  5003. {
  5004. goto IL_0010;
  5005. }
  5006. }
  5007. {
  5008. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5009. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF4415CBA61060E30CD982CD7DBE0D90186579608)), NULL);
  5010. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnsafeBitArray_Free_m593DC0AC7ADB85F86BF8E27CDCA5EF1395650D0D_RuntimeMethod_var)));
  5011. }
  5012. IL_0010:
  5013. {
  5014. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* L_2 = ___0_data;
  5015. UnsafeBitArray_Dispose_m95D39C0718064B87A854A3142329041E8244FCD2((UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4*)L_2, NULL);
  5016. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* L_3 = ___0_data;
  5017. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_4 = ___1_allocator;
  5018. Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E(L_3, L_4, Unmanaged_Free_TisUnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4_mE3F6373EC4A8E7ED5EA452E3A5738529668CD99E_RuntimeMethod_var);
  5019. return;
  5020. }
  5021. }
  5022. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeBitArray_get_IsCreated_m2C813128AFAA24077BA71E3B1C6A9EB6918F1DE1 (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* __this, const RuntimeMethod* method)
  5023. {
  5024. {
  5025. uint64_t* L_0 = __this->___Ptr;
  5026. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  5027. }
  5028. }
  5029. IL2CPP_EXTERN_C bool UnsafeBitArray_get_IsCreated_m2C813128AFAA24077BA71E3B1C6A9EB6918F1DE1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5030. {
  5031. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* _thisAdjusted;
  5032. int32_t _offset = 1;
  5033. _thisAdjusted = reinterpret_cast<UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4*>(__this + _offset);
  5034. bool _returnValue;
  5035. _returnValue = UnsafeBitArray_get_IsCreated_m2C813128AFAA24077BA71E3B1C6A9EB6918F1DE1(_thisAdjusted, method);
  5036. return _returnValue;
  5037. }
  5038. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeBitArray_Dispose_m95D39C0718064B87A854A3142329041E8244FCD2 (UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* __this, const RuntimeMethod* method)
  5039. {
  5040. static bool s_Il2CppMethodInitialized;
  5041. if (!s_Il2CppMethodInitialized)
  5042. {
  5043. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  5044. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64_RuntimeMethod_var);
  5045. s_Il2CppMethodInitialized = true;
  5046. }
  5047. {
  5048. bool L_0;
  5049. L_0 = UnsafeBitArray_get_IsCreated_m2C813128AFAA24077BA71E3B1C6A9EB6918F1DE1(__this, NULL);
  5050. if (L_0)
  5051. {
  5052. goto IL_0009;
  5053. }
  5054. }
  5055. {
  5056. return;
  5057. }
  5058. IL_0009:
  5059. {
  5060. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = __this->___Allocator;
  5061. bool L_2;
  5062. L_2 = CollectionHelper_ShouldDeallocate_m505E7EDBA71F02BAF52CC9DCD7C593CDA85D5465(L_1, NULL);
  5063. if (!L_2)
  5064. {
  5065. goto IL_0032;
  5066. }
  5067. }
  5068. {
  5069. uint64_t* L_3 = __this->___Ptr;
  5070. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_4 = __this->___Allocator;
  5071. Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64(L_3, L_4, Unmanaged_Free_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mEE0CCF17012BE1CA95605693A9DC3BC6AACCFB64_RuntimeMethod_var);
  5072. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  5073. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_5 = ((AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_StaticFields*)il2cpp_codegen_static_fields_for(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var))->___Invalid;
  5074. __this->___Allocator = L_5;
  5075. }
  5076. IL_0032:
  5077. {
  5078. __this->___Ptr = (uint64_t*)((uintptr_t)0);
  5079. __this->___Length = 0;
  5080. return;
  5081. }
  5082. }
  5083. IL2CPP_EXTERN_C void UnsafeBitArray_Dispose_m95D39C0718064B87A854A3142329041E8244FCD2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5084. {
  5085. UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4* _thisAdjusted;
  5086. int32_t _offset = 1;
  5087. _thisAdjusted = reinterpret_cast<UnsafeBitArray_t74DFECCCA980372B6F29B9AA508ACC77A3D6B8D4*>(__this + _offset);
  5088. UnsafeBitArray_Dispose_m95D39C0718064B87A854A3142329041E8244FCD2(_thisAdjusted, method);
  5089. }
  5090. #ifdef __clang__
  5091. #pragma clang diagnostic pop
  5092. #endif
  5093. #ifdef __clang__
  5094. #pragma clang diagnostic push
  5095. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5096. #pragma clang diagnostic ignored "-Wunused-variable"
  5097. #endif
  5098. #ifdef __clang__
  5099. #pragma clang diagnostic pop
  5100. #endif
  5101. #ifdef __clang__
  5102. #pragma clang diagnostic push
  5103. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5104. #pragma clang diagnostic ignored "-Wunused-variable"
  5105. #endif
  5106. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeDisposeJob_Execute_m6D0C969CE5C1124239FB9B69EC2A1E486E4F38BC (UnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5107. {
  5108. static bool s_Il2CppMethodInitialized;
  5109. if (!s_Il2CppMethodInitialized)
  5110. {
  5111. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  5112. s_Il2CppMethodInitialized = true;
  5113. }
  5114. {
  5115. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_0 = __this->___Allocator;
  5116. void* L_1 = __this->___Ptr;
  5117. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  5118. AllocatorManager_Free_mB8AE9C4CB989A9121F4E3F2E6C7781076DFB3025(L_0, L_1, NULL);
  5119. return;
  5120. }
  5121. }
  5122. IL2CPP_EXTERN_C void UnsafeDisposeJob_Execute_m6D0C969CE5C1124239FB9B69EC2A1E486E4F38BC_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5123. {
  5124. UnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8* _thisAdjusted;
  5125. int32_t _offset = 1;
  5126. _thisAdjusted = reinterpret_cast<UnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8*>(__this + _offset);
  5127. UnsafeDisposeJob_Execute_m6D0C969CE5C1124239FB9B69EC2A1E486E4F38BC(_thisAdjusted, method);
  5128. }
  5129. #ifdef __clang__
  5130. #pragma clang diagnostic pop
  5131. #endif
  5132. #ifdef __clang__
  5133. #pragma clang diagnostic push
  5134. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5135. #pragma clang diagnostic ignored "-Wunused-variable"
  5136. #endif
  5137. #ifdef __clang__
  5138. #pragma clang diagnostic pop
  5139. #endif
  5140. #ifdef __clang__
  5141. #pragma clang diagnostic push
  5142. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5143. #pragma clang diagnostic ignored "-Wunused-variable"
  5144. #endif
  5145. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t* UnsafeParallelHashMapData_get_firstFreeTLS_m75A8F3E5E2ACC2BAA05561AC4D6CD59CC06F6CC5 (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* __this, const RuntimeMethod* method)
  5146. {
  5147. {
  5148. void* L_0;
  5149. L_0 = il2cpp_codegen_unsafe_cast(__this);
  5150. return (int32_t*)(((void*)il2cpp_codegen_add((intptr_t)L_0, ((int32_t)64))));
  5151. }
  5152. }
  5153. IL2CPP_EXTERN_C int32_t* UnsafeParallelHashMapData_get_firstFreeTLS_m75A8F3E5E2ACC2BAA05561AC4D6CD59CC06F6CC5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5154. {
  5155. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* _thisAdjusted;
  5156. int32_t _offset = 1;
  5157. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926*>(__this + _offset);
  5158. int32_t* _returnValue;
  5159. _returnValue = UnsafeParallelHashMapData_get_firstFreeTLS_m75A8F3E5E2ACC2BAA05561AC4D6CD59CC06F6CC5(_thisAdjusted, method);
  5160. return _returnValue;
  5161. }
  5162. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeParallelHashMapData_GetBucketSize_mEF90FF75EFE70E4B59CD6AF9FDCB3D564A1986A3 (int32_t ___0_capacity, const RuntimeMethod* method)
  5163. {
  5164. {
  5165. int32_t L_0 = ___0_capacity;
  5166. return ((int32_t)il2cpp_codegen_multiply(L_0, 2));
  5167. }
  5168. }
  5169. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeParallelHashMapData_GrowCapacity_m7F2FF57E76510A99266830779059C6C202B9EC47 (int32_t ___0_capacity, const RuntimeMethod* method)
  5170. {
  5171. {
  5172. int32_t L_0 = ___0_capacity;
  5173. if (L_0)
  5174. {
  5175. goto IL_0005;
  5176. }
  5177. }
  5178. {
  5179. return 1;
  5180. }
  5181. IL_0005:
  5182. {
  5183. int32_t L_1 = ___0_capacity;
  5184. return ((int32_t)il2cpp_codegen_multiply(L_1, 2));
  5185. }
  5186. }
  5187. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapData_DeallocateHashMap_m8D0FEE08B8522A1D05FBFFBBB43CB203304F114F (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___1_allocator, const RuntimeMethod* method)
  5188. {
  5189. static bool s_Il2CppMethodInitialized;
  5190. if (!s_Il2CppMethodInitialized)
  5191. {
  5192. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271_RuntimeMethod_var);
  5193. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655_RuntimeMethod_var);
  5194. s_Il2CppMethodInitialized = true;
  5195. }
  5196. {
  5197. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = ___0_data;
  5198. NullCheck(L_0);
  5199. uint8_t* L_1 = L_0->___values;
  5200. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_2 = ___1_allocator;
  5201. Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271(L_1, L_2, Unmanaged_Free_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m1C432B8FDFC847D68ECC57BF4C911BA784284271_RuntimeMethod_var);
  5202. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_3 = ___0_data;
  5203. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_4 = ___1_allocator;
  5204. Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655(L_3, L_4, Unmanaged_Free_TisUnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926_m22827025CA779A0BDA69EEF4AB67F77D1070C655_RuntimeMethod_var);
  5205. return;
  5206. }
  5207. }
  5208. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeParallelHashMapData_GetCount_mF10300D8E62B36979B41F3CBE396D96721931D7B (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, const RuntimeMethod* method)
  5209. {
  5210. int32_t* V_0 = NULL;
  5211. int32_t V_1 = 0;
  5212. int32_t V_2 = 0;
  5213. int32_t V_3 = 0;
  5214. int32_t V_4 = 0;
  5215. {
  5216. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = ___0_data;
  5217. NullCheck(L_0);
  5218. int32_t L_1 = L_0->___allocatedIndexLength;
  5219. if ((((int32_t)L_1) > ((int32_t)0)))
  5220. {
  5221. goto IL_000b;
  5222. }
  5223. }
  5224. {
  5225. return 0;
  5226. }
  5227. IL_000b:
  5228. {
  5229. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_2 = ___0_data;
  5230. NullCheck(L_2);
  5231. uint8_t* L_3 = L_2->___next;
  5232. V_0 = (int32_t*)L_3;
  5233. V_1 = 0;
  5234. int32_t L_4;
  5235. L_4 = JobsUtility_get_ThreadIndexCount_m88A954344398143540618B35943F863B92465676(NULL);
  5236. V_2 = L_4;
  5237. V_3 = 0;
  5238. goto IL_0048;
  5239. }
  5240. IL_001e:
  5241. {
  5242. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_5 = ___0_data;
  5243. int32_t* L_6;
  5244. L_6 = UnsafeParallelHashMapData_get_firstFreeTLS_m75A8F3E5E2ACC2BAA05561AC4D6CD59CC06F6CC5((UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926*)L_5, NULL);
  5245. int32_t L_7 = V_3;
  5246. int32_t L_8 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_multiply(L_7, ((int32_t)16)))), 4))))));
  5247. V_4 = L_8;
  5248. goto IL_003f;
  5249. }
  5250. IL_0031:
  5251. {
  5252. int32_t L_9 = V_1;
  5253. V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
  5254. int32_t* L_10 = V_0;
  5255. int32_t L_11 = V_4;
  5256. int32_t L_12 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 4))))));
  5257. V_4 = L_12;
  5258. }
  5259. IL_003f:
  5260. {
  5261. int32_t L_13 = V_4;
  5262. if ((((int32_t)L_13) >= ((int32_t)0)))
  5263. {
  5264. goto IL_0031;
  5265. }
  5266. }
  5267. {
  5268. int32_t L_14 = V_3;
  5269. V_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
  5270. }
  5271. IL_0048:
  5272. {
  5273. int32_t L_15 = V_3;
  5274. int32_t L_16 = V_2;
  5275. if ((((int32_t)L_15) < ((int32_t)L_16)))
  5276. {
  5277. goto IL_001e;
  5278. }
  5279. }
  5280. {
  5281. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_17 = ___0_data;
  5282. NullCheck(L_17);
  5283. int32_t L_18 = L_17->___keyCapacity;
  5284. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_19 = ___0_data;
  5285. NullCheck(L_19);
  5286. int32_t L_20 = L_19->___allocatedIndexLength;
  5287. int32_t L_21;
  5288. L_21 = math_min_m02D43DF516544C279AF660EA4731449C82991849_inline(L_18, L_20, NULL);
  5289. int32_t L_22 = V_1;
  5290. return ((int32_t)il2cpp_codegen_subtract(L_21, L_22));
  5291. }
  5292. }
  5293. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapData_MoveNextSearch_m470DB16F92234F8BF5C36E38E1B2D81A208634F4 (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, int32_t* ___1_bucketIndex, int32_t* ___2_nextIndex, int32_t* ___3_index, const RuntimeMethod* method)
  5294. {
  5295. int32_t* V_0 = NULL;
  5296. int32_t V_1 = 0;
  5297. int32_t V_2 = 0;
  5298. int32_t V_3 = 0;
  5299. int32_t* V_4 = NULL;
  5300. {
  5301. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = ___0_data;
  5302. NullCheck(L_0);
  5303. uint8_t* L_1 = L_0->___buckets;
  5304. V_0 = (int32_t*)L_1;
  5305. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_2 = ___0_data;
  5306. NullCheck(L_2);
  5307. int32_t L_3 = L_2->___bucketCapacityMask;
  5308. V_1 = L_3;
  5309. int32_t* L_4 = ___1_bucketIndex;
  5310. int32_t L_5 = *((int32_t*)L_4);
  5311. V_2 = L_5;
  5312. goto IL_003f;
  5313. }
  5314. IL_0013:
  5315. {
  5316. int32_t* L_6 = V_0;
  5317. int32_t L_7 = V_2;
  5318. int32_t L_8 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_7), 4))))));
  5319. V_3 = L_8;
  5320. int32_t L_9 = V_3;
  5321. if ((((int32_t)L_9) == ((int32_t)(-1))))
  5322. {
  5323. goto IL_003b;
  5324. }
  5325. }
  5326. {
  5327. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_10 = ___0_data;
  5328. NullCheck(L_10);
  5329. uint8_t* L_11 = L_10->___next;
  5330. V_4 = (int32_t*)L_11;
  5331. int32_t* L_12 = ___3_index;
  5332. int32_t L_13 = V_3;
  5333. *((int32_t*)L_12) = (int32_t)L_13;
  5334. int32_t* L_14 = ___1_bucketIndex;
  5335. int32_t L_15 = V_2;
  5336. *((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_add(L_15, 1));
  5337. int32_t* L_16 = ___2_nextIndex;
  5338. int32_t* L_17 = V_4;
  5339. int32_t L_18 = V_3;
  5340. int32_t L_19 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 4))))));
  5341. *((int32_t*)L_16) = (int32_t)L_19;
  5342. return (bool)1;
  5343. }
  5344. IL_003b:
  5345. {
  5346. int32_t L_20 = V_2;
  5347. V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
  5348. }
  5349. IL_003f:
  5350. {
  5351. int32_t L_21 = V_2;
  5352. int32_t L_22 = V_1;
  5353. if ((((int32_t)L_21) <= ((int32_t)L_22)))
  5354. {
  5355. goto IL_0013;
  5356. }
  5357. }
  5358. {
  5359. int32_t* L_23 = ___3_index;
  5360. *((int32_t*)L_23) = (int32_t)(-1);
  5361. int32_t* L_24 = ___1_bucketIndex;
  5362. int32_t L_25 = V_1;
  5363. *((int32_t*)L_24) = (int32_t)((int32_t)il2cpp_codegen_add(L_25, 1));
  5364. int32_t* L_26 = ___2_nextIndex;
  5365. *((int32_t*)L_26) = (int32_t)(-1);
  5366. return (bool)0;
  5367. }
  5368. }
  5369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapData_MoveNext_m3A7C4662D2D479B740F657CECED1B78E1BDE1BDE (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, int32_t* ___1_bucketIndex, int32_t* ___2_nextIndex, int32_t* ___3_index, const RuntimeMethod* method)
  5370. {
  5371. int32_t* V_0 = NULL;
  5372. {
  5373. int32_t* L_0 = ___2_nextIndex;
  5374. int32_t L_1 = *((int32_t*)L_0);
  5375. if ((((int32_t)L_1) == ((int32_t)(-1))))
  5376. {
  5377. goto IL_001c;
  5378. }
  5379. }
  5380. {
  5381. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_2 = ___0_data;
  5382. NullCheck(L_2);
  5383. uint8_t* L_3 = L_2->___next;
  5384. V_0 = (int32_t*)L_3;
  5385. int32_t* L_4 = ___3_index;
  5386. int32_t* L_5 = ___2_nextIndex;
  5387. int32_t L_6 = *((int32_t*)L_5);
  5388. *((int32_t*)L_4) = (int32_t)L_6;
  5389. int32_t* L_7 = ___2_nextIndex;
  5390. int32_t* L_8 = V_0;
  5391. int32_t* L_9 = ___2_nextIndex;
  5392. int32_t L_10 = *((int32_t*)L_9);
  5393. int32_t L_11 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_10), 4))))));
  5394. *((int32_t*)L_7) = (int32_t)L_11;
  5395. return (bool)1;
  5396. }
  5397. IL_001c:
  5398. {
  5399. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_12 = ___0_data;
  5400. int32_t* L_13 = ___1_bucketIndex;
  5401. int32_t* L_14 = ___2_nextIndex;
  5402. int32_t* L_15 = ___3_index;
  5403. bool L_16;
  5404. L_16 = UnsafeParallelHashMapData_MoveNextSearch_m470DB16F92234F8BF5C36E38E1B2D81A208634F4(L_12, L_13, L_14, L_15, NULL);
  5405. return L_16;
  5406. }
  5407. }
  5408. #ifdef __clang__
  5409. #pragma clang diagnostic pop
  5410. #endif
  5411. #ifdef __clang__
  5412. #pragma clang diagnostic push
  5413. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5414. #pragma clang diagnostic ignored "-Wunused-variable"
  5415. #endif
  5416. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataDispose_Dispose_mCFF4782249AE264F799027E84E4CC704737066A3 (UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A* __this, const RuntimeMethod* method)
  5417. {
  5418. {
  5419. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = __this->___m_Buffer;
  5420. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = __this->___m_AllocatorLabel;
  5421. UnsafeParallelHashMapData_DeallocateHashMap_m8D0FEE08B8522A1D05FBFFBBB43CB203304F114F(L_0, L_1, NULL);
  5422. return;
  5423. }
  5424. }
  5425. IL2CPP_EXTERN_C void UnsafeParallelHashMapDataDispose_Dispose_mCFF4782249AE264F799027E84E4CC704737066A3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5426. {
  5427. UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A* _thisAdjusted;
  5428. int32_t _offset = 1;
  5429. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A*>(__this + _offset);
  5430. UnsafeParallelHashMapDataDispose_Dispose_mCFF4782249AE264F799027E84E4CC704737066A3(_thisAdjusted, method);
  5431. }
  5432. #ifdef __clang__
  5433. #pragma clang diagnostic pop
  5434. #endif
  5435. #ifdef __clang__
  5436. #pragma clang diagnostic push
  5437. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5438. #pragma clang diagnostic ignored "-Wunused-variable"
  5439. #endif
  5440. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataDisposeJob_Execute_m129F30954F3CF5922C620E4DDB1E50E540A06DCC (UnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5441. {
  5442. {
  5443. UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A* L_0 = (UnsafeParallelHashMapDataDispose_t625EA0ED5862F989CB98D3ADB4E85E303F37652A*)(&__this->___Data);
  5444. UnsafeParallelHashMapDataDispose_Dispose_mCFF4782249AE264F799027E84E4CC704737066A3(L_0, NULL);
  5445. return;
  5446. }
  5447. }
  5448. IL2CPP_EXTERN_C void UnsafeParallelHashMapDataDisposeJob_Execute_m129F30954F3CF5922C620E4DDB1E50E540A06DCC_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5449. {
  5450. UnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D* _thisAdjusted;
  5451. int32_t _offset = 1;
  5452. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D*>(__this + _offset);
  5453. UnsafeParallelHashMapDataDisposeJob_Execute_m129F30954F3CF5922C620E4DDB1E50E540A06DCC(_thisAdjusted, method);
  5454. }
  5455. #ifdef __clang__
  5456. #pragma clang diagnostic pop
  5457. #endif
  5458. #ifdef __clang__
  5459. #pragma clang diagnostic push
  5460. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5461. #pragma clang diagnostic ignored "-Wunused-variable"
  5462. #endif
  5463. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataEnumerator__ctor_m4BD89848A9562869AB65E15D3D1D24A194187736 (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, const RuntimeMethod* method)
  5464. {
  5465. {
  5466. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = ___0_data;
  5467. __this->___m_Buffer = L_0;
  5468. __this->___m_Index = (-1);
  5469. __this->___m_BucketIndex = 0;
  5470. __this->___m_NextIndex = (-1);
  5471. return;
  5472. }
  5473. }
  5474. IL2CPP_EXTERN_C void UnsafeParallelHashMapDataEnumerator__ctor_m4BD89848A9562869AB65E15D3D1D24A194187736_AdjustorThunk (RuntimeObject* __this, UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, const RuntimeMethod* method)
  5475. {
  5476. UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* _thisAdjusted;
  5477. int32_t _offset = 1;
  5478. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5*>(__this + _offset);
  5479. UnsafeParallelHashMapDataEnumerator__ctor_m4BD89848A9562869AB65E15D3D1D24A194187736(_thisAdjusted, ___0_data, method);
  5480. }
  5481. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapDataEnumerator_MoveNext_m15C57E6A73D44B6A1DEC165D193181FC30441204 (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, const RuntimeMethod* method)
  5482. {
  5483. {
  5484. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = __this->___m_Buffer;
  5485. int32_t* L_1 = (int32_t*)(&__this->___m_BucketIndex);
  5486. int32_t* L_2 = (int32_t*)(&__this->___m_NextIndex);
  5487. int32_t* L_3 = (int32_t*)(&__this->___m_Index);
  5488. bool L_4;
  5489. L_4 = UnsafeParallelHashMapData_MoveNext_m3A7C4662D2D479B740F657CECED1B78E1BDE1BDE_inline(L_0, L_1, L_2, L_3, NULL);
  5490. return L_4;
  5491. }
  5492. }
  5493. IL2CPP_EXTERN_C bool UnsafeParallelHashMapDataEnumerator_MoveNext_m15C57E6A73D44B6A1DEC165D193181FC30441204_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5494. {
  5495. UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* _thisAdjusted;
  5496. int32_t _offset = 1;
  5497. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5*>(__this + _offset);
  5498. bool _returnValue;
  5499. _returnValue = UnsafeParallelHashMapDataEnumerator_MoveNext_m15C57E6A73D44B6A1DEC165D193181FC30441204_inline(_thisAdjusted, method);
  5500. return _returnValue;
  5501. }
  5502. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDataEnumerator_Reset_m02FCCDAA74B79950CD2E1930AB863F55D6FD9D7A (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, const RuntimeMethod* method)
  5503. {
  5504. {
  5505. __this->___m_Index = (-1);
  5506. __this->___m_BucketIndex = 0;
  5507. __this->___m_NextIndex = (-1);
  5508. return;
  5509. }
  5510. }
  5511. IL2CPP_EXTERN_C void UnsafeParallelHashMapDataEnumerator_Reset_m02FCCDAA74B79950CD2E1930AB863F55D6FD9D7A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5512. {
  5513. UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* _thisAdjusted;
  5514. int32_t _offset = 1;
  5515. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5*>(__this + _offset);
  5516. UnsafeParallelHashMapDataEnumerator_Reset_m02FCCDAA74B79950CD2E1930AB863F55D6FD9D7A(_thisAdjusted, method);
  5517. }
  5518. #ifdef __clang__
  5519. #pragma clang diagnostic pop
  5520. #endif
  5521. #ifdef __clang__
  5522. #pragma clang diagnostic push
  5523. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5524. #pragma clang diagnostic ignored "-Wunused-variable"
  5525. #endif
  5526. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UnsafeParallelHashMapDisposeJob_Execute_mCEF89FC4B3D6D8DC7E213FF274053A41805215E1 (UnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5527. {
  5528. {
  5529. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = __this->___Data;
  5530. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = __this->___Allocator;
  5531. UnsafeParallelHashMapData_DeallocateHashMap_m8D0FEE08B8522A1D05FBFFBBB43CB203304F114F(L_0, L_1, NULL);
  5532. return;
  5533. }
  5534. }
  5535. IL2CPP_EXTERN_C void UnsafeParallelHashMapDisposeJob_Execute_mCEF89FC4B3D6D8DC7E213FF274053A41805215E1_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5536. {
  5537. UnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26* _thisAdjusted;
  5538. int32_t _offset = 1;
  5539. _thisAdjusted = reinterpret_cast<UnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26*>(__this + _offset);
  5540. UnsafeParallelHashMapDisposeJob_Execute_mCEF89FC4B3D6D8DC7E213FF274053A41805215E1(_thisAdjusted, method);
  5541. }
  5542. #ifdef __clang__
  5543. #pragma clang diagnostic pop
  5544. #endif
  5545. #ifdef __clang__
  5546. #pragma clang diagnostic push
  5547. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5548. #pragma clang diagnostic ignored "-Wunused-variable"
  5549. #endif
  5550. #ifdef __clang__
  5551. #pragma clang diagnostic pop
  5552. #endif
  5553. #ifdef __clang__
  5554. #pragma clang diagnostic push
  5555. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5556. #pragma clang diagnostic ignored "-Wunused-variable"
  5557. #endif
  5558. #ifdef __clang__
  5559. #pragma clang diagnostic pop
  5560. #endif
  5561. #ifdef __clang__
  5562. #pragma clang diagnostic push
  5563. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5564. #pragma clang diagnostic ignored "-Wunused-variable"
  5565. #endif
  5566. #ifdef __clang__
  5567. #pragma clang diagnostic pop
  5568. #endif
  5569. #ifdef __clang__
  5570. #pragma clang diagnostic push
  5571. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5572. #pragma clang diagnostic ignored "-Wunused-variable"
  5573. #endif
  5574. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStreamBlockData_Free_m91AAAF7EB91E93E8806ACB6E87436DB1757D5464 (UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* __this, UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* ___0_oldBlock, const RuntimeMethod* method)
  5575. {
  5576. {
  5577. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* L_0 = ___0_oldBlock;
  5578. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_1 = __this->___Allocator;
  5579. void* L_2;
  5580. L_2 = Array_Resize_mC7BE2965DE3FCF4014D43B606D94951480A65380((void*)L_0, ((int64_t)((int32_t)4096)), ((int64_t)0), L_1, ((int64_t)1), ((int32_t)16), NULL);
  5581. return;
  5582. }
  5583. }
  5584. IL2CPP_EXTERN_C void UnsafeStreamBlockData_Free_m91AAAF7EB91E93E8806ACB6E87436DB1757D5464_AdjustorThunk (RuntimeObject* __this, UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* ___0_oldBlock, const RuntimeMethod* method)
  5585. {
  5586. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* _thisAdjusted;
  5587. int32_t _offset = 1;
  5588. _thisAdjusted = reinterpret_cast<UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6*>(__this + _offset);
  5589. UnsafeStreamBlockData_Free_m91AAAF7EB91E93E8806ACB6E87436DB1757D5464(_thisAdjusted, ___0_oldBlock, method);
  5590. }
  5591. #ifdef __clang__
  5592. #pragma clang diagnostic pop
  5593. #endif
  5594. #ifdef __clang__
  5595. #pragma clang diagnostic push
  5596. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5597. #pragma clang diagnostic ignored "-Wunused-variable"
  5598. #endif
  5599. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065 (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, int32_t ___0_forEachCount, const RuntimeMethod* method)
  5600. {
  5601. static bool s_Il2CppMethodInitialized;
  5602. if (!s_Il2CppMethodInitialized)
  5603. {
  5604. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_RuntimeMethod_var);
  5605. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  5606. s_Il2CppMethodInitialized = true;
  5607. }
  5608. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* V_0 = NULL;
  5609. {
  5610. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  5611. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  5612. intptr_t L_2 = L_1->___Pointer;
  5613. void* L_3;
  5614. L_3 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_2, NULL);
  5615. V_0 = (UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6*)L_3;
  5616. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_4 = V_0;
  5617. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_5 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  5618. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_6 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_5->___Range);
  5619. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* L_7 = (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148*)(&L_6->___Allocator);
  5620. uint32_t L_8 = sizeof(UnsafeStreamRange_tF5953324FD7FC591B632D6464C49C83C9429AAA9);
  5621. int32_t L_9 = ___0_forEachCount;
  5622. il2cpp_codegen_runtime_class_init_inline(AllocatorManager_tFB15A22029C8159A3DCD4C08935BE57D3E6B3C2C_il2cpp_TypeInfo_var);
  5623. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3 L_10;
  5624. L_10 = AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2(L_7, L_8, ((int32_t)16), L_9, AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_RuntimeMethod_var);
  5625. NullCheck(L_4);
  5626. L_4->___Ranges = L_10;
  5627. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_11 = V_0;
  5628. int32_t L_12 = ___0_forEachCount;
  5629. NullCheck(L_11);
  5630. L_11->___RangeCount = L_12;
  5631. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_13 = V_0;
  5632. NullCheck(L_13);
  5633. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_14 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&L_13->___Ranges);
  5634. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_15 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_14->___Range);
  5635. intptr_t L_16 = L_15->___Pointer;
  5636. void* L_17;
  5637. L_17 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_16, NULL);
  5638. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_18 = V_0;
  5639. NullCheck(L_18);
  5640. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_19 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&L_18->___Ranges);
  5641. int64_t L_20;
  5642. L_20 = Block_get_AllocatedBytes_mFE126B221F670BDA89C5D59C9E63C9724F79BE08(L_19, NULL);
  5643. UnsafeUtility_MemClear_m6C4377117084A11A667A567BC2F5E606A632A7C1(L_17, L_20, NULL);
  5644. return;
  5645. }
  5646. }
  5647. IL2CPP_EXTERN_C void UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065_AdjustorThunk (RuntimeObject* __this, int32_t ___0_forEachCount, const RuntimeMethod* method)
  5648. {
  5649. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* _thisAdjusted;
  5650. int32_t _offset = 1;
  5651. _thisAdjusted = reinterpret_cast<UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*>(__this + _offset);
  5652. UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065(_thisAdjusted, ___0_forEachCount, method);
  5653. }
  5654. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method)
  5655. {
  5656. {
  5657. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  5658. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  5659. intptr_t L_2 = L_1->___Pointer;
  5660. bool L_3;
  5661. L_3 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_2, 0, NULL);
  5662. return L_3;
  5663. }
  5664. }
  5665. IL2CPP_EXTERN_C bool UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5666. {
  5667. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* _thisAdjusted;
  5668. int32_t _offset = 1;
  5669. _thisAdjusted = reinterpret_cast<UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*>(__this + _offset);
  5670. bool _returnValue;
  5671. _returnValue = UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline(_thisAdjusted, method);
  5672. return _returnValue;
  5673. }
  5674. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStream_Deallocate_mF13D45026C45A52DD441B1F021CC4BE9454D466C (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method)
  5675. {
  5676. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* V_0 = NULL;
  5677. int32_t V_1 = 0;
  5678. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* V_2 = NULL;
  5679. {
  5680. bool L_0;
  5681. L_0 = UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline(__this, NULL);
  5682. if (L_0)
  5683. {
  5684. goto IL_0009;
  5685. }
  5686. }
  5687. {
  5688. return;
  5689. }
  5690. IL_0009:
  5691. {
  5692. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_1 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  5693. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_2 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_1->___Range);
  5694. intptr_t L_3 = L_2->___Pointer;
  5695. void* L_4;
  5696. L_4 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_3, NULL);
  5697. V_0 = (UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6*)L_4;
  5698. V_1 = 0;
  5699. goto IL_004e;
  5700. }
  5701. IL_0023:
  5702. {
  5703. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_5 = V_0;
  5704. NullCheck(L_5);
  5705. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C** L_6 = L_5->___Blocks;
  5706. int32_t L_7 = V_1;
  5707. uint32_t L_8 = sizeof(UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C*);
  5708. intptr_t L_9 = *((intptr_t*)((UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C**)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_7), (int32_t)L_8)))));
  5709. V_2 = (UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C*)L_9;
  5710. goto IL_0045;
  5711. }
  5712. IL_0037:
  5713. {
  5714. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* L_10 = V_2;
  5715. NullCheck(L_10);
  5716. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* L_11 = L_10->___Next;
  5717. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_12 = V_0;
  5718. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* L_13 = V_2;
  5719. UnsafeStreamBlockData_Free_m91AAAF7EB91E93E8806ACB6E87436DB1757D5464((UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6*)L_12, L_13, NULL);
  5720. V_2 = L_11;
  5721. }
  5722. IL_0045:
  5723. {
  5724. UnsafeStreamBlock_t0DE96C782B2CBF67BE34978C364781E170B3A86C* L_14 = V_2;
  5725. if ((!(((uintptr_t)L_14) == ((uintptr_t)((uintptr_t)0)))))
  5726. {
  5727. goto IL_0037;
  5728. }
  5729. }
  5730. {
  5731. int32_t L_15 = V_1;
  5732. V_1 = ((int32_t)il2cpp_codegen_add(L_15, 1));
  5733. }
  5734. IL_004e:
  5735. {
  5736. int32_t L_16 = V_1;
  5737. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_17 = V_0;
  5738. NullCheck(L_17);
  5739. int32_t L_18 = L_17->___BlockCount;
  5740. if ((!(((uint32_t)L_16) == ((uint32_t)L_18))))
  5741. {
  5742. goto IL_0023;
  5743. }
  5744. }
  5745. {
  5746. UnsafeStreamBlockData_t7024BEE600A8D8D0A263688FDF269C9F89473DA6* L_19 = V_0;
  5747. NullCheck(L_19);
  5748. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_20 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&L_19->___Ranges);
  5749. Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED(L_20, NULL);
  5750. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_21 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  5751. Block_Dispose_m38B474EF3D6A142344D0A58651319FD039FB54ED(L_21, NULL);
  5752. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_22 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  5753. il2cpp_codegen_initobj(L_22, sizeof(Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3));
  5754. return;
  5755. }
  5756. }
  5757. IL2CPP_EXTERN_C void UnsafeStream_Deallocate_mF13D45026C45A52DD441B1F021CC4BE9454D466C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5758. {
  5759. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* _thisAdjusted;
  5760. int32_t _offset = 1;
  5761. _thisAdjusted = reinterpret_cast<UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*>(__this + _offset);
  5762. UnsafeStream_Deallocate_mF13D45026C45A52DD441B1F021CC4BE9454D466C(_thisAdjusted, method);
  5763. }
  5764. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeStream_Dispose_m4D493F40C6ED4C7346017C05FBC006B5632AE49C (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method)
  5765. {
  5766. {
  5767. bool L_0;
  5768. L_0 = UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline(__this, NULL);
  5769. if (L_0)
  5770. {
  5771. goto IL_0009;
  5772. }
  5773. }
  5774. {
  5775. return;
  5776. }
  5777. IL_0009:
  5778. {
  5779. UnsafeStream_Deallocate_mF13D45026C45A52DD441B1F021CC4BE9454D466C(__this, NULL);
  5780. return;
  5781. }
  5782. }
  5783. IL2CPP_EXTERN_C void UnsafeStream_Dispose_m4D493F40C6ED4C7346017C05FBC006B5632AE49C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5784. {
  5785. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* _thisAdjusted;
  5786. int32_t _offset = 1;
  5787. _thisAdjusted = reinterpret_cast<UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*>(__this + _offset);
  5788. UnsafeStream_Dispose_m4D493F40C6ED4C7346017C05FBC006B5632AE49C(_thisAdjusted, method);
  5789. }
  5790. #ifdef __clang__
  5791. #pragma clang diagnostic pop
  5792. #endif
  5793. #ifdef __clang__
  5794. #pragma clang diagnostic push
  5795. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5796. #pragma clang diagnostic ignored "-Wunused-variable"
  5797. #endif
  5798. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DisposeJob_Execute_m089DE6120E788ECA6418DFAB36FFC3F4E90FC10E (DisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5799. {
  5800. {
  5801. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___Container);
  5802. UnsafeStream_Deallocate_mF13D45026C45A52DD441B1F021CC4BE9454D466C(L_0, NULL);
  5803. return;
  5804. }
  5805. }
  5806. IL2CPP_EXTERN_C void DisposeJob_Execute_m089DE6120E788ECA6418DFAB36FFC3F4E90FC10E_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5807. {
  5808. DisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467* _thisAdjusted;
  5809. int32_t _offset = 1;
  5810. _thisAdjusted = reinterpret_cast<DisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467*>(__this + _offset);
  5811. DisposeJob_Execute_m089DE6120E788ECA6418DFAB36FFC3F4E90FC10E(_thisAdjusted, method);
  5812. }
  5813. #ifdef __clang__
  5814. #pragma clang diagnostic pop
  5815. #endif
  5816. #ifdef __clang__
  5817. #pragma clang diagnostic push
  5818. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5819. #pragma clang diagnostic ignored "-Wunused-variable"
  5820. #endif
  5821. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJobList_Execute_mDECEE80A756D3E19EF0FC58ADB0C4665626F7DAB (ConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5822. {
  5823. {
  5824. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___Container);
  5825. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_1 = __this->___List;
  5826. NullCheck(L_1);
  5827. int32_t L_2 = L_1->___m_length;
  5828. UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065(L_0, L_2, NULL);
  5829. return;
  5830. }
  5831. }
  5832. IL2CPP_EXTERN_C void ConstructJobList_Execute_mDECEE80A756D3E19EF0FC58ADB0C4665626F7DAB_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5833. {
  5834. ConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F* _thisAdjusted;
  5835. int32_t _offset = 1;
  5836. _thisAdjusted = reinterpret_cast<ConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F*>(__this + _offset);
  5837. ConstructJobList_Execute_mDECEE80A756D3E19EF0FC58ADB0C4665626F7DAB(_thisAdjusted, method);
  5838. }
  5839. #ifdef __clang__
  5840. #pragma clang diagnostic pop
  5841. #endif
  5842. #ifdef __clang__
  5843. #pragma clang diagnostic push
  5844. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5845. #pragma clang diagnostic ignored "-Wunused-variable"
  5846. #endif
  5847. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConstructJob_Execute_mAA49F134BF92ED7BB0356BC460A30C9B39A87C50 (ConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5848. {
  5849. {
  5850. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___Container);
  5851. NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_1 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___Length);
  5852. int32_t L_2;
  5853. L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_1)->___m_Buffer, 0);
  5854. UnsafeStream_AllocateForEach_m1EE9C9B5CF33ED03FA2C01A5DF2C5D99BAABC065(L_0, L_2, NULL);
  5855. return;
  5856. }
  5857. }
  5858. IL2CPP_EXTERN_C void ConstructJob_Execute_mAA49F134BF92ED7BB0356BC460A30C9B39A87C50_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
  5859. {
  5860. ConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1* _thisAdjusted;
  5861. int32_t _offset = 1;
  5862. _thisAdjusted = reinterpret_cast<ConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1*>(__this + _offset);
  5863. ConstructJob_Execute_mAA49F134BF92ED7BB0356BC460A30C9B39A87C50(_thisAdjusted, method);
  5864. }
  5865. #ifdef __clang__
  5866. #pragma clang diagnostic pop
  5867. #endif
  5868. #ifdef __clang__
  5869. #pragma clang diagnostic push
  5870. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5871. #pragma clang diagnostic ignored "-Wunused-variable"
  5872. #endif
  5873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* UnsafeTextExtensions_AsUnsafeListOfBytes_mA80ABFE08762E38D788ACF506BEB4A0E3621D439 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_text, const RuntimeMethod* method)
  5874. {
  5875. static bool s_Il2CppMethodInitialized;
  5876. if (!s_Il2CppMethodInitialized)
  5877. {
  5878. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  5879. s_Il2CppMethodInitialized = true;
  5880. }
  5881. {
  5882. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_0 = ___0_text;
  5883. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_1 = (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*)(&L_0->___m_UntypedListData);
  5884. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* L_2;
  5885. L_2 = UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_inline(L_1, UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  5886. return L_2;
  5887. }
  5888. }
  5889. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 ___0_text, const RuntimeMethod* method)
  5890. {
  5891. static bool s_Il2CppMethodInitialized;
  5892. if (!s_Il2CppMethodInitialized)
  5893. {
  5894. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  5895. s_Il2CppMethodInitialized = true;
  5896. }
  5897. {
  5898. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_0 = (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*)(&(&___0_text)->___m_UntypedListData);
  5899. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* L_1;
  5900. L_1 = UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_inline(L_0, UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  5901. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D L_2 = (*(UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D*)L_1);
  5902. return L_2;
  5903. }
  5904. }
  5905. #ifdef __clang__
  5906. #pragma clang diagnostic pop
  5907. #endif
  5908. #ifdef __clang__
  5909. #pragma clang diagnostic push
  5910. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5911. #pragma clang diagnostic ignored "-Wunused-variable"
  5912. #endif
  5913. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnsafeText_get_IsCreated_mEE504C37FEADA4DFD3A6AFB47751B20A1423BBF1 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  5914. {
  5915. static bool s_Il2CppMethodInitialized;
  5916. if (!s_Il2CppMethodInitialized)
  5917. {
  5918. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_RuntimeMethod_var);
  5919. s_Il2CppMethodInitialized = true;
  5920. }
  5921. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D V_0;
  5922. memset((&V_0), 0, sizeof(V_0));
  5923. {
  5924. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 L_0 = (*(UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*)__this);
  5925. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D L_1;
  5926. L_1 = UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4_inline(L_0, NULL);
  5927. V_0 = L_1;
  5928. bool L_2;
  5929. L_2 = UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_inline((&V_0), UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_RuntimeMethod_var);
  5930. return L_2;
  5931. }
  5932. }
  5933. IL2CPP_EXTERN_C bool UnsafeText_get_IsCreated_mEE504C37FEADA4DFD3A6AFB47751B20A1423BBF1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5934. {
  5935. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* _thisAdjusted;
  5936. int32_t _offset = 1;
  5937. _thisAdjusted = reinterpret_cast<UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*>(__this + _offset);
  5938. bool _returnValue;
  5939. _returnValue = UnsafeText_get_IsCreated_mEE504C37FEADA4DFD3A6AFB47751B20A1423BBF1_inline(_thisAdjusted, method);
  5940. return _returnValue;
  5941. }
  5942. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeText_Free_m22C162680EFB31663020E8FE94BE67596994A98B (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_data, const RuntimeMethod* method)
  5943. {
  5944. static bool s_Il2CppMethodInitialized;
  5945. if (!s_Il2CppMethodInitialized)
  5946. {
  5947. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84_RuntimeMethod_var);
  5948. s_Il2CppMethodInitialized = true;
  5949. }
  5950. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 V_0;
  5951. memset((&V_0), 0, sizeof(V_0));
  5952. {
  5953. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_0 = ___0_data;
  5954. if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
  5955. {
  5956. goto IL_0010;
  5957. }
  5958. }
  5959. {
  5960. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5961. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC898F808E19AF57D0662145D1AE7C9A70CC3DCB)), NULL);
  5962. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnsafeText_Free_m22C162680EFB31663020E8FE94BE67596994A98B_RuntimeMethod_var)));
  5963. }
  5964. IL_0010:
  5965. {
  5966. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_2 = ___0_data;
  5967. NullCheck(L_2);
  5968. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_3 = (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*)(&L_2->___m_UntypedListData);
  5969. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_4 = L_3->___Allocator;
  5970. V_0 = L_4;
  5971. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_5 = ___0_data;
  5972. UnsafeText_Dispose_m715EBE3FAD0BA5111276CFCB7F65419701F3BABC((UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*)L_5, NULL);
  5973. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_6 = ___0_data;
  5974. AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 L_7 = V_0;
  5975. Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84(L_6, L_7, Unmanaged_Free_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m43022B9CFB1F8C5AB5994140793058FD355CCF84_RuntimeMethod_var);
  5976. return;
  5977. }
  5978. }
  5979. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeText_Dispose_m715EBE3FAD0BA5111276CFCB7F65419701F3BABC (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  5980. {
  5981. static bool s_Il2CppMethodInitialized;
  5982. if (!s_Il2CppMethodInitialized)
  5983. {
  5984. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1_RuntimeMethod_var);
  5985. s_Il2CppMethodInitialized = true;
  5986. }
  5987. {
  5988. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* L_0;
  5989. L_0 = UnsafeTextExtensions_AsUnsafeListOfBytes_mA80ABFE08762E38D788ACF506BEB4A0E3621D439_inline(__this, NULL);
  5990. UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1(L_0, UnsafeList_1_Dispose_mAA3AA3C24353F81AC3D1FE4653D3496B28C5E3D1_RuntimeMethod_var);
  5991. return;
  5992. }
  5993. }
  5994. IL2CPP_EXTERN_C void UnsafeText_Dispose_m715EBE3FAD0BA5111276CFCB7F65419701F3BABC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5995. {
  5996. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* _thisAdjusted;
  5997. int32_t _offset = 1;
  5998. _thisAdjusted = reinterpret_cast<UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*>(__this + _offset);
  5999. UnsafeText_Dispose_m715EBE3FAD0BA5111276CFCB7F65419701F3BABC(_thisAdjusted, method);
  6000. }
  6001. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* UnsafeText_GetUnsafePtr_m1C1462A867C4714017B3A5974F1FAF3716FB8F8C (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  6002. {
  6003. {
  6004. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_0 = (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*)(&__this->___m_UntypedListData);
  6005. void* L_1 = L_0->___Ptr;
  6006. return (uint8_t*)(L_1);
  6007. }
  6008. }
  6009. IL2CPP_EXTERN_C uint8_t* UnsafeText_GetUnsafePtr_m1C1462A867C4714017B3A5974F1FAF3716FB8F8C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  6010. {
  6011. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* _thisAdjusted;
  6012. int32_t _offset = 1;
  6013. _thisAdjusted = reinterpret_cast<UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*>(__this + _offset);
  6014. uint8_t* _returnValue;
  6015. _returnValue = UnsafeText_GetUnsafePtr_m1C1462A867C4714017B3A5974F1FAF3716FB8F8C(_thisAdjusted, method);
  6016. return _returnValue;
  6017. }
  6018. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeText_get_Length_m7D4616C7F2AAA07EC0E98FB430C6D7DA2D4D5E40 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  6019. {
  6020. static bool s_Il2CppMethodInitialized;
  6021. if (!s_Il2CppMethodInitialized)
  6022. {
  6023. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_RuntimeMethod_var);
  6024. s_Il2CppMethodInitialized = true;
  6025. }
  6026. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D V_0;
  6027. memset((&V_0), 0, sizeof(V_0));
  6028. {
  6029. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 L_0 = (*(UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*)__this);
  6030. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D L_1;
  6031. L_1 = UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4_inline(L_0, NULL);
  6032. V_0 = L_1;
  6033. int32_t L_2;
  6034. L_2 = UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_inline((&V_0), UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_RuntimeMethod_var);
  6035. return ((int32_t)il2cpp_codegen_subtract(L_2, 1));
  6036. }
  6037. }
  6038. IL2CPP_EXTERN_C int32_t UnsafeText_get_Length_m7D4616C7F2AAA07EC0E98FB430C6D7DA2D4D5E40_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  6039. {
  6040. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* _thisAdjusted;
  6041. int32_t _offset = 1;
  6042. _thisAdjusted = reinterpret_cast<UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*>(__this + _offset);
  6043. int32_t _returnValue;
  6044. _returnValue = UnsafeText_get_Length_m7D4616C7F2AAA07EC0E98FB430C6D7DA2D4D5E40_inline(_thisAdjusted, method);
  6045. return _returnValue;
  6046. }
  6047. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnsafeText_ToString_m02C6D467CDF758100B8CCC3199168304B1FCE2B2 (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  6048. {
  6049. static bool s_Il2CppMethodInitialized;
  6050. if (!s_Il2CppMethodInitialized)
  6051. {
  6052. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160_RuntimeMethod_var);
  6053. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  6054. s_Il2CppMethodInitialized = true;
  6055. }
  6056. {
  6057. bool L_0;
  6058. L_0 = UnsafeText_get_IsCreated_mEE504C37FEADA4DFD3A6AFB47751B20A1423BBF1_inline(__this, NULL);
  6059. if (L_0)
  6060. {
  6061. goto IL_000e;
  6062. }
  6063. }
  6064. {
  6065. return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  6066. }
  6067. IL_000e:
  6068. {
  6069. String_t* L_1;
  6070. L_1 = FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160(__this, FixedStringMethods_ConvertToString_TisUnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67_m885EB81FA8EA83B641FEF5C822731AD31D523160_RuntimeMethod_var);
  6071. return L_1;
  6072. }
  6073. }
  6074. IL2CPP_EXTERN_C String_t* UnsafeText_ToString_m02C6D467CDF758100B8CCC3199168304B1FCE2B2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  6075. {
  6076. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* _thisAdjusted;
  6077. int32_t _offset = 1;
  6078. _thisAdjusted = reinterpret_cast<UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*>(__this + _offset);
  6079. String_t* _returnValue;
  6080. _returnValue = UnsafeText_ToString_m02C6D467CDF758100B8CCC3199168304B1FCE2B2(_thisAdjusted, method);
  6081. return _returnValue;
  6082. }
  6083. #ifdef __clang__
  6084. #pragma clang diagnostic pop
  6085. #endif
  6086. #ifdef __clang__
  6087. #pragma clang diagnostic push
  6088. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6089. #pragma clang diagnostic ignored "-Wunused-variable"
  6090. #endif
  6091. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __JobReflectionRegistrationOutput__1652832624114795843_CreateJobReflectionData_m6F06A9348EFD949AABE2DB3703E98ECE169E5C2A (const RuntimeMethod* method)
  6092. {
  6093. static bool s_Il2CppMethodInitialized;
  6094. if (!s_Il2CppMethodInitialized)
  6095. {
  6096. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787_RuntimeMethod_var);
  6097. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2_RuntimeMethod_var);
  6098. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C_RuntimeMethod_var);
  6099. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7_RuntimeMethod_var);
  6100. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384_RuntimeMethod_var);
  6101. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619_RuntimeMethod_var);
  6102. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5_RuntimeMethod_var);
  6103. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997_RuntimeMethod_var);
  6104. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E_RuntimeMethod_var);
  6105. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80_RuntimeMethod_var);
  6106. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38_RuntimeMethod_var);
  6107. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE_RuntimeMethod_var);
  6108. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941_RuntimeMethod_var);
  6109. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96_RuntimeMethod_var);
  6110. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B_RuntimeMethod_var);
  6111. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338_RuntimeMethod_var);
  6112. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521_RuntimeMethod_var);
  6113. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2_RuntimeMethod_var);
  6114. s_Il2CppMethodInitialized = true;
  6115. }
  6116. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  6117. try
  6118. {
  6119. IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619(IJobExtensions_EarlyJobInit_TisDummyJob_t50C3B74B58010EF7C493FD54DE47FA89000811CF_m974E687B8E3DBF85F95612F45C1286E4E4B38619_RuntimeMethod_var);
  6120. IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5(IJobExtensions_EarlyJobInit_TisNativeBitArrayDisposeJob_t00763693614E508DB46C81C61E98E8853E4FADDA_m2C71CD6120AFD63DF3A44B515090B6047C491EF5_RuntimeMethod_var);
  6121. IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997(IJobExtensions_EarlyJobInit_TisNativeHashMapDisposeJob_t5F64C3E491DFF11B3935A1300B5F130D6F268B0E_m52060719B18C1578FF721323A760C1BC37608997_RuntimeMethod_var);
  6122. IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E(IJobExtensions_EarlyJobInit_TisNativeListDisposeJob_tAFDFC975902309E429D7F8A52994A70483EEFC8F_mC13214FC98E9D6DBF61B66C0D9F5ECBDDDCB553E_RuntimeMethod_var);
  6123. IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80(IJobExtensions_EarlyJobInit_TisNativeQueueDisposeJob_t1B1983EA13D2F36B4422FE4DF256D7E363B8CFD5_mE1C3B98E19C4AC16351ACD14BECF4243A96AFD80_RuntimeMethod_var);
  6124. IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38(IJobExtensions_EarlyJobInit_TisNativeReferenceDisposeJob_t19339E953A8DEEB90CDD6C530F43AD856B82BEE2_m44650D2A978DEA1D7DCB863260D335577C1E6A38_RuntimeMethod_var);
  6125. IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE(IJobExtensions_EarlyJobInit_TisNativeRingQueueDisposeJob_t2F10155551145226E09E6EDC25F291EE0E4C1F21_m8B0DF79BAF2F512E7EC714B01BE264FD2F8980BE_RuntimeMethod_var);
  6126. IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2(IJobExtensions_EarlyJobInit_TisConstructJobList_t9B7D7E4828A1206B525AB228F2A5C31DE9C55707_mB2493454D2505CCA4CDE573FE8F2B86F04D052C2_RuntimeMethod_var);
  6127. IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7(IJobExtensions_EarlyJobInit_TisConstructJob_tAB939BE2717219C96873C3255F3284782D9B44F4_mEC6669D04DF23AF991FC2B559C433D3415D5C2F7_RuntimeMethod_var);
  6128. IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941(IJobExtensions_EarlyJobInit_TisNativeStreamDisposeJob_tF5229172BA7C2ACF21392FB6493F9D47BA16D001_mB522A76B2593EB8658B44BFADD654265390B5941_RuntimeMethod_var);
  6129. IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96(IJobExtensions_EarlyJobInit_TisNativeTextDisposeJob_t87C253E95DC3B9D9E96FFDA01F9D46E07795A2D6_mDD9732002C1D203D1FFFADDA797363C2742A2C96_RuntimeMethod_var);
  6130. IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2(IJobExtensions_EarlyJobInit_TisUnsafeQueueDisposeJob_tA21BB90BB38D740653333AD0E350592B2F6472D8_mCE481E38EFFDE449BDC68E790F3079AA6C74FAF2_RuntimeMethod_var);
  6131. IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B(IJobExtensions_EarlyJobInit_TisUnsafeDisposeJob_tABDA7829E812471BAF5A6B390D41BCD0260753E8_m9B568ECC6ED7D4A7178F226FA1A2D42665F6A88B_RuntimeMethod_var);
  6132. IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338(IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDataDisposeJob_t737E663DAE8B1C489C3ED507387796B9226E798D_mA13C633DE5268CB5500B1310280B1EDD3FA4A338_RuntimeMethod_var);
  6133. IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521(IJobExtensions_EarlyJobInit_TisUnsafeParallelHashMapDisposeJob_t83E003B60C17F8843C87C56E647F10210D8A4B26_mC8504BC1B8C3C51E77053A65034771F1B9772521_RuntimeMethod_var);
  6134. IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384(IJobExtensions_EarlyJobInit_TisDisposeJob_t04680DC488B637A98BCED625FD3BD6F85EC6D467_m7390B39B4E29BA20DE3CF515405A13830267D384_RuntimeMethod_var);
  6135. IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787(IJobExtensions_EarlyJobInit_TisConstructJobList_t3EA9493BA14A6EAF46D2C6B1EFE5727F3048778F_m32DFBE34FF50FA346E0CE2413BC15CA66919F787_RuntimeMethod_var);
  6136. IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C(IJobExtensions_EarlyJobInit_TisConstructJob_t55C543914D2A5CE4D61B4BB4B27D1524950920F1_mB54D02E701F9ADBD0057A2AF31A1DCE463D1590C_RuntimeMethod_var);
  6137. goto IL_006b;
  6138. }
  6139. catch(Il2CppExceptionWrapper& e)
  6140. {
  6141. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  6142. {
  6143. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  6144. goto CATCH_0060;
  6145. }
  6146. throw e;
  6147. }
  6148. CATCH_0060:
  6149. {
  6150. Exception_t* L_0 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
  6151. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EarlyInitHelpers_tA67F29CEEF85CD33340F1A46E13686C44F97695A_il2cpp_TypeInfo_var)));
  6152. EarlyInitHelpers_JobReflectionDataCreationFailed_mD6AB08D5BB411CCE38A87793C3C7062EC91FD1EC(L_0, NULL);
  6153. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  6154. goto IL_006b;
  6155. }
  6156. IL_006b:
  6157. {
  6158. return;
  6159. }
  6160. }
  6161. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __JobReflectionRegistrationOutput__1652832624114795843_EarlyInit_m464D1467C681AD66A33B32BF5ECE7CF7EFD21C95 (const RuntimeMethod* method)
  6162. {
  6163. {
  6164. __JobReflectionRegistrationOutput__1652832624114795843_CreateJobReflectionData_m6F06A9348EFD949AABE2DB3703E98ECE169E5C2A(NULL);
  6165. return;
  6166. }
  6167. }
  6168. #ifdef __clang__
  6169. #pragma clang diagnostic pop
  6170. #endif
  6171. #ifdef __clang__
  6172. #pragma clang diagnostic push
  6173. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6174. #pragma clang diagnostic ignored "-Wunused-variable"
  6175. #endif
  6176. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U24BurstDirectCallInitializer_Initialize_mBB7299DE1F1DF732C60394307234ED45AE14AD82 (const RuntimeMethod* method)
  6177. {
  6178. static bool s_Il2CppMethodInitialized;
  6179. if (!s_Il2CppMethodInitialized)
  6180. {
  6181. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8_il2cpp_TypeInfo_var);
  6182. s_Il2CppMethodInitialized = true;
  6183. }
  6184. BurstCompilerOptions_t5F93118F305E1B0C950C6F9AF8BCA74033DA01C9* V_0 = NULL;
  6185. {
  6186. il2cpp_codegen_runtime_class_init_inline(BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8_il2cpp_TypeInfo_var);
  6187. BurstCompilerOptions_t5F93118F305E1B0C950C6F9AF8BCA74033DA01C9* L_0 = ((BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8_StaticFields*)il2cpp_codegen_static_fields_for(BurstCompiler_t2715484E1FF256726FC4D4D8E17C35A4C8DFA2B8_il2cpp_TypeInfo_var))->___Options;
  6188. V_0 = L_0;
  6189. return;
  6190. }
  6191. }
  6192. #ifdef __clang__
  6193. #pragma clang diagnostic pop
  6194. #endif
  6195. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EarlyInitFunction_Invoke_mA2104BB505B5D3F16622D30BDA3AF83F3FE2FB2D_inline (EarlyInitFunction_tB53933F316046E6D5DA274647A66AE8457FD4802* __this, const RuntimeMethod* method)
  6196. {
  6197. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  6198. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  6199. }
  6200. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TryFunction_Invoke_mED723D46A7B0C4B590ABECE0868EA02AD94D07A2_inline (TryFunction_tC277E17D1D6AD4EF20C1FC1D8F91A559208AA5CA* __this, intptr_t ___0_allocatorState, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* ___1_block, const RuntimeMethod* method)
  6201. {
  6202. typedef int32_t (*FunctionPointerType) (RuntimeObject*, intptr_t, Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*, const RuntimeMethod*);
  6203. return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_allocatorState, ___1_block, reinterpret_cast<RuntimeMethod*>(__this->___method));
  6204. }
  6205. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  6206. {
  6207. {
  6208. uint16_t L_0 = __this->___Index;
  6209. return L_0;
  6210. }
  6211. }
  6212. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  6213. {
  6214. {
  6215. intptr_t L_0 = ___0_value1;
  6216. intptr_t L_1 = ___1_value2;
  6217. return (bool)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0);
  6218. }
  6219. }
  6220. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AllocatorHandle_Equals_m2A603E4EBB8FDB0937A4801F9CB161E0D8458939_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method)
  6221. {
  6222. {
  6223. int32_t L_0;
  6224. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  6225. int32_t L_1;
  6226. L_1 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&___0_other), NULL);
  6227. return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
  6228. }
  6229. }
  6230. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AllocatorHandle_GetHashCode_mE5C215E6AEDF384713522C73D29E4D6E82E4E243_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, const RuntimeMethod* method)
  6231. {
  6232. {
  6233. int32_t L_0;
  6234. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  6235. return L_0;
  6236. }
  6237. }
  6238. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AllocatorHandle_CompareTo_mBC5073E933F44F999E6D112CE04E9EE79E2AF6A4_inline (AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148* __this, AllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148 ___0_other, const RuntimeMethod* method)
  6239. {
  6240. {
  6241. int32_t L_0;
  6242. L_0 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(__this, NULL);
  6243. int32_t L_1;
  6244. L_1 = AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline((&___0_other), NULL);
  6245. return ((int32_t)il2cpp_codegen_subtract(L_0, L_1));
  6246. }
  6247. }
  6248. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline (int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method)
  6249. {
  6250. {
  6251. int32_t L_0 = ___0_x;
  6252. int32_t L_1 = ___1_y;
  6253. if ((((int32_t)L_0) > ((int32_t)L_1)))
  6254. {
  6255. goto IL_0006;
  6256. }
  6257. }
  6258. {
  6259. int32_t L_2 = ___1_y;
  6260. return L_2;
  6261. }
  6262. IL_0006:
  6263. {
  6264. int32_t L_3 = ___0_x;
  6265. return L_3;
  6266. }
  6267. }
  6268. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_lzcnt_mA6B7E71DB1B5D4CE8B67C66FF1AC4339FA368D07_inline (int32_t ___0_x, const RuntimeMethod* method)
  6269. {
  6270. {
  6271. int32_t L_0 = ___0_x;
  6272. int32_t L_1;
  6273. L_1 = math_lzcnt_m121BDDDEE89F5A401E2E5F0AD900D22E47C8741C_inline(L_0, NULL);
  6274. return L_1;
  6275. }
  6276. }
  6277. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_lzcnt_m121BDDDEE89F5A401E2E5F0AD900D22E47C8741C_inline (uint32_t ___0_x, const RuntimeMethod* method)
  6278. {
  6279. LongDoubleUnion_tD71C400B6C4CD1A7F13CE8125AC6BBC7A22791CA V_0;
  6280. memset((&V_0), 0, sizeof(V_0));
  6281. {
  6282. uint32_t L_0 = ___0_x;
  6283. if (L_0)
  6284. {
  6285. goto IL_0006;
  6286. }
  6287. }
  6288. {
  6289. return ((int32_t)32);
  6290. }
  6291. IL_0006:
  6292. {
  6293. (&V_0)->___doubleValue = (0.0);
  6294. uint32_t L_1 = ___0_x;
  6295. (&V_0)->___longValue = ((int64_t)il2cpp_codegen_add(((int64_t)4841369599423283200LL), ((int64_t)(uint64_t)L_1)));
  6296. double* L_2 = (double*)(&(&V_0)->___doubleValue);
  6297. double* L_3 = L_2;
  6298. double L_4 = *((double*)L_3);
  6299. *((double*)L_3) = (double)((double)il2cpp_codegen_subtract(L_4, (4503599627370496.0)));
  6300. LongDoubleUnion_tD71C400B6C4CD1A7F13CE8125AC6BBC7A22791CA L_5 = V_0;
  6301. int64_t L_6 = L_5.___longValue;
  6302. return ((int32_t)il2cpp_codegen_subtract(((int32_t)1054), ((int32_t)((int64_t)(L_6>>((int32_t)52))))));
  6303. }
  6304. }
  6305. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExcludeFromBurstCompatTestingAttribute_set_Reason_m54DAB86449D0D2B47E1521F71AE433D1EC2598E5_inline (ExcludeFromBurstCompatTestingAttribute_tD101D6AEB31C340592E71C069D8F72AB6B7AABD4* __this, String_t* ___0_value, const RuntimeMethod* method)
  6306. {
  6307. {
  6308. String_t* L_0 = ___0_value;
  6309. __this->___U3CReasonU3Ek__BackingField = L_0;
  6310. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CReasonU3Ek__BackingField), (void*)L_0);
  6311. return;
  6312. }
  6313. }
  6314. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t math_min_mA22BCFB62A81B533821704D26BE23D8D6402C8EB_inline (int64_t ___0_x, int64_t ___1_y, const RuntimeMethod* method)
  6315. {
  6316. {
  6317. int64_t L_0 = ___0_x;
  6318. int64_t L_1 = ___1_y;
  6319. if ((((int64_t)L_0) < ((int64_t)L_1)))
  6320. {
  6321. goto IL_0006;
  6322. }
  6323. }
  6324. {
  6325. int64_t L_2 = ___1_y;
  6326. return L_2;
  6327. }
  6328. IL_0006:
  6329. {
  6330. int64_t L_3 = ___0_x;
  6331. return L_3;
  6332. }
  6333. }
  6334. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* __this, const RuntimeMethod* method)
  6335. {
  6336. {
  6337. Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3* L_0 = (Block_tCCF620817FE305B5BF7B0FB7705B4571F976C4E3*)(&__this->___m_BlockData);
  6338. Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC* L_1 = (Range_tB5BAD1274CA0989FC97B0093B4149EF3CD5F21AC*)(&L_0->___Range);
  6339. intptr_t L_2 = L_1->___Pointer;
  6340. bool L_3;
  6341. L_3 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_2, 0, NULL);
  6342. return L_3;
  6343. }
  6344. }
  6345. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeStream_get_IsCreated_m139F58FDEA696FB948C962A2BBC0F13B583B2F64_inline (NativeStream_t624CBCF9CCEA655FC42B2129CAB3BC9AE13CE376* __this, const RuntimeMethod* method)
  6346. {
  6347. {
  6348. UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66* L_0 = (UnsafeStream_tBBCFB25F307FB24EC6354907DAD0B4B90E967B66*)(&__this->___m_Stream);
  6349. bool L_1;
  6350. L_1 = UnsafeStream_get_IsCreated_m070EB9BC1C5FA09ABFC3B3E8C44F33418A927E4F_inline(L_0, NULL);
  6351. return L_1;
  6352. }
  6353. }
  6354. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Rune_GetHashCode_m68368D05A3983D96C4402F27AB0B760B17F55729_inline (Rune_tE8DB196113D1DBF48E710C120CC50D2AD7D5915E* __this, const RuntimeMethod* method)
  6355. {
  6356. {
  6357. int32_t L_0 = __this->___value;
  6358. return L_0;
  6359. }
  6360. }
  6361. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  6362. {
  6363. {
  6364. intptr_t L_0 = ___0_value1;
  6365. intptr_t L_1 = ___1_value2;
  6366. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6367. }
  6368. }
  6369. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* UnsafeQueueData_GetCurrentWriteBlockTLS_m51E3B0E146EF03939DC2ADB143AE4A6382F9AF12_inline (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* __this, int32_t ___0_threadIndex, const RuntimeMethod* method)
  6370. {
  6371. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** V_0 = NULL;
  6372. {
  6373. uint8_t* L_0 = __this->___m_CurrentWriteBlockTLS;
  6374. int32_t L_1 = ___0_threadIndex;
  6375. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C**)((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, ((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)64))))));
  6376. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** L_2 = V_0;
  6377. intptr_t L_3 = *((intptr_t*)L_2);
  6378. return (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C*)(L_3);
  6379. }
  6380. }
  6381. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeQueueData_SetCurrentWriteBlockTLS_mE8BF637642E13044DFF8A34A55B8AE0B33A5F727_inline (UnsafeQueueData_t43073ABB3262F6905C43F9180FCBB71E301597C2* __this, int32_t ___0_threadIndex, UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* ___1_currentWriteBlock, const RuntimeMethod* method)
  6382. {
  6383. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** V_0 = NULL;
  6384. {
  6385. uint8_t* L_0 = __this->___m_CurrentWriteBlockTLS;
  6386. int32_t L_1 = ___0_threadIndex;
  6387. V_0 = (UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C**)((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, ((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)64))))));
  6388. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C** L_2 = V_0;
  6389. UnsafeQueueBlockHeader_t93BDD5BE3C4A0486BE2A07B68862CFF1F5870D9C* L_3 = ___1_currentWriteBlock;
  6390. *((intptr_t*)L_2) = (intptr_t)L_3;
  6391. return;
  6392. }
  6393. }
  6394. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeAtomicCounter32__ctor_m1758A643330E7D0582DF34ABC6603E1A70C39586_inline (UnsafeAtomicCounter32_tB925055F9F609BFEE32CC1CB3AA04D0B75690B62* __this, void* ___0_ptr, const RuntimeMethod* method)
  6395. {
  6396. {
  6397. void* L_0 = ___0_ptr;
  6398. __this->___Counter = (int32_t*)L_0;
  6399. return;
  6400. }
  6401. }
  6402. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_min_m02D43DF516544C279AF660EA4731449C82991849_inline (int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method)
  6403. {
  6404. {
  6405. int32_t L_0 = ___0_x;
  6406. int32_t L_1 = ___1_y;
  6407. if ((((int32_t)L_0) < ((int32_t)L_1)))
  6408. {
  6409. goto IL_0006;
  6410. }
  6411. }
  6412. {
  6413. int32_t L_2 = ___1_y;
  6414. return L_2;
  6415. }
  6416. IL_0006:
  6417. {
  6418. int32_t L_3 = ___0_x;
  6419. return L_3;
  6420. }
  6421. }
  6422. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapData_MoveNext_m3A7C4662D2D479B740F657CECED1B78E1BDE1BDE_inline (UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* ___0_data, int32_t* ___1_bucketIndex, int32_t* ___2_nextIndex, int32_t* ___3_index, const RuntimeMethod* method)
  6423. {
  6424. int32_t* V_0 = NULL;
  6425. {
  6426. int32_t* L_0 = ___2_nextIndex;
  6427. int32_t L_1 = *((int32_t*)L_0);
  6428. if ((((int32_t)L_1) == ((int32_t)(-1))))
  6429. {
  6430. goto IL_001c;
  6431. }
  6432. }
  6433. {
  6434. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_2 = ___0_data;
  6435. NullCheck(L_2);
  6436. uint8_t* L_3 = L_2->___next;
  6437. V_0 = (int32_t*)L_3;
  6438. int32_t* L_4 = ___3_index;
  6439. int32_t* L_5 = ___2_nextIndex;
  6440. int32_t L_6 = *((int32_t*)L_5);
  6441. *((int32_t*)L_4) = (int32_t)L_6;
  6442. int32_t* L_7 = ___2_nextIndex;
  6443. int32_t* L_8 = V_0;
  6444. int32_t* L_9 = ___2_nextIndex;
  6445. int32_t L_10 = *((int32_t*)L_9);
  6446. int32_t L_11 = (*(((int32_t*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_10), 4))))));
  6447. *((int32_t*)L_7) = (int32_t)L_11;
  6448. return (bool)1;
  6449. }
  6450. IL_001c:
  6451. {
  6452. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_12 = ___0_data;
  6453. int32_t* L_13 = ___1_bucketIndex;
  6454. int32_t* L_14 = ___2_nextIndex;
  6455. int32_t* L_15 = ___3_index;
  6456. bool L_16;
  6457. L_16 = UnsafeParallelHashMapData_MoveNextSearch_m470DB16F92234F8BF5C36E38E1B2D81A208634F4(L_12, L_13, L_14, L_15, NULL);
  6458. return L_16;
  6459. }
  6460. }
  6461. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeParallelHashMapDataEnumerator_MoveNext_m15C57E6A73D44B6A1DEC165D193181FC30441204_inline (UnsafeParallelHashMapDataEnumerator_t8CD0B557DE7804D4ED6A5599D87CC889C2DDA4F5* __this, const RuntimeMethod* method)
  6462. {
  6463. {
  6464. UnsafeParallelHashMapData_t43CAB3170FBB624A9CCB6F30C0EC1BB820D57926* L_0 = __this->___m_Buffer;
  6465. int32_t* L_1 = (int32_t*)(&__this->___m_BucketIndex);
  6466. int32_t* L_2 = (int32_t*)(&__this->___m_NextIndex);
  6467. int32_t* L_3 = (int32_t*)(&__this->___m_Index);
  6468. bool L_4;
  6469. L_4 = UnsafeParallelHashMapData_MoveNext_m3A7C4662D2D479B740F657CECED1B78E1BDE1BDE_inline(L_0, L_1, L_2, L_3, NULL);
  6470. return L_4;
  6471. }
  6472. }
  6473. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 ___0_text, const RuntimeMethod* method)
  6474. {
  6475. static bool s_Il2CppMethodInitialized;
  6476. if (!s_Il2CppMethodInitialized)
  6477. {
  6478. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  6479. s_Il2CppMethodInitialized = true;
  6480. }
  6481. {
  6482. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_0 = (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*)(&(&___0_text)->___m_UntypedListData);
  6483. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* L_1;
  6484. L_1 = UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_inline(L_0, UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  6485. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D L_2 = (*(UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D*)L_1);
  6486. return L_2;
  6487. }
  6488. }
  6489. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeText_get_IsCreated_mEE504C37FEADA4DFD3A6AFB47751B20A1423BBF1_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  6490. {
  6491. static bool s_Il2CppMethodInitialized;
  6492. if (!s_Il2CppMethodInitialized)
  6493. {
  6494. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_RuntimeMethod_var);
  6495. s_Il2CppMethodInitialized = true;
  6496. }
  6497. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D V_0;
  6498. memset((&V_0), 0, sizeof(V_0));
  6499. {
  6500. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 L_0 = (*(UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*)__this);
  6501. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D L_1;
  6502. L_1 = UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4_inline(L_0, NULL);
  6503. V_0 = L_1;
  6504. bool L_2;
  6505. L_2 = UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_inline((&V_0), UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_RuntimeMethod_var);
  6506. return L_2;
  6507. }
  6508. }
  6509. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* UnsafeTextExtensions_AsUnsafeListOfBytes_mA80ABFE08762E38D788ACF506BEB4A0E3621D439_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* ___0_text, const RuntimeMethod* method)
  6510. {
  6511. static bool s_Il2CppMethodInitialized;
  6512. if (!s_Il2CppMethodInitialized)
  6513. {
  6514. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  6515. s_Il2CppMethodInitialized = true;
  6516. }
  6517. {
  6518. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* L_0 = ___0_text;
  6519. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_1 = (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2*)(&L_0->___m_UntypedListData);
  6520. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* L_2;
  6521. L_2 = UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_inline(L_1, UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_RuntimeMethod_var);
  6522. return L_2;
  6523. }
  6524. }
  6525. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeText_get_Length_m7D4616C7F2AAA07EC0E98FB430C6D7DA2D4D5E40_inline (UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67* __this, const RuntimeMethod* method)
  6526. {
  6527. static bool s_Il2CppMethodInitialized;
  6528. if (!s_Il2CppMethodInitialized)
  6529. {
  6530. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_RuntimeMethod_var);
  6531. s_Il2CppMethodInitialized = true;
  6532. }
  6533. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D V_0;
  6534. memset((&V_0), 0, sizeof(V_0));
  6535. {
  6536. UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67 L_0 = (*(UnsafeText_t93F5D82C1FF7AB12B0E621B9D0EC9855D005FF67*)__this);
  6537. UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D L_1;
  6538. L_1 = UnsafeTextExtensions_AsUnsafeListOfBytesRO_mB4E57457A3442858265E8A664CCBBC8E0A4C6AF4_inline(L_0, NULL);
  6539. V_0 = L_1;
  6540. int32_t L_2;
  6541. L_2 = UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_inline((&V_0), UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_RuntimeMethod_var);
  6542. return ((int32_t)il2cpp_codegen_subtract(L_2, 1));
  6543. }
  6544. }
  6545. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
  6546. {
  6547. {
  6548. int32_t L_0 = __this->____size;
  6549. return L_0;
  6550. }
  6551. }
  6552. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FunctionPointer_1__ctor_mE2BD136AA4DB860E4183D3293D3AE1A04B978DA3_gshared_inline (FunctionPointer_1_tE1DC1EC606FB2242FB50357BBA39BB4AEDECFCB2* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
  6553. {
  6554. {
  6555. intptr_t L_0 = ___0_ptr;
  6556. __this->____ptr = L_0;
  6557. return;
  6558. }
  6559. }
  6560. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* SharedStatic_1_get_UnsafeDataPointer_m972F8145729E8E23E39A742D0EF9AE2785A652CA_gshared_inline (SharedStatic_1_t0A9894CA2483CA9491C550F8D66FBA5213718E9F* __this, const RuntimeMethod* method)
  6561. {
  6562. {
  6563. void* L_0 = __this->____buffer;
  6564. return L_0;
  6565. }
  6566. }
  6567. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisUnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0_m6E0D85D412F54FF0631787AC8AE5825628023EC2_gshared_inline (const RuntimeMethod* method)
  6568. {
  6569. {
  6570. uint32_t L_0 = sizeof(UnsafeQueueBlockPoolData_tA87D4984A1174C6ADB32EBF1E560F473D99280F0);
  6571. return (int32_t)L_0;
  6572. }
  6573. }
  6574. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t* UnsafeUtility_AsRef_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mF01FDF0EACCFED286E93933B693A2BE11A6A8946_gshared_inline (void* ___0_ptr, const RuntimeMethod* method)
  6575. {
  6576. {
  6577. void* L_0 = ___0_ptr;
  6578. return (int32_t*)(L_0);
  6579. }
  6580. }
  6581. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* UnsafeUtility_As_TisUntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_mE061863B1D6CE66A69A87708F3E0B73E036F60FF_gshared_inline (UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* ___0_from, const RuntimeMethod* method)
  6582. {
  6583. {
  6584. UntypedUnsafeList_tB7A46F76589C71832F1147292E5123FB99E199B2* L_0 = ___0_from;
  6585. return (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D*)(L_0);
  6586. }
  6587. }
  6588. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnsafeList_1_get_IsCreated_m0086070594EFFBF290D439C28005F3AF791A3F98_gshared_inline (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method)
  6589. {
  6590. {
  6591. uint8_t* L_0 = __this->___Ptr;
  6592. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6593. }
  6594. }
  6595. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeList_1_get_Length_m80957450BA054EC6A994F0CC4E0C52DDD7396436_gshared_inline (UnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D* __this, const RuntimeMethod* method)
  6596. {
  6597. {
  6598. int32_t L_0 = __this->___m_length;
  6599. int32_t L_1;
  6600. L_1 = CollectionHelper_AssumePositive_mD1EC1F05F50F605141D9BA5D70C4332AC902B4B1_inline(L_0, NULL);
  6601. return L_1;
  6602. }
  6603. }
  6604. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CollectionHelper_AssumePositive_mD1EC1F05F50F605141D9BA5D70C4332AC902B4B1_inline (int32_t ___0_value, const RuntimeMethod* method)
  6605. {
  6606. {
  6607. int32_t L_0 = ___0_value;
  6608. return L_0;
  6609. }
  6610. }