暫無描述
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.

StaticDelegateRegistry.generated.cs 692KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469
  1. //----------------------
  2. // <auto-generated>
  3. // Generated by StaticDelegateGenerator. DO NOT EDIT!
  4. // </auto-generated>
  5. //----------------------
  6. namespace Burst.Compiler.IL.Tests
  7. {
  8. using System;
  9. using System.Runtime.InteropServices;
  10. internal static partial class StaticDelegateRegistry
  11. {
  12. static StaticDelegateRegistry()
  13. {
  14. Register(typeof(Burst.Compiler.IL.Tests.Pointers.MyCastEnum), new Type[] { typeof(int), typeof(Burst.Compiler.IL.Tests.Pointers.MyCastEnum) }, typeof(R_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_P_0_Int32_1_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_Delegate), Call_R_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_P_0_Int32_1_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_Delegate);
  15. Register(typeof(Burst.Compiler.IL.Tests.TestEnums.SomeByteEnum), new Type[] { typeof(Burst.Compiler.IL.Tests.TestEnums.FixedByte4Struct).MakeByRefType() }, typeof(R_Burst_Compiler_IL_Tests_TestEnums_SomeByteEnum_P_0_Burst_Compiler_IL_Tests_TestEnums_FixedByte4Struct_Ref_Delegate), Call_R_Burst_Compiler_IL_Tests_TestEnums_SomeByteEnum_P_0_Burst_Compiler_IL_Tests_TestEnums_FixedByte4Struct_Ref_Delegate);
  16. Register(typeof(Burst.Compiler.IL.Tests.Types.MyEnumByte), new Type[] { typeof(Burst.Compiler.IL.Tests.Types.MyEnumByte).MakeByRefType() }, typeof(R_Burst_Compiler_IL_Tests_Types_MyEnumByte_P_0_Burst_Compiler_IL_Tests_Types_MyEnumByte_Ref_Delegate), Call_R_Burst_Compiler_IL_Tests_Types_MyEnumByte_P_0_Burst_Compiler_IL_Tests_Types_MyEnumByte_Ref_Delegate);
  17. Register(typeof(System.IntPtr), Array.Empty<Type>(), typeof(R_IntPtr_P_Delegate), Call_R_IntPtr_P_Delegate);
  18. Register(typeof(System.IntPtr), new Type[] { typeof(System.IntPtr) }, typeof(R_IntPtr_P_0_IntPtr_Delegate), Call_R_IntPtr_P_0_IntPtr_Delegate);
  19. Register(typeof(System.IntPtr), new Type[] { typeof(System.IntPtr), typeof(System.IntPtr) }, typeof(R_IntPtr_P_0_IntPtr_1_IntPtr_Delegate), Call_R_IntPtr_P_0_IntPtr_1_IntPtr_Delegate);
  20. Register(typeof(System.IntPtr), new Type[] { typeof(System.IntPtr), typeof(System.IntPtr), typeof(System.IntPtr) }, typeof(R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate), Call_R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate);
  21. Register(typeof(System.IntPtr), new Type[] { typeof(int) }, typeof(R_IntPtr_P_0_Int32_Delegate), Call_R_IntPtr_P_0_Int32_Delegate);
  22. Register(typeof(System.IntPtr), new Type[] { typeof(int), typeof(int) }, typeof(R_IntPtr_P_0_Int32_1_Int32_Delegate), Call_R_IntPtr_P_0_Int32_1_Int32_Delegate);
  23. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(byte) }, typeof(R_IntPtr_P_0_UInt64_1_Byte_Delegate), Call_R_IntPtr_P_0_UInt64_1_Byte_Delegate);
  24. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(int) }, typeof(R_IntPtr_P_0_UInt64_1_Int32_Delegate), Call_R_IntPtr_P_0_UInt64_1_Int32_Delegate);
  25. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(long) }, typeof(R_IntPtr_P_0_UInt64_1_Int64_Delegate), Call_R_IntPtr_P_0_UInt64_1_Int64_Delegate);
  26. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(sbyte) }, typeof(R_IntPtr_P_0_UInt64_1_SByte_Delegate), Call_R_IntPtr_P_0_UInt64_1_SByte_Delegate);
  27. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(short) }, typeof(R_IntPtr_P_0_UInt64_1_Int16_Delegate), Call_R_IntPtr_P_0_UInt64_1_Int16_Delegate);
  28. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(uint) }, typeof(R_IntPtr_P_0_UInt64_1_UInt32_Delegate), Call_R_IntPtr_P_0_UInt64_1_UInt32_Delegate);
  29. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(ulong) }, typeof(R_IntPtr_P_0_UInt64_1_UInt64_Delegate), Call_R_IntPtr_P_0_UInt64_1_UInt64_Delegate);
  30. Register(typeof(System.IntPtr), new Type[] { typeof(ulong), typeof(ushort) }, typeof(R_IntPtr_P_0_UInt64_1_UInt16_Delegate), Call_R_IntPtr_P_0_UInt64_1_UInt16_Delegate);
  31. Register(typeof(System.UIntPtr), Array.Empty<Type>(), typeof(R_UIntPtr_P_Delegate), Call_R_UIntPtr_P_Delegate);
  32. Register(typeof(System.UIntPtr), new Type[] { typeof(System.UIntPtr) }, typeof(R_UIntPtr_P_0_UIntPtr_Delegate), Call_R_UIntPtr_P_0_UIntPtr_Delegate);
  33. Register(typeof(System.UIntPtr), new Type[] { typeof(System.UIntPtr), typeof(System.UIntPtr) }, typeof(R_UIntPtr_P_0_UIntPtr_1_UIntPtr_Delegate), Call_R_UIntPtr_P_0_UIntPtr_1_UIntPtr_Delegate);
  34. Register(typeof(System.UIntPtr), new Type[] { typeof(System.UIntPtr).MakeByRefType() }, typeof(R_UIntPtr_P_0_UIntPtr_Ref_Delegate), Call_R_UIntPtr_P_0_UIntPtr_Ref_Delegate);
  35. Register(typeof(System.UIntPtr), new Type[] { typeof(uint) }, typeof(R_UIntPtr_P_0_UInt32_Delegate), Call_R_UIntPtr_P_0_UInt32_Delegate);
  36. Register(typeof(System.UIntPtr), new Type[] { typeof(uint), typeof(uint) }, typeof(R_UIntPtr_P_0_UInt32_1_UInt32_Delegate), Call_R_UIntPtr_P_0_UInt32_1_UInt32_Delegate);
  37. Register(typeof(bool), Array.Empty<Type>(), typeof(R_Boolean_P_Delegate), Call_R_Boolean_P_Delegate);
  38. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.Pointers.PointerConditional).MakeByRefType() }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate);
  39. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.Pointers.StackAllocCheck).MakeByRefType() }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate);
  40. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint), typeof(Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint) }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_1_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_1_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_Delegate);
  41. Register(typeof(bool), new Type[] { typeof(System.IntPtr) }, typeof(R_Boolean_P_0_IntPtr_Delegate), Call_R_Boolean_P_0_IntPtr_Delegate);
  42. Register(typeof(bool), new Type[] { typeof(System.IntPtr), typeof(System.IntPtr) }, typeof(R_Boolean_P_0_IntPtr_1_IntPtr_Delegate), Call_R_Boolean_P_0_IntPtr_1_IntPtr_Delegate);
  43. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.bool2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate);
  44. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.bool2).MakeByRefType(), typeof(Unity.Mathematics.bool2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate);
  45. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.bool3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate);
  46. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.bool3).MakeByRefType(), typeof(Unity.Mathematics.bool3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate);
  47. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate);
  48. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.bool4).MakeByRefType(), typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate);
  49. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate);
  50. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate);
  51. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate);
  52. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate);
  53. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate);
  54. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate);
  55. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(float) }, typeof(R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate);
  56. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate);
  57. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType(), typeof(Unity.Mathematics.int2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate);
  58. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate);
  59. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType(), typeof(Unity.Mathematics.int3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate);
  60. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate);
  61. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType(), typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate);
  62. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.uint2).MakeByRefType(), typeof(Unity.Mathematics.uint2).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate);
  63. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.uint3).MakeByRefType(), typeof(Unity.Mathematics.uint3).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate);
  64. Register(typeof(bool), new Type[] { typeof(Unity.Mathematics.uint4).MakeByRefType(), typeof(Unity.Mathematics.uint4).MakeByRefType() }, typeof(R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate), Call_R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate);
  65. Register(typeof(bool), new Type[] { typeof(bool) }, typeof(R_Boolean_P_0_Boolean_Delegate), Call_R_Boolean_P_0_Boolean_Delegate);
  66. Register(typeof(bool), new Type[] { typeof(bool), typeof(bool) }, typeof(R_Boolean_P_0_Boolean_1_Boolean_Delegate), Call_R_Boolean_P_0_Boolean_1_Boolean_Delegate);
  67. Register(typeof(bool), new Type[] { typeof(bool), typeof(int) }, typeof(R_Boolean_P_0_Boolean_1_Int32_Delegate), Call_R_Boolean_P_0_Boolean_1_Int32_Delegate);
  68. Register(typeof(bool), new Type[] { typeof(double) }, typeof(R_Boolean_P_0_Double_Delegate), Call_R_Boolean_P_0_Double_Delegate);
  69. Register(typeof(bool), new Type[] { typeof(float) }, typeof(R_Boolean_P_0_Single_Delegate), Call_R_Boolean_P_0_Single_Delegate);
  70. Register(typeof(bool), new Type[] { typeof(float), typeof(float) }, typeof(R_Boolean_P_0_Single_1_Single_Delegate), Call_R_Boolean_P_0_Single_1_Single_Delegate);
  71. Register(typeof(bool), new Type[] { typeof(int) }, typeof(R_Boolean_P_0_Int32_Delegate), Call_R_Boolean_P_0_Int32_Delegate);
  72. Register(typeof(bool), new Type[] { typeof(int), typeof(int) }, typeof(R_Boolean_P_0_Int32_1_Int32_Delegate), Call_R_Boolean_P_0_Int32_1_Int32_Delegate);
  73. Register(typeof(bool), new Type[] { typeof(int), typeof(uint) }, typeof(R_Boolean_P_0_Int32_1_UInt32_Delegate), Call_R_Boolean_P_0_Int32_1_UInt32_Delegate);
  74. Register(typeof(bool), new Type[] { typeof(long), typeof(int) }, typeof(R_Boolean_P_0_Int64_1_Int32_Delegate), Call_R_Boolean_P_0_Int64_1_Int32_Delegate);
  75. Register(typeof(bool), new Type[] { typeof(uint), typeof(int) }, typeof(R_Boolean_P_0_UInt32_1_Int32_Delegate), Call_R_Boolean_P_0_UInt32_1_Int32_Delegate);
  76. Register(typeof(byte), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestByte).MakeByRefType(), typeof(byte) }, typeof(R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_Byte_Delegate), Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_Byte_Delegate);
  77. Register(typeof(byte), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestByte).MakeByRefType(), typeof(sbyte) }, typeof(R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_SByte_Delegate), Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_SByte_Delegate);
  78. Register(typeof(byte), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.WithPadding*) }, typeof(R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate), Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate);
  79. Register(typeof(byte), new Type[] { typeof(byte), typeof(byte) }, typeof(R_Byte_P_0_Byte_1_Byte_Delegate), Call_R_Byte_P_0_Byte_1_Byte_Delegate);
  80. Register(typeof(byte), new Type[] { typeof(byte), typeof(byte), typeof(byte) }, typeof(R_Byte_P_0_Byte_1_Byte_2_Byte_Delegate), Call_R_Byte_P_0_Byte_1_Byte_2_Byte_Delegate);
  81. Register(typeof(byte), new Type[] { typeof(int) }, typeof(R_Byte_P_0_Int32_Delegate), Call_R_Byte_P_0_Int32_Delegate);
  82. Register(typeof(byte), new Type[] { typeof(long) }, typeof(R_Byte_P_0_Int64_Delegate), Call_R_Byte_P_0_Int64_Delegate);
  83. Register(typeof(byte), new Type[] { typeof(uint) }, typeof(R_Byte_P_0_UInt32_Delegate), Call_R_Byte_P_0_UInt32_Delegate);
  84. Register(typeof(double), Array.Empty<Type>(), typeof(R_Double_P_Delegate), Call_R_Double_P_Delegate);
  85. Register(typeof(double), new Type[] { typeof(Unity.Mathematics.double2).MakeByRefType() }, typeof(R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate), Call_R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate);
  86. Register(typeof(double), new Type[] { typeof(Unity.Mathematics.double3).MakeByRefType() }, typeof(R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate), Call_R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate);
  87. Register(typeof(double), new Type[] { typeof(Unity.Mathematics.double4).MakeByRefType() }, typeof(R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate), Call_R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate);
  88. Register(typeof(double), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate), Call_R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate);
  89. Register(typeof(double), new Type[] { typeof(byte) }, typeof(R_Double_P_0_Byte_Delegate), Call_R_Double_P_0_Byte_Delegate);
  90. Register(typeof(double), new Type[] { typeof(double) }, typeof(R_Double_P_0_Double_Delegate), Call_R_Double_P_0_Double_Delegate);
  91. Register(typeof(double), new Type[] { typeof(double), typeof(System.MidpointRounding) }, typeof(R_Double_P_0_Double_1_System_MidpointRounding_Delegate), Call_R_Double_P_0_Double_1_System_MidpointRounding_Delegate);
  92. Register(typeof(double), new Type[] { typeof(double), typeof(double) }, typeof(R_Double_P_0_Double_1_Double_Delegate), Call_R_Double_P_0_Double_1_Double_Delegate);
  93. Register(typeof(double), new Type[] { typeof(double), typeof(double), typeof(double) }, typeof(R_Double_P_0_Double_1_Double_2_Double_Delegate), Call_R_Double_P_0_Double_1_Double_2_Double_Delegate);
  94. Register(typeof(double), new Type[] { typeof(double), typeof(int) }, typeof(R_Double_P_0_Double_1_Int32_Delegate), Call_R_Double_P_0_Double_1_Int32_Delegate);
  95. Register(typeof(double), new Type[] { typeof(double), typeof(int), typeof(System.MidpointRounding) }, typeof(R_Double_P_0_Double_1_Int32_2_System_MidpointRounding_Delegate), Call_R_Double_P_0_Double_1_Int32_2_System_MidpointRounding_Delegate);
  96. Register(typeof(double), new Type[] { typeof(double).MakeByRefType() }, typeof(R_Double_P_0_Double_Ref_Delegate), Call_R_Double_P_0_Double_Ref_Delegate);
  97. Register(typeof(double), new Type[] { typeof(float) }, typeof(R_Double_P_0_Single_Delegate), Call_R_Double_P_0_Single_Delegate);
  98. Register(typeof(double), new Type[] { typeof(float), typeof(float) }, typeof(R_Double_P_0_Single_1_Single_Delegate), Call_R_Double_P_0_Single_1_Single_Delegate);
  99. Register(typeof(double), new Type[] { typeof(int) }, typeof(R_Double_P_0_Int32_Delegate), Call_R_Double_P_0_Int32_Delegate);
  100. Register(typeof(double), new Type[] { typeof(int), typeof(uint) }, typeof(R_Double_P_0_Int32_1_UInt32_Delegate), Call_R_Double_P_0_Int32_1_UInt32_Delegate);
  101. Register(typeof(double), new Type[] { typeof(long).MakeByRefType() }, typeof(R_Double_P_0_Int64_Ref_Delegate), Call_R_Double_P_0_Int64_Ref_Delegate);
  102. Register(typeof(double), new Type[] { typeof(uint) }, typeof(R_Double_P_0_UInt32_Delegate), Call_R_Double_P_0_UInt32_Delegate);
  103. Register(typeof(double), new Type[] { typeof(ushort) }, typeof(R_Double_P_0_UInt16_Delegate), Call_R_Double_P_0_UInt16_Delegate);
  104. Register(typeof(float), Array.Empty<Type>(), typeof(R_Single_P_Delegate), Call_R_Single_P_Delegate);
  105. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.Expressions.SByteEnum) }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate);
  106. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.Expressions.UnsignedEnum) }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate);
  107. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.bool2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate);
  108. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.bool3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate);
  109. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.bool4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate);
  110. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate);
  111. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate);
  112. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate);
  113. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(float) }, typeof(R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Single_Delegate), Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Single_Delegate);
  114. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate);
  115. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate);
  116. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate);
  117. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(float) }, typeof(R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Single_Delegate), Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Single_Delegate);
  118. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate);
  119. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate);
  120. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate);
  121. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate);
  122. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(float) }, typeof(R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Single_Delegate), Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Single_Delegate);
  123. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate);
  124. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate);
  125. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate);
  126. Register(typeof(float), new Type[] { typeof(Unity.Mathematics.uint4).MakeByRefType() }, typeof(R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate), Call_R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate);
  127. Register(typeof(float), new Type[] { typeof(byte) }, typeof(R_Single_P_0_Byte_Delegate), Call_R_Single_P_0_Byte_Delegate);
  128. Register(typeof(float), new Type[] { typeof(float) }, typeof(R_Single_P_0_Single_Delegate), Call_R_Single_P_0_Single_Delegate);
  129. Register(typeof(float), new Type[] { typeof(float), typeof(float) }, typeof(R_Single_P_0_Single_1_Single_Delegate), Call_R_Single_P_0_Single_1_Single_Delegate);
  130. Register(typeof(float), new Type[] { typeof(float), typeof(float), typeof(float) }, typeof(R_Single_P_0_Single_1_Single_2_Single_Delegate), Call_R_Single_P_0_Single_1_Single_2_Single_Delegate);
  131. Register(typeof(float), new Type[] { typeof(float).MakeByRefType() }, typeof(R_Single_P_0_Single_Ref_Delegate), Call_R_Single_P_0_Single_Ref_Delegate);
  132. Register(typeof(float), new Type[] { typeof(int) }, typeof(R_Single_P_0_Int32_Delegate), Call_R_Single_P_0_Int32_Delegate);
  133. Register(typeof(float), new Type[] { typeof(int), typeof(int) }, typeof(R_Single_P_0_Int32_1_Int32_Delegate), Call_R_Single_P_0_Int32_1_Int32_Delegate);
  134. Register(typeof(float), new Type[] { typeof(int).MakeByRefType() }, typeof(R_Single_P_0_Int32_Ref_Delegate), Call_R_Single_P_0_Int32_Ref_Delegate);
  135. Register(typeof(float), new Type[] { typeof(uint) }, typeof(R_Single_P_0_UInt32_Delegate), Call_R_Single_P_0_UInt32_Delegate);
  136. Register(typeof(float), new Type[] { typeof(uint), typeof(uint) }, typeof(R_Single_P_0_UInt32_1_UInt32_Delegate), Call_R_Single_P_0_UInt32_1_UInt32_Delegate);
  137. Register(typeof(float), new Type[] { typeof(ushort) }, typeof(R_Single_P_0_UInt16_Delegate), Call_R_Single_P_0_UInt16_Delegate);
  138. Register(typeof(int), Array.Empty<Type>(), typeof(R_Int32_P_Delegate), Call_R_Int32_P_Delegate);
  139. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.ControlFlows.EnumSwitch) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate);
  140. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate);
  141. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NotSupported.CharbyValueFunc).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate);
  142. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate);
  143. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate);
  144. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestEnums.MyEnum) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate);
  145. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestEnums.SmallEnum) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate);
  146. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.ExplicitLayoutStructFixedBuffer).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate);
  147. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.MyCompilerGeneratedButNotReally*) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate);
  148. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.SequentialStructWithPaddingAndVectorField).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate);
  149. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.StructWithBlittableTypes).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate);
  150. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypes).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate);
  151. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypesWithMarshalAs).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate);
  152. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.Types.MyEnum) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate);
  153. Register(typeof(int), new Type[] { typeof(System.Guid).MakeByRefType() }, typeof(R_Int32_P_0_System_Guid_Ref_Delegate), Call_R_Int32_P_0_System_Guid_Ref_Delegate);
  154. Register(typeof(int), new Type[] { typeof(System.IntPtr) }, typeof(R_Int32_P_0_IntPtr_Delegate), Call_R_Int32_P_0_IntPtr_Delegate);
  155. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate);
  156. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool2).MakeByRefType(), typeof(Unity.Mathematics.bool2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate);
  157. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool2).MakeByRefType(), typeof(bool) }, typeof(R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate);
  158. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate);
  159. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool3).MakeByRefType(), typeof(Unity.Mathematics.bool3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate);
  160. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool3).MakeByRefType(), typeof(bool) }, typeof(R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate);
  161. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate);
  162. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool4).MakeByRefType(), typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate);
  163. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.bool4).MakeByRefType(), typeof(bool) }, typeof(R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate), Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate);
  164. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate);
  165. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate);
  166. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(float) }, typeof(R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate);
  167. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate);
  168. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate);
  169. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(float) }, typeof(R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate);
  170. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate);
  171. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate);
  172. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(float) }, typeof(R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate), Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate);
  173. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate);
  174. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType(), typeof(Unity.Mathematics.int2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate);
  175. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType(), typeof(Unity.Mathematics.int2).MakeByRefType(), typeof(Unity.Mathematics.int2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_2_Unity_Mathematics_int2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_2_Unity_Mathematics_int2_Ref_Delegate);
  176. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int2).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate);
  177. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate);
  178. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType(), typeof(Unity.Mathematics.int3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate);
  179. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType(), typeof(Unity.Mathematics.int3).MakeByRefType(), typeof(Unity.Mathematics.int3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_2_Unity_Mathematics_int3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_2_Unity_Mathematics_int3_Ref_Delegate);
  180. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int3).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate);
  181. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate);
  182. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType(), typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate);
  183. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType(), typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate);
  184. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType(), typeof(Unity.Mathematics.int4).MakeByRefType(), typeof(Unity.Mathematics.int4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_2_Unity_Mathematics_int4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_2_Unity_Mathematics_int4_Ref_Delegate);
  185. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.int4).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate);
  186. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate);
  187. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint2).MakeByRefType(), typeof(Unity.Mathematics.uint2).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate);
  188. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint2).MakeByRefType(), typeof(uint) }, typeof(R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate);
  189. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate);
  190. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint3).MakeByRefType(), typeof(Unity.Mathematics.uint3).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate);
  191. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint3).MakeByRefType(), typeof(uint) }, typeof(R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate);
  192. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate);
  193. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint4).MakeByRefType(), typeof(Unity.Mathematics.uint4).MakeByRefType() }, typeof(R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate);
  194. Register(typeof(int), new Type[] { typeof(Unity.Mathematics.uint4).MakeByRefType(), typeof(uint) }, typeof(R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate), Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate);
  195. Register(typeof(int), new Type[] { typeof(bool) }, typeof(R_Int32_P_0_Boolean_Delegate), Call_R_Int32_P_0_Boolean_Delegate);
  196. Register(typeof(int), new Type[] { typeof(bool), typeof(bool) }, typeof(R_Int32_P_0_Boolean_1_Boolean_Delegate), Call_R_Int32_P_0_Boolean_1_Boolean_Delegate);
  197. Register(typeof(int), new Type[] { typeof(bool), typeof(bool), typeof(bool) }, typeof(R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate), Call_R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate);
  198. Register(typeof(int), new Type[] { typeof(bool), typeof(bool), typeof(bool), typeof(bool) }, typeof(R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate), Call_R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate);
  199. Register(typeof(int), new Type[] { typeof(byte) }, typeof(R_Int32_P_0_Byte_Delegate), Call_R_Int32_P_0_Byte_Delegate);
  200. Register(typeof(int), new Type[] { typeof(byte).MakeByRefType() }, typeof(R_Int32_P_0_Byte_Ref_Delegate), Call_R_Int32_P_0_Byte_Ref_Delegate);
  201. Register(typeof(int), new Type[] { typeof(double) }, typeof(R_Int32_P_0_Double_Delegate), Call_R_Int32_P_0_Double_Delegate);
  202. Register(typeof(int), new Type[] { typeof(float) }, typeof(R_Int32_P_0_Single_Delegate), Call_R_Int32_P_0_Single_Delegate);
  203. Register(typeof(int), new Type[] { typeof(float), typeof(float) }, typeof(R_Int32_P_0_Single_1_Single_Delegate), Call_R_Int32_P_0_Single_1_Single_Delegate);
  204. Register(typeof(int), new Type[] { typeof(int) }, typeof(R_Int32_P_0_Int32_Delegate), Call_R_Int32_P_0_Int32_Delegate);
  205. Register(typeof(int), new Type[] { typeof(int), typeof(Burst.Compiler.IL.Tests.Functions.Pair).MakeByRefType() }, typeof(R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate), Call_R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate);
  206. Register(typeof(int), new Type[] { typeof(int), typeof(int) }, typeof(R_Int32_P_0_Int32_1_Int32_Delegate), Call_R_Int32_P_0_Int32_1_Int32_Delegate);
  207. Register(typeof(int), new Type[] { typeof(int), typeof(int), typeof(int) }, typeof(R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate), Call_R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate);
  208. Register(typeof(int), new Type[] { typeof(int).MakeByRefType() }, typeof(R_Int32_P_0_Int32_Ref_Delegate), Call_R_Int32_P_0_Int32_Ref_Delegate);
  209. Register(typeof(int), new Type[] { typeof(int).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate), Call_R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate);
  210. Register(typeof(int), new Type[] { typeof(int*), typeof(int) }, typeof(R_Int32_P_0_Int32_Ptr_1_Int32_Delegate), Call_R_Int32_P_0_Int32_Ptr_1_Int32_Delegate);
  211. Register(typeof(int), new Type[] { typeof(long) }, typeof(R_Int32_P_0_Int64_Delegate), Call_R_Int32_P_0_Int64_Delegate);
  212. Register(typeof(int), new Type[] { typeof(sbyte) }, typeof(R_Int32_P_0_SByte_Delegate), Call_R_Int32_P_0_SByte_Delegate);
  213. Register(typeof(int), new Type[] { typeof(sbyte).MakeByRefType() }, typeof(R_Int32_P_0_SByte_Ref_Delegate), Call_R_Int32_P_0_SByte_Ref_Delegate);
  214. Register(typeof(int), new Type[] { typeof(short) }, typeof(R_Int32_P_0_Int16_Delegate), Call_R_Int32_P_0_Int16_Delegate);
  215. Register(typeof(int), new Type[] { typeof(short).MakeByRefType() }, typeof(R_Int32_P_0_Int16_Ref_Delegate), Call_R_Int32_P_0_Int16_Ref_Delegate);
  216. Register(typeof(int), new Type[] { typeof(uint) }, typeof(R_Int32_P_0_UInt32_Delegate), Call_R_Int32_P_0_UInt32_Delegate);
  217. Register(typeof(int), new Type[] { typeof(uint), typeof(int) }, typeof(R_Int32_P_0_UInt32_1_Int32_Delegate), Call_R_Int32_P_0_UInt32_1_Int32_Delegate);
  218. Register(typeof(int), new Type[] { typeof(ulong) }, typeof(R_Int32_P_0_UInt64_Delegate), Call_R_Int32_P_0_UInt64_Delegate);
  219. Register(typeof(int), new Type[] { typeof(ushort) }, typeof(R_Int32_P_0_UInt16_Delegate), Call_R_Int32_P_0_UInt16_Delegate);
  220. Register(typeof(int), new Type[] { typeof(ushort).MakeByRefType() }, typeof(R_Int32_P_0_UInt16_Ref_Delegate), Call_R_Int32_P_0_UInt16_Ref_Delegate);
  221. Register(typeof(long), Array.Empty<Type>(), typeof(R_Int64_P_Delegate), Call_R_Int64_P_Delegate);
  222. Register(typeof(long), new Type[] { typeof(Burst.Compiler.IL.Tests.Pointers.PointerArithmetic).MakeByRefType() }, typeof(R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate), Call_R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate);
  223. Register(typeof(long), new Type[] { typeof(double) }, typeof(R_Int64_P_0_Double_Delegate), Call_R_Int64_P_0_Double_Delegate);
  224. Register(typeof(long), new Type[] { typeof(int) }, typeof(R_Int64_P_0_Int32_Delegate), Call_R_Int64_P_0_Int32_Delegate);
  225. Register(typeof(long), new Type[] { typeof(int), typeof(int) }, typeof(R_Int64_P_0_Int32_1_Int32_Delegate), Call_R_Int64_P_0_Int32_1_Int32_Delegate);
  226. Register(typeof(long), new Type[] { typeof(long) }, typeof(R_Int64_P_0_Int64_Delegate), Call_R_Int64_P_0_Int64_Delegate);
  227. Register(typeof(long), new Type[] { typeof(long), typeof(int) }, typeof(R_Int64_P_0_Int64_1_Int32_Delegate), Call_R_Int64_P_0_Int64_1_Int32_Delegate);
  228. Register(typeof(long), new Type[] { typeof(long), typeof(long) }, typeof(R_Int64_P_0_Int64_1_Int64_Delegate), Call_R_Int64_P_0_Int64_1_Int64_Delegate);
  229. Register(typeof(long), new Type[] { typeof(long), typeof(long), typeof(long) }, typeof(R_Int64_P_0_Int64_1_Int64_2_Int64_Delegate), Call_R_Int64_P_0_Int64_1_Int64_2_Int64_Delegate);
  230. Register(typeof(long), new Type[] { typeof(long).MakeByRefType() }, typeof(R_Int64_P_0_Int64_Ref_Delegate), Call_R_Int64_P_0_Int64_Ref_Delegate);
  231. Register(typeof(long), new Type[] { typeof(long).MakeByRefType(), typeof(long), typeof(long) }, typeof(R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate), Call_R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate);
  232. Register(typeof(long), new Type[] { typeof(sbyte) }, typeof(R_Int64_P_0_SByte_Delegate), Call_R_Int64_P_0_SByte_Delegate);
  233. Register(typeof(long), new Type[] { typeof(short) }, typeof(R_Int64_P_0_Int16_Delegate), Call_R_Int64_P_0_Int16_Delegate);
  234. Register(typeof(long), new Type[] { typeof(uint) }, typeof(R_Int64_P_0_UInt32_Delegate), Call_R_Int64_P_0_UInt32_Delegate);
  235. Register(typeof(long), new Type[] { typeof(ulong) }, typeof(R_Int64_P_0_UInt64_Delegate), Call_R_Int64_P_0_UInt64_Delegate);
  236. Register(typeof(sbyte), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestSByte).MakeByRefType(), typeof(byte) }, typeof(R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_Byte_Delegate), Call_R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_Byte_Delegate);
  237. Register(typeof(sbyte), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestSByte).MakeByRefType(), typeof(sbyte) }, typeof(R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_SByte_Delegate), Call_R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_SByte_Delegate);
  238. Register(typeof(sbyte), new Type[] { typeof(int) }, typeof(R_SByte_P_0_Int32_Delegate), Call_R_SByte_P_0_Int32_Delegate);
  239. Register(typeof(sbyte), new Type[] { typeof(sbyte) }, typeof(R_SByte_P_0_SByte_Delegate), Call_R_SByte_P_0_SByte_Delegate);
  240. Register(typeof(sbyte), new Type[] { typeof(sbyte), typeof(sbyte) }, typeof(R_SByte_P_0_SByte_1_SByte_Delegate), Call_R_SByte_P_0_SByte_1_SByte_Delegate);
  241. Register(typeof(sbyte), new Type[] { typeof(sbyte), typeof(sbyte), typeof(sbyte) }, typeof(R_SByte_P_0_SByte_1_SByte_2_SByte_Delegate), Call_R_SByte_P_0_SByte_1_SByte_2_SByte_Delegate);
  242. Register(typeof(sbyte), new Type[] { typeof(uint) }, typeof(R_SByte_P_0_UInt32_Delegate), Call_R_SByte_P_0_UInt32_Delegate);
  243. Register(typeof(short), new Type[] { typeof(int) }, typeof(R_Int16_P_0_Int32_Delegate), Call_R_Int16_P_0_Int32_Delegate);
  244. Register(typeof(short), new Type[] { typeof(short) }, typeof(R_Int16_P_0_Int16_Delegate), Call_R_Int16_P_0_Int16_Delegate);
  245. Register(typeof(short), new Type[] { typeof(short), typeof(short) }, typeof(R_Int16_P_0_Int16_1_Int16_Delegate), Call_R_Int16_P_0_Int16_1_Int16_Delegate);
  246. Register(typeof(short), new Type[] { typeof(short), typeof(short), typeof(short) }, typeof(R_Int16_P_0_Int16_1_Int16_2_Int16_Delegate), Call_R_Int16_P_0_Int16_1_Int16_2_Int16_Delegate);
  247. Register(typeof(short), new Type[] { typeof(uint) }, typeof(R_Int16_P_0_UInt32_Delegate), Call_R_Int16_P_0_UInt32_Delegate);
  248. Register(typeof(uint), Array.Empty<Type>(), typeof(R_UInt32_P_Delegate), Call_R_UInt32_P_Delegate);
  249. Register(typeof(uint), new Type[] { typeof(Unity.Mathematics.uint4).MakeByRefType(), typeof(Unity.Mathematics.bool4).MakeByRefType() }, typeof(R_UInt32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate), Call_R_UInt32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate);
  250. Register(typeof(uint), new Type[] { typeof(int) }, typeof(R_UInt32_P_0_Int32_Delegate), Call_R_UInt32_P_0_Int32_Delegate);
  251. Register(typeof(uint), new Type[] { typeof(sbyte) }, typeof(R_UInt32_P_0_SByte_Delegate), Call_R_UInt32_P_0_SByte_Delegate);
  252. Register(typeof(uint), new Type[] { typeof(uint) }, typeof(R_UInt32_P_0_UInt32_Delegate), Call_R_UInt32_P_0_UInt32_Delegate);
  253. Register(typeof(uint), new Type[] { typeof(uint), typeof(int) }, typeof(R_UInt32_P_0_UInt32_1_Int32_Delegate), Call_R_UInt32_P_0_UInt32_1_Int32_Delegate);
  254. Register(typeof(uint), new Type[] { typeof(uint), typeof(uint) }, typeof(R_UInt32_P_0_UInt32_1_UInt32_Delegate), Call_R_UInt32_P_0_UInt32_1_UInt32_Delegate);
  255. Register(typeof(uint), new Type[] { typeof(uint), typeof(uint), typeof(uint) }, typeof(R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate), Call_R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate);
  256. Register(typeof(uint), new Type[] { typeof(uint).MakeByRefType() }, typeof(R_UInt32_P_0_UInt32_Ref_Delegate), Call_R_UInt32_P_0_UInt32_Ref_Delegate);
  257. Register(typeof(uint), new Type[] { typeof(ulong) }, typeof(R_UInt32_P_0_UInt64_Delegate), Call_R_UInt32_P_0_UInt64_Delegate);
  258. Register(typeof(ulong), Array.Empty<Type>(), typeof(R_UInt64_P_Delegate), Call_R_UInt64_P_Delegate);
  259. Register(typeof(ulong), new Type[] { typeof(double) }, typeof(R_UInt64_P_0_Double_Delegate), Call_R_UInt64_P_0_Double_Delegate);
  260. Register(typeof(ulong), new Type[] { typeof(int) }, typeof(R_UInt64_P_0_Int32_Delegate), Call_R_UInt64_P_0_Int32_Delegate);
  261. Register(typeof(ulong), new Type[] { typeof(short) }, typeof(R_UInt64_P_0_Int16_Delegate), Call_R_UInt64_P_0_Int16_Delegate);
  262. Register(typeof(ulong), new Type[] { typeof(uint) }, typeof(R_UInt64_P_0_UInt32_Delegate), Call_R_UInt64_P_0_UInt32_Delegate);
  263. Register(typeof(ulong), new Type[] { typeof(ulong), typeof(ulong) }, typeof(R_UInt64_P_0_UInt64_1_UInt64_Delegate), Call_R_UInt64_P_0_UInt64_1_UInt64_Delegate);
  264. Register(typeof(ulong), new Type[] { typeof(ulong), typeof(ulong), typeof(ulong) }, typeof(R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Delegate), Call_R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Delegate);
  265. Register(typeof(ulong), new Type[] { typeof(ulong).MakeByRefType() }, typeof(R_UInt64_P_0_UInt64_Ref_Delegate), Call_R_UInt64_P_0_UInt64_Ref_Delegate);
  266. Register(typeof(ulong), new Type[] { typeof(ulong*), typeof(ulong), typeof(ulong) }, typeof(R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate), Call_R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate);
  267. Register(typeof(ushort), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFixed.SomeStruct).MakeByRefType() }, typeof(R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate), Call_R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate);
  268. Register(typeof(ushort), new Type[] { typeof(int) }, typeof(R_UInt16_P_0_Int32_Delegate), Call_R_UInt16_P_0_Int32_Delegate);
  269. Register(typeof(ushort), new Type[] { typeof(uint) }, typeof(R_UInt16_P_0_UInt32_Delegate), Call_R_UInt16_P_0_UInt32_Delegate);
  270. Register(typeof(ushort), new Type[] { typeof(ushort), typeof(ushort) }, typeof(R_UInt16_P_0_UInt16_1_UInt16_Delegate), Call_R_UInt16_P_0_UInt16_1_UInt16_Delegate);
  271. Register(typeof(ushort), new Type[] { typeof(ushort), typeof(ushort), typeof(ushort) }, typeof(R_UInt16_P_0_UInt16_1_UInt16_2_UInt16_Delegate), Call_R_UInt16_P_0_UInt16_1_UInt16_2_UInt16_Delegate);
  272. Register(typeof(void), Array.Empty<Type>(), typeof(R_System_Void_P_Delegate), Call_R_System_Void_P_Delegate);
  273. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.ContainerOfManyNoAliasFields).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate);
  274. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.DoesAliasWithSubStructPointersStruct).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate);
  275. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.LinkedList).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate);
  276. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasField).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate);
  277. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasField).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasField).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_1_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_1_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate);
  278. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasWithContentsStruct).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate);
  279. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.StructWithPadding).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_StructWithPadding_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_StructWithPadding_Ref_Delegate);
  280. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.Union).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate);
  281. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate);
  282. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.Fixed4096).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate);
  283. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.Fixed4096).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestStructs.Fixed4096).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate);
  284. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestStructs.Sized4096).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate);
  285. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestStructs.Sized4096).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestStructs.Sized4096).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_2_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_2_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate);
  286. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.PointersInStruct).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestStructs.Fixed4096).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_PointersInStruct_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_PointersInStruct_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate);
  287. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.Sized4096).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestStructs.Sized4096).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate);
  288. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.UninitFieldsAreZero*) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate);
  289. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float2x2*) }, typeof(R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate);
  290. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float3x3*) }, typeof(R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate);
  291. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4x4*) }, typeof(R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate);
  292. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.int2*), typeof(ushort) }, typeof(R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate);
  293. Register(typeof(void), new Type[] { typeof(int) }, typeof(R_System_Void_P_0_Int32_Delegate), Call_R_System_Void_P_0_Int32_Delegate);
  294. Register(typeof(void), new Type[] { typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Int32_1_Int32_Delegate), Call_R_System_Void_P_0_Int32_1_Int32_Delegate);
  295. Register(typeof(void), new Type[] { typeof(int).MakeByRefType(), typeof(float).MakeByRefType() }, typeof(R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate), Call_R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate);
  296. Register(typeof(void), new Type[] { typeof(int).MakeByRefType(), typeof(int).MakeByRefType() }, typeof(R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate), Call_R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate);
  297. Register(typeof(void), new Type[] { typeof(int).MakeByRefType(), typeof(int).MakeByRefType(), typeof(int).MakeByRefType() }, typeof(R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate), Call_R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate);
  298. #if BURST_TESTS_ONLY
  299. Register(typeof(Burst.Compiler.IL.Tests.ABI.BigExplicitLayoutStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.BigExplicitLayoutStruct), typeof(int) }, typeof(R_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_1_Int32_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_1_Int32_Delegate);
  300. Register(typeof(Burst.Compiler.IL.Tests.ABI.BigSSEStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.BigSSEStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate);
  301. Register(typeof(Burst.Compiler.IL.Tests.ABI.BigStruct), Array.Empty<Type>(), typeof(R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate);
  302. Register(typeof(Burst.Compiler.IL.Tests.ABI.EmptyStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.EmptyStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_EmptyStruct_P_0_Burst_Compiler_IL_Tests_ABI_EmptyStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_EmptyStruct_P_0_Burst_Compiler_IL_Tests_ABI_EmptyStruct_Delegate);
  303. Register(typeof(Burst.Compiler.IL.Tests.ABI.ExplicitButAligned), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.ExplicitButAligned) }, typeof(R_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_P_0_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_P_0_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_Delegate);
  304. Register(typeof(Burst.Compiler.IL.Tests.ABI.HandleStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.HandleStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate);
  305. Register(typeof(Burst.Compiler.IL.Tests.ABI.HandleStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.HandleStruct), typeof(int) }, typeof(R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_1_Int32_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_1_Int32_Delegate);
  306. Register(typeof(Burst.Compiler.IL.Tests.ABI.IIF), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.IIF) }, typeof(R_Burst_Compiler_IL_Tests_ABI_IIF_P_0_Burst_Compiler_IL_Tests_ABI_IIF_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_IIF_P_0_Burst_Compiler_IL_Tests_ABI_IIF_Delegate);
  307. Register(typeof(Burst.Compiler.IL.Tests.ABI.IntInStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.IntInStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_IntInStruct_P_0_Burst_Compiler_IL_Tests_ABI_IntInStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_IntInStruct_P_0_Burst_Compiler_IL_Tests_ABI_IntInStruct_Delegate);
  308. Register(typeof(Burst.Compiler.IL.Tests.ABI.KindaBig), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.KindaBig) }, typeof(R_Burst_Compiler_IL_Tests_ABI_KindaBig_P_0_Burst_Compiler_IL_Tests_ABI_KindaBig_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_KindaBig_P_0_Burst_Compiler_IL_Tests_ABI_KindaBig_Delegate);
  309. Register(typeof(Burst.Compiler.IL.Tests.ABI.LongInStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.LongInStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_LongInStruct_P_0_Burst_Compiler_IL_Tests_ABI_LongInStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_LongInStruct_P_0_Burst_Compiler_IL_Tests_ABI_LongInStruct_Delegate);
  310. Register(typeof(Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.BigSSEStruct>), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.BigSSEStruct>) }, typeof(R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate);
  311. Register(typeof(Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.HandleStruct>), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.HandleStruct>) }, typeof(R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate);
  312. Register(typeof(Burst.Compiler.IL.Tests.ABI.NestedHandleStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.NestedHandleStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_Delegate);
  313. Register(typeof(Burst.Compiler.IL.Tests.ABI.OverlappingFieldsStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.OverlappingFieldsStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_P_0_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_P_0_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_Delegate);
  314. Register(typeof(Burst.Compiler.IL.Tests.ABI.SizePaddedBig), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.SizePaddedBig), typeof(Burst.Compiler.IL.Tests.ABI.SizePaddedBig) }, typeof(R_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_1_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_1_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_Delegate);
  315. Register(typeof(Burst.Compiler.IL.Tests.ABI.SizePaddedSmall), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.SizePaddedSmall), typeof(Burst.Compiler.IL.Tests.ABI.SizePaddedSmall) }, typeof(R_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_1_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_1_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_Delegate);
  316. Register(typeof(Burst.Compiler.IL.Tests.ABI.SmallSseUpStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.SmallSseUpStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_P_0_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_P_0_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_Delegate);
  317. Register(typeof(Burst.Compiler.IL.Tests.ABI.SmallStruct), Array.Empty<Type>(), typeof(R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate);
  318. Register(typeof(Burst.Compiler.IL.Tests.ABI.TypedHandleStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.TypedHandleStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_Delegate);
  319. Register(typeof(Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct), Array.Empty<Type>(), typeof(R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate);
  320. Register(typeof(Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct) }, typeof(R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_0_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_0_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_Delegate);
  321. Register(typeof(Burst.Compiler.IL.Tests.ABI.UnalignedSmallStructWithPadding), Array.Empty<Type>(), typeof(R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate), Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate);
  322. Register(typeof(Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple).MakeByRefType(), Array.Empty<Type>(), typeof(R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate), Call_R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate);
  323. Register(typeof(System.IntPtr), new Type[] { typeof(uint) }, typeof(R_IntPtr_P_0_UInt32_Delegate), Call_R_IntPtr_P_0_UInt32_Delegate);
  324. Register(typeof(System.UIntPtr), new Type[] { typeof(int) }, typeof(R_UIntPtr_P_0_Int32_Delegate), Call_R_UIntPtr_P_0_Int32_Delegate);
  325. Register(typeof(System.ValueTuple<int,int>).MakeByRefType(), Array.Empty<Type>(), typeof(R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate), Call_R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate);
  326. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat).MakeByRefType() }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate);
  327. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.DefaultFunc).MakeByRefType() }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate);
  328. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.NullFunc).MakeByRefType() }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate);
  329. Register(typeof(bool), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.SomeStruct).MakeByRefType() }, typeof(R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate), Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate);
  330. Register(typeof(bool), new Type[] { typeof(UnityBenchShared.SphereCullingAOSJob).MakeByRefType() }, typeof(R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate), Call_R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate);
  331. Register(typeof(bool), new Type[] { typeof(UnityBenchShared.SphereCullingChunkFixedSOAJob).MakeByRefType() }, typeof(R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate), Call_R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate);
  332. Register(typeof(bool), new Type[] { typeof(UnityBenchShared.SphereCullingChunkSOAJob).MakeByRefType() }, typeof(R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate), Call_R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate);
  333. Register(typeof(bool), new Type[] { typeof(UnityBenchShared.SphereCullingFloat4AOSJob).MakeByRefType() }, typeof(R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate), Call_R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate);
  334. Register(typeof(bool), new Type[] { typeof(UnityBenchShared.SphereCullingSOAJob).MakeByRefType() }, typeof(R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate), Call_R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate);
  335. Register(typeof(bool), new Type[] { typeof(byte) }, typeof(R_Boolean_P_0_Byte_Delegate), Call_R_Boolean_P_0_Byte_Delegate);
  336. Register(typeof(bool), new Type[] { typeof(int).MakeByRefType() }, typeof(R_Boolean_P_0_Int32_Ref_Delegate), Call_R_Boolean_P_0_Int32_Ref_Delegate);
  337. Register(typeof(bool), new Type[] { typeof(long) }, typeof(R_Boolean_P_0_Int64_Delegate), Call_R_Boolean_P_0_Int64_Delegate);
  338. Register(typeof(bool), new Type[] { typeof(sbyte) }, typeof(R_Boolean_P_0_SByte_Delegate), Call_R_Boolean_P_0_SByte_Delegate);
  339. Register(typeof(bool), new Type[] { typeof(short) }, typeof(R_Boolean_P_0_Int16_Delegate), Call_R_Boolean_P_0_Int16_Delegate);
  340. Register(typeof(bool), new Type[] { typeof(uint) }, typeof(R_Boolean_P_0_UInt32_Delegate), Call_R_Boolean_P_0_UInt32_Delegate);
  341. Register(typeof(bool), new Type[] { typeof(ulong) }, typeof(R_Boolean_P_0_UInt64_Delegate), Call_R_Boolean_P_0_UInt64_Delegate);
  342. Register(typeof(bool), new Type[] { typeof(ushort) }, typeof(R_Boolean_P_0_UInt16_Delegate), Call_R_Boolean_P_0_UInt16_Delegate);
  343. Register(typeof(char), Array.Empty<Type>(), typeof(R_Char_P_Delegate), Call_R_Char_P_Delegate);
  344. Register(typeof(double), new Type[] { typeof(Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer).MakeByRefType() }, typeof(R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate), Call_R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate);
  345. Register(typeof(double), new Type[] { typeof(Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer).MakeByRefType() }, typeof(R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_1_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_2_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate), Call_R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_1_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_2_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate);
  346. Register(typeof(double), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.Data).MakeByRefType() }, typeof(R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate), Call_R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate);
  347. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.CalliBinding.BindingContainer).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate);
  348. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.Climate).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate);
  349. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayCustomItem).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate);
  350. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate);
  351. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat4).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate);
  352. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeQueues.JobData).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate);
  353. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate);
  354. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat4).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate);
  355. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.Data).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate);
  356. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.DoubleData).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate);
  357. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.BigStructNativeArrayJob).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate);
  358. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat3Job).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate);
  359. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat4Job).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate);
  360. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate);
  361. Register(typeof(float), new Type[] { typeof(UnityBenchShared.SumNumbersTest).MakeByRefType() }, typeof(R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate), Call_R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate);
  362. Register(typeof(float), new Type[] { typeof(UnityEngine.Boids.BoidsJob).MakeByRefType(), typeof(int) }, typeof(R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate), Call_R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate);
  363. Register(typeof(float), new Type[] { typeof(float), typeof(int) }, typeof(R_Single_P_0_Single_1_Int32_Delegate), Call_R_Single_P_0_Single_1_Int32_Delegate);
  364. Register(typeof(float), new Type[] { typeof(float).MakeByRefType(), typeof(int) }, typeof(R_Single_P_0_Single_Ref_1_Int32_Delegate), Call_R_Single_P_0_Single_Ref_1_Int32_Delegate);
  365. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.BigStruct) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate);
  366. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.SmallStruct) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate);
  367. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.CalliBinding.BindingContainer).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate);
  368. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.CalliBinding.BindingContainer).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.CalliBinding.IntArray).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_IntArray_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_IntArray_Ref_Delegate);
  369. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.CalliBinding.BindingContainer).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.CalliBinding.SmallStructArray).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_SmallStructArray_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_SmallStructArray_Ref_Delegate);
  370. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.Expressions.MyArrayIndex) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate);
  371. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayBool).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate);
  372. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate);
  373. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate);
  374. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_Delegate);
  375. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate);
  376. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.JobData).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate);
  377. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceIntCopy).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate);
  378. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.Data).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate);
  379. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.Data).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate);
  380. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestCullingJob.CullingJob).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate);
  381. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPBigStructFunc), typeof(Burst.Compiler.IL.Tests.ABI.BigStruct) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPBigStructFunc_1_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPBigStructFunc_1_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate);
  382. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPInIntFunc).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPInIntFunc_Ref_1_Int32_2_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPInIntFunc_Ref_1_Int32_2_Int32_Delegate);
  383. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_3_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_3_Int32_Delegate);
  384. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Int32_Delegate);
  385. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate);
  386. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate);
  387. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_2_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_2_Int32_Delegate);
  388. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.ReturnRefReadOnlyFunc).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_ReturnRefReadOnlyFunc_Ref_1_Int32_2_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_ReturnRefReadOnlyFunc_Ref_1_Int32_2_Int32_Delegate);
  389. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.StructsInFunc).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructsInFunc_Ref_1_Int32_2_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructsInFunc_Ref_1_Int32_2_Int32_Delegate);
  390. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.TestJob).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate);
  391. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.ParentStruct).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate);
  392. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.SomeStruct).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate);
  393. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.SomeStructWithMarshalAs).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate);
  394. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.StaticCharStruct).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate);
  395. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate);
  396. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate);
  397. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt).MakeByRefType(), typeof(int), typeof(int), typeof(long) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int32_3_Int64_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int32_3_Int64_Delegate);
  398. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt).MakeByRefType(), typeof(int), typeof(long) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int64_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int64_Delegate);
  399. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate);
  400. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate);
  401. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate);
  402. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.NativeArrayBundle).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate);
  403. Register(typeof(int), new Type[] { typeof(System.IntPtr).MakeByRefType() }, typeof(R_Int32_P_0_IntPtr_Ref_Delegate), Call_R_Int32_P_0_IntPtr_Ref_Delegate);
  404. Register(typeof(int), new Type[] { typeof(System.ValueTuple<int,int>).MakeByRefType() }, typeof(R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate), Call_R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate);
  405. Register(typeof(int), new Type[] { typeof(Unity.Burst.Intrinsics.v128*) }, typeof(R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate), Call_R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate);
  406. Register(typeof(int), new Type[] { typeof(byte), typeof(float) }, typeof(R_Int32_P_0_Byte_1_Single_Delegate), Call_R_Int32_P_0_Byte_1_Single_Delegate);
  407. Register(typeof(int), new Type[] { typeof(char) }, typeof(R_Int32_P_0_Char_Delegate), Call_R_Int32_P_0_Char_Delegate);
  408. Register(typeof(int), new Type[] { typeof(char).MakeByRefType() }, typeof(R_Int32_P_0_Char_Ref_Delegate), Call_R_Int32_P_0_Char_Ref_Delegate);
  409. Register(typeof(int), new Type[] { typeof(double), typeof(double) }, typeof(R_Int32_P_0_Double_1_Double_Delegate), Call_R_Int32_P_0_Double_1_Double_Delegate);
  410. Register(typeof(int), new Type[] { typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), typeof(Burst.Compiler.IL.Tests.ABI.SmallStruct) }, typeof(R_Int32_P_0_Int32_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate), Call_R_Int32_P_0_Int32_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate);
  411. Register(typeof(int), new Type[] { typeof(int).MakeByRefType(), typeof(int).MakeByRefType() }, typeof(R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate), Call_R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate);
  412. Register(typeof(int), new Type[] { typeof(uint), typeof(uint) }, typeof(R_Int32_P_0_UInt32_1_UInt32_Delegate), Call_R_Int32_P_0_UInt32_1_UInt32_Delegate);
  413. Register(typeof(long), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper).MakeByRefType() }, typeof(R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate), Call_R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate);
  414. Register(typeof(long), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector).MakeByRefType() }, typeof(R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate), Call_R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate);
  415. Register(typeof(long), new Type[] { typeof(byte) }, typeof(R_Int64_P_0_Byte_Delegate), Call_R_Int64_P_0_Byte_Delegate);
  416. Register(typeof(long), new Type[] { typeof(float) }, typeof(R_Int64_P_0_Single_Delegate), Call_R_Int64_P_0_Single_Delegate);
  417. Register(typeof(long), new Type[] { typeof(int), typeof(long) }, typeof(R_Int64_P_0_Int32_1_Int64_Delegate), Call_R_Int64_P_0_Int32_1_Int64_Delegate);
  418. Register(typeof(short), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.Data).MakeByRefType() }, typeof(R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate), Call_R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate);
  419. Register(typeof(uint), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayUInt4).MakeByRefType(), typeof(int) }, typeof(R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate), Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate);
  420. Register(typeof(uint), new Type[] { typeof(Burst.Compiler.IL.Tests.Spmd.Data).MakeByRefType() }, typeof(R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate), Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate);
  421. Register(typeof(uint), new Type[] { typeof(System.IntPtr).MakeByRefType() }, typeof(R_UInt32_P_0_IntPtr_Ref_Delegate), Call_R_UInt32_P_0_IntPtr_Ref_Delegate);
  422. Register(typeof(uint), new Type[] { typeof(float) }, typeof(R_UInt32_P_0_Single_Delegate), Call_R_UInt32_P_0_Single_Delegate);
  423. Register(typeof(uint), new Type[] { typeof(uint), typeof(uint), typeof(uint*) }, typeof(R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate), Call_R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate);
  424. Register(typeof(ulong), new Type[] { typeof(ulong) }, typeof(R_UInt64_P_0_UInt64_Delegate), Call_R_UInt64_P_0_UInt64_Delegate);
  425. Register(typeof(ulong), new Type[] { typeof(ulong), typeof(uint) }, typeof(R_UInt64_P_0_UInt64_1_UInt32_Delegate), Call_R_UInt64_P_0_UInt64_1_UInt32_Delegate);
  426. Register(typeof(ulong), new Type[] { typeof(ulong), typeof(uint), typeof(uint) }, typeof(R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate), Call_R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate);
  427. Register(typeof(ulong), new Type[] { typeof(ulong), typeof(ulong), typeof(ulong*) }, typeof(R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate), Call_R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate);
  428. Register(typeof(ushort), new Type[] { typeof(float), typeof(float) }, typeof(R_UInt16_P_0_Single_1_Single_Delegate), Call_R_UInt16_P_0_Single_1_Single_Delegate);
  429. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.ABI.CullChunksWrapper).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate);
  430. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWithinGenericWrapper).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate);
  431. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWrapper).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate);
  432. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Aliasing.NoAliasOnStructWithinGenericWrapper).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate);
  433. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate);
  434. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayPointerIsNotReloadedJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate);
  435. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.AliasingJobs.NativeSliceJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate);
  436. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.AliasingJobs.NoAliasOnJobProducerTypeThisPointerJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate);
  437. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesAliasWithJobStructJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate);
  438. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesNotAliasWithJobStructJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate);
  439. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.CalliBinding.BindingContainer).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate);
  440. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Case1061135.NewMoveJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate);
  441. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_1_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_1_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate);
  442. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeHashMaps.HashMapJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate);
  443. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.HashMapAndQueueJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate);
  444. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructBVHTest).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate);
  445. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructInitJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate);
  446. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.SafetyChecks.NativeArrayInt).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate);
  447. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.CopyJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate);
  448. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.CopyWithExplicitNoAlias).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate);
  449. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.DivisionByVariable).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate);
  450. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.Float1Job).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate);
  451. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.Float4Job).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate);
  452. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.InPlaceByteJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate);
  453. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.InPlaceJob).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate);
  454. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestAlias.SimpleSOA1Job).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate);
  455. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestFunctionPointers.StructWithAction).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate);
  456. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_2_Int32_Delegate);
  457. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate);
  458. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct).MakeByRefType(), typeof(int), typeof(Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_2_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_2_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_Delegate);
  459. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate);
  460. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics2).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate);
  461. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_2_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_2_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_Delegate);
  462. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStringLogging.MyEnum) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStringLogging_MyEnum_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStringLogging_MyEnum_Delegate);
  463. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.AnsiStruct).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate);
  464. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestStructs.AnsiStructWithMarshalAs).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate);
  465. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.TestTestInfrastructure.SomeStruct*) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate);
  466. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Types.GenericStructHolder).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Types_GenericStructHolder_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Types_GenericStructHolder_Ref_Delegate);
  467. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.Vectorization.Enumerator2Layers).MakeByRefType(), typeof(float) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_Vectorization_Enumerator2Layers_Ref_1_Single_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Vectorization_Enumerator2Layers_Ref_1_Single_Delegate);
  468. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate);
  469. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.V128Pair*), typeof(int) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_V128Pair_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_V128Pair_Ptr_1_Int32_Delegate);
  470. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate);
  471. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate);
  472. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_1_Int32_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_1_Int32_Delegate);
  473. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.TransposeResult*), typeof(float), typeof(float), typeof(float), typeof(float) }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_TransposeResult_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_TransposeResult_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate);
  474. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.f16*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate);
  475. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.f16*), typeof(float) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate);
  476. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.f16*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate);
  477. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate);
  478. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate);
  479. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate);
  480. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate);
  481. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate);
  482. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_2_Int32_Delegate);
  483. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithV128).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithV128_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithV128_Ref_Delegate);
  484. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate);
  485. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_2_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_2_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate);
  486. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(double) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate);
  487. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(double), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  488. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(double), typeof(double) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate);
  489. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(double), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate);
  490. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(float) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate);
  491. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(float), typeof(float) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate);
  492. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(float), typeof(float), typeof(float), typeof(float) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate);
  493. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(float), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate);
  494. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate);
  495. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(int), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  496. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate);
  497. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(int), typeof(int), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate);
  498. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate);
  499. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(int), typeof(uint), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  500. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(long) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate);
  501. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(long), typeof(ulong), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_2_UInt64_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_2_UInt64_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  502. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(sbyte), typeof(sbyte), typeof(sbyte), typeof(sbyte) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate);
  503. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(uint) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate);
  504. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(uint), typeof(uint) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate);
  505. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(uint), typeof(uint), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  506. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(uint), typeof(uint), typeof(uint), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_UInt32_4_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_UInt32_4_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  507. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128*), typeof(ushort) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate);
  508. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128x2*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128x2_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128x2_Ptr_Delegate);
  509. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128x3*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128x3_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128x3_Ptr_Delegate);
  510. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v128x4*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v128x4_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128x4_Ptr_Delegate);
  511. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate);
  512. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate);
  513. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate);
  514. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.ArrayOfFrustumPlanesV256).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_ArrayOfFrustumPlanesV256_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_ArrayOfFrustumPlanesV256_Ref_Delegate);
  515. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate);
  516. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts).MakeByRefType(), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate);
  517. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate);
  518. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues).MakeByRefType(), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate);
  519. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(Unity.Burst.Intrinsics.v256).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Unity_Burst_Intrinsics_v256_Ref_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Unity_Burst_Intrinsics_v256_Ref_Delegate);
  520. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(double) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate);
  521. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(float) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate);
  522. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate);
  523. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate);
  524. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(int), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_3_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_3_Int32_Delegate);
  525. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(int), typeof(long) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate);
  526. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(sbyte), typeof(sbyte), typeof(sbyte), typeof(sbyte) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate);
  527. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(uint) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate);
  528. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(uint), typeof(uint), typeof(uint), typeof(uint) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_2_UInt32_3_UInt32_4_UInt32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_2_UInt32_3_UInt32_4_UInt32_Delegate);
  529. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(ulong) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate);
  530. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v256*), typeof(ushort), typeof(ushort), typeof(ushort), typeof(ushort) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt16_2_UInt16_3_UInt16_4_UInt16_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt16_2_UInt16_3_UInt16_4_UInt16_Delegate);
  531. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v64*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate);
  532. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v64*), typeof(int), typeof(float) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate);
  533. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v64x2*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v64x2_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64x2_Ptr_Delegate);
  534. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v64x3*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v64x3_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64x3_Ptr_Delegate);
  535. Register(typeof(void), new Type[] { typeof(Unity.Burst.Intrinsics.v64x4*) }, typeof(R_System_Void_P_0_Unity_Burst_Intrinsics_v64x4_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64x4_Ptr_Delegate);
  536. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double2*) }, typeof(R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate);
  537. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double2*), typeof(Unity.Mathematics.double2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate);
  538. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double2*), typeof(Unity.Mathematics.double2).MakeByRefType(), typeof(Unity.Mathematics.double2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_2_Unity_Mathematics_double2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_2_Unity_Mathematics_double2_Ref_Delegate);
  539. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double2*), typeof(Unity.Mathematics.half2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate);
  540. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double2*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate);
  541. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double2x2*) }, typeof(R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate);
  542. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double3*) }, typeof(R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate);
  543. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double3*), typeof(Unity.Mathematics.double3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate);
  544. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double3*), typeof(Unity.Mathematics.double3).MakeByRefType(), typeof(Unity.Mathematics.double3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_2_Unity_Mathematics_double3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_2_Unity_Mathematics_double3_Ref_Delegate);
  545. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double3*), typeof(Unity.Mathematics.half3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate);
  546. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*) }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate);
  547. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*), typeof(Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate);
  548. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*), typeof(Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate);
  549. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*), typeof(Unity.Mathematics.double4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate);
  550. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*), typeof(Unity.Mathematics.double4).MakeByRefType(), typeof(Unity.Mathematics.double4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_2_Unity_Mathematics_double4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_2_Unity_Mathematics_double4_Ref_Delegate);
  551. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*), typeof(Unity.Mathematics.half4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate);
  552. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.double4*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate);
  553. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float2*) }, typeof(R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate);
  554. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float2*), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate);
  555. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float2*), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate);
  556. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float2*), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.math.ShuffleComponent) }, typeof(R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate);
  557. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float2*), typeof(Unity.Mathematics.half2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate);
  558. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float3*) }, typeof(R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate);
  559. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float3*), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.math.ShuffleComponent) }, typeof(R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate);
  560. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float3*), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate);
  561. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float3*), typeof(Unity.Mathematics.float3).MakeByRefType(), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate);
  562. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float3*), typeof(Unity.Mathematics.half3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate);
  563. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*) }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate);
  564. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate);
  565. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer).MakeByRefType(), typeof(Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate);
  566. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.float2).MakeByRefType(), typeof(Unity.Mathematics.math.ShuffleComponent) }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate);
  567. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate);
  568. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(Unity.Mathematics.float4).MakeByRefType(), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate);
  569. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(Unity.Mathematics.half4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate);
  570. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate);
  571. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4*), typeof(uint), typeof(Unity.Burst.Intrinsics.X86.MXCSRBits) }, typeof(R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate);
  572. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.float4x2*), typeof(int) }, typeof(R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate);
  573. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.half2*), typeof(Unity.Mathematics.double2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate);
  574. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.half2*), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate);
  575. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.half3*), typeof(Unity.Mathematics.double3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate);
  576. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.half3*), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate);
  577. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.half4*), typeof(Unity.Mathematics.double4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate);
  578. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.half4*), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate);
  579. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.int2*), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_Int32_2_Int32_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_Int32_2_Int32_Delegate);
  580. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.int4*) }, typeof(R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate);
  581. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.int4*), typeof(long), typeof(long) }, typeof(R_System_Void_P_0_Unity_Mathematics_int4_Ptr_1_Int64_2_Int64_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_int4_Ptr_1_Int64_2_Int64_Delegate);
  582. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.quaternion*) }, typeof(R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate);
  583. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.uint2*), typeof(Unity.Mathematics.float2).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate);
  584. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.uint2*), typeof(uint), typeof(uint) }, typeof(R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_UInt32_2_UInt32_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_UInt32_2_UInt32_Delegate);
  585. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.uint3*), typeof(Unity.Mathematics.float3).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate);
  586. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.uint4*), typeof(Unity.Mathematics.float4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate);
  587. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.uint4*), typeof(Unity.Mathematics.uint4).MakeByRefType() }, typeof(R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate);
  588. Register(typeof(void), new Type[] { typeof(Unity.Mathematics.uint4*), typeof(ulong), typeof(ulong) }, typeof(R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_UInt64_2_UInt64_Delegate), Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_UInt64_2_UInt64_Delegate);
  589. Register(typeof(void), new Type[] { typeof(UnityBenchShared.DivisionByScalar).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate);
  590. Register(typeof(void), new Type[] { typeof(UnityBenchShared.IntToFloatPenalty).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate);
  591. Register(typeof(void), new Type[] { typeof(UnityBenchShared.PartialWrite).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate);
  592. Register(typeof(void), new Type[] { typeof(UnityBenchShared.PartialWriteWorkaround).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate);
  593. Register(typeof(void), new Type[] { typeof(UnityBenchShared.RedundantStore).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate);
  594. Register(typeof(void), new Type[] { typeof(UnityBenchShared.RedundantStoreWorkaround).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate);
  595. Register(typeof(void), new Type[] { typeof(UnityBenchShared.SquareRoot).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate);
  596. Register(typeof(void), new Type[] { typeof(UnityBenchShared.SquareRootRecip).MakeByRefType() }, typeof(R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate), Call_R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate);
  597. Register(typeof(void), new Type[] { typeof(bool) }, typeof(R_System_Void_P_0_Boolean_Delegate), Call_R_System_Void_P_0_Boolean_Delegate);
  598. Register(typeof(void), new Type[] { typeof(bool), typeof(Unity.Collections.FixedString64).MakeByRefType() }, typeof(R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate), Call_R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate);
  599. Register(typeof(void), new Type[] { typeof(byte) }, typeof(R_System_Void_P_0_Byte_Delegate), Call_R_System_Void_P_0_Byte_Delegate);
  600. Register(typeof(void), new Type[] { typeof(byte*), typeof(int) }, typeof(R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate);
  601. Register(typeof(void), new Type[] { typeof(double) }, typeof(R_System_Void_P_0_Double_Delegate), Call_R_System_Void_P_0_Double_Delegate);
  602. Register(typeof(void), new Type[] { typeof(double*) }, typeof(R_System_Void_P_0_Double_Ptr_Delegate), Call_R_System_Void_P_0_Double_Ptr_Delegate);
  603. Register(typeof(void), new Type[] { typeof(double*), typeof(Unity.Mathematics.half).MakeByRefType() }, typeof(R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate), Call_R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate);
  604. Register(typeof(void), new Type[] { typeof(double*), typeof(double) }, typeof(R_System_Void_P_0_Double_Ptr_1_Double_Delegate), Call_R_System_Void_P_0_Double_Ptr_1_Double_Delegate);
  605. Register(typeof(void), new Type[] { typeof(double*), typeof(int) }, typeof(R_System_Void_P_0_Double_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Double_Ptr_1_Int32_Delegate);
  606. Register(typeof(void), new Type[] { typeof(float) }, typeof(R_System_Void_P_0_Single_Delegate), Call_R_System_Void_P_0_Single_Delegate);
  607. Register(typeof(void), new Type[] { typeof(float*), typeof(Unity.Mathematics.half).MakeByRefType() }, typeof(R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate), Call_R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate);
  608. Register(typeof(void), new Type[] { typeof(float*), typeof(float) }, typeof(R_System_Void_P_0_Single_Ptr_1_Single_Delegate), Call_R_System_Void_P_0_Single_Ptr_1_Single_Delegate);
  609. Register(typeof(void), new Type[] { typeof(float*), typeof(float*), typeof(float*), typeof(int) }, typeof(R_System_Void_P_0_Single_Ptr_1_Single_Ptr_2_Single_Ptr_3_Int32_Delegate), Call_R_System_Void_P_0_Single_Ptr_1_Single_Ptr_2_Single_Ptr_3_Int32_Delegate);
  610. Register(typeof(void), new Type[] { typeof(float*), typeof(int) }, typeof(R_System_Void_P_0_Single_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Single_Ptr_1_Int32_Delegate);
  611. Register(typeof(void), new Type[] { typeof(int), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate), Call_R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate);
  612. Register(typeof(void), new Type[] { typeof(int*) }, typeof(R_System_Void_P_0_Int32_Ptr_Delegate), Call_R_System_Void_P_0_Int32_Ptr_Delegate);
  613. Register(typeof(void), new Type[] { typeof(int*), typeof(double) }, typeof(R_System_Void_P_0_Int32_Ptr_1_Double_Delegate), Call_R_System_Void_P_0_Int32_Ptr_1_Double_Delegate);
  614. Register(typeof(void), new Type[] { typeof(int*), typeof(int) }, typeof(R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate);
  615. Register(typeof(void), new Type[] { typeof(int*), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate), Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate);
  616. Register(typeof(void), new Type[] { typeof(int*), typeof(int), typeof(int), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate), Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate);
  617. Register(typeof(void), new Type[] { typeof(int*), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), typeof(int) }, typeof(R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate), Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate);
  618. Register(typeof(void), new Type[] { typeof(long*) }, typeof(R_System_Void_P_0_Int64_Ptr_Delegate), Call_R_System_Void_P_0_Int64_Ptr_Delegate);
  619. Register(typeof(void), new Type[] { typeof(long*), typeof(double) }, typeof(R_System_Void_P_0_Int64_Ptr_1_Double_Delegate), Call_R_System_Void_P_0_Int64_Ptr_1_Double_Delegate);
  620. Register(typeof(void), new Type[] { typeof(long*), typeof(int) }, typeof(R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate);
  621. Register(typeof(void), new Type[] { typeof(long*), typeof(long) }, typeof(R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate), Call_R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate);
  622. Register(typeof(void), new Type[] { typeof(long*), typeof(ulong) }, typeof(R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate), Call_R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate);
  623. Register(typeof(void), new Type[] { typeof(sbyte*), typeof(int) }, typeof(R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate);
  624. Register(typeof(void), new Type[] { typeof(short) }, typeof(R_System_Void_P_0_Int16_Delegate), Call_R_System_Void_P_0_Int16_Delegate);
  625. Register(typeof(void), new Type[] { typeof(short*), typeof(int) }, typeof(R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate);
  626. Register(typeof(void), new Type[] { typeof(uint*), typeof(int) }, typeof(R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate);
  627. Register(typeof(void), new Type[] { typeof(ulong*), typeof(double) }, typeof(R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate), Call_R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate);
  628. Register(typeof(void), new Type[] { typeof(ulong*), typeof(int) }, typeof(R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate);
  629. Register(typeof(void), new Type[] { typeof(ulong*), typeof(ulong), typeof(ulong) }, typeof(R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate), Call_R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate);
  630. Register(typeof(void), new Type[] { typeof(ushort*), typeof(int) }, typeof(R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate), Call_R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate);
  631. #endif
  632. }
  633. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  634. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  635. private delegate Burst.Compiler.IL.Tests.Pointers.MyCastEnum R_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_P_0_Int32_1_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_Delegate(int arg0, Burst.Compiler.IL.Tests.Pointers.MyCastEnum arg1);
  636. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  637. private unsafe static object Call_R_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_P_0_Int32_1_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_Delegate(object delegateObj, object[] p)
  638. {
  639. var d = (R_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_P_0_Int32_1_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_Delegate)delegateObj;
  640. object result = null;
  641. var arg0 = (int)p[0];
  642. var arg1 = (Burst.Compiler.IL.Tests.Pointers.MyCastEnum)p[1];
  643. result = d(arg0, arg1);
  644. return result;
  645. }
  646. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  647. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  648. private delegate Burst.Compiler.IL.Tests.TestEnums.SomeByteEnum R_Burst_Compiler_IL_Tests_TestEnums_SomeByteEnum_P_0_Burst_Compiler_IL_Tests_TestEnums_FixedByte4Struct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestEnums.FixedByte4Struct arg0);
  649. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  650. private unsafe static object Call_R_Burst_Compiler_IL_Tests_TestEnums_SomeByteEnum_P_0_Burst_Compiler_IL_Tests_TestEnums_FixedByte4Struct_Ref_Delegate(object delegateObj, object[] p)
  651. {
  652. var d = (R_Burst_Compiler_IL_Tests_TestEnums_SomeByteEnum_P_0_Burst_Compiler_IL_Tests_TestEnums_FixedByte4Struct_Ref_Delegate)delegateObj;
  653. object result = null;
  654. var arg0 = (Burst.Compiler.IL.Tests.TestEnums.FixedByte4Struct)p[0];
  655. result = d(ref arg0);
  656. return result;
  657. }
  658. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  659. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  660. private delegate Burst.Compiler.IL.Tests.Types.MyEnumByte R_Burst_Compiler_IL_Tests_Types_MyEnumByte_P_0_Burst_Compiler_IL_Tests_Types_MyEnumByte_Ref_Delegate(ref Burst.Compiler.IL.Tests.Types.MyEnumByte arg0);
  661. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  662. private unsafe static object Call_R_Burst_Compiler_IL_Tests_Types_MyEnumByte_P_0_Burst_Compiler_IL_Tests_Types_MyEnumByte_Ref_Delegate(object delegateObj, object[] p)
  663. {
  664. var d = (R_Burst_Compiler_IL_Tests_Types_MyEnumByte_P_0_Burst_Compiler_IL_Tests_Types_MyEnumByte_Ref_Delegate)delegateObj;
  665. object result = null;
  666. var arg0 = (Burst.Compiler.IL.Tests.Types.MyEnumByte)p[0];
  667. result = d(ref arg0);
  668. return result;
  669. }
  670. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  671. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  672. private delegate System.IntPtr R_IntPtr_P_Delegate();
  673. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  674. private unsafe static object Call_R_IntPtr_P_Delegate(object delegateObj, object[] p)
  675. {
  676. var d = (R_IntPtr_P_Delegate)delegateObj;
  677. object result = null;
  678. result = d();
  679. return result;
  680. }
  681. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  682. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  683. private delegate System.IntPtr R_IntPtr_P_0_IntPtr_Delegate(System.IntPtr arg0);
  684. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  685. private unsafe static object Call_R_IntPtr_P_0_IntPtr_Delegate(object delegateObj, object[] p)
  686. {
  687. var d = (R_IntPtr_P_0_IntPtr_Delegate)delegateObj;
  688. object result = null;
  689. var arg0 = (System.IntPtr)p[0];
  690. result = d(arg0);
  691. return result;
  692. }
  693. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  694. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  695. private delegate System.IntPtr R_IntPtr_P_0_IntPtr_1_IntPtr_Delegate(System.IntPtr arg0, System.IntPtr arg1);
  696. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  697. private unsafe static object Call_R_IntPtr_P_0_IntPtr_1_IntPtr_Delegate(object delegateObj, object[] p)
  698. {
  699. var d = (R_IntPtr_P_0_IntPtr_1_IntPtr_Delegate)delegateObj;
  700. object result = null;
  701. var arg0 = (System.IntPtr)p[0];
  702. var arg1 = (System.IntPtr)p[1];
  703. result = d(arg0, arg1);
  704. return result;
  705. }
  706. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  707. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  708. private delegate System.IntPtr R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate(System.IntPtr arg0, System.IntPtr arg1, System.IntPtr arg2);
  709. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  710. private unsafe static object Call_R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate(object delegateObj, object[] p)
  711. {
  712. var d = (R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate)delegateObj;
  713. object result = null;
  714. var arg0 = (System.IntPtr)p[0];
  715. var arg1 = (System.IntPtr)p[1];
  716. var arg2 = (System.IntPtr)p[2];
  717. result = d(arg0, arg1, arg2);
  718. return result;
  719. }
  720. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  721. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  722. private delegate System.IntPtr R_IntPtr_P_0_Int32_Delegate(int arg0);
  723. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  724. private unsafe static object Call_R_IntPtr_P_0_Int32_Delegate(object delegateObj, object[] p)
  725. {
  726. var d = (R_IntPtr_P_0_Int32_Delegate)delegateObj;
  727. object result = null;
  728. var arg0 = (int)p[0];
  729. result = d(arg0);
  730. return result;
  731. }
  732. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  733. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  734. private delegate System.IntPtr R_IntPtr_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  735. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  736. private unsafe static object Call_R_IntPtr_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  737. {
  738. var d = (R_IntPtr_P_0_Int32_1_Int32_Delegate)delegateObj;
  739. object result = null;
  740. var arg0 = (int)p[0];
  741. var arg1 = (int)p[1];
  742. result = d(arg0, arg1);
  743. return result;
  744. }
  745. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  746. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  747. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_Byte_Delegate(ulong arg0, byte arg1);
  748. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  749. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_Byte_Delegate(object delegateObj, object[] p)
  750. {
  751. var d = (R_IntPtr_P_0_UInt64_1_Byte_Delegate)delegateObj;
  752. object result = null;
  753. var arg0 = (ulong)p[0];
  754. var arg1 = (byte)p[1];
  755. result = d(arg0, arg1);
  756. return result;
  757. }
  758. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  759. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  760. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_Int32_Delegate(ulong arg0, int arg1);
  761. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  762. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_Int32_Delegate(object delegateObj, object[] p)
  763. {
  764. var d = (R_IntPtr_P_0_UInt64_1_Int32_Delegate)delegateObj;
  765. object result = null;
  766. var arg0 = (ulong)p[0];
  767. var arg1 = (int)p[1];
  768. result = d(arg0, arg1);
  769. return result;
  770. }
  771. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  773. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_Int64_Delegate(ulong arg0, long arg1);
  774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  775. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_Int64_Delegate(object delegateObj, object[] p)
  776. {
  777. var d = (R_IntPtr_P_0_UInt64_1_Int64_Delegate)delegateObj;
  778. object result = null;
  779. var arg0 = (ulong)p[0];
  780. var arg1 = (long)p[1];
  781. result = d(arg0, arg1);
  782. return result;
  783. }
  784. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  785. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  786. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_SByte_Delegate(ulong arg0, sbyte arg1);
  787. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  788. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_SByte_Delegate(object delegateObj, object[] p)
  789. {
  790. var d = (R_IntPtr_P_0_UInt64_1_SByte_Delegate)delegateObj;
  791. object result = null;
  792. var arg0 = (ulong)p[0];
  793. var arg1 = (sbyte)p[1];
  794. result = d(arg0, arg1);
  795. return result;
  796. }
  797. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  799. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_Int16_Delegate(ulong arg0, short arg1);
  800. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  801. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_Int16_Delegate(object delegateObj, object[] p)
  802. {
  803. var d = (R_IntPtr_P_0_UInt64_1_Int16_Delegate)delegateObj;
  804. object result = null;
  805. var arg0 = (ulong)p[0];
  806. var arg1 = (short)p[1];
  807. result = d(arg0, arg1);
  808. return result;
  809. }
  810. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  811. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  812. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_UInt32_Delegate(ulong arg0, uint arg1);
  813. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  814. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_UInt32_Delegate(object delegateObj, object[] p)
  815. {
  816. var d = (R_IntPtr_P_0_UInt64_1_UInt32_Delegate)delegateObj;
  817. object result = null;
  818. var arg0 = (ulong)p[0];
  819. var arg1 = (uint)p[1];
  820. result = d(arg0, arg1);
  821. return result;
  822. }
  823. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  824. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  825. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_UInt64_Delegate(ulong arg0, ulong arg1);
  826. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  827. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_UInt64_Delegate(object delegateObj, object[] p)
  828. {
  829. var d = (R_IntPtr_P_0_UInt64_1_UInt64_Delegate)delegateObj;
  830. object result = null;
  831. var arg0 = (ulong)p[0];
  832. var arg1 = (ulong)p[1];
  833. result = d(arg0, arg1);
  834. return result;
  835. }
  836. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  837. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  838. private delegate System.IntPtr R_IntPtr_P_0_UInt64_1_UInt16_Delegate(ulong arg0, ushort arg1);
  839. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  840. private unsafe static object Call_R_IntPtr_P_0_UInt64_1_UInt16_Delegate(object delegateObj, object[] p)
  841. {
  842. var d = (R_IntPtr_P_0_UInt64_1_UInt16_Delegate)delegateObj;
  843. object result = null;
  844. var arg0 = (ulong)p[0];
  845. var arg1 = (ushort)p[1];
  846. result = d(arg0, arg1);
  847. return result;
  848. }
  849. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  850. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  851. private delegate System.UIntPtr R_UIntPtr_P_Delegate();
  852. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  853. private unsafe static object Call_R_UIntPtr_P_Delegate(object delegateObj, object[] p)
  854. {
  855. var d = (R_UIntPtr_P_Delegate)delegateObj;
  856. object result = null;
  857. result = d();
  858. return result;
  859. }
  860. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  862. private delegate System.UIntPtr R_UIntPtr_P_0_UIntPtr_Delegate(System.UIntPtr arg0);
  863. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  864. private unsafe static object Call_R_UIntPtr_P_0_UIntPtr_Delegate(object delegateObj, object[] p)
  865. {
  866. var d = (R_UIntPtr_P_0_UIntPtr_Delegate)delegateObj;
  867. object result = null;
  868. var arg0 = (System.UIntPtr)p[0];
  869. result = d(arg0);
  870. return result;
  871. }
  872. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  873. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  874. private delegate System.UIntPtr R_UIntPtr_P_0_UIntPtr_1_UIntPtr_Delegate(System.UIntPtr arg0, System.UIntPtr arg1);
  875. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  876. private unsafe static object Call_R_UIntPtr_P_0_UIntPtr_1_UIntPtr_Delegate(object delegateObj, object[] p)
  877. {
  878. var d = (R_UIntPtr_P_0_UIntPtr_1_UIntPtr_Delegate)delegateObj;
  879. object result = null;
  880. var arg0 = (System.UIntPtr)p[0];
  881. var arg1 = (System.UIntPtr)p[1];
  882. result = d(arg0, arg1);
  883. return result;
  884. }
  885. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  886. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  887. private delegate System.UIntPtr R_UIntPtr_P_0_UIntPtr_Ref_Delegate(ref System.UIntPtr arg0);
  888. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  889. private unsafe static object Call_R_UIntPtr_P_0_UIntPtr_Ref_Delegate(object delegateObj, object[] p)
  890. {
  891. var d = (R_UIntPtr_P_0_UIntPtr_Ref_Delegate)delegateObj;
  892. object result = null;
  893. var arg0 = (System.UIntPtr)p[0];
  894. result = d(ref arg0);
  895. return result;
  896. }
  897. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  898. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  899. private delegate System.UIntPtr R_UIntPtr_P_0_UInt32_Delegate(uint arg0);
  900. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  901. private unsafe static object Call_R_UIntPtr_P_0_UInt32_Delegate(object delegateObj, object[] p)
  902. {
  903. var d = (R_UIntPtr_P_0_UInt32_Delegate)delegateObj;
  904. object result = null;
  905. var arg0 = (uint)p[0];
  906. result = d(arg0);
  907. return result;
  908. }
  909. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  910. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  911. private delegate System.UIntPtr R_UIntPtr_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  912. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  913. private unsafe static object Call_R_UIntPtr_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  914. {
  915. var d = (R_UIntPtr_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  916. object result = null;
  917. var arg0 = (uint)p[0];
  918. var arg1 = (uint)p[1];
  919. result = d(arg0, arg1);
  920. return result;
  921. }
  922. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  923. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  924. private delegate bool R_Boolean_P_Delegate();
  925. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  926. private unsafe static object Call_R_Boolean_P_Delegate(object delegateObj, object[] p)
  927. {
  928. var d = (R_Boolean_P_Delegate)delegateObj;
  929. object result = null;
  930. result = d();
  931. return result;
  932. }
  933. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  934. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  935. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.PointerConditional arg0);
  936. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  937. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate(object delegateObj, object[] p)
  938. {
  939. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate)delegateObj;
  940. object result = null;
  941. var arg0 = (Burst.Compiler.IL.Tests.Pointers.PointerConditional)p[0];
  942. result = d(ref arg0);
  943. return result;
  944. }
  945. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  946. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  947. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.StackAllocCheck arg0);
  948. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  949. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate(object delegateObj, object[] p)
  950. {
  951. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate)delegateObj;
  952. object result = null;
  953. var arg0 = (Burst.Compiler.IL.Tests.Pointers.StackAllocCheck)p[0];
  954. result = d(ref arg0);
  955. return result;
  956. }
  957. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  958. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  959. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_1_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_Delegate(Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint arg0, Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint arg1);
  960. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  961. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_1_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_Delegate(object delegateObj, object[] p)
  962. {
  963. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_1_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_Delegate)delegateObj;
  964. object result = null;
  965. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint)p[0];
  966. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint)p[1];
  967. result = d(arg0, arg1);
  968. return result;
  969. }
  970. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  971. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  972. private delegate bool R_Boolean_P_0_IntPtr_Delegate(System.IntPtr arg0);
  973. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  974. private unsafe static object Call_R_Boolean_P_0_IntPtr_Delegate(object delegateObj, object[] p)
  975. {
  976. var d = (R_Boolean_P_0_IntPtr_Delegate)delegateObj;
  977. object result = null;
  978. var arg0 = (System.IntPtr)p[0];
  979. result = d(arg0);
  980. return result;
  981. }
  982. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  983. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  984. private delegate bool R_Boolean_P_0_IntPtr_1_IntPtr_Delegate(System.IntPtr arg0, System.IntPtr arg1);
  985. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  986. private unsafe static object Call_R_Boolean_P_0_IntPtr_1_IntPtr_Delegate(object delegateObj, object[] p)
  987. {
  988. var d = (R_Boolean_P_0_IntPtr_1_IntPtr_Delegate)delegateObj;
  989. object result = null;
  990. var arg0 = (System.IntPtr)p[0];
  991. var arg1 = (System.IntPtr)p[1];
  992. result = d(arg0, arg1);
  993. return result;
  994. }
  995. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  996. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  997. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0);
  998. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  999. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  1000. {
  1001. var d = (R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  1002. object result = null;
  1003. var arg0 = (Unity.Mathematics.bool2)p[0];
  1004. result = d(ref arg0);
  1005. return result;
  1006. }
  1007. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1008. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1009. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0, ref Unity.Mathematics.bool2 arg1);
  1010. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1011. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  1012. {
  1013. var d = (R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  1014. object result = null;
  1015. var arg0 = (Unity.Mathematics.bool2)p[0];
  1016. var arg1 = (Unity.Mathematics.bool2)p[1];
  1017. result = d(ref arg0, ref arg1);
  1018. return result;
  1019. }
  1020. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1021. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1022. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0);
  1023. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1024. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  1025. {
  1026. var d = (R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  1027. object result = null;
  1028. var arg0 = (Unity.Mathematics.bool3)p[0];
  1029. result = d(ref arg0);
  1030. return result;
  1031. }
  1032. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1033. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1034. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0, ref Unity.Mathematics.bool3 arg1);
  1035. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1036. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  1037. {
  1038. var d = (R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  1039. object result = null;
  1040. var arg0 = (Unity.Mathematics.bool3)p[0];
  1041. var arg1 = (Unity.Mathematics.bool3)p[1];
  1042. result = d(ref arg0, ref arg1);
  1043. return result;
  1044. }
  1045. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1046. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1047. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0);
  1048. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1049. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  1050. {
  1051. var d = (R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  1052. object result = null;
  1053. var arg0 = (Unity.Mathematics.bool4)p[0];
  1054. result = d(ref arg0);
  1055. return result;
  1056. }
  1057. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1058. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1059. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0, ref Unity.Mathematics.bool4 arg1);
  1060. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1061. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  1062. {
  1063. var d = (R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  1064. object result = null;
  1065. var arg0 = (Unity.Mathematics.bool4)p[0];
  1066. var arg1 = (Unity.Mathematics.bool4)p[1];
  1067. result = d(ref arg0, ref arg1);
  1068. return result;
  1069. }
  1070. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1071. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1072. private delegate bool R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0);
  1073. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1074. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1075. {
  1076. var d = (R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1077. object result = null;
  1078. var arg0 = (Unity.Mathematics.float2)p[0];
  1079. result = d(ref arg0);
  1080. return result;
  1081. }
  1082. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1083. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1084. private delegate bool R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0, ref Unity.Mathematics.float2 arg1);
  1085. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1086. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1087. {
  1088. var d = (R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1089. object result = null;
  1090. var arg0 = (Unity.Mathematics.float2)p[0];
  1091. var arg1 = (Unity.Mathematics.float2)p[1];
  1092. result = d(ref arg0, ref arg1);
  1093. return result;
  1094. }
  1095. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1096. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1097. private delegate bool R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0);
  1098. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1099. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1100. {
  1101. var d = (R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1102. object result = null;
  1103. var arg0 = (Unity.Mathematics.float3)p[0];
  1104. result = d(ref arg0);
  1105. return result;
  1106. }
  1107. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1108. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1109. private delegate bool R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0, ref Unity.Mathematics.float3 arg1);
  1110. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1111. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1112. {
  1113. var d = (R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1114. object result = null;
  1115. var arg0 = (Unity.Mathematics.float3)p[0];
  1116. var arg1 = (Unity.Mathematics.float3)p[1];
  1117. result = d(ref arg0, ref arg1);
  1118. return result;
  1119. }
  1120. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1121. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1122. private delegate bool R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0);
  1123. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1124. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1125. {
  1126. var d = (R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1127. object result = null;
  1128. var arg0 = (Unity.Mathematics.float4)p[0];
  1129. result = d(ref arg0);
  1130. return result;
  1131. }
  1132. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1133. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1134. private delegate bool R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0, ref Unity.Mathematics.float4 arg1);
  1135. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1136. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1137. {
  1138. var d = (R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1139. object result = null;
  1140. var arg0 = (Unity.Mathematics.float4)p[0];
  1141. var arg1 = (Unity.Mathematics.float4)p[1];
  1142. result = d(ref arg0, ref arg1);
  1143. return result;
  1144. }
  1145. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1146. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1147. private delegate bool R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(ref Unity.Mathematics.float4 arg0, float arg1);
  1148. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1149. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(object delegateObj, object[] p)
  1150. {
  1151. var d = (R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate)delegateObj;
  1152. object result = null;
  1153. var arg0 = (Unity.Mathematics.float4)p[0];
  1154. var arg1 = (float)p[1];
  1155. result = d(ref arg0, arg1);
  1156. return result;
  1157. }
  1158. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1159. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1160. private delegate bool R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0);
  1161. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1162. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  1163. {
  1164. var d = (R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  1165. object result = null;
  1166. var arg0 = (Unity.Mathematics.int2)p[0];
  1167. result = d(ref arg0);
  1168. return result;
  1169. }
  1170. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1171. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1172. private delegate bool R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0, ref Unity.Mathematics.int2 arg1);
  1173. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1174. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  1175. {
  1176. var d = (R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  1177. object result = null;
  1178. var arg0 = (Unity.Mathematics.int2)p[0];
  1179. var arg1 = (Unity.Mathematics.int2)p[1];
  1180. result = d(ref arg0, ref arg1);
  1181. return result;
  1182. }
  1183. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1184. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1185. private delegate bool R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0);
  1186. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1187. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  1188. {
  1189. var d = (R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  1190. object result = null;
  1191. var arg0 = (Unity.Mathematics.int3)p[0];
  1192. result = d(ref arg0);
  1193. return result;
  1194. }
  1195. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1196. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1197. private delegate bool R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0, ref Unity.Mathematics.int3 arg1);
  1198. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1199. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  1200. {
  1201. var d = (R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  1202. object result = null;
  1203. var arg0 = (Unity.Mathematics.int3)p[0];
  1204. var arg1 = (Unity.Mathematics.int3)p[1];
  1205. result = d(ref arg0, ref arg1);
  1206. return result;
  1207. }
  1208. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1209. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1210. private delegate bool R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  1211. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1212. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1213. {
  1214. var d = (R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1215. object result = null;
  1216. var arg0 = (Unity.Mathematics.int4)p[0];
  1217. result = d(ref arg0);
  1218. return result;
  1219. }
  1220. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1221. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1222. private delegate bool R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0, ref Unity.Mathematics.int4 arg1);
  1223. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1224. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1225. {
  1226. var d = (R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1227. object result = null;
  1228. var arg0 = (Unity.Mathematics.int4)p[0];
  1229. var arg1 = (Unity.Mathematics.int4)p[1];
  1230. result = d(ref arg0, ref arg1);
  1231. return result;
  1232. }
  1233. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1234. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1235. private delegate bool R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate(ref Unity.Mathematics.uint2 arg0, ref Unity.Mathematics.uint2 arg1);
  1236. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1237. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate(object delegateObj, object[] p)
  1238. {
  1239. var d = (R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate)delegateObj;
  1240. object result = null;
  1241. var arg0 = (Unity.Mathematics.uint2)p[0];
  1242. var arg1 = (Unity.Mathematics.uint2)p[1];
  1243. result = d(ref arg0, ref arg1);
  1244. return result;
  1245. }
  1246. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1247. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1248. private delegate bool R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate(ref Unity.Mathematics.uint3 arg0, ref Unity.Mathematics.uint3 arg1);
  1249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1250. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate(object delegateObj, object[] p)
  1251. {
  1252. var d = (R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate)delegateObj;
  1253. object result = null;
  1254. var arg0 = (Unity.Mathematics.uint3)p[0];
  1255. var arg1 = (Unity.Mathematics.uint3)p[1];
  1256. result = d(ref arg0, ref arg1);
  1257. return result;
  1258. }
  1259. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1260. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1261. private delegate bool R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0, ref Unity.Mathematics.uint4 arg1);
  1262. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1263. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  1264. {
  1265. var d = (R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  1266. object result = null;
  1267. var arg0 = (Unity.Mathematics.uint4)p[0];
  1268. var arg1 = (Unity.Mathematics.uint4)p[1];
  1269. result = d(ref arg0, ref arg1);
  1270. return result;
  1271. }
  1272. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1273. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1274. private delegate bool R_Boolean_P_0_Boolean_Delegate(bool arg0);
  1275. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1276. private unsafe static object Call_R_Boolean_P_0_Boolean_Delegate(object delegateObj, object[] p)
  1277. {
  1278. var d = (R_Boolean_P_0_Boolean_Delegate)delegateObj;
  1279. object result = null;
  1280. var arg0 = (bool)p[0];
  1281. result = d(arg0);
  1282. return result;
  1283. }
  1284. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1285. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1286. private delegate bool R_Boolean_P_0_Boolean_1_Boolean_Delegate(bool arg0, bool arg1);
  1287. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1288. private unsafe static object Call_R_Boolean_P_0_Boolean_1_Boolean_Delegate(object delegateObj, object[] p)
  1289. {
  1290. var d = (R_Boolean_P_0_Boolean_1_Boolean_Delegate)delegateObj;
  1291. object result = null;
  1292. var arg0 = (bool)p[0];
  1293. var arg1 = (bool)p[1];
  1294. result = d(arg0, arg1);
  1295. return result;
  1296. }
  1297. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1298. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1299. private delegate bool R_Boolean_P_0_Boolean_1_Int32_Delegate(bool arg0, int arg1);
  1300. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1301. private unsafe static object Call_R_Boolean_P_0_Boolean_1_Int32_Delegate(object delegateObj, object[] p)
  1302. {
  1303. var d = (R_Boolean_P_0_Boolean_1_Int32_Delegate)delegateObj;
  1304. object result = null;
  1305. var arg0 = (bool)p[0];
  1306. var arg1 = (int)p[1];
  1307. result = d(arg0, arg1);
  1308. return result;
  1309. }
  1310. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1311. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1312. private delegate bool R_Boolean_P_0_Double_Delegate(double arg0);
  1313. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1314. private unsafe static object Call_R_Boolean_P_0_Double_Delegate(object delegateObj, object[] p)
  1315. {
  1316. var d = (R_Boolean_P_0_Double_Delegate)delegateObj;
  1317. object result = null;
  1318. var arg0 = (double)p[0];
  1319. result = d(arg0);
  1320. return result;
  1321. }
  1322. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1323. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1324. private delegate bool R_Boolean_P_0_Single_Delegate(float arg0);
  1325. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1326. private unsafe static object Call_R_Boolean_P_0_Single_Delegate(object delegateObj, object[] p)
  1327. {
  1328. var d = (R_Boolean_P_0_Single_Delegate)delegateObj;
  1329. object result = null;
  1330. var arg0 = (float)p[0];
  1331. result = d(arg0);
  1332. return result;
  1333. }
  1334. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1335. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1336. private delegate bool R_Boolean_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  1337. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1338. private unsafe static object Call_R_Boolean_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  1339. {
  1340. var d = (R_Boolean_P_0_Single_1_Single_Delegate)delegateObj;
  1341. object result = null;
  1342. var arg0 = (float)p[0];
  1343. var arg1 = (float)p[1];
  1344. result = d(arg0, arg1);
  1345. return result;
  1346. }
  1347. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1348. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1349. private delegate bool R_Boolean_P_0_Int32_Delegate(int arg0);
  1350. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1351. private unsafe static object Call_R_Boolean_P_0_Int32_Delegate(object delegateObj, object[] p)
  1352. {
  1353. var d = (R_Boolean_P_0_Int32_Delegate)delegateObj;
  1354. object result = null;
  1355. var arg0 = (int)p[0];
  1356. result = d(arg0);
  1357. return result;
  1358. }
  1359. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1360. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1361. private delegate bool R_Boolean_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  1362. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1363. private unsafe static object Call_R_Boolean_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  1364. {
  1365. var d = (R_Boolean_P_0_Int32_1_Int32_Delegate)delegateObj;
  1366. object result = null;
  1367. var arg0 = (int)p[0];
  1368. var arg1 = (int)p[1];
  1369. result = d(arg0, arg1);
  1370. return result;
  1371. }
  1372. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1373. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1374. private delegate bool R_Boolean_P_0_Int32_1_UInt32_Delegate(int arg0, uint arg1);
  1375. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1376. private unsafe static object Call_R_Boolean_P_0_Int32_1_UInt32_Delegate(object delegateObj, object[] p)
  1377. {
  1378. var d = (R_Boolean_P_0_Int32_1_UInt32_Delegate)delegateObj;
  1379. object result = null;
  1380. var arg0 = (int)p[0];
  1381. var arg1 = (uint)p[1];
  1382. result = d(arg0, arg1);
  1383. return result;
  1384. }
  1385. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1386. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1387. private delegate bool R_Boolean_P_0_Int64_1_Int32_Delegate(long arg0, int arg1);
  1388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1389. private unsafe static object Call_R_Boolean_P_0_Int64_1_Int32_Delegate(object delegateObj, object[] p)
  1390. {
  1391. var d = (R_Boolean_P_0_Int64_1_Int32_Delegate)delegateObj;
  1392. object result = null;
  1393. var arg0 = (long)p[0];
  1394. var arg1 = (int)p[1];
  1395. result = d(arg0, arg1);
  1396. return result;
  1397. }
  1398. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1399. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1400. private delegate bool R_Boolean_P_0_UInt32_1_Int32_Delegate(uint arg0, int arg1);
  1401. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1402. private unsafe static object Call_R_Boolean_P_0_UInt32_1_Int32_Delegate(object delegateObj, object[] p)
  1403. {
  1404. var d = (R_Boolean_P_0_UInt32_1_Int32_Delegate)delegateObj;
  1405. object result = null;
  1406. var arg0 = (uint)p[0];
  1407. var arg1 = (int)p[1];
  1408. result = d(arg0, arg1);
  1409. return result;
  1410. }
  1411. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1413. private delegate byte R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_Byte_Delegate(ref Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestByte arg0, byte arg1);
  1414. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1415. private unsafe static object Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_Byte_Delegate(object delegateObj, object[] p)
  1416. {
  1417. var d = (R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_Byte_Delegate)delegateObj;
  1418. object result = null;
  1419. var arg0 = (Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestByte)p[0];
  1420. var arg1 = (byte)p[1];
  1421. result = d(ref arg0, arg1);
  1422. return result;
  1423. }
  1424. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1425. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1426. private delegate byte R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_SByte_Delegate(ref Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestByte arg0, sbyte arg1);
  1427. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1428. private unsafe static object Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_SByte_Delegate(object delegateObj, object[] p)
  1429. {
  1430. var d = (R_Byte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestByte_Ref_1_SByte_Delegate)delegateObj;
  1431. object result = null;
  1432. var arg0 = (Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestByte)p[0];
  1433. var arg1 = (sbyte)p[1];
  1434. result = d(ref arg0, arg1);
  1435. return result;
  1436. }
  1437. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1438. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1439. private unsafe delegate byte R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate(Burst.Compiler.IL.Tests.TestStructs.WithPadding* arg0);
  1440. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1441. private unsafe static object Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate(object delegateObj, object[] p)
  1442. {
  1443. var d = (R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate)delegateObj;
  1444. object result = null;
  1445. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.WithPadding*)(IntPtr)p[0];
  1446. result = d(arg0);
  1447. return result;
  1448. }
  1449. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1450. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1451. private delegate byte R_Byte_P_0_Byte_1_Byte_Delegate(byte arg0, byte arg1);
  1452. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1453. private unsafe static object Call_R_Byte_P_0_Byte_1_Byte_Delegate(object delegateObj, object[] p)
  1454. {
  1455. var d = (R_Byte_P_0_Byte_1_Byte_Delegate)delegateObj;
  1456. object result = null;
  1457. var arg0 = (byte)p[0];
  1458. var arg1 = (byte)p[1];
  1459. result = d(arg0, arg1);
  1460. return result;
  1461. }
  1462. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1463. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1464. private delegate byte R_Byte_P_0_Byte_1_Byte_2_Byte_Delegate(byte arg0, byte arg1, byte arg2);
  1465. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1466. private unsafe static object Call_R_Byte_P_0_Byte_1_Byte_2_Byte_Delegate(object delegateObj, object[] p)
  1467. {
  1468. var d = (R_Byte_P_0_Byte_1_Byte_2_Byte_Delegate)delegateObj;
  1469. object result = null;
  1470. var arg0 = (byte)p[0];
  1471. var arg1 = (byte)p[1];
  1472. var arg2 = (byte)p[2];
  1473. result = d(arg0, arg1, arg2);
  1474. return result;
  1475. }
  1476. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1477. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1478. private delegate byte R_Byte_P_0_Int32_Delegate(int arg0);
  1479. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1480. private unsafe static object Call_R_Byte_P_0_Int32_Delegate(object delegateObj, object[] p)
  1481. {
  1482. var d = (R_Byte_P_0_Int32_Delegate)delegateObj;
  1483. object result = null;
  1484. var arg0 = (int)p[0];
  1485. result = d(arg0);
  1486. return result;
  1487. }
  1488. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1489. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1490. private delegate byte R_Byte_P_0_Int64_Delegate(long arg0);
  1491. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1492. private unsafe static object Call_R_Byte_P_0_Int64_Delegate(object delegateObj, object[] p)
  1493. {
  1494. var d = (R_Byte_P_0_Int64_Delegate)delegateObj;
  1495. object result = null;
  1496. var arg0 = (long)p[0];
  1497. result = d(arg0);
  1498. return result;
  1499. }
  1500. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1502. private delegate byte R_Byte_P_0_UInt32_Delegate(uint arg0);
  1503. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1504. private unsafe static object Call_R_Byte_P_0_UInt32_Delegate(object delegateObj, object[] p)
  1505. {
  1506. var d = (R_Byte_P_0_UInt32_Delegate)delegateObj;
  1507. object result = null;
  1508. var arg0 = (uint)p[0];
  1509. result = d(arg0);
  1510. return result;
  1511. }
  1512. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1513. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1514. private delegate double R_Double_P_Delegate();
  1515. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1516. private unsafe static object Call_R_Double_P_Delegate(object delegateObj, object[] p)
  1517. {
  1518. var d = (R_Double_P_Delegate)delegateObj;
  1519. object result = null;
  1520. result = d();
  1521. return result;
  1522. }
  1523. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1524. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1525. private delegate double R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate(ref Unity.Mathematics.double2 arg0);
  1526. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1527. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  1528. {
  1529. var d = (R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  1530. object result = null;
  1531. var arg0 = (Unity.Mathematics.double2)p[0];
  1532. result = d(ref arg0);
  1533. return result;
  1534. }
  1535. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1536. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1537. private delegate double R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate(ref Unity.Mathematics.double3 arg0);
  1538. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1539. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  1540. {
  1541. var d = (R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  1542. object result = null;
  1543. var arg0 = (Unity.Mathematics.double3)p[0];
  1544. result = d(ref arg0);
  1545. return result;
  1546. }
  1547. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1548. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1549. private delegate double R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate(ref Unity.Mathematics.double4 arg0);
  1550. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1551. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  1552. {
  1553. var d = (R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  1554. object result = null;
  1555. var arg0 = (Unity.Mathematics.double4)p[0];
  1556. result = d(ref arg0);
  1557. return result;
  1558. }
  1559. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1560. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1561. private delegate double R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  1562. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1563. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1564. {
  1565. var d = (R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1566. object result = null;
  1567. var arg0 = (Unity.Mathematics.int4)p[0];
  1568. result = d(ref arg0);
  1569. return result;
  1570. }
  1571. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1572. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1573. private delegate double R_Double_P_0_Byte_Delegate(byte arg0);
  1574. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1575. private unsafe static object Call_R_Double_P_0_Byte_Delegate(object delegateObj, object[] p)
  1576. {
  1577. var d = (R_Double_P_0_Byte_Delegate)delegateObj;
  1578. object result = null;
  1579. var arg0 = (byte)p[0];
  1580. result = d(arg0);
  1581. return result;
  1582. }
  1583. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1584. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1585. private delegate double R_Double_P_0_Double_Delegate(double arg0);
  1586. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1587. private unsafe static object Call_R_Double_P_0_Double_Delegate(object delegateObj, object[] p)
  1588. {
  1589. var d = (R_Double_P_0_Double_Delegate)delegateObj;
  1590. object result = null;
  1591. var arg0 = (double)p[0];
  1592. result = d(arg0);
  1593. return result;
  1594. }
  1595. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1596. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1597. private delegate double R_Double_P_0_Double_1_System_MidpointRounding_Delegate(double arg0, System.MidpointRounding arg1);
  1598. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1599. private unsafe static object Call_R_Double_P_0_Double_1_System_MidpointRounding_Delegate(object delegateObj, object[] p)
  1600. {
  1601. var d = (R_Double_P_0_Double_1_System_MidpointRounding_Delegate)delegateObj;
  1602. object result = null;
  1603. var arg0 = (double)p[0];
  1604. var arg1 = (System.MidpointRounding)p[1];
  1605. result = d(arg0, arg1);
  1606. return result;
  1607. }
  1608. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1609. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1610. private delegate double R_Double_P_0_Double_1_Double_Delegate(double arg0, double arg1);
  1611. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1612. private unsafe static object Call_R_Double_P_0_Double_1_Double_Delegate(object delegateObj, object[] p)
  1613. {
  1614. var d = (R_Double_P_0_Double_1_Double_Delegate)delegateObj;
  1615. object result = null;
  1616. var arg0 = (double)p[0];
  1617. var arg1 = (double)p[1];
  1618. result = d(arg0, arg1);
  1619. return result;
  1620. }
  1621. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1622. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1623. private delegate double R_Double_P_0_Double_1_Double_2_Double_Delegate(double arg0, double arg1, double arg2);
  1624. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1625. private unsafe static object Call_R_Double_P_0_Double_1_Double_2_Double_Delegate(object delegateObj, object[] p)
  1626. {
  1627. var d = (R_Double_P_0_Double_1_Double_2_Double_Delegate)delegateObj;
  1628. object result = null;
  1629. var arg0 = (double)p[0];
  1630. var arg1 = (double)p[1];
  1631. var arg2 = (double)p[2];
  1632. result = d(arg0, arg1, arg2);
  1633. return result;
  1634. }
  1635. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1636. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1637. private delegate double R_Double_P_0_Double_1_Int32_Delegate(double arg0, int arg1);
  1638. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1639. private unsafe static object Call_R_Double_P_0_Double_1_Int32_Delegate(object delegateObj, object[] p)
  1640. {
  1641. var d = (R_Double_P_0_Double_1_Int32_Delegate)delegateObj;
  1642. object result = null;
  1643. var arg0 = (double)p[0];
  1644. var arg1 = (int)p[1];
  1645. result = d(arg0, arg1);
  1646. return result;
  1647. }
  1648. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1649. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1650. private delegate double R_Double_P_0_Double_1_Int32_2_System_MidpointRounding_Delegate(double arg0, int arg1, System.MidpointRounding arg2);
  1651. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1652. private unsafe static object Call_R_Double_P_0_Double_1_Int32_2_System_MidpointRounding_Delegate(object delegateObj, object[] p)
  1653. {
  1654. var d = (R_Double_P_0_Double_1_Int32_2_System_MidpointRounding_Delegate)delegateObj;
  1655. object result = null;
  1656. var arg0 = (double)p[0];
  1657. var arg1 = (int)p[1];
  1658. var arg2 = (System.MidpointRounding)p[2];
  1659. result = d(arg0, arg1, arg2);
  1660. return result;
  1661. }
  1662. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1663. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1664. private delegate double R_Double_P_0_Double_Ref_Delegate(ref double arg0);
  1665. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1666. private unsafe static object Call_R_Double_P_0_Double_Ref_Delegate(object delegateObj, object[] p)
  1667. {
  1668. var d = (R_Double_P_0_Double_Ref_Delegate)delegateObj;
  1669. object result = null;
  1670. var arg0 = (double)p[0];
  1671. result = d(ref arg0);
  1672. return result;
  1673. }
  1674. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1675. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1676. private delegate double R_Double_P_0_Single_Delegate(float arg0);
  1677. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1678. private unsafe static object Call_R_Double_P_0_Single_Delegate(object delegateObj, object[] p)
  1679. {
  1680. var d = (R_Double_P_0_Single_Delegate)delegateObj;
  1681. object result = null;
  1682. var arg0 = (float)p[0];
  1683. result = d(arg0);
  1684. return result;
  1685. }
  1686. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1687. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1688. private delegate double R_Double_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  1689. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1690. private unsafe static object Call_R_Double_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  1691. {
  1692. var d = (R_Double_P_0_Single_1_Single_Delegate)delegateObj;
  1693. object result = null;
  1694. var arg0 = (float)p[0];
  1695. var arg1 = (float)p[1];
  1696. result = d(arg0, arg1);
  1697. return result;
  1698. }
  1699. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1700. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1701. private delegate double R_Double_P_0_Int32_Delegate(int arg0);
  1702. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1703. private unsafe static object Call_R_Double_P_0_Int32_Delegate(object delegateObj, object[] p)
  1704. {
  1705. var d = (R_Double_P_0_Int32_Delegate)delegateObj;
  1706. object result = null;
  1707. var arg0 = (int)p[0];
  1708. result = d(arg0);
  1709. return result;
  1710. }
  1711. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1712. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1713. private delegate double R_Double_P_0_Int32_1_UInt32_Delegate(int arg0, uint arg1);
  1714. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1715. private unsafe static object Call_R_Double_P_0_Int32_1_UInt32_Delegate(object delegateObj, object[] p)
  1716. {
  1717. var d = (R_Double_P_0_Int32_1_UInt32_Delegate)delegateObj;
  1718. object result = null;
  1719. var arg0 = (int)p[0];
  1720. var arg1 = (uint)p[1];
  1721. result = d(arg0, arg1);
  1722. return result;
  1723. }
  1724. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1725. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1726. private delegate double R_Double_P_0_Int64_Ref_Delegate(ref long arg0);
  1727. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1728. private unsafe static object Call_R_Double_P_0_Int64_Ref_Delegate(object delegateObj, object[] p)
  1729. {
  1730. var d = (R_Double_P_0_Int64_Ref_Delegate)delegateObj;
  1731. object result = null;
  1732. var arg0 = (long)p[0];
  1733. result = d(ref arg0);
  1734. return result;
  1735. }
  1736. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1737. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1738. private delegate double R_Double_P_0_UInt32_Delegate(uint arg0);
  1739. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1740. private unsafe static object Call_R_Double_P_0_UInt32_Delegate(object delegateObj, object[] p)
  1741. {
  1742. var d = (R_Double_P_0_UInt32_Delegate)delegateObj;
  1743. object result = null;
  1744. var arg0 = (uint)p[0];
  1745. result = d(arg0);
  1746. return result;
  1747. }
  1748. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1749. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1750. private delegate double R_Double_P_0_UInt16_Delegate(ushort arg0);
  1751. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1752. private unsafe static object Call_R_Double_P_0_UInt16_Delegate(object delegateObj, object[] p)
  1753. {
  1754. var d = (R_Double_P_0_UInt16_Delegate)delegateObj;
  1755. object result = null;
  1756. var arg0 = (ushort)p[0];
  1757. result = d(arg0);
  1758. return result;
  1759. }
  1760. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1761. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1762. private delegate float R_Single_P_Delegate();
  1763. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1764. private unsafe static object Call_R_Single_P_Delegate(object delegateObj, object[] p)
  1765. {
  1766. var d = (R_Single_P_Delegate)delegateObj;
  1767. object result = null;
  1768. result = d();
  1769. return result;
  1770. }
  1771. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1773. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate(Burst.Compiler.IL.Tests.Expressions.SByteEnum arg0);
  1774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1775. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate(object delegateObj, object[] p)
  1776. {
  1777. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate)delegateObj;
  1778. object result = null;
  1779. var arg0 = (Burst.Compiler.IL.Tests.Expressions.SByteEnum)p[0];
  1780. result = d(arg0);
  1781. return result;
  1782. }
  1783. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1785. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate(Burst.Compiler.IL.Tests.Expressions.UnsignedEnum arg0);
  1786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1787. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate(object delegateObj, object[] p)
  1788. {
  1789. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate)delegateObj;
  1790. object result = null;
  1791. var arg0 = (Burst.Compiler.IL.Tests.Expressions.UnsignedEnum)p[0];
  1792. result = d(arg0);
  1793. return result;
  1794. }
  1795. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1796. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1797. private delegate float R_Single_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0, ref Unity.Mathematics.float2 arg1, ref Unity.Mathematics.float2 arg2);
  1798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1799. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1800. {
  1801. var d = (R_Single_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1802. object result = null;
  1803. var arg0 = (Unity.Mathematics.bool2)p[0];
  1804. var arg1 = (Unity.Mathematics.float2)p[1];
  1805. var arg2 = (Unity.Mathematics.float2)p[2];
  1806. result = d(ref arg0, ref arg1, ref arg2);
  1807. return result;
  1808. }
  1809. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1810. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1811. private delegate float R_Single_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0, ref Unity.Mathematics.float3 arg1, ref Unity.Mathematics.float3 arg2);
  1812. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1813. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1814. {
  1815. var d = (R_Single_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1816. object result = null;
  1817. var arg0 = (Unity.Mathematics.bool3)p[0];
  1818. var arg1 = (Unity.Mathematics.float3)p[1];
  1819. var arg2 = (Unity.Mathematics.float3)p[2];
  1820. result = d(ref arg0, ref arg1, ref arg2);
  1821. return result;
  1822. }
  1823. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1824. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1825. private delegate float R_Single_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0, ref Unity.Mathematics.float4 arg1, ref Unity.Mathematics.float4 arg2);
  1826. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1827. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1828. {
  1829. var d = (R_Single_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1830. object result = null;
  1831. var arg0 = (Unity.Mathematics.bool4)p[0];
  1832. var arg1 = (Unity.Mathematics.float4)p[1];
  1833. var arg2 = (Unity.Mathematics.float4)p[2];
  1834. result = d(ref arg0, ref arg1, ref arg2);
  1835. return result;
  1836. }
  1837. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1838. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1839. private delegate float R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0);
  1840. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1841. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1842. {
  1843. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1844. object result = null;
  1845. var arg0 = (Unity.Mathematics.float2)p[0];
  1846. result = d(ref arg0);
  1847. return result;
  1848. }
  1849. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1850. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1851. private delegate float R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0, ref Unity.Mathematics.float2 arg1);
  1852. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1853. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1854. {
  1855. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1856. object result = null;
  1857. var arg0 = (Unity.Mathematics.float2)p[0];
  1858. var arg1 = (Unity.Mathematics.float2)p[1];
  1859. result = d(ref arg0, ref arg1);
  1860. return result;
  1861. }
  1862. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1863. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1864. private delegate float R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0, ref Unity.Mathematics.float2 arg1, ref Unity.Mathematics.float2 arg2);
  1865. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1866. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1867. {
  1868. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1869. object result = null;
  1870. var arg0 = (Unity.Mathematics.float2)p[0];
  1871. var arg1 = (Unity.Mathematics.float2)p[1];
  1872. var arg2 = (Unity.Mathematics.float2)p[2];
  1873. result = d(ref arg0, ref arg1, ref arg2);
  1874. return result;
  1875. }
  1876. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1877. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1878. private delegate float R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Single_Delegate(ref Unity.Mathematics.float2 arg0, ref Unity.Mathematics.float2 arg1, float arg2);
  1879. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1880. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Single_Delegate(object delegateObj, object[] p)
  1881. {
  1882. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Single_Delegate)delegateObj;
  1883. object result = null;
  1884. var arg0 = (Unity.Mathematics.float2)p[0];
  1885. var arg1 = (Unity.Mathematics.float2)p[1];
  1886. var arg2 = (float)p[2];
  1887. result = d(ref arg0, ref arg1, arg2);
  1888. return result;
  1889. }
  1890. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1891. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1892. private delegate float R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0);
  1893. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1894. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1895. {
  1896. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1897. object result = null;
  1898. var arg0 = (Unity.Mathematics.float3)p[0];
  1899. result = d(ref arg0);
  1900. return result;
  1901. }
  1902. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1903. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1904. private delegate float R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0, ref Unity.Mathematics.float3 arg1);
  1905. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1906. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1907. {
  1908. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1909. object result = null;
  1910. var arg0 = (Unity.Mathematics.float3)p[0];
  1911. var arg1 = (Unity.Mathematics.float3)p[1];
  1912. result = d(ref arg0, ref arg1);
  1913. return result;
  1914. }
  1915. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1916. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1917. private delegate float R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0, ref Unity.Mathematics.float3 arg1, ref Unity.Mathematics.float3 arg2);
  1918. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1919. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1920. {
  1921. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1922. object result = null;
  1923. var arg0 = (Unity.Mathematics.float3)p[0];
  1924. var arg1 = (Unity.Mathematics.float3)p[1];
  1925. var arg2 = (Unity.Mathematics.float3)p[2];
  1926. result = d(ref arg0, ref arg1, ref arg2);
  1927. return result;
  1928. }
  1929. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1930. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1931. private delegate float R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Single_Delegate(ref Unity.Mathematics.float3 arg0, ref Unity.Mathematics.float3 arg1, float arg2);
  1932. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1933. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Single_Delegate(object delegateObj, object[] p)
  1934. {
  1935. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Single_Delegate)delegateObj;
  1936. object result = null;
  1937. var arg0 = (Unity.Mathematics.float3)p[0];
  1938. var arg1 = (Unity.Mathematics.float3)p[1];
  1939. var arg2 = (float)p[2];
  1940. result = d(ref arg0, ref arg1, arg2);
  1941. return result;
  1942. }
  1943. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1944. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1945. private delegate float R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0);
  1946. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1947. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1948. {
  1949. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1950. object result = null;
  1951. var arg0 = (Unity.Mathematics.float4)p[0];
  1952. result = d(ref arg0);
  1953. return result;
  1954. }
  1955. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1956. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1957. private delegate float R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.float4 arg0, ref Unity.Mathematics.bool4 arg1);
  1958. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1959. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  1960. {
  1961. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  1962. object result = null;
  1963. var arg0 = (Unity.Mathematics.float4)p[0];
  1964. var arg1 = (Unity.Mathematics.bool4)p[1];
  1965. result = d(ref arg0, ref arg1);
  1966. return result;
  1967. }
  1968. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1969. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1970. private delegate float R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0, ref Unity.Mathematics.float4 arg1);
  1971. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1972. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1973. {
  1974. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1975. object result = null;
  1976. var arg0 = (Unity.Mathematics.float4)p[0];
  1977. var arg1 = (Unity.Mathematics.float4)p[1];
  1978. result = d(ref arg0, ref arg1);
  1979. return result;
  1980. }
  1981. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1982. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1983. private delegate float R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0, ref Unity.Mathematics.float4 arg1, ref Unity.Mathematics.float4 arg2);
  1984. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1985. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1986. {
  1987. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1988. object result = null;
  1989. var arg0 = (Unity.Mathematics.float4)p[0];
  1990. var arg1 = (Unity.Mathematics.float4)p[1];
  1991. var arg2 = (Unity.Mathematics.float4)p[2];
  1992. result = d(ref arg0, ref arg1, ref arg2);
  1993. return result;
  1994. }
  1995. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1996. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1997. private delegate float R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Single_Delegate(ref Unity.Mathematics.float4 arg0, ref Unity.Mathematics.float4 arg1, float arg2);
  1998. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1999. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Single_Delegate(object delegateObj, object[] p)
  2000. {
  2001. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Single_Delegate)delegateObj;
  2002. object result = null;
  2003. var arg0 = (Unity.Mathematics.float4)p[0];
  2004. var arg1 = (Unity.Mathematics.float4)p[1];
  2005. var arg2 = (float)p[2];
  2006. result = d(ref arg0, ref arg1, arg2);
  2007. return result;
  2008. }
  2009. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2010. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2011. private delegate float R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0);
  2012. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2013. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  2014. {
  2015. var d = (R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2016. object result = null;
  2017. var arg0 = (Unity.Mathematics.int2)p[0];
  2018. result = d(ref arg0);
  2019. return result;
  2020. }
  2021. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2022. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2023. private delegate float R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0);
  2024. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2025. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  2026. {
  2027. var d = (R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2028. object result = null;
  2029. var arg0 = (Unity.Mathematics.int3)p[0];
  2030. result = d(ref arg0);
  2031. return result;
  2032. }
  2033. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2034. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2035. private delegate float R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  2036. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2037. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  2038. {
  2039. var d = (R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2040. object result = null;
  2041. var arg0 = (Unity.Mathematics.int4)p[0];
  2042. result = d(ref arg0);
  2043. return result;
  2044. }
  2045. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2046. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2047. private delegate float R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0);
  2048. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2049. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  2050. {
  2051. var d = (R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  2052. object result = null;
  2053. var arg0 = (Unity.Mathematics.uint4)p[0];
  2054. result = d(ref arg0);
  2055. return result;
  2056. }
  2057. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2058. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2059. private delegate float R_Single_P_0_Byte_Delegate(byte arg0);
  2060. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2061. private unsafe static object Call_R_Single_P_0_Byte_Delegate(object delegateObj, object[] p)
  2062. {
  2063. var d = (R_Single_P_0_Byte_Delegate)delegateObj;
  2064. object result = null;
  2065. var arg0 = (byte)p[0];
  2066. result = d(arg0);
  2067. return result;
  2068. }
  2069. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2070. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2071. private delegate float R_Single_P_0_Single_Delegate(float arg0);
  2072. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2073. private unsafe static object Call_R_Single_P_0_Single_Delegate(object delegateObj, object[] p)
  2074. {
  2075. var d = (R_Single_P_0_Single_Delegate)delegateObj;
  2076. object result = null;
  2077. var arg0 = (float)p[0];
  2078. result = d(arg0);
  2079. return result;
  2080. }
  2081. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2082. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2083. private delegate float R_Single_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  2084. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2085. private unsafe static object Call_R_Single_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  2086. {
  2087. var d = (R_Single_P_0_Single_1_Single_Delegate)delegateObj;
  2088. object result = null;
  2089. var arg0 = (float)p[0];
  2090. var arg1 = (float)p[1];
  2091. result = d(arg0, arg1);
  2092. return result;
  2093. }
  2094. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2095. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2096. private delegate float R_Single_P_0_Single_1_Single_2_Single_Delegate(float arg0, float arg1, float arg2);
  2097. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2098. private unsafe static object Call_R_Single_P_0_Single_1_Single_2_Single_Delegate(object delegateObj, object[] p)
  2099. {
  2100. var d = (R_Single_P_0_Single_1_Single_2_Single_Delegate)delegateObj;
  2101. object result = null;
  2102. var arg0 = (float)p[0];
  2103. var arg1 = (float)p[1];
  2104. var arg2 = (float)p[2];
  2105. result = d(arg0, arg1, arg2);
  2106. return result;
  2107. }
  2108. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2109. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2110. private delegate float R_Single_P_0_Single_Ref_Delegate(ref float arg0);
  2111. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2112. private unsafe static object Call_R_Single_P_0_Single_Ref_Delegate(object delegateObj, object[] p)
  2113. {
  2114. var d = (R_Single_P_0_Single_Ref_Delegate)delegateObj;
  2115. object result = null;
  2116. var arg0 = (float)p[0];
  2117. result = d(ref arg0);
  2118. return result;
  2119. }
  2120. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2121. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2122. private delegate float R_Single_P_0_Int32_Delegate(int arg0);
  2123. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2124. private unsafe static object Call_R_Single_P_0_Int32_Delegate(object delegateObj, object[] p)
  2125. {
  2126. var d = (R_Single_P_0_Int32_Delegate)delegateObj;
  2127. object result = null;
  2128. var arg0 = (int)p[0];
  2129. result = d(arg0);
  2130. return result;
  2131. }
  2132. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2133. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2134. private delegate float R_Single_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  2135. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2136. private unsafe static object Call_R_Single_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  2137. {
  2138. var d = (R_Single_P_0_Int32_1_Int32_Delegate)delegateObj;
  2139. object result = null;
  2140. var arg0 = (int)p[0];
  2141. var arg1 = (int)p[1];
  2142. result = d(arg0, arg1);
  2143. return result;
  2144. }
  2145. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2146. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2147. private delegate float R_Single_P_0_Int32_Ref_Delegate(ref int arg0);
  2148. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2149. private unsafe static object Call_R_Single_P_0_Int32_Ref_Delegate(object delegateObj, object[] p)
  2150. {
  2151. var d = (R_Single_P_0_Int32_Ref_Delegate)delegateObj;
  2152. object result = null;
  2153. var arg0 = (int)p[0];
  2154. result = d(ref arg0);
  2155. return result;
  2156. }
  2157. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2158. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2159. private delegate float R_Single_P_0_UInt32_Delegate(uint arg0);
  2160. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2161. private unsafe static object Call_R_Single_P_0_UInt32_Delegate(object delegateObj, object[] p)
  2162. {
  2163. var d = (R_Single_P_0_UInt32_Delegate)delegateObj;
  2164. object result = null;
  2165. var arg0 = (uint)p[0];
  2166. result = d(arg0);
  2167. return result;
  2168. }
  2169. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2170. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2171. private delegate float R_Single_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  2172. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2173. private unsafe static object Call_R_Single_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  2174. {
  2175. var d = (R_Single_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  2176. object result = null;
  2177. var arg0 = (uint)p[0];
  2178. var arg1 = (uint)p[1];
  2179. result = d(arg0, arg1);
  2180. return result;
  2181. }
  2182. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2183. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2184. private delegate float R_Single_P_0_UInt16_Delegate(ushort arg0);
  2185. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2186. private unsafe static object Call_R_Single_P_0_UInt16_Delegate(object delegateObj, object[] p)
  2187. {
  2188. var d = (R_Single_P_0_UInt16_Delegate)delegateObj;
  2189. object result = null;
  2190. var arg0 = (ushort)p[0];
  2191. result = d(arg0);
  2192. return result;
  2193. }
  2194. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2195. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2196. private delegate int R_Int32_P_Delegate();
  2197. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2198. private unsafe static object Call_R_Int32_P_Delegate(object delegateObj, object[] p)
  2199. {
  2200. var d = (R_Int32_P_Delegate)delegateObj;
  2201. object result = null;
  2202. result = d();
  2203. return result;
  2204. }
  2205. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2206. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2207. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate(Burst.Compiler.IL.Tests.ControlFlows.EnumSwitch arg0);
  2208. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2209. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate(object delegateObj, object[] p)
  2210. {
  2211. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate)delegateObj;
  2212. object result = null;
  2213. var arg0 = (Burst.Compiler.IL.Tests.ControlFlows.EnumSwitch)p[0];
  2214. result = d(arg0);
  2215. return result;
  2216. }
  2217. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2218. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2219. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(ref Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer arg0);
  2220. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2221. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(object delegateObj, object[] p)
  2222. {
  2223. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate)delegateObj;
  2224. object result = null;
  2225. var arg0 = (Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer)p[0];
  2226. result = d(ref arg0);
  2227. return result;
  2228. }
  2229. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2230. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2231. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.NotSupported.CharbyValueFunc arg0, int arg1);
  2232. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2233. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2234. {
  2235. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate)delegateObj;
  2236. object result = null;
  2237. var arg0 = (Burst.Compiler.IL.Tests.NotSupported.CharbyValueFunc)p[0];
  2238. var arg1 = (int)p[1];
  2239. result = d(ref arg0, arg1);
  2240. return result;
  2241. }
  2242. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2243. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2244. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed arg0);
  2245. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2246. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate(object delegateObj, object[] p)
  2247. {
  2248. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate)delegateObj;
  2249. object result = null;
  2250. var arg0 = (Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed)p[0];
  2251. result = d(ref arg0);
  2252. return result;
  2253. }
  2254. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2255. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2256. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed arg0, int arg1);
  2257. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2258. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2259. {
  2260. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate)delegateObj;
  2261. object result = null;
  2262. var arg0 = (Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed)p[0];
  2263. var arg1 = (int)p[1];
  2264. result = d(ref arg0, arg1);
  2265. return result;
  2266. }
  2267. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2268. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2269. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate(Burst.Compiler.IL.Tests.TestEnums.MyEnum arg0);
  2270. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2271. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate(object delegateObj, object[] p)
  2272. {
  2273. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate)delegateObj;
  2274. object result = null;
  2275. var arg0 = (Burst.Compiler.IL.Tests.TestEnums.MyEnum)p[0];
  2276. result = d(arg0);
  2277. return result;
  2278. }
  2279. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2280. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2281. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate(Burst.Compiler.IL.Tests.TestEnums.SmallEnum arg0);
  2282. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2283. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate(object delegateObj, object[] p)
  2284. {
  2285. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate)delegateObj;
  2286. object result = null;
  2287. var arg0 = (Burst.Compiler.IL.Tests.TestEnums.SmallEnum)p[0];
  2288. result = d(arg0);
  2289. return result;
  2290. }
  2291. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2292. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2293. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.ExplicitLayoutStructFixedBuffer arg0);
  2294. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2295. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate(object delegateObj, object[] p)
  2296. {
  2297. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate)delegateObj;
  2298. object result = null;
  2299. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.ExplicitLayoutStructFixedBuffer)p[0];
  2300. result = d(ref arg0);
  2301. return result;
  2302. }
  2303. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2304. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2305. private unsafe delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate(Burst.Compiler.IL.Tests.TestStructs.MyCompilerGeneratedButNotReally* arg0);
  2306. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2307. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate(object delegateObj, object[] p)
  2308. {
  2309. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate)delegateObj;
  2310. object result = null;
  2311. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.MyCompilerGeneratedButNotReally*)(IntPtr)p[0];
  2312. result = d(arg0);
  2313. return result;
  2314. }
  2315. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2316. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2317. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SequentialStructWithPaddingAndVectorField arg0);
  2318. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2319. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate(object delegateObj, object[] p)
  2320. {
  2321. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate)delegateObj;
  2322. object result = null;
  2323. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SequentialStructWithPaddingAndVectorField)p[0];
  2324. result = d(ref arg0);
  2325. return result;
  2326. }
  2327. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2328. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2329. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StructWithBlittableTypes arg0);
  2330. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2331. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate(object delegateObj, object[] p)
  2332. {
  2333. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate)delegateObj;
  2334. object result = null;
  2335. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StructWithBlittableTypes)p[0];
  2336. result = d(ref arg0);
  2337. return result;
  2338. }
  2339. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2340. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2341. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypes arg0);
  2342. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2343. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate(object delegateObj, object[] p)
  2344. {
  2345. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate)delegateObj;
  2346. object result = null;
  2347. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypes)p[0];
  2348. result = d(ref arg0);
  2349. return result;
  2350. }
  2351. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2352. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2353. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypesWithMarshalAs arg0);
  2354. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2355. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate(object delegateObj, object[] p)
  2356. {
  2357. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate)delegateObj;
  2358. object result = null;
  2359. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypesWithMarshalAs)p[0];
  2360. result = d(ref arg0);
  2361. return result;
  2362. }
  2363. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2365. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate(Burst.Compiler.IL.Tests.Types.MyEnum arg0);
  2366. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2367. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate(object delegateObj, object[] p)
  2368. {
  2369. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate)delegateObj;
  2370. object result = null;
  2371. var arg0 = (Burst.Compiler.IL.Tests.Types.MyEnum)p[0];
  2372. result = d(arg0);
  2373. return result;
  2374. }
  2375. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2377. private delegate int R_Int32_P_0_System_Guid_Ref_Delegate(ref System.Guid arg0);
  2378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2379. private unsafe static object Call_R_Int32_P_0_System_Guid_Ref_Delegate(object delegateObj, object[] p)
  2380. {
  2381. var d = (R_Int32_P_0_System_Guid_Ref_Delegate)delegateObj;
  2382. object result = null;
  2383. var arg0 = (System.Guid)p[0];
  2384. result = d(ref arg0);
  2385. return result;
  2386. }
  2387. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2389. private delegate int R_Int32_P_0_IntPtr_Delegate(System.IntPtr arg0);
  2390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2391. private unsafe static object Call_R_Int32_P_0_IntPtr_Delegate(object delegateObj, object[] p)
  2392. {
  2393. var d = (R_Int32_P_0_IntPtr_Delegate)delegateObj;
  2394. object result = null;
  2395. var arg0 = (System.IntPtr)p[0];
  2396. result = d(arg0);
  2397. return result;
  2398. }
  2399. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2400. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2401. private delegate int R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0);
  2402. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2403. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  2404. {
  2405. var d = (R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  2406. object result = null;
  2407. var arg0 = (Unity.Mathematics.bool2)p[0];
  2408. result = d(ref arg0);
  2409. return result;
  2410. }
  2411. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2413. private delegate int R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0, ref Unity.Mathematics.bool2 arg1);
  2414. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2415. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  2416. {
  2417. var d = (R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  2418. object result = null;
  2419. var arg0 = (Unity.Mathematics.bool2)p[0];
  2420. var arg1 = (Unity.Mathematics.bool2)p[1];
  2421. result = d(ref arg0, ref arg1);
  2422. return result;
  2423. }
  2424. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2425. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2426. private delegate int R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate(ref Unity.Mathematics.bool2 arg0, bool arg1);
  2427. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2428. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate(object delegateObj, object[] p)
  2429. {
  2430. var d = (R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate)delegateObj;
  2431. object result = null;
  2432. var arg0 = (Unity.Mathematics.bool2)p[0];
  2433. var arg1 = (bool)p[1];
  2434. result = d(ref arg0, arg1);
  2435. return result;
  2436. }
  2437. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2438. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2439. private delegate int R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0);
  2440. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2441. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  2442. {
  2443. var d = (R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  2444. object result = null;
  2445. var arg0 = (Unity.Mathematics.bool3)p[0];
  2446. result = d(ref arg0);
  2447. return result;
  2448. }
  2449. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2450. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2451. private delegate int R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0, ref Unity.Mathematics.bool3 arg1);
  2452. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2453. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  2454. {
  2455. var d = (R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  2456. object result = null;
  2457. var arg0 = (Unity.Mathematics.bool3)p[0];
  2458. var arg1 = (Unity.Mathematics.bool3)p[1];
  2459. result = d(ref arg0, ref arg1);
  2460. return result;
  2461. }
  2462. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2463. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2464. private delegate int R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate(ref Unity.Mathematics.bool3 arg0, bool arg1);
  2465. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2466. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate(object delegateObj, object[] p)
  2467. {
  2468. var d = (R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate)delegateObj;
  2469. object result = null;
  2470. var arg0 = (Unity.Mathematics.bool3)p[0];
  2471. var arg1 = (bool)p[1];
  2472. result = d(ref arg0, arg1);
  2473. return result;
  2474. }
  2475. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2476. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2477. private delegate int R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0);
  2478. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2479. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  2480. {
  2481. var d = (R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  2482. object result = null;
  2483. var arg0 = (Unity.Mathematics.bool4)p[0];
  2484. result = d(ref arg0);
  2485. return result;
  2486. }
  2487. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2488. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2489. private delegate int R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0, ref Unity.Mathematics.bool4 arg1);
  2490. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2491. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  2492. {
  2493. var d = (R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  2494. object result = null;
  2495. var arg0 = (Unity.Mathematics.bool4)p[0];
  2496. var arg1 = (Unity.Mathematics.bool4)p[1];
  2497. result = d(ref arg0, ref arg1);
  2498. return result;
  2499. }
  2500. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2502. private delegate int R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate(ref Unity.Mathematics.bool4 arg0, bool arg1);
  2503. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2504. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate(object delegateObj, object[] p)
  2505. {
  2506. var d = (R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate)delegateObj;
  2507. object result = null;
  2508. var arg0 = (Unity.Mathematics.bool4)p[0];
  2509. var arg1 = (bool)p[1];
  2510. result = d(ref arg0, arg1);
  2511. return result;
  2512. }
  2513. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2514. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2515. private delegate int R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0);
  2516. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2517. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  2518. {
  2519. var d = (R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  2520. object result = null;
  2521. var arg0 = (Unity.Mathematics.float2)p[0];
  2522. result = d(ref arg0);
  2523. return result;
  2524. }
  2525. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2526. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2527. private delegate int R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0, ref Unity.Mathematics.float2 arg1);
  2528. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2529. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  2530. {
  2531. var d = (R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  2532. object result = null;
  2533. var arg0 = (Unity.Mathematics.float2)p[0];
  2534. var arg1 = (Unity.Mathematics.float2)p[1];
  2535. result = d(ref arg0, ref arg1);
  2536. return result;
  2537. }
  2538. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2539. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2540. private delegate int R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate(ref Unity.Mathematics.float2 arg0, float arg1);
  2541. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2542. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate(object delegateObj, object[] p)
  2543. {
  2544. var d = (R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate)delegateObj;
  2545. object result = null;
  2546. var arg0 = (Unity.Mathematics.float2)p[0];
  2547. var arg1 = (float)p[1];
  2548. result = d(ref arg0, arg1);
  2549. return result;
  2550. }
  2551. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2552. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2553. private delegate int R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0);
  2554. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2555. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  2556. {
  2557. var d = (R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  2558. object result = null;
  2559. var arg0 = (Unity.Mathematics.float3)p[0];
  2560. result = d(ref arg0);
  2561. return result;
  2562. }
  2563. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2564. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2565. private delegate int R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0, ref Unity.Mathematics.float3 arg1);
  2566. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2567. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  2568. {
  2569. var d = (R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  2570. object result = null;
  2571. var arg0 = (Unity.Mathematics.float3)p[0];
  2572. var arg1 = (Unity.Mathematics.float3)p[1];
  2573. result = d(ref arg0, ref arg1);
  2574. return result;
  2575. }
  2576. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2577. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2578. private delegate int R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate(ref Unity.Mathematics.float3 arg0, float arg1);
  2579. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2580. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate(object delegateObj, object[] p)
  2581. {
  2582. var d = (R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate)delegateObj;
  2583. object result = null;
  2584. var arg0 = (Unity.Mathematics.float3)p[0];
  2585. var arg1 = (float)p[1];
  2586. result = d(ref arg0, arg1);
  2587. return result;
  2588. }
  2589. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2590. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2591. private delegate int R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0);
  2592. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2593. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  2594. {
  2595. var d = (R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  2596. object result = null;
  2597. var arg0 = (Unity.Mathematics.float4)p[0];
  2598. result = d(ref arg0);
  2599. return result;
  2600. }
  2601. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2602. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2603. private delegate int R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0, ref Unity.Mathematics.float4 arg1);
  2604. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2605. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  2606. {
  2607. var d = (R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  2608. object result = null;
  2609. var arg0 = (Unity.Mathematics.float4)p[0];
  2610. var arg1 = (Unity.Mathematics.float4)p[1];
  2611. result = d(ref arg0, ref arg1);
  2612. return result;
  2613. }
  2614. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2615. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2616. private delegate int R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(ref Unity.Mathematics.float4 arg0, float arg1);
  2617. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2618. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(object delegateObj, object[] p)
  2619. {
  2620. var d = (R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate)delegateObj;
  2621. object result = null;
  2622. var arg0 = (Unity.Mathematics.float4)p[0];
  2623. var arg1 = (float)p[1];
  2624. result = d(ref arg0, arg1);
  2625. return result;
  2626. }
  2627. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2628. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2629. private delegate int R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0);
  2630. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2631. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  2632. {
  2633. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2634. object result = null;
  2635. var arg0 = (Unity.Mathematics.int2)p[0];
  2636. result = d(ref arg0);
  2637. return result;
  2638. }
  2639. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2640. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2641. private delegate int R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0, ref Unity.Mathematics.int2 arg1);
  2642. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2643. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  2644. {
  2645. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2646. object result = null;
  2647. var arg0 = (Unity.Mathematics.int2)p[0];
  2648. var arg1 = (Unity.Mathematics.int2)p[1];
  2649. result = d(ref arg0, ref arg1);
  2650. return result;
  2651. }
  2652. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2653. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2654. private delegate int R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_2_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0, ref Unity.Mathematics.int2 arg1, ref Unity.Mathematics.int2 arg2);
  2655. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2656. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_2_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  2657. {
  2658. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_2_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2659. object result = null;
  2660. var arg0 = (Unity.Mathematics.int2)p[0];
  2661. var arg1 = (Unity.Mathematics.int2)p[1];
  2662. var arg2 = (Unity.Mathematics.int2)p[2];
  2663. result = d(ref arg0, ref arg1, ref arg2);
  2664. return result;
  2665. }
  2666. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2667. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2668. private delegate int R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate(ref Unity.Mathematics.int2 arg0, int arg1);
  2669. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2670. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2671. {
  2672. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate)delegateObj;
  2673. object result = null;
  2674. var arg0 = (Unity.Mathematics.int2)p[0];
  2675. var arg1 = (int)p[1];
  2676. result = d(ref arg0, arg1);
  2677. return result;
  2678. }
  2679. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2680. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2681. private delegate int R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0);
  2682. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2683. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  2684. {
  2685. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2686. object result = null;
  2687. var arg0 = (Unity.Mathematics.int3)p[0];
  2688. result = d(ref arg0);
  2689. return result;
  2690. }
  2691. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2692. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2693. private delegate int R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0, ref Unity.Mathematics.int3 arg1);
  2694. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2695. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  2696. {
  2697. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2698. object result = null;
  2699. var arg0 = (Unity.Mathematics.int3)p[0];
  2700. var arg1 = (Unity.Mathematics.int3)p[1];
  2701. result = d(ref arg0, ref arg1);
  2702. return result;
  2703. }
  2704. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2705. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2706. private delegate int R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_2_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0, ref Unity.Mathematics.int3 arg1, ref Unity.Mathematics.int3 arg2);
  2707. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2708. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_2_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  2709. {
  2710. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_2_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2711. object result = null;
  2712. var arg0 = (Unity.Mathematics.int3)p[0];
  2713. var arg1 = (Unity.Mathematics.int3)p[1];
  2714. var arg2 = (Unity.Mathematics.int3)p[2];
  2715. result = d(ref arg0, ref arg1, ref arg2);
  2716. return result;
  2717. }
  2718. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2719. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2720. private delegate int R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate(ref Unity.Mathematics.int3 arg0, int arg1);
  2721. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2722. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2723. {
  2724. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate)delegateObj;
  2725. object result = null;
  2726. var arg0 = (Unity.Mathematics.int3)p[0];
  2727. var arg1 = (int)p[1];
  2728. result = d(ref arg0, arg1);
  2729. return result;
  2730. }
  2731. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2732. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2733. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  2734. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2735. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  2736. {
  2737. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2738. object result = null;
  2739. var arg0 = (Unity.Mathematics.int4)p[0];
  2740. result = d(ref arg0);
  2741. return result;
  2742. }
  2743. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2744. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2745. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.int4 arg0, ref Unity.Mathematics.bool4 arg1);
  2746. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2747. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  2748. {
  2749. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  2750. object result = null;
  2751. var arg0 = (Unity.Mathematics.int4)p[0];
  2752. var arg1 = (Unity.Mathematics.bool4)p[1];
  2753. result = d(ref arg0, ref arg1);
  2754. return result;
  2755. }
  2756. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2757. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2758. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0, ref Unity.Mathematics.int4 arg1);
  2759. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2760. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  2761. {
  2762. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2763. object result = null;
  2764. var arg0 = (Unity.Mathematics.int4)p[0];
  2765. var arg1 = (Unity.Mathematics.int4)p[1];
  2766. result = d(ref arg0, ref arg1);
  2767. return result;
  2768. }
  2769. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2770. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2771. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_2_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0, ref Unity.Mathematics.int4 arg1, ref Unity.Mathematics.int4 arg2);
  2772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2773. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_2_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  2774. {
  2775. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_2_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2776. object result = null;
  2777. var arg0 = (Unity.Mathematics.int4)p[0];
  2778. var arg1 = (Unity.Mathematics.int4)p[1];
  2779. var arg2 = (Unity.Mathematics.int4)p[2];
  2780. result = d(ref arg0, ref arg1, ref arg2);
  2781. return result;
  2782. }
  2783. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2785. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate(ref Unity.Mathematics.int4 arg0, int arg1);
  2786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2787. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2788. {
  2789. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate)delegateObj;
  2790. object result = null;
  2791. var arg0 = (Unity.Mathematics.int4)p[0];
  2792. var arg1 = (int)p[1];
  2793. result = d(ref arg0, arg1);
  2794. return result;
  2795. }
  2796. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2797. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2798. private delegate int R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate(ref Unity.Mathematics.uint2 arg0);
  2799. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2800. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate(object delegateObj, object[] p)
  2801. {
  2802. var d = (R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate)delegateObj;
  2803. object result = null;
  2804. var arg0 = (Unity.Mathematics.uint2)p[0];
  2805. result = d(ref arg0);
  2806. return result;
  2807. }
  2808. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2809. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2810. private delegate int R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate(ref Unity.Mathematics.uint2 arg0, ref Unity.Mathematics.uint2 arg1);
  2811. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2812. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate(object delegateObj, object[] p)
  2813. {
  2814. var d = (R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate)delegateObj;
  2815. object result = null;
  2816. var arg0 = (Unity.Mathematics.uint2)p[0];
  2817. var arg1 = (Unity.Mathematics.uint2)p[1];
  2818. result = d(ref arg0, ref arg1);
  2819. return result;
  2820. }
  2821. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2822. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2823. private delegate int R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate(ref Unity.Mathematics.uint2 arg0, uint arg1);
  2824. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2825. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate(object delegateObj, object[] p)
  2826. {
  2827. var d = (R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate)delegateObj;
  2828. object result = null;
  2829. var arg0 = (Unity.Mathematics.uint2)p[0];
  2830. var arg1 = (uint)p[1];
  2831. result = d(ref arg0, arg1);
  2832. return result;
  2833. }
  2834. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2835. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2836. private delegate int R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate(ref Unity.Mathematics.uint3 arg0);
  2837. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2838. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate(object delegateObj, object[] p)
  2839. {
  2840. var d = (R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate)delegateObj;
  2841. object result = null;
  2842. var arg0 = (Unity.Mathematics.uint3)p[0];
  2843. result = d(ref arg0);
  2844. return result;
  2845. }
  2846. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2848. private delegate int R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate(ref Unity.Mathematics.uint3 arg0, ref Unity.Mathematics.uint3 arg1);
  2849. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2850. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate(object delegateObj, object[] p)
  2851. {
  2852. var d = (R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate)delegateObj;
  2853. object result = null;
  2854. var arg0 = (Unity.Mathematics.uint3)p[0];
  2855. var arg1 = (Unity.Mathematics.uint3)p[1];
  2856. result = d(ref arg0, ref arg1);
  2857. return result;
  2858. }
  2859. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2860. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2861. private delegate int R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate(ref Unity.Mathematics.uint3 arg0, uint arg1);
  2862. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2863. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate(object delegateObj, object[] p)
  2864. {
  2865. var d = (R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate)delegateObj;
  2866. object result = null;
  2867. var arg0 = (Unity.Mathematics.uint3)p[0];
  2868. var arg1 = (uint)p[1];
  2869. result = d(ref arg0, arg1);
  2870. return result;
  2871. }
  2872. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2873. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2874. private delegate int R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0);
  2875. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2876. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  2877. {
  2878. var d = (R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  2879. object result = null;
  2880. var arg0 = (Unity.Mathematics.uint4)p[0];
  2881. result = d(ref arg0);
  2882. return result;
  2883. }
  2884. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2885. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2886. private delegate int R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0, ref Unity.Mathematics.uint4 arg1);
  2887. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2888. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  2889. {
  2890. var d = (R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  2891. object result = null;
  2892. var arg0 = (Unity.Mathematics.uint4)p[0];
  2893. var arg1 = (Unity.Mathematics.uint4)p[1];
  2894. result = d(ref arg0, ref arg1);
  2895. return result;
  2896. }
  2897. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2898. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2899. private delegate int R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate(ref Unity.Mathematics.uint4 arg0, uint arg1);
  2900. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2901. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate(object delegateObj, object[] p)
  2902. {
  2903. var d = (R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate)delegateObj;
  2904. object result = null;
  2905. var arg0 = (Unity.Mathematics.uint4)p[0];
  2906. var arg1 = (uint)p[1];
  2907. result = d(ref arg0, arg1);
  2908. return result;
  2909. }
  2910. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2911. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2912. private delegate int R_Int32_P_0_Boolean_Delegate(bool arg0);
  2913. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2914. private unsafe static object Call_R_Int32_P_0_Boolean_Delegate(object delegateObj, object[] p)
  2915. {
  2916. var d = (R_Int32_P_0_Boolean_Delegate)delegateObj;
  2917. object result = null;
  2918. var arg0 = (bool)p[0];
  2919. result = d(arg0);
  2920. return result;
  2921. }
  2922. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2923. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2924. private delegate int R_Int32_P_0_Boolean_1_Boolean_Delegate(bool arg0, bool arg1);
  2925. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2926. private unsafe static object Call_R_Int32_P_0_Boolean_1_Boolean_Delegate(object delegateObj, object[] p)
  2927. {
  2928. var d = (R_Int32_P_0_Boolean_1_Boolean_Delegate)delegateObj;
  2929. object result = null;
  2930. var arg0 = (bool)p[0];
  2931. var arg1 = (bool)p[1];
  2932. result = d(arg0, arg1);
  2933. return result;
  2934. }
  2935. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2936. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2937. private delegate int R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate(bool arg0, bool arg1, bool arg2);
  2938. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2939. private unsafe static object Call_R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate(object delegateObj, object[] p)
  2940. {
  2941. var d = (R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate)delegateObj;
  2942. object result = null;
  2943. var arg0 = (bool)p[0];
  2944. var arg1 = (bool)p[1];
  2945. var arg2 = (bool)p[2];
  2946. result = d(arg0, arg1, arg2);
  2947. return result;
  2948. }
  2949. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2950. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2951. private delegate int R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate(bool arg0, bool arg1, bool arg2, bool arg3);
  2952. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2953. private unsafe static object Call_R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate(object delegateObj, object[] p)
  2954. {
  2955. var d = (R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate)delegateObj;
  2956. object result = null;
  2957. var arg0 = (bool)p[0];
  2958. var arg1 = (bool)p[1];
  2959. var arg2 = (bool)p[2];
  2960. var arg3 = (bool)p[3];
  2961. result = d(arg0, arg1, arg2, arg3);
  2962. return result;
  2963. }
  2964. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2965. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2966. private delegate int R_Int32_P_0_Byte_Delegate(byte arg0);
  2967. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2968. private unsafe static object Call_R_Int32_P_0_Byte_Delegate(object delegateObj, object[] p)
  2969. {
  2970. var d = (R_Int32_P_0_Byte_Delegate)delegateObj;
  2971. object result = null;
  2972. var arg0 = (byte)p[0];
  2973. result = d(arg0);
  2974. return result;
  2975. }
  2976. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2977. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2978. private delegate int R_Int32_P_0_Byte_Ref_Delegate(ref byte arg0);
  2979. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2980. private unsafe static object Call_R_Int32_P_0_Byte_Ref_Delegate(object delegateObj, object[] p)
  2981. {
  2982. var d = (R_Int32_P_0_Byte_Ref_Delegate)delegateObj;
  2983. object result = null;
  2984. var arg0 = (byte)p[0];
  2985. result = d(ref arg0);
  2986. return result;
  2987. }
  2988. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2989. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2990. private delegate int R_Int32_P_0_Double_Delegate(double arg0);
  2991. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2992. private unsafe static object Call_R_Int32_P_0_Double_Delegate(object delegateObj, object[] p)
  2993. {
  2994. var d = (R_Int32_P_0_Double_Delegate)delegateObj;
  2995. object result = null;
  2996. var arg0 = (double)p[0];
  2997. result = d(arg0);
  2998. return result;
  2999. }
  3000. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3001. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3002. private delegate int R_Int32_P_0_Single_Delegate(float arg0);
  3003. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3004. private unsafe static object Call_R_Int32_P_0_Single_Delegate(object delegateObj, object[] p)
  3005. {
  3006. var d = (R_Int32_P_0_Single_Delegate)delegateObj;
  3007. object result = null;
  3008. var arg0 = (float)p[0];
  3009. result = d(arg0);
  3010. return result;
  3011. }
  3012. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3013. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3014. private delegate int R_Int32_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  3015. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3016. private unsafe static object Call_R_Int32_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  3017. {
  3018. var d = (R_Int32_P_0_Single_1_Single_Delegate)delegateObj;
  3019. object result = null;
  3020. var arg0 = (float)p[0];
  3021. var arg1 = (float)p[1];
  3022. result = d(arg0, arg1);
  3023. return result;
  3024. }
  3025. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3026. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3027. private delegate int R_Int32_P_0_Int32_Delegate(int arg0);
  3028. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3029. private unsafe static object Call_R_Int32_P_0_Int32_Delegate(object delegateObj, object[] p)
  3030. {
  3031. var d = (R_Int32_P_0_Int32_Delegate)delegateObj;
  3032. object result = null;
  3033. var arg0 = (int)p[0];
  3034. result = d(arg0);
  3035. return result;
  3036. }
  3037. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3038. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3039. private delegate int R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate(int arg0, ref Burst.Compiler.IL.Tests.Functions.Pair arg1);
  3040. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3041. private unsafe static object Call_R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate(object delegateObj, object[] p)
  3042. {
  3043. var d = (R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate)delegateObj;
  3044. object result = null;
  3045. var arg0 = (int)p[0];
  3046. var arg1 = (Burst.Compiler.IL.Tests.Functions.Pair)p[1];
  3047. result = d(arg0, ref arg1);
  3048. return result;
  3049. }
  3050. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3051. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3052. private delegate int R_Int32_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  3053. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3054. private unsafe static object Call_R_Int32_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  3055. {
  3056. var d = (R_Int32_P_0_Int32_1_Int32_Delegate)delegateObj;
  3057. object result = null;
  3058. var arg0 = (int)p[0];
  3059. var arg1 = (int)p[1];
  3060. result = d(arg0, arg1);
  3061. return result;
  3062. }
  3063. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3064. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3065. private delegate int R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate(int arg0, int arg1, int arg2);
  3066. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3067. private unsafe static object Call_R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  3068. {
  3069. var d = (R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate)delegateObj;
  3070. object result = null;
  3071. var arg0 = (int)p[0];
  3072. var arg1 = (int)p[1];
  3073. var arg2 = (int)p[2];
  3074. result = d(arg0, arg1, arg2);
  3075. return result;
  3076. }
  3077. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3078. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3079. private delegate int R_Int32_P_0_Int32_Ref_Delegate(ref int arg0);
  3080. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3081. private unsafe static object Call_R_Int32_P_0_Int32_Ref_Delegate(object delegateObj, object[] p)
  3082. {
  3083. var d = (R_Int32_P_0_Int32_Ref_Delegate)delegateObj;
  3084. object result = null;
  3085. var arg0 = (int)p[0];
  3086. result = d(ref arg0);
  3087. return result;
  3088. }
  3089. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3090. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3091. private delegate int R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate(ref int arg0, int arg1, int arg2);
  3092. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3093. private unsafe static object Call_R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  3094. {
  3095. var d = (R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  3096. object result = null;
  3097. var arg0 = (int)p[0];
  3098. var arg1 = (int)p[1];
  3099. var arg2 = (int)p[2];
  3100. result = d(ref arg0, arg1, arg2);
  3101. return result;
  3102. }
  3103. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3104. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3105. private unsafe delegate int R_Int32_P_0_Int32_Ptr_1_Int32_Delegate(int* arg0, int arg1);
  3106. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3107. private unsafe static object Call_R_Int32_P_0_Int32_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  3108. {
  3109. var d = (R_Int32_P_0_Int32_Ptr_1_Int32_Delegate)delegateObj;
  3110. object result = null;
  3111. var arg0 = (int*)(IntPtr)p[0];
  3112. var arg1 = (int)p[1];
  3113. result = d(arg0, arg1);
  3114. return result;
  3115. }
  3116. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3117. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3118. private delegate int R_Int32_P_0_Int64_Delegate(long arg0);
  3119. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3120. private unsafe static object Call_R_Int32_P_0_Int64_Delegate(object delegateObj, object[] p)
  3121. {
  3122. var d = (R_Int32_P_0_Int64_Delegate)delegateObj;
  3123. object result = null;
  3124. var arg0 = (long)p[0];
  3125. result = d(arg0);
  3126. return result;
  3127. }
  3128. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3129. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3130. private delegate int R_Int32_P_0_SByte_Delegate(sbyte arg0);
  3131. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3132. private unsafe static object Call_R_Int32_P_0_SByte_Delegate(object delegateObj, object[] p)
  3133. {
  3134. var d = (R_Int32_P_0_SByte_Delegate)delegateObj;
  3135. object result = null;
  3136. var arg0 = (sbyte)p[0];
  3137. result = d(arg0);
  3138. return result;
  3139. }
  3140. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3141. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3142. private delegate int R_Int32_P_0_SByte_Ref_Delegate(ref sbyte arg0);
  3143. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3144. private unsafe static object Call_R_Int32_P_0_SByte_Ref_Delegate(object delegateObj, object[] p)
  3145. {
  3146. var d = (R_Int32_P_0_SByte_Ref_Delegate)delegateObj;
  3147. object result = null;
  3148. var arg0 = (sbyte)p[0];
  3149. result = d(ref arg0);
  3150. return result;
  3151. }
  3152. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3153. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3154. private delegate int R_Int32_P_0_Int16_Delegate(short arg0);
  3155. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3156. private unsafe static object Call_R_Int32_P_0_Int16_Delegate(object delegateObj, object[] p)
  3157. {
  3158. var d = (R_Int32_P_0_Int16_Delegate)delegateObj;
  3159. object result = null;
  3160. var arg0 = (short)p[0];
  3161. result = d(arg0);
  3162. return result;
  3163. }
  3164. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3165. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3166. private delegate int R_Int32_P_0_Int16_Ref_Delegate(ref short arg0);
  3167. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3168. private unsafe static object Call_R_Int32_P_0_Int16_Ref_Delegate(object delegateObj, object[] p)
  3169. {
  3170. var d = (R_Int32_P_0_Int16_Ref_Delegate)delegateObj;
  3171. object result = null;
  3172. var arg0 = (short)p[0];
  3173. result = d(ref arg0);
  3174. return result;
  3175. }
  3176. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3177. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3178. private delegate int R_Int32_P_0_UInt32_Delegate(uint arg0);
  3179. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3180. private unsafe static object Call_R_Int32_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3181. {
  3182. var d = (R_Int32_P_0_UInt32_Delegate)delegateObj;
  3183. object result = null;
  3184. var arg0 = (uint)p[0];
  3185. result = d(arg0);
  3186. return result;
  3187. }
  3188. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3189. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3190. private delegate int R_Int32_P_0_UInt32_1_Int32_Delegate(uint arg0, int arg1);
  3191. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3192. private unsafe static object Call_R_Int32_P_0_UInt32_1_Int32_Delegate(object delegateObj, object[] p)
  3193. {
  3194. var d = (R_Int32_P_0_UInt32_1_Int32_Delegate)delegateObj;
  3195. object result = null;
  3196. var arg0 = (uint)p[0];
  3197. var arg1 = (int)p[1];
  3198. result = d(arg0, arg1);
  3199. return result;
  3200. }
  3201. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3202. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3203. private delegate int R_Int32_P_0_UInt64_Delegate(ulong arg0);
  3204. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3205. private unsafe static object Call_R_Int32_P_0_UInt64_Delegate(object delegateObj, object[] p)
  3206. {
  3207. var d = (R_Int32_P_0_UInt64_Delegate)delegateObj;
  3208. object result = null;
  3209. var arg0 = (ulong)p[0];
  3210. result = d(arg0);
  3211. return result;
  3212. }
  3213. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3214. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3215. private delegate int R_Int32_P_0_UInt16_Delegate(ushort arg0);
  3216. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3217. private unsafe static object Call_R_Int32_P_0_UInt16_Delegate(object delegateObj, object[] p)
  3218. {
  3219. var d = (R_Int32_P_0_UInt16_Delegate)delegateObj;
  3220. object result = null;
  3221. var arg0 = (ushort)p[0];
  3222. result = d(arg0);
  3223. return result;
  3224. }
  3225. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3226. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3227. private delegate int R_Int32_P_0_UInt16_Ref_Delegate(ref ushort arg0);
  3228. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3229. private unsafe static object Call_R_Int32_P_0_UInt16_Ref_Delegate(object delegateObj, object[] p)
  3230. {
  3231. var d = (R_Int32_P_0_UInt16_Ref_Delegate)delegateObj;
  3232. object result = null;
  3233. var arg0 = (ushort)p[0];
  3234. result = d(ref arg0);
  3235. return result;
  3236. }
  3237. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3238. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3239. private delegate long R_Int64_P_Delegate();
  3240. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3241. private unsafe static object Call_R_Int64_P_Delegate(object delegateObj, object[] p)
  3242. {
  3243. var d = (R_Int64_P_Delegate)delegateObj;
  3244. object result = null;
  3245. result = d();
  3246. return result;
  3247. }
  3248. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3250. private delegate long R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.PointerArithmetic arg0);
  3251. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3252. private unsafe static object Call_R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate(object delegateObj, object[] p)
  3253. {
  3254. var d = (R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate)delegateObj;
  3255. object result = null;
  3256. var arg0 = (Burst.Compiler.IL.Tests.Pointers.PointerArithmetic)p[0];
  3257. result = d(ref arg0);
  3258. return result;
  3259. }
  3260. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3262. private delegate long R_Int64_P_0_Double_Delegate(double arg0);
  3263. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3264. private unsafe static object Call_R_Int64_P_0_Double_Delegate(object delegateObj, object[] p)
  3265. {
  3266. var d = (R_Int64_P_0_Double_Delegate)delegateObj;
  3267. object result = null;
  3268. var arg0 = (double)p[0];
  3269. result = d(arg0);
  3270. return result;
  3271. }
  3272. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3273. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3274. private delegate long R_Int64_P_0_Int32_Delegate(int arg0);
  3275. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3276. private unsafe static object Call_R_Int64_P_0_Int32_Delegate(object delegateObj, object[] p)
  3277. {
  3278. var d = (R_Int64_P_0_Int32_Delegate)delegateObj;
  3279. object result = null;
  3280. var arg0 = (int)p[0];
  3281. result = d(arg0);
  3282. return result;
  3283. }
  3284. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3285. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3286. private delegate long R_Int64_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  3287. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3288. private unsafe static object Call_R_Int64_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  3289. {
  3290. var d = (R_Int64_P_0_Int32_1_Int32_Delegate)delegateObj;
  3291. object result = null;
  3292. var arg0 = (int)p[0];
  3293. var arg1 = (int)p[1];
  3294. result = d(arg0, arg1);
  3295. return result;
  3296. }
  3297. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3298. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3299. private delegate long R_Int64_P_0_Int64_Delegate(long arg0);
  3300. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3301. private unsafe static object Call_R_Int64_P_0_Int64_Delegate(object delegateObj, object[] p)
  3302. {
  3303. var d = (R_Int64_P_0_Int64_Delegate)delegateObj;
  3304. object result = null;
  3305. var arg0 = (long)p[0];
  3306. result = d(arg0);
  3307. return result;
  3308. }
  3309. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3310. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3311. private delegate long R_Int64_P_0_Int64_1_Int32_Delegate(long arg0, int arg1);
  3312. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3313. private unsafe static object Call_R_Int64_P_0_Int64_1_Int32_Delegate(object delegateObj, object[] p)
  3314. {
  3315. var d = (R_Int64_P_0_Int64_1_Int32_Delegate)delegateObj;
  3316. object result = null;
  3317. var arg0 = (long)p[0];
  3318. var arg1 = (int)p[1];
  3319. result = d(arg0, arg1);
  3320. return result;
  3321. }
  3322. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3323. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3324. private delegate long R_Int64_P_0_Int64_1_Int64_Delegate(long arg0, long arg1);
  3325. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3326. private unsafe static object Call_R_Int64_P_0_Int64_1_Int64_Delegate(object delegateObj, object[] p)
  3327. {
  3328. var d = (R_Int64_P_0_Int64_1_Int64_Delegate)delegateObj;
  3329. object result = null;
  3330. var arg0 = (long)p[0];
  3331. var arg1 = (long)p[1];
  3332. result = d(arg0, arg1);
  3333. return result;
  3334. }
  3335. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3336. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3337. private delegate long R_Int64_P_0_Int64_1_Int64_2_Int64_Delegate(long arg0, long arg1, long arg2);
  3338. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3339. private unsafe static object Call_R_Int64_P_0_Int64_1_Int64_2_Int64_Delegate(object delegateObj, object[] p)
  3340. {
  3341. var d = (R_Int64_P_0_Int64_1_Int64_2_Int64_Delegate)delegateObj;
  3342. object result = null;
  3343. var arg0 = (long)p[0];
  3344. var arg1 = (long)p[1];
  3345. var arg2 = (long)p[2];
  3346. result = d(arg0, arg1, arg2);
  3347. return result;
  3348. }
  3349. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3350. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3351. private delegate long R_Int64_P_0_Int64_Ref_Delegate(ref long arg0);
  3352. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3353. private unsafe static object Call_R_Int64_P_0_Int64_Ref_Delegate(object delegateObj, object[] p)
  3354. {
  3355. var d = (R_Int64_P_0_Int64_Ref_Delegate)delegateObj;
  3356. object result = null;
  3357. var arg0 = (long)p[0];
  3358. result = d(ref arg0);
  3359. return result;
  3360. }
  3361. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3362. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3363. private delegate long R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate(ref long arg0, long arg1, long arg2);
  3364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3365. private unsafe static object Call_R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate(object delegateObj, object[] p)
  3366. {
  3367. var d = (R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate)delegateObj;
  3368. object result = null;
  3369. var arg0 = (long)p[0];
  3370. var arg1 = (long)p[1];
  3371. var arg2 = (long)p[2];
  3372. result = d(ref arg0, arg1, arg2);
  3373. return result;
  3374. }
  3375. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3377. private delegate long R_Int64_P_0_SByte_Delegate(sbyte arg0);
  3378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3379. private unsafe static object Call_R_Int64_P_0_SByte_Delegate(object delegateObj, object[] p)
  3380. {
  3381. var d = (R_Int64_P_0_SByte_Delegate)delegateObj;
  3382. object result = null;
  3383. var arg0 = (sbyte)p[0];
  3384. result = d(arg0);
  3385. return result;
  3386. }
  3387. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3389. private delegate long R_Int64_P_0_Int16_Delegate(short arg0);
  3390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3391. private unsafe static object Call_R_Int64_P_0_Int16_Delegate(object delegateObj, object[] p)
  3392. {
  3393. var d = (R_Int64_P_0_Int16_Delegate)delegateObj;
  3394. object result = null;
  3395. var arg0 = (short)p[0];
  3396. result = d(arg0);
  3397. return result;
  3398. }
  3399. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3400. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3401. private delegate long R_Int64_P_0_UInt32_Delegate(uint arg0);
  3402. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3403. private unsafe static object Call_R_Int64_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3404. {
  3405. var d = (R_Int64_P_0_UInt32_Delegate)delegateObj;
  3406. object result = null;
  3407. var arg0 = (uint)p[0];
  3408. result = d(arg0);
  3409. return result;
  3410. }
  3411. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3413. private delegate long R_Int64_P_0_UInt64_Delegate(ulong arg0);
  3414. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3415. private unsafe static object Call_R_Int64_P_0_UInt64_Delegate(object delegateObj, object[] p)
  3416. {
  3417. var d = (R_Int64_P_0_UInt64_Delegate)delegateObj;
  3418. object result = null;
  3419. var arg0 = (ulong)p[0];
  3420. result = d(arg0);
  3421. return result;
  3422. }
  3423. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3424. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3425. private delegate sbyte R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_Byte_Delegate(ref Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestSByte arg0, byte arg1);
  3426. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3427. private unsafe static object Call_R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_Byte_Delegate(object delegateObj, object[] p)
  3428. {
  3429. var d = (R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_Byte_Delegate)delegateObj;
  3430. object result = null;
  3431. var arg0 = (Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestSByte)p[0];
  3432. var arg1 = (byte)p[1];
  3433. result = d(ref arg0, arg1);
  3434. return result;
  3435. }
  3436. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3437. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3438. private delegate sbyte R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_SByte_Delegate(ref Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestSByte arg0, sbyte arg1);
  3439. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3440. private unsafe static object Call_R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_SByte_Delegate(object delegateObj, object[] p)
  3441. {
  3442. var d = (R_SByte_P_0_Burst_Compiler_IL_Tests_TestFixed_IndexerStructTestSByte_Ref_1_SByte_Delegate)delegateObj;
  3443. object result = null;
  3444. var arg0 = (Burst.Compiler.IL.Tests.TestFixed.IndexerStructTestSByte)p[0];
  3445. var arg1 = (sbyte)p[1];
  3446. result = d(ref arg0, arg1);
  3447. return result;
  3448. }
  3449. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3450. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3451. private delegate sbyte R_SByte_P_0_Int32_Delegate(int arg0);
  3452. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3453. private unsafe static object Call_R_SByte_P_0_Int32_Delegate(object delegateObj, object[] p)
  3454. {
  3455. var d = (R_SByte_P_0_Int32_Delegate)delegateObj;
  3456. object result = null;
  3457. var arg0 = (int)p[0];
  3458. result = d(arg0);
  3459. return result;
  3460. }
  3461. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3462. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3463. private delegate sbyte R_SByte_P_0_SByte_Delegate(sbyte arg0);
  3464. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3465. private unsafe static object Call_R_SByte_P_0_SByte_Delegate(object delegateObj, object[] p)
  3466. {
  3467. var d = (R_SByte_P_0_SByte_Delegate)delegateObj;
  3468. object result = null;
  3469. var arg0 = (sbyte)p[0];
  3470. result = d(arg0);
  3471. return result;
  3472. }
  3473. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3474. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3475. private delegate sbyte R_SByte_P_0_SByte_1_SByte_Delegate(sbyte arg0, sbyte arg1);
  3476. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3477. private unsafe static object Call_R_SByte_P_0_SByte_1_SByte_Delegate(object delegateObj, object[] p)
  3478. {
  3479. var d = (R_SByte_P_0_SByte_1_SByte_Delegate)delegateObj;
  3480. object result = null;
  3481. var arg0 = (sbyte)p[0];
  3482. var arg1 = (sbyte)p[1];
  3483. result = d(arg0, arg1);
  3484. return result;
  3485. }
  3486. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3487. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3488. private delegate sbyte R_SByte_P_0_SByte_1_SByte_2_SByte_Delegate(sbyte arg0, sbyte arg1, sbyte arg2);
  3489. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3490. private unsafe static object Call_R_SByte_P_0_SByte_1_SByte_2_SByte_Delegate(object delegateObj, object[] p)
  3491. {
  3492. var d = (R_SByte_P_0_SByte_1_SByte_2_SByte_Delegate)delegateObj;
  3493. object result = null;
  3494. var arg0 = (sbyte)p[0];
  3495. var arg1 = (sbyte)p[1];
  3496. var arg2 = (sbyte)p[2];
  3497. result = d(arg0, arg1, arg2);
  3498. return result;
  3499. }
  3500. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3502. private delegate sbyte R_SByte_P_0_UInt32_Delegate(uint arg0);
  3503. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3504. private unsafe static object Call_R_SByte_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3505. {
  3506. var d = (R_SByte_P_0_UInt32_Delegate)delegateObj;
  3507. object result = null;
  3508. var arg0 = (uint)p[0];
  3509. result = d(arg0);
  3510. return result;
  3511. }
  3512. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3513. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3514. private delegate short R_Int16_P_0_Int32_Delegate(int arg0);
  3515. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3516. private unsafe static object Call_R_Int16_P_0_Int32_Delegate(object delegateObj, object[] p)
  3517. {
  3518. var d = (R_Int16_P_0_Int32_Delegate)delegateObj;
  3519. object result = null;
  3520. var arg0 = (int)p[0];
  3521. result = d(arg0);
  3522. return result;
  3523. }
  3524. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3525. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3526. private delegate short R_Int16_P_0_Int16_Delegate(short arg0);
  3527. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3528. private unsafe static object Call_R_Int16_P_0_Int16_Delegate(object delegateObj, object[] p)
  3529. {
  3530. var d = (R_Int16_P_0_Int16_Delegate)delegateObj;
  3531. object result = null;
  3532. var arg0 = (short)p[0];
  3533. result = d(arg0);
  3534. return result;
  3535. }
  3536. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3537. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3538. private delegate short R_Int16_P_0_Int16_1_Int16_Delegate(short arg0, short arg1);
  3539. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3540. private unsafe static object Call_R_Int16_P_0_Int16_1_Int16_Delegate(object delegateObj, object[] p)
  3541. {
  3542. var d = (R_Int16_P_0_Int16_1_Int16_Delegate)delegateObj;
  3543. object result = null;
  3544. var arg0 = (short)p[0];
  3545. var arg1 = (short)p[1];
  3546. result = d(arg0, arg1);
  3547. return result;
  3548. }
  3549. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3550. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3551. private delegate short R_Int16_P_0_Int16_1_Int16_2_Int16_Delegate(short arg0, short arg1, short arg2);
  3552. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3553. private unsafe static object Call_R_Int16_P_0_Int16_1_Int16_2_Int16_Delegate(object delegateObj, object[] p)
  3554. {
  3555. var d = (R_Int16_P_0_Int16_1_Int16_2_Int16_Delegate)delegateObj;
  3556. object result = null;
  3557. var arg0 = (short)p[0];
  3558. var arg1 = (short)p[1];
  3559. var arg2 = (short)p[2];
  3560. result = d(arg0, arg1, arg2);
  3561. return result;
  3562. }
  3563. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3564. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3565. private delegate short R_Int16_P_0_UInt32_Delegate(uint arg0);
  3566. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3567. private unsafe static object Call_R_Int16_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3568. {
  3569. var d = (R_Int16_P_0_UInt32_Delegate)delegateObj;
  3570. object result = null;
  3571. var arg0 = (uint)p[0];
  3572. result = d(arg0);
  3573. return result;
  3574. }
  3575. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3576. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3577. private delegate uint R_UInt32_P_Delegate();
  3578. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3579. private unsafe static object Call_R_UInt32_P_Delegate(object delegateObj, object[] p)
  3580. {
  3581. var d = (R_UInt32_P_Delegate)delegateObj;
  3582. object result = null;
  3583. result = d();
  3584. return result;
  3585. }
  3586. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3587. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3588. private delegate uint R_UInt32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0, ref Unity.Mathematics.bool4 arg1);
  3589. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3590. private unsafe static object Call_R_UInt32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  3591. {
  3592. var d = (R_UInt32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  3593. object result = null;
  3594. var arg0 = (Unity.Mathematics.uint4)p[0];
  3595. var arg1 = (Unity.Mathematics.bool4)p[1];
  3596. result = d(ref arg0, ref arg1);
  3597. return result;
  3598. }
  3599. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3600. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3601. private delegate uint R_UInt32_P_0_Int32_Delegate(int arg0);
  3602. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3603. private unsafe static object Call_R_UInt32_P_0_Int32_Delegate(object delegateObj, object[] p)
  3604. {
  3605. var d = (R_UInt32_P_0_Int32_Delegate)delegateObj;
  3606. object result = null;
  3607. var arg0 = (int)p[0];
  3608. result = d(arg0);
  3609. return result;
  3610. }
  3611. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3612. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3613. private delegate uint R_UInt32_P_0_SByte_Delegate(sbyte arg0);
  3614. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3615. private unsafe static object Call_R_UInt32_P_0_SByte_Delegate(object delegateObj, object[] p)
  3616. {
  3617. var d = (R_UInt32_P_0_SByte_Delegate)delegateObj;
  3618. object result = null;
  3619. var arg0 = (sbyte)p[0];
  3620. result = d(arg0);
  3621. return result;
  3622. }
  3623. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3624. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3625. private delegate uint R_UInt32_P_0_UInt32_Delegate(uint arg0);
  3626. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3627. private unsafe static object Call_R_UInt32_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3628. {
  3629. var d = (R_UInt32_P_0_UInt32_Delegate)delegateObj;
  3630. object result = null;
  3631. var arg0 = (uint)p[0];
  3632. result = d(arg0);
  3633. return result;
  3634. }
  3635. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3636. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3637. private delegate uint R_UInt32_P_0_UInt32_1_Int32_Delegate(uint arg0, int arg1);
  3638. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3639. private unsafe static object Call_R_UInt32_P_0_UInt32_1_Int32_Delegate(object delegateObj, object[] p)
  3640. {
  3641. var d = (R_UInt32_P_0_UInt32_1_Int32_Delegate)delegateObj;
  3642. object result = null;
  3643. var arg0 = (uint)p[0];
  3644. var arg1 = (int)p[1];
  3645. result = d(arg0, arg1);
  3646. return result;
  3647. }
  3648. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3649. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3650. private delegate uint R_UInt32_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  3651. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3652. private unsafe static object Call_R_UInt32_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  3653. {
  3654. var d = (R_UInt32_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  3655. object result = null;
  3656. var arg0 = (uint)p[0];
  3657. var arg1 = (uint)p[1];
  3658. result = d(arg0, arg1);
  3659. return result;
  3660. }
  3661. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3662. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3663. private delegate uint R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate(uint arg0, uint arg1, uint arg2);
  3664. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3665. private unsafe static object Call_R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  3666. {
  3667. var d = (R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate)delegateObj;
  3668. object result = null;
  3669. var arg0 = (uint)p[0];
  3670. var arg1 = (uint)p[1];
  3671. var arg2 = (uint)p[2];
  3672. result = d(arg0, arg1, arg2);
  3673. return result;
  3674. }
  3675. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3676. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3677. private delegate uint R_UInt32_P_0_UInt32_Ref_Delegate(ref uint arg0);
  3678. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3679. private unsafe static object Call_R_UInt32_P_0_UInt32_Ref_Delegate(object delegateObj, object[] p)
  3680. {
  3681. var d = (R_UInt32_P_0_UInt32_Ref_Delegate)delegateObj;
  3682. object result = null;
  3683. var arg0 = (uint)p[0];
  3684. result = d(ref arg0);
  3685. return result;
  3686. }
  3687. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3688. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3689. private delegate uint R_UInt32_P_0_UInt64_Delegate(ulong arg0);
  3690. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3691. private unsafe static object Call_R_UInt32_P_0_UInt64_Delegate(object delegateObj, object[] p)
  3692. {
  3693. var d = (R_UInt32_P_0_UInt64_Delegate)delegateObj;
  3694. object result = null;
  3695. var arg0 = (ulong)p[0];
  3696. result = d(arg0);
  3697. return result;
  3698. }
  3699. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3700. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3701. private delegate ulong R_UInt64_P_Delegate();
  3702. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3703. private unsafe static object Call_R_UInt64_P_Delegate(object delegateObj, object[] p)
  3704. {
  3705. var d = (R_UInt64_P_Delegate)delegateObj;
  3706. object result = null;
  3707. result = d();
  3708. return result;
  3709. }
  3710. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3711. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3712. private delegate ulong R_UInt64_P_0_Double_Delegate(double arg0);
  3713. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3714. private unsafe static object Call_R_UInt64_P_0_Double_Delegate(object delegateObj, object[] p)
  3715. {
  3716. var d = (R_UInt64_P_0_Double_Delegate)delegateObj;
  3717. object result = null;
  3718. var arg0 = (double)p[0];
  3719. result = d(arg0);
  3720. return result;
  3721. }
  3722. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3723. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3724. private delegate ulong R_UInt64_P_0_Int32_Delegate(int arg0);
  3725. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3726. private unsafe static object Call_R_UInt64_P_0_Int32_Delegate(object delegateObj, object[] p)
  3727. {
  3728. var d = (R_UInt64_P_0_Int32_Delegate)delegateObj;
  3729. object result = null;
  3730. var arg0 = (int)p[0];
  3731. result = d(arg0);
  3732. return result;
  3733. }
  3734. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3735. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3736. private delegate ulong R_UInt64_P_0_Int16_Delegate(short arg0);
  3737. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3738. private unsafe static object Call_R_UInt64_P_0_Int16_Delegate(object delegateObj, object[] p)
  3739. {
  3740. var d = (R_UInt64_P_0_Int16_Delegate)delegateObj;
  3741. object result = null;
  3742. var arg0 = (short)p[0];
  3743. result = d(arg0);
  3744. return result;
  3745. }
  3746. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3747. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3748. private delegate ulong R_UInt64_P_0_UInt32_Delegate(uint arg0);
  3749. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3750. private unsafe static object Call_R_UInt64_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3751. {
  3752. var d = (R_UInt64_P_0_UInt32_Delegate)delegateObj;
  3753. object result = null;
  3754. var arg0 = (uint)p[0];
  3755. result = d(arg0);
  3756. return result;
  3757. }
  3758. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3759. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3760. private delegate ulong R_UInt64_P_0_UInt64_1_UInt64_Delegate(ulong arg0, ulong arg1);
  3761. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3762. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt64_Delegate(object delegateObj, object[] p)
  3763. {
  3764. var d = (R_UInt64_P_0_UInt64_1_UInt64_Delegate)delegateObj;
  3765. object result = null;
  3766. var arg0 = (ulong)p[0];
  3767. var arg1 = (ulong)p[1];
  3768. result = d(arg0, arg1);
  3769. return result;
  3770. }
  3771. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3773. private delegate ulong R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Delegate(ulong arg0, ulong arg1, ulong arg2);
  3774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3775. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Delegate(object delegateObj, object[] p)
  3776. {
  3777. var d = (R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Delegate)delegateObj;
  3778. object result = null;
  3779. var arg0 = (ulong)p[0];
  3780. var arg1 = (ulong)p[1];
  3781. var arg2 = (ulong)p[2];
  3782. result = d(arg0, arg1, arg2);
  3783. return result;
  3784. }
  3785. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3787. private delegate ulong R_UInt64_P_0_UInt64_Ref_Delegate(ref ulong arg0);
  3788. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3789. private unsafe static object Call_R_UInt64_P_0_UInt64_Ref_Delegate(object delegateObj, object[] p)
  3790. {
  3791. var d = (R_UInt64_P_0_UInt64_Ref_Delegate)delegateObj;
  3792. object result = null;
  3793. var arg0 = (ulong)p[0];
  3794. result = d(ref arg0);
  3795. return result;
  3796. }
  3797. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3799. private unsafe delegate ulong R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(ulong* arg0, ulong arg1, ulong arg2);
  3800. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3801. private unsafe static object Call_R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(object delegateObj, object[] p)
  3802. {
  3803. var d = (R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate)delegateObj;
  3804. object result = null;
  3805. var arg0 = (ulong*)(IntPtr)p[0];
  3806. var arg1 = (ulong)p[1];
  3807. var arg2 = (ulong)p[2];
  3808. result = d(arg0, arg1, arg2);
  3809. return result;
  3810. }
  3811. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3812. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3813. private delegate ushort R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFixed.SomeStruct arg0);
  3814. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3815. private unsafe static object Call_R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate(object delegateObj, object[] p)
  3816. {
  3817. var d = (R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate)delegateObj;
  3818. object result = null;
  3819. var arg0 = (Burst.Compiler.IL.Tests.TestFixed.SomeStruct)p[0];
  3820. result = d(ref arg0);
  3821. return result;
  3822. }
  3823. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3824. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3825. private delegate ushort R_UInt16_P_0_Int32_Delegate(int arg0);
  3826. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3827. private unsafe static object Call_R_UInt16_P_0_Int32_Delegate(object delegateObj, object[] p)
  3828. {
  3829. var d = (R_UInt16_P_0_Int32_Delegate)delegateObj;
  3830. object result = null;
  3831. var arg0 = (int)p[0];
  3832. result = d(arg0);
  3833. return result;
  3834. }
  3835. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3836. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3837. private delegate ushort R_UInt16_P_0_UInt32_Delegate(uint arg0);
  3838. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3839. private unsafe static object Call_R_UInt16_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3840. {
  3841. var d = (R_UInt16_P_0_UInt32_Delegate)delegateObj;
  3842. object result = null;
  3843. var arg0 = (uint)p[0];
  3844. result = d(arg0);
  3845. return result;
  3846. }
  3847. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3848. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3849. private delegate ushort R_UInt16_P_0_UInt16_1_UInt16_Delegate(ushort arg0, ushort arg1);
  3850. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3851. private unsafe static object Call_R_UInt16_P_0_UInt16_1_UInt16_Delegate(object delegateObj, object[] p)
  3852. {
  3853. var d = (R_UInt16_P_0_UInt16_1_UInt16_Delegate)delegateObj;
  3854. object result = null;
  3855. var arg0 = (ushort)p[0];
  3856. var arg1 = (ushort)p[1];
  3857. result = d(arg0, arg1);
  3858. return result;
  3859. }
  3860. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3862. private delegate ushort R_UInt16_P_0_UInt16_1_UInt16_2_UInt16_Delegate(ushort arg0, ushort arg1, ushort arg2);
  3863. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3864. private unsafe static object Call_R_UInt16_P_0_UInt16_1_UInt16_2_UInt16_Delegate(object delegateObj, object[] p)
  3865. {
  3866. var d = (R_UInt16_P_0_UInt16_1_UInt16_2_UInt16_Delegate)delegateObj;
  3867. object result = null;
  3868. var arg0 = (ushort)p[0];
  3869. var arg1 = (ushort)p[1];
  3870. var arg2 = (ushort)p[2];
  3871. result = d(arg0, arg1, arg2);
  3872. return result;
  3873. }
  3874. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3875. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3876. private delegate void R_System_Void_P_Delegate();
  3877. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3878. private unsafe static object Call_R_System_Void_P_Delegate(object delegateObj, object[] p)
  3879. {
  3880. var d = (R_System_Void_P_Delegate)delegateObj;
  3881. object result = null;
  3882. d();
  3883. return result;
  3884. }
  3885. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3886. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3887. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.ContainerOfManyNoAliasFields arg0);
  3888. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3889. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate(object delegateObj, object[] p)
  3890. {
  3891. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate)delegateObj;
  3892. object result = null;
  3893. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.ContainerOfManyNoAliasFields)p[0];
  3894. d(ref arg0);
  3895. return result;
  3896. }
  3897. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3898. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3899. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.DoesAliasWithSubStructPointersStruct arg0);
  3900. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3901. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate(object delegateObj, object[] p)
  3902. {
  3903. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate)delegateObj;
  3904. object result = null;
  3905. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.DoesAliasWithSubStructPointersStruct)p[0];
  3906. d(ref arg0);
  3907. return result;
  3908. }
  3909. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3910. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3911. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.LinkedList arg0);
  3912. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3913. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate(object delegateObj, object[] p)
  3914. {
  3915. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate)delegateObj;
  3916. object result = null;
  3917. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.LinkedList)p[0];
  3918. d(ref arg0);
  3919. return result;
  3920. }
  3921. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3922. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3923. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasField arg0);
  3924. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3925. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate(object delegateObj, object[] p)
  3926. {
  3927. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate)delegateObj;
  3928. object result = null;
  3929. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasField)p[0];
  3930. d(ref arg0);
  3931. return result;
  3932. }
  3933. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3934. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3935. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_1_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasField arg0, ref Burst.Compiler.IL.Tests.Aliasing.NoAliasField arg1);
  3936. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3937. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_1_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate(object delegateObj, object[] p)
  3938. {
  3939. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_1_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate)delegateObj;
  3940. object result = null;
  3941. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasField)p[0];
  3942. var arg1 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasField)p[1];
  3943. d(ref arg0, ref arg1);
  3944. return result;
  3945. }
  3946. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3947. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3948. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasWithContentsStruct arg0);
  3949. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3950. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate(object delegateObj, object[] p)
  3951. {
  3952. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate)delegateObj;
  3953. object result = null;
  3954. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasWithContentsStruct)p[0];
  3955. d(ref arg0);
  3956. return result;
  3957. }
  3958. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3959. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3960. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_StructWithPadding_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.StructWithPadding arg0);
  3961. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3962. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_StructWithPadding_Ref_Delegate(object delegateObj, object[] p)
  3963. {
  3964. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_StructWithPadding_Ref_Delegate)delegateObj;
  3965. object result = null;
  3966. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.StructWithPadding)p[0];
  3967. d(ref arg0);
  3968. return result;
  3969. }
  3970. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3971. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3972. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.Union arg0);
  3973. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3974. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate(object delegateObj, object[] p)
  3975. {
  3976. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate)delegateObj;
  3977. object result = null;
  3978. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.Union)p[0];
  3979. d(ref arg0);
  3980. return result;
  3981. }
  3982. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3983. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3984. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(ref Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer arg0);
  3985. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3986. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(object delegateObj, object[] p)
  3987. {
  3988. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate)delegateObj;
  3989. object result = null;
  3990. var arg0 = (Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer)p[0];
  3991. d(ref arg0);
  3992. return result;
  3993. }
  3994. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3995. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3996. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.Fixed4096 arg0);
  3997. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3998. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(object delegateObj, object[] p)
  3999. {
  4000. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate)delegateObj;
  4001. object result = null;
  4002. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[0];
  4003. d(ref arg0);
  4004. return result;
  4005. }
  4006. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4007. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4008. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.Fixed4096 arg0, ref Burst.Compiler.IL.Tests.TestStructs.Fixed4096 arg1);
  4009. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4010. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(object delegateObj, object[] p)
  4011. {
  4012. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate)delegateObj;
  4013. object result = null;
  4014. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[0];
  4015. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[1];
  4016. d(ref arg0, ref arg1);
  4017. return result;
  4018. }
  4019. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4020. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4021. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096 arg0, ref Burst.Compiler.IL.Tests.TestStructs.Sized4096 arg1);
  4022. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4023. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate(object delegateObj, object[] p)
  4024. {
  4025. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate)delegateObj;
  4026. object result = null;
  4027. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096)p[0];
  4028. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[1];
  4029. d(ref arg0, ref arg1);
  4030. return result;
  4031. }
  4032. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4033. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4034. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_2_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096 arg0, ref Burst.Compiler.IL.Tests.TestStructs.Sized4096 arg1, ref Burst.Compiler.IL.Tests.TestStructs.Sized4096 arg2);
  4035. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4036. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_2_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate(object delegateObj, object[] p)
  4037. {
  4038. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_2_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate)delegateObj;
  4039. object result = null;
  4040. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096)p[0];
  4041. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[1];
  4042. var arg2 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[2];
  4043. d(ref arg0, ref arg1, ref arg2);
  4044. return result;
  4045. }
  4046. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4047. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4048. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_PointersInStruct_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.PointersInStruct arg0, ref Burst.Compiler.IL.Tests.TestStructs.Fixed4096 arg1);
  4049. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4050. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_PointersInStruct_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(object delegateObj, object[] p)
  4051. {
  4052. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_PointersInStruct_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate)delegateObj;
  4053. object result = null;
  4054. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.PointersInStruct)p[0];
  4055. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[1];
  4056. d(ref arg0, ref arg1);
  4057. return result;
  4058. }
  4059. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4060. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4061. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.Sized4096 arg0, ref Burst.Compiler.IL.Tests.TestStructs.Sized4096 arg1);
  4062. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4063. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate(object delegateObj, object[] p)
  4064. {
  4065. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate)delegateObj;
  4066. object result = null;
  4067. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[0];
  4068. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[1];
  4069. d(ref arg0, ref arg1);
  4070. return result;
  4071. }
  4072. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4073. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4074. private unsafe delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate(Burst.Compiler.IL.Tests.TestStructs.UninitFieldsAreZero* arg0);
  4075. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4076. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate(object delegateObj, object[] p)
  4077. {
  4078. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate)delegateObj;
  4079. object result = null;
  4080. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.UninitFieldsAreZero*)(IntPtr)p[0];
  4081. d(arg0);
  4082. return result;
  4083. }
  4084. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4085. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4086. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate(Unity.Mathematics.float2x2* arg0);
  4087. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4088. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate(object delegateObj, object[] p)
  4089. {
  4090. var d = (R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate)delegateObj;
  4091. object result = null;
  4092. var arg0 = (Unity.Mathematics.float2x2*)(IntPtr)p[0];
  4093. d(arg0);
  4094. return result;
  4095. }
  4096. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4097. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4098. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate(Unity.Mathematics.float3x3* arg0);
  4099. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4100. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate(object delegateObj, object[] p)
  4101. {
  4102. var d = (R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate)delegateObj;
  4103. object result = null;
  4104. var arg0 = (Unity.Mathematics.float3x3*)(IntPtr)p[0];
  4105. d(arg0);
  4106. return result;
  4107. }
  4108. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4109. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4110. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate(Unity.Mathematics.float4x4* arg0);
  4111. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4112. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate(object delegateObj, object[] p)
  4113. {
  4114. var d = (R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate)delegateObj;
  4115. object result = null;
  4116. var arg0 = (Unity.Mathematics.float4x4*)(IntPtr)p[0];
  4117. d(arg0);
  4118. return result;
  4119. }
  4120. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4121. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4122. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate(Unity.Mathematics.int2* arg0, ushort arg1);
  4123. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4124. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate(object delegateObj, object[] p)
  4125. {
  4126. var d = (R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate)delegateObj;
  4127. object result = null;
  4128. var arg0 = (Unity.Mathematics.int2*)(IntPtr)p[0];
  4129. var arg1 = (ushort)p[1];
  4130. d(arg0, arg1);
  4131. return result;
  4132. }
  4133. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4134. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4135. private delegate void R_System_Void_P_0_Int32_Delegate(int arg0);
  4136. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4137. private unsafe static object Call_R_System_Void_P_0_Int32_Delegate(object delegateObj, object[] p)
  4138. {
  4139. var d = (R_System_Void_P_0_Int32_Delegate)delegateObj;
  4140. object result = null;
  4141. var arg0 = (int)p[0];
  4142. d(arg0);
  4143. return result;
  4144. }
  4145. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4146. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4147. private delegate void R_System_Void_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  4148. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4149. private unsafe static object Call_R_System_Void_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  4150. {
  4151. var d = (R_System_Void_P_0_Int32_1_Int32_Delegate)delegateObj;
  4152. object result = null;
  4153. var arg0 = (int)p[0];
  4154. var arg1 = (int)p[1];
  4155. d(arg0, arg1);
  4156. return result;
  4157. }
  4158. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4159. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4160. private delegate void R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate(ref int arg0, ref float arg1);
  4161. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4162. private unsafe static object Call_R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate(object delegateObj, object[] p)
  4163. {
  4164. var d = (R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate)delegateObj;
  4165. object result = null;
  4166. var arg0 = (int)p[0];
  4167. var arg1 = (float)p[1];
  4168. d(ref arg0, ref arg1);
  4169. return result;
  4170. }
  4171. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4172. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4173. private delegate void R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate(ref int arg0, ref int arg1);
  4174. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4175. private unsafe static object Call_R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate(object delegateObj, object[] p)
  4176. {
  4177. var d = (R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate)delegateObj;
  4178. object result = null;
  4179. var arg0 = (int)p[0];
  4180. var arg1 = (int)p[1];
  4181. d(ref arg0, ref arg1);
  4182. return result;
  4183. }
  4184. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4185. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4186. private delegate void R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate(ref int arg0, ref int arg1, ref int arg2);
  4187. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4188. private unsafe static object Call_R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate(object delegateObj, object[] p)
  4189. {
  4190. var d = (R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate)delegateObj;
  4191. object result = null;
  4192. var arg0 = (int)p[0];
  4193. var arg1 = (int)p[1];
  4194. var arg2 = (int)p[2];
  4195. d(ref arg0, ref arg1, ref arg2);
  4196. return result;
  4197. }
  4198. #if BURST_TESTS_ONLY
  4199. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4200. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4201. private delegate Burst.Compiler.IL.Tests.ABI.BigExplicitLayoutStruct R_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_1_Int32_Delegate(Burst.Compiler.IL.Tests.ABI.BigExplicitLayoutStruct arg0, int arg1);
  4202. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4203. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_1_Int32_Delegate(object delegateObj, object[] p)
  4204. {
  4205. var d = (R_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_1_Int32_Delegate)delegateObj;
  4206. object result = null;
  4207. var arg0 = (Burst.Compiler.IL.Tests.ABI.BigExplicitLayoutStruct)p[0];
  4208. var arg1 = (int)p[1];
  4209. result = d(arg0, arg1);
  4210. return result;
  4211. }
  4212. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4213. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4214. private delegate Burst.Compiler.IL.Tests.ABI.BigSSEStruct R_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate(Burst.Compiler.IL.Tests.ABI.BigSSEStruct arg0);
  4215. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4216. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate(object delegateObj, object[] p)
  4217. {
  4218. var d = (R_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate)delegateObj;
  4219. object result = null;
  4220. var arg0 = (Burst.Compiler.IL.Tests.ABI.BigSSEStruct)p[0];
  4221. result = d(arg0);
  4222. return result;
  4223. }
  4224. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4225. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4226. private delegate Burst.Compiler.IL.Tests.ABI.BigStruct R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate();
  4227. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4228. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate(object delegateObj, object[] p)
  4229. {
  4230. var d = (R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate)delegateObj;
  4231. object result = null;
  4232. result = d();
  4233. return result;
  4234. }
  4235. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4236. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4237. private delegate Burst.Compiler.IL.Tests.ABI.EmptyStruct R_Burst_Compiler_IL_Tests_ABI_EmptyStruct_P_0_Burst_Compiler_IL_Tests_ABI_EmptyStruct_Delegate(Burst.Compiler.IL.Tests.ABI.EmptyStruct arg0);
  4238. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4239. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_EmptyStruct_P_0_Burst_Compiler_IL_Tests_ABI_EmptyStruct_Delegate(object delegateObj, object[] p)
  4240. {
  4241. var d = (R_Burst_Compiler_IL_Tests_ABI_EmptyStruct_P_0_Burst_Compiler_IL_Tests_ABI_EmptyStruct_Delegate)delegateObj;
  4242. object result = null;
  4243. var arg0 = (Burst.Compiler.IL.Tests.ABI.EmptyStruct)p[0];
  4244. result = d(arg0);
  4245. return result;
  4246. }
  4247. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4248. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4249. private delegate Burst.Compiler.IL.Tests.ABI.ExplicitButAligned R_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_P_0_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_Delegate(Burst.Compiler.IL.Tests.ABI.ExplicitButAligned arg0);
  4250. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4251. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_P_0_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_Delegate(object delegateObj, object[] p)
  4252. {
  4253. var d = (R_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_P_0_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_Delegate)delegateObj;
  4254. object result = null;
  4255. var arg0 = (Burst.Compiler.IL.Tests.ABI.ExplicitButAligned)p[0];
  4256. result = d(arg0);
  4257. return result;
  4258. }
  4259. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4260. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4261. private delegate Burst.Compiler.IL.Tests.ABI.HandleStruct R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate(Burst.Compiler.IL.Tests.ABI.HandleStruct arg0);
  4262. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4263. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate(object delegateObj, object[] p)
  4264. {
  4265. var d = (R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate)delegateObj;
  4266. object result = null;
  4267. var arg0 = (Burst.Compiler.IL.Tests.ABI.HandleStruct)p[0];
  4268. result = d(arg0);
  4269. return result;
  4270. }
  4271. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4272. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4273. private delegate Burst.Compiler.IL.Tests.ABI.HandleStruct R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_1_Int32_Delegate(Burst.Compiler.IL.Tests.ABI.HandleStruct arg0, int arg1);
  4274. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4275. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_1_Int32_Delegate(object delegateObj, object[] p)
  4276. {
  4277. var d = (R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_1_Int32_Delegate)delegateObj;
  4278. object result = null;
  4279. var arg0 = (Burst.Compiler.IL.Tests.ABI.HandleStruct)p[0];
  4280. var arg1 = (int)p[1];
  4281. result = d(arg0, arg1);
  4282. return result;
  4283. }
  4284. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4285. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4286. private delegate Burst.Compiler.IL.Tests.ABI.IIF R_Burst_Compiler_IL_Tests_ABI_IIF_P_0_Burst_Compiler_IL_Tests_ABI_IIF_Delegate(Burst.Compiler.IL.Tests.ABI.IIF arg0);
  4287. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4288. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_IIF_P_0_Burst_Compiler_IL_Tests_ABI_IIF_Delegate(object delegateObj, object[] p)
  4289. {
  4290. var d = (R_Burst_Compiler_IL_Tests_ABI_IIF_P_0_Burst_Compiler_IL_Tests_ABI_IIF_Delegate)delegateObj;
  4291. object result = null;
  4292. var arg0 = (Burst.Compiler.IL.Tests.ABI.IIF)p[0];
  4293. result = d(arg0);
  4294. return result;
  4295. }
  4296. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4297. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4298. private delegate Burst.Compiler.IL.Tests.ABI.IntInStruct R_Burst_Compiler_IL_Tests_ABI_IntInStruct_P_0_Burst_Compiler_IL_Tests_ABI_IntInStruct_Delegate(Burst.Compiler.IL.Tests.ABI.IntInStruct arg0);
  4299. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4300. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_IntInStruct_P_0_Burst_Compiler_IL_Tests_ABI_IntInStruct_Delegate(object delegateObj, object[] p)
  4301. {
  4302. var d = (R_Burst_Compiler_IL_Tests_ABI_IntInStruct_P_0_Burst_Compiler_IL_Tests_ABI_IntInStruct_Delegate)delegateObj;
  4303. object result = null;
  4304. var arg0 = (Burst.Compiler.IL.Tests.ABI.IntInStruct)p[0];
  4305. result = d(arg0);
  4306. return result;
  4307. }
  4308. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4309. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4310. private delegate Burst.Compiler.IL.Tests.ABI.KindaBig R_Burst_Compiler_IL_Tests_ABI_KindaBig_P_0_Burst_Compiler_IL_Tests_ABI_KindaBig_Delegate(Burst.Compiler.IL.Tests.ABI.KindaBig arg0);
  4311. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4312. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_KindaBig_P_0_Burst_Compiler_IL_Tests_ABI_KindaBig_Delegate(object delegateObj, object[] p)
  4313. {
  4314. var d = (R_Burst_Compiler_IL_Tests_ABI_KindaBig_P_0_Burst_Compiler_IL_Tests_ABI_KindaBig_Delegate)delegateObj;
  4315. object result = null;
  4316. var arg0 = (Burst.Compiler.IL.Tests.ABI.KindaBig)p[0];
  4317. result = d(arg0);
  4318. return result;
  4319. }
  4320. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4321. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4322. private delegate Burst.Compiler.IL.Tests.ABI.LongInStruct R_Burst_Compiler_IL_Tests_ABI_LongInStruct_P_0_Burst_Compiler_IL_Tests_ABI_LongInStruct_Delegate(Burst.Compiler.IL.Tests.ABI.LongInStruct arg0);
  4323. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4324. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_LongInStruct_P_0_Burst_Compiler_IL_Tests_ABI_LongInStruct_Delegate(object delegateObj, object[] p)
  4325. {
  4326. var d = (R_Burst_Compiler_IL_Tests_ABI_LongInStruct_P_0_Burst_Compiler_IL_Tests_ABI_LongInStruct_Delegate)delegateObj;
  4327. object result = null;
  4328. var arg0 = (Burst.Compiler.IL.Tests.ABI.LongInStruct)p[0];
  4329. result = d(arg0);
  4330. return result;
  4331. }
  4332. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4333. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4334. private delegate Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.BigSSEStruct> R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate(Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.BigSSEStruct> arg0);
  4335. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4336. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate(object delegateObj, object[] p)
  4337. {
  4338. var d = (R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate)delegateObj;
  4339. object result = null;
  4340. var arg0 = (Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.BigSSEStruct>)p[0];
  4341. result = d(arg0);
  4342. return result;
  4343. }
  4344. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4345. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4346. private delegate Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.HandleStruct> R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate(Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.HandleStruct> arg0);
  4347. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4348. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate(object delegateObj, object[] p)
  4349. {
  4350. var d = (R_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleGenericStruct1_G0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate)delegateObj;
  4351. object result = null;
  4352. var arg0 = (Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.HandleStruct>)p[0];
  4353. result = d(arg0);
  4354. return result;
  4355. }
  4356. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4357. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4358. private delegate Burst.Compiler.IL.Tests.ABI.NestedHandleStruct R_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_Delegate(Burst.Compiler.IL.Tests.ABI.NestedHandleStruct arg0);
  4359. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4360. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_Delegate(object delegateObj, object[] p)
  4361. {
  4362. var d = (R_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_Delegate)delegateObj;
  4363. object result = null;
  4364. var arg0 = (Burst.Compiler.IL.Tests.ABI.NestedHandleStruct)p[0];
  4365. result = d(arg0);
  4366. return result;
  4367. }
  4368. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4369. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4370. private delegate Burst.Compiler.IL.Tests.ABI.OverlappingFieldsStruct R_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_P_0_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_Delegate(Burst.Compiler.IL.Tests.ABI.OverlappingFieldsStruct arg0);
  4371. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4372. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_P_0_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_Delegate(object delegateObj, object[] p)
  4373. {
  4374. var d = (R_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_P_0_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_Delegate)delegateObj;
  4375. object result = null;
  4376. var arg0 = (Burst.Compiler.IL.Tests.ABI.OverlappingFieldsStruct)p[0];
  4377. result = d(arg0);
  4378. return result;
  4379. }
  4380. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4381. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4382. private delegate Burst.Compiler.IL.Tests.ABI.SizePaddedBig R_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_1_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_Delegate(Burst.Compiler.IL.Tests.ABI.SizePaddedBig arg0, Burst.Compiler.IL.Tests.ABI.SizePaddedBig arg1);
  4383. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4384. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_1_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_Delegate(object delegateObj, object[] p)
  4385. {
  4386. var d = (R_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_1_Burst_Compiler_IL_Tests_ABI_SizePaddedBig_Delegate)delegateObj;
  4387. object result = null;
  4388. var arg0 = (Burst.Compiler.IL.Tests.ABI.SizePaddedBig)p[0];
  4389. var arg1 = (Burst.Compiler.IL.Tests.ABI.SizePaddedBig)p[1];
  4390. result = d(arg0, arg1);
  4391. return result;
  4392. }
  4393. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4394. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4395. private delegate Burst.Compiler.IL.Tests.ABI.SizePaddedSmall R_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_1_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_Delegate(Burst.Compiler.IL.Tests.ABI.SizePaddedSmall arg0, Burst.Compiler.IL.Tests.ABI.SizePaddedSmall arg1);
  4396. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4397. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_1_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_Delegate(object delegateObj, object[] p)
  4398. {
  4399. var d = (R_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_P_0_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_1_Burst_Compiler_IL_Tests_ABI_SizePaddedSmall_Delegate)delegateObj;
  4400. object result = null;
  4401. var arg0 = (Burst.Compiler.IL.Tests.ABI.SizePaddedSmall)p[0];
  4402. var arg1 = (Burst.Compiler.IL.Tests.ABI.SizePaddedSmall)p[1];
  4403. result = d(arg0, arg1);
  4404. return result;
  4405. }
  4406. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4407. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4408. private delegate Burst.Compiler.IL.Tests.ABI.SmallSseUpStruct R_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_P_0_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_Delegate(Burst.Compiler.IL.Tests.ABI.SmallSseUpStruct arg0);
  4409. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4410. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_P_0_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_Delegate(object delegateObj, object[] p)
  4411. {
  4412. var d = (R_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_P_0_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_Delegate)delegateObj;
  4413. object result = null;
  4414. var arg0 = (Burst.Compiler.IL.Tests.ABI.SmallSseUpStruct)p[0];
  4415. result = d(arg0);
  4416. return result;
  4417. }
  4418. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4419. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4420. private delegate Burst.Compiler.IL.Tests.ABI.SmallStruct R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate();
  4421. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4422. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate(object delegateObj, object[] p)
  4423. {
  4424. var d = (R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate)delegateObj;
  4425. object result = null;
  4426. result = d();
  4427. return result;
  4428. }
  4429. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4430. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4431. private delegate Burst.Compiler.IL.Tests.ABI.TypedHandleStruct R_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_Delegate(Burst.Compiler.IL.Tests.ABI.TypedHandleStruct arg0);
  4432. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4433. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_Delegate(object delegateObj, object[] p)
  4434. {
  4435. var d = (R_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_Delegate)delegateObj;
  4436. object result = null;
  4437. var arg0 = (Burst.Compiler.IL.Tests.ABI.TypedHandleStruct)p[0];
  4438. result = d(arg0);
  4439. return result;
  4440. }
  4441. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4442. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4443. private delegate Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate();
  4444. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4445. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate(object delegateObj, object[] p)
  4446. {
  4447. var d = (R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate)delegateObj;
  4448. object result = null;
  4449. result = d();
  4450. return result;
  4451. }
  4452. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4453. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4454. private delegate Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_0_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_Delegate(Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct arg0);
  4455. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4456. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_0_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_Delegate(object delegateObj, object[] p)
  4457. {
  4458. var d = (R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_0_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_Delegate)delegateObj;
  4459. object result = null;
  4460. var arg0 = (Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct)p[0];
  4461. result = d(arg0);
  4462. return result;
  4463. }
  4464. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4465. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4466. private delegate Burst.Compiler.IL.Tests.ABI.UnalignedSmallStructWithPadding R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate();
  4467. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4468. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate(object delegateObj, object[] p)
  4469. {
  4470. var d = (R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate)delegateObj;
  4471. object result = null;
  4472. result = d();
  4473. return result;
  4474. }
  4475. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4476. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4477. private delegate ref Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate();
  4478. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4479. private unsafe static object Call_R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate(object delegateObj, object[] p)
  4480. {
  4481. var d = (R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate)delegateObj;
  4482. object result = null;
  4483. result = d();
  4484. return result;
  4485. }
  4486. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4487. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4488. private delegate System.IntPtr R_IntPtr_P_0_UInt32_Delegate(uint arg0);
  4489. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4490. private unsafe static object Call_R_IntPtr_P_0_UInt32_Delegate(object delegateObj, object[] p)
  4491. {
  4492. var d = (R_IntPtr_P_0_UInt32_Delegate)delegateObj;
  4493. object result = null;
  4494. var arg0 = (uint)p[0];
  4495. result = d(arg0);
  4496. return result;
  4497. }
  4498. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4499. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4500. private delegate System.UIntPtr R_UIntPtr_P_0_Int32_Delegate(int arg0);
  4501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4502. private unsafe static object Call_R_UIntPtr_P_0_Int32_Delegate(object delegateObj, object[] p)
  4503. {
  4504. var d = (R_UIntPtr_P_0_Int32_Delegate)delegateObj;
  4505. object result = null;
  4506. var arg0 = (int)p[0];
  4507. result = d(arg0);
  4508. return result;
  4509. }
  4510. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4511. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4512. private delegate ref System.ValueTuple<int,int> R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate();
  4513. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4514. private unsafe static object Call_R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate(object delegateObj, object[] p)
  4515. {
  4516. var d = (R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate)delegateObj;
  4517. object result = null;
  4518. result = d();
  4519. return result;
  4520. }
  4521. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4522. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4523. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat arg0);
  4524. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4525. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(object delegateObj, object[] p)
  4526. {
  4527. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate)delegateObj;
  4528. object result = null;
  4529. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[0];
  4530. result = d(ref arg0);
  4531. return result;
  4532. }
  4533. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4534. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4535. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.DefaultFunc arg0);
  4536. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4537. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate(object delegateObj, object[] p)
  4538. {
  4539. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate)delegateObj;
  4540. object result = null;
  4541. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.DefaultFunc)p[0];
  4542. result = d(ref arg0);
  4543. return result;
  4544. }
  4545. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4546. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4547. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.NullFunc arg0);
  4548. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4549. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate(object delegateObj, object[] p)
  4550. {
  4551. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate)delegateObj;
  4552. object result = null;
  4553. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.NullFunc)p[0];
  4554. result = d(ref arg0);
  4555. return result;
  4556. }
  4557. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4558. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4559. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SomeStruct arg0);
  4560. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4561. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(object delegateObj, object[] p)
  4562. {
  4563. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate)delegateObj;
  4564. object result = null;
  4565. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SomeStruct)p[0];
  4566. result = d(ref arg0);
  4567. return result;
  4568. }
  4569. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4570. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4571. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate(ref UnityBenchShared.SphereCullingAOSJob arg0);
  4572. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4573. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate(object delegateObj, object[] p)
  4574. {
  4575. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate)delegateObj;
  4576. object result = null;
  4577. var arg0 = (UnityBenchShared.SphereCullingAOSJob)p[0];
  4578. result = d(ref arg0);
  4579. return result;
  4580. }
  4581. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4582. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4583. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate(ref UnityBenchShared.SphereCullingChunkFixedSOAJob arg0);
  4584. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4585. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate(object delegateObj, object[] p)
  4586. {
  4587. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate)delegateObj;
  4588. object result = null;
  4589. var arg0 = (UnityBenchShared.SphereCullingChunkFixedSOAJob)p[0];
  4590. result = d(ref arg0);
  4591. return result;
  4592. }
  4593. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4594. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4595. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate(ref UnityBenchShared.SphereCullingChunkSOAJob arg0);
  4596. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4597. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate(object delegateObj, object[] p)
  4598. {
  4599. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate)delegateObj;
  4600. object result = null;
  4601. var arg0 = (UnityBenchShared.SphereCullingChunkSOAJob)p[0];
  4602. result = d(ref arg0);
  4603. return result;
  4604. }
  4605. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4606. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4607. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate(ref UnityBenchShared.SphereCullingFloat4AOSJob arg0);
  4608. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4609. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate(object delegateObj, object[] p)
  4610. {
  4611. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate)delegateObj;
  4612. object result = null;
  4613. var arg0 = (UnityBenchShared.SphereCullingFloat4AOSJob)p[0];
  4614. result = d(ref arg0);
  4615. return result;
  4616. }
  4617. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4618. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4619. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate(ref UnityBenchShared.SphereCullingSOAJob arg0);
  4620. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4621. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate(object delegateObj, object[] p)
  4622. {
  4623. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate)delegateObj;
  4624. object result = null;
  4625. var arg0 = (UnityBenchShared.SphereCullingSOAJob)p[0];
  4626. result = d(ref arg0);
  4627. return result;
  4628. }
  4629. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4630. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4631. private delegate bool R_Boolean_P_0_Byte_Delegate(byte arg0);
  4632. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4633. private unsafe static object Call_R_Boolean_P_0_Byte_Delegate(object delegateObj, object[] p)
  4634. {
  4635. var d = (R_Boolean_P_0_Byte_Delegate)delegateObj;
  4636. object result = null;
  4637. var arg0 = (byte)p[0];
  4638. result = d(arg0);
  4639. return result;
  4640. }
  4641. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4642. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4643. private delegate bool R_Boolean_P_0_Int32_Ref_Delegate(ref int arg0);
  4644. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4645. private unsafe static object Call_R_Boolean_P_0_Int32_Ref_Delegate(object delegateObj, object[] p)
  4646. {
  4647. var d = (R_Boolean_P_0_Int32_Ref_Delegate)delegateObj;
  4648. object result = null;
  4649. var arg0 = (int)p[0];
  4650. result = d(ref arg0);
  4651. return result;
  4652. }
  4653. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4654. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4655. private delegate bool R_Boolean_P_0_Int64_Delegate(long arg0);
  4656. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4657. private unsafe static object Call_R_Boolean_P_0_Int64_Delegate(object delegateObj, object[] p)
  4658. {
  4659. var d = (R_Boolean_P_0_Int64_Delegate)delegateObj;
  4660. object result = null;
  4661. var arg0 = (long)p[0];
  4662. result = d(arg0);
  4663. return result;
  4664. }
  4665. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4666. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4667. private delegate bool R_Boolean_P_0_SByte_Delegate(sbyte arg0);
  4668. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4669. private unsafe static object Call_R_Boolean_P_0_SByte_Delegate(object delegateObj, object[] p)
  4670. {
  4671. var d = (R_Boolean_P_0_SByte_Delegate)delegateObj;
  4672. object result = null;
  4673. var arg0 = (sbyte)p[0];
  4674. result = d(arg0);
  4675. return result;
  4676. }
  4677. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4678. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4679. private delegate bool R_Boolean_P_0_Int16_Delegate(short arg0);
  4680. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4681. private unsafe static object Call_R_Boolean_P_0_Int16_Delegate(object delegateObj, object[] p)
  4682. {
  4683. var d = (R_Boolean_P_0_Int16_Delegate)delegateObj;
  4684. object result = null;
  4685. var arg0 = (short)p[0];
  4686. result = d(arg0);
  4687. return result;
  4688. }
  4689. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4690. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4691. private delegate bool R_Boolean_P_0_UInt32_Delegate(uint arg0);
  4692. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4693. private unsafe static object Call_R_Boolean_P_0_UInt32_Delegate(object delegateObj, object[] p)
  4694. {
  4695. var d = (R_Boolean_P_0_UInt32_Delegate)delegateObj;
  4696. object result = null;
  4697. var arg0 = (uint)p[0];
  4698. result = d(arg0);
  4699. return result;
  4700. }
  4701. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4702. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4703. private delegate bool R_Boolean_P_0_UInt64_Delegate(ulong arg0);
  4704. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4705. private unsafe static object Call_R_Boolean_P_0_UInt64_Delegate(object delegateObj, object[] p)
  4706. {
  4707. var d = (R_Boolean_P_0_UInt64_Delegate)delegateObj;
  4708. object result = null;
  4709. var arg0 = (ulong)p[0];
  4710. result = d(arg0);
  4711. return result;
  4712. }
  4713. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4714. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4715. private delegate bool R_Boolean_P_0_UInt16_Delegate(ushort arg0);
  4716. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4717. private unsafe static object Call_R_Boolean_P_0_UInt16_Delegate(object delegateObj, object[] p)
  4718. {
  4719. var d = (R_Boolean_P_0_UInt16_Delegate)delegateObj;
  4720. object result = null;
  4721. var arg0 = (ushort)p[0];
  4722. result = d(arg0);
  4723. return result;
  4724. }
  4725. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4726. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4727. private delegate char R_Char_P_Delegate();
  4728. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4729. private unsafe static object Call_R_Char_P_Delegate(object delegateObj, object[] p)
  4730. {
  4731. var d = (R_Char_P_Delegate)delegateObj;
  4732. object result = null;
  4733. result = d();
  4734. return result;
  4735. }
  4736. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4737. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4738. private delegate double R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer arg0);
  4739. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4740. private unsafe static object Call_R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate(object delegateObj, object[] p)
  4741. {
  4742. var d = (R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate)delegateObj;
  4743. object result = null;
  4744. var arg0 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[0];
  4745. result = d(ref arg0);
  4746. return result;
  4747. }
  4748. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4749. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4750. private delegate double R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_1_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_2_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer arg0, ref Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer arg1, ref Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer arg2);
  4751. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4752. private unsafe static object Call_R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_1_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_2_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate(object delegateObj, object[] p)
  4753. {
  4754. var d = (R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_1_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_2_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate)delegateObj;
  4755. object result = null;
  4756. var arg0 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[0];
  4757. var arg1 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[1];
  4758. var arg2 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[2];
  4759. result = d(ref arg0, ref arg1, ref arg2);
  4760. return result;
  4761. }
  4762. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4763. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4764. private delegate double R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  4765. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4766. private unsafe static object Call_R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  4767. {
  4768. var d = (R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  4769. object result = null;
  4770. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  4771. result = d(ref arg0);
  4772. return result;
  4773. }
  4774. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4775. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4776. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0);
  4777. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4778. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(object delegateObj, object[] p)
  4779. {
  4780. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate)delegateObj;
  4781. object result = null;
  4782. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  4783. result = d(ref arg0);
  4784. return result;
  4785. }
  4786. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4787. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4788. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.Climate arg0);
  4789. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4790. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate(object delegateObj, object[] p)
  4791. {
  4792. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate)delegateObj;
  4793. object result = null;
  4794. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.Climate)p[0];
  4795. result = d(ref arg0);
  4796. return result;
  4797. }
  4798. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4799. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4800. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayCustomItem arg0);
  4801. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4802. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate(object delegateObj, object[] p)
  4803. {
  4804. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate)delegateObj;
  4805. object result = null;
  4806. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayCustomItem)p[0];
  4807. result = d(ref arg0);
  4808. return result;
  4809. }
  4810. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4811. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4812. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat arg0);
  4813. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4814. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(object delegateObj, object[] p)
  4815. {
  4816. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate)delegateObj;
  4817. object result = null;
  4818. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[0];
  4819. result = d(ref arg0);
  4820. return result;
  4821. }
  4822. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4823. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4824. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat4 arg0);
  4825. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4826. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate(object delegateObj, object[] p)
  4827. {
  4828. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate)delegateObj;
  4829. object result = null;
  4830. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat4)p[0];
  4831. result = d(ref arg0);
  4832. return result;
  4833. }
  4834. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4835. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4836. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeQueues.JobData arg0);
  4837. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4838. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate(object delegateObj, object[] p)
  4839. {
  4840. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate)delegateObj;
  4841. object result = null;
  4842. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeQueues.JobData)p[0];
  4843. result = d(ref arg0);
  4844. return result;
  4845. }
  4846. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4848. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat arg0);
  4849. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4850. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate(object delegateObj, object[] p)
  4851. {
  4852. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate)delegateObj;
  4853. object result = null;
  4854. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat)p[0];
  4855. result = d(ref arg0);
  4856. return result;
  4857. }
  4858. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4860. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat4 arg0);
  4861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4862. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate(object delegateObj, object[] p)
  4863. {
  4864. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate)delegateObj;
  4865. object result = null;
  4866. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat4)p[0];
  4867. result = d(ref arg0);
  4868. return result;
  4869. }
  4870. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4871. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4872. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  4873. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4874. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  4875. {
  4876. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  4877. object result = null;
  4878. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  4879. result = d(ref arg0);
  4880. return result;
  4881. }
  4882. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4883. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4884. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.DoubleData arg0);
  4885. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4886. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate(object delegateObj, object[] p)
  4887. {
  4888. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate)delegateObj;
  4889. object result = null;
  4890. var arg0 = (Burst.Compiler.IL.Tests.Spmd.DoubleData)p[0];
  4891. result = d(ref arg0);
  4892. return result;
  4893. }
  4894. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4895. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4896. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.BigStructNativeArrayJob arg0);
  4897. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4898. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate(object delegateObj, object[] p)
  4899. {
  4900. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate)delegateObj;
  4901. object result = null;
  4902. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.BigStructNativeArrayJob)p[0];
  4903. result = d(ref arg0);
  4904. return result;
  4905. }
  4906. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4907. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4908. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat3Job arg0);
  4909. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4910. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate(object delegateObj, object[] p)
  4911. {
  4912. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate)delegateObj;
  4913. object result = null;
  4914. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat3Job)p[0];
  4915. result = d(ref arg0);
  4916. return result;
  4917. }
  4918. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4919. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4920. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat4Job arg0);
  4921. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4922. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate(object delegateObj, object[] p)
  4923. {
  4924. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate)delegateObj;
  4925. object result = null;
  4926. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat4Job)p[0];
  4927. result = d(ref arg0);
  4928. return result;
  4929. }
  4930. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4931. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4932. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate(ref Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple arg0);
  4933. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4934. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate(object delegateObj, object[] p)
  4935. {
  4936. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate)delegateObj;
  4937. object result = null;
  4938. var arg0 = (Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple)p[0];
  4939. result = d(ref arg0);
  4940. return result;
  4941. }
  4942. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4943. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4944. private delegate float R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate(ref UnityBenchShared.SumNumbersTest arg0);
  4945. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4946. private unsafe static object Call_R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate(object delegateObj, object[] p)
  4947. {
  4948. var d = (R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate)delegateObj;
  4949. object result = null;
  4950. var arg0 = (UnityBenchShared.SumNumbersTest)p[0];
  4951. result = d(ref arg0);
  4952. return result;
  4953. }
  4954. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4955. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4956. private delegate float R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate(ref UnityEngine.Boids.BoidsJob arg0, int arg1);
  4957. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4958. private unsafe static object Call_R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4959. {
  4960. var d = (R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate)delegateObj;
  4961. object result = null;
  4962. var arg0 = (UnityEngine.Boids.BoidsJob)p[0];
  4963. var arg1 = (int)p[1];
  4964. result = d(ref arg0, arg1);
  4965. return result;
  4966. }
  4967. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4968. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4969. private delegate float R_Single_P_0_Single_1_Int32_Delegate(float arg0, int arg1);
  4970. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4971. private unsafe static object Call_R_Single_P_0_Single_1_Int32_Delegate(object delegateObj, object[] p)
  4972. {
  4973. var d = (R_Single_P_0_Single_1_Int32_Delegate)delegateObj;
  4974. object result = null;
  4975. var arg0 = (float)p[0];
  4976. var arg1 = (int)p[1];
  4977. result = d(arg0, arg1);
  4978. return result;
  4979. }
  4980. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4981. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4982. private delegate float R_Single_P_0_Single_Ref_1_Int32_Delegate(ref float arg0, int arg1);
  4983. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4984. private unsafe static object Call_R_Single_P_0_Single_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4985. {
  4986. var d = (R_Single_P_0_Single_Ref_1_Int32_Delegate)delegateObj;
  4987. object result = null;
  4988. var arg0 = (float)p[0];
  4989. var arg1 = (int)p[1];
  4990. result = d(ref arg0, arg1);
  4991. return result;
  4992. }
  4993. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4994. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4995. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate(Burst.Compiler.IL.Tests.ABI.BigStruct arg0);
  4996. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4997. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate(object delegateObj, object[] p)
  4998. {
  4999. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate)delegateObj;
  5000. object result = null;
  5001. var arg0 = (Burst.Compiler.IL.Tests.ABI.BigStruct)p[0];
  5002. result = d(arg0);
  5003. return result;
  5004. }
  5005. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5006. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5007. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate(Burst.Compiler.IL.Tests.ABI.SmallStruct arg0);
  5008. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5009. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate(object delegateObj, object[] p)
  5010. {
  5011. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate)delegateObj;
  5012. object result = null;
  5013. var arg0 = (Burst.Compiler.IL.Tests.ABI.SmallStruct)p[0];
  5014. result = d(arg0);
  5015. return result;
  5016. }
  5017. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5018. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5019. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0);
  5020. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5021. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(object delegateObj, object[] p)
  5022. {
  5023. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate)delegateObj;
  5024. object result = null;
  5025. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  5026. result = d(ref arg0);
  5027. return result;
  5028. }
  5029. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5030. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5031. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_IntArray_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0, ref Burst.Compiler.IL.Tests.CalliBinding.IntArray arg1);
  5032. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5033. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_IntArray_Ref_Delegate(object delegateObj, object[] p)
  5034. {
  5035. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_IntArray_Ref_Delegate)delegateObj;
  5036. object result = null;
  5037. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  5038. var arg1 = (Burst.Compiler.IL.Tests.CalliBinding.IntArray)p[1];
  5039. result = d(ref arg0, ref arg1);
  5040. return result;
  5041. }
  5042. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5043. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5044. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_SmallStructArray_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0, ref Burst.Compiler.IL.Tests.CalliBinding.SmallStructArray arg1);
  5045. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5046. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_SmallStructArray_Ref_Delegate(object delegateObj, object[] p)
  5047. {
  5048. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_SmallStructArray_Ref_Delegate)delegateObj;
  5049. object result = null;
  5050. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  5051. var arg1 = (Burst.Compiler.IL.Tests.CalliBinding.SmallStructArray)p[1];
  5052. result = d(ref arg0, ref arg1);
  5053. return result;
  5054. }
  5055. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5056. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5057. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate(Burst.Compiler.IL.Tests.Expressions.MyArrayIndex arg0);
  5058. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5059. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate(object delegateObj, object[] p)
  5060. {
  5061. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate)delegateObj;
  5062. object result = null;
  5063. var arg0 = (Burst.Compiler.IL.Tests.Expressions.MyArrayIndex)p[0];
  5064. result = d(arg0);
  5065. return result;
  5066. }
  5067. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5068. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5069. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayBool arg0);
  5070. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5071. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate(object delegateObj, object[] p)
  5072. {
  5073. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate)delegateObj;
  5074. object result = null;
  5075. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayBool)p[0];
  5076. result = d(ref arg0);
  5077. return result;
  5078. }
  5079. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5080. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5081. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy arg0);
  5082. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5083. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate(object delegateObj, object[] p)
  5084. {
  5085. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate)delegateObj;
  5086. object result = null;
  5087. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy)p[0];
  5088. result = d(ref arg0);
  5089. return result;
  5090. }
  5091. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5092. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5093. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy arg0, int arg1);
  5094. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5095. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5096. {
  5097. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate)delegateObj;
  5098. object result = null;
  5099. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy)p[0];
  5100. var arg1 = (int)p[1];
  5101. result = d(ref arg0, arg1);
  5102. return result;
  5103. }
  5104. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5105. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5106. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32 arg0);
  5107. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5108. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_Delegate(object delegateObj, object[] p)
  5109. {
  5110. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_Delegate)delegateObj;
  5111. object result = null;
  5112. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32)p[0];
  5113. result = d(ref arg0);
  5114. return result;
  5115. }
  5116. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5117. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5118. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32 arg0, int arg1);
  5119. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5120. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5121. {
  5122. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate)delegateObj;
  5123. object result = null;
  5124. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32)p[0];
  5125. var arg1 = (int)p[1];
  5126. result = d(ref arg0, arg1);
  5127. return result;
  5128. }
  5129. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5130. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5131. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.JobData arg0);
  5132. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5133. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate(object delegateObj, object[] p)
  5134. {
  5135. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate)delegateObj;
  5136. object result = null;
  5137. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.JobData)p[0];
  5138. result = d(ref arg0);
  5139. return result;
  5140. }
  5141. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5142. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5143. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceIntCopy arg0);
  5144. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5145. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate(object delegateObj, object[] p)
  5146. {
  5147. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate)delegateObj;
  5148. object result = null;
  5149. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceIntCopy)p[0];
  5150. result = d(ref arg0);
  5151. return result;
  5152. }
  5153. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5154. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5155. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  5156. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5157. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  5158. {
  5159. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  5160. object result = null;
  5161. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  5162. result = d(ref arg0);
  5163. return result;
  5164. }
  5165. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5166. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5167. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0, int arg1);
  5168. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5169. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5170. {
  5171. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate)delegateObj;
  5172. object result = null;
  5173. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  5174. var arg1 = (int)p[1];
  5175. result = d(ref arg0, arg1);
  5176. return result;
  5177. }
  5178. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5179. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5180. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestCullingJob.CullingJob arg0);
  5181. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5182. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate(object delegateObj, object[] p)
  5183. {
  5184. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate)delegateObj;
  5185. object result = null;
  5186. var arg0 = (Burst.Compiler.IL.Tests.TestCullingJob.CullingJob)p[0];
  5187. result = d(ref arg0);
  5188. return result;
  5189. }
  5190. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5191. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5192. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPBigStructFunc_1_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate(Burst.Compiler.IL.Tests.TestFunctionPointers.FPBigStructFunc arg0, Burst.Compiler.IL.Tests.ABI.BigStruct arg1);
  5193. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5194. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPBigStructFunc_1_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate(object delegateObj, object[] p)
  5195. {
  5196. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPBigStructFunc_1_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate)delegateObj;
  5197. object result = null;
  5198. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPBigStructFunc)p[0];
  5199. var arg1 = (Burst.Compiler.IL.Tests.ABI.BigStruct)p[1];
  5200. result = d(arg0, arg1);
  5201. return result;
  5202. }
  5203. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5204. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5205. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPInIntFunc_Ref_1_Int32_2_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.FPInIntFunc arg0, int arg1, int arg2);
  5206. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5207. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPInIntFunc_Ref_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  5208. {
  5209. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPInIntFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  5210. object result = null;
  5211. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPInIntFunc)p[0];
  5212. var arg1 = (int)p[1];
  5213. var arg2 = (int)p[2];
  5214. result = d(ref arg0, arg1, arg2);
  5215. return result;
  5216. }
  5217. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5218. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5219. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_3_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc arg0, ref Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc arg1, ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat arg2, int arg3);
  5220. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5221. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_3_Int32_Delegate(object delegateObj, object[] p)
  5222. {
  5223. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_3_Int32_Delegate)delegateObj;
  5224. object result = null;
  5225. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[0];
  5226. var arg1 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[1];
  5227. var arg2 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[2];
  5228. var arg3 = (int)p[3];
  5229. result = d(ref arg0, ref arg1, ref arg2, arg3);
  5230. return result;
  5231. }
  5232. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5233. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5234. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc arg0, ref Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc arg1, int arg2);
  5235. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5236. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  5237. {
  5238. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_2_Int32_Delegate)delegateObj;
  5239. object result = null;
  5240. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[0];
  5241. var arg1 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[1];
  5242. var arg2 = (int)p[2];
  5243. result = d(ref arg0, ref arg1, arg2);
  5244. return result;
  5245. }
  5246. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5247. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5248. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc arg0, int arg1);
  5249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5250. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5251. {
  5252. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate)delegateObj;
  5253. object result = null;
  5254. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[0];
  5255. var arg1 = (int)p[1];
  5256. result = d(ref arg0, arg1);
  5257. return result;
  5258. }
  5259. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5260. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5261. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc arg0, int arg1);
  5262. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5263. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5264. {
  5265. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate)delegateObj;
  5266. object result = null;
  5267. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc)p[0];
  5268. var arg1 = (int)p[1];
  5269. result = d(ref arg0, arg1);
  5270. return result;
  5271. }
  5272. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5273. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5274. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_2_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc arg0, int arg1, int arg2);
  5275. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5276. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  5277. {
  5278. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  5279. object result = null;
  5280. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc)p[0];
  5281. var arg1 = (int)p[1];
  5282. var arg2 = (int)p[2];
  5283. result = d(ref arg0, arg1, arg2);
  5284. return result;
  5285. }
  5286. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5287. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5288. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_ReturnRefReadOnlyFunc_Ref_1_Int32_2_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.ReturnRefReadOnlyFunc arg0, int arg1, int arg2);
  5289. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5290. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_ReturnRefReadOnlyFunc_Ref_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  5291. {
  5292. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_ReturnRefReadOnlyFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  5293. object result = null;
  5294. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.ReturnRefReadOnlyFunc)p[0];
  5295. var arg1 = (int)p[1];
  5296. var arg2 = (int)p[2];
  5297. result = d(ref arg0, arg1, arg2);
  5298. return result;
  5299. }
  5300. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5301. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5302. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructsInFunc_Ref_1_Int32_2_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.StructsInFunc arg0, int arg1, int arg2);
  5303. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5304. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructsInFunc_Ref_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  5305. {
  5306. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructsInFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  5307. object result = null;
  5308. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.StructsInFunc)p[0];
  5309. var arg1 = (int)p[1];
  5310. var arg2 = (int)p[2];
  5311. result = d(ref arg0, arg1, arg2);
  5312. return result;
  5313. }
  5314. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5315. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5316. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.TestJob arg0, int arg1);
  5317. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5318. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5319. {
  5320. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate)delegateObj;
  5321. object result = null;
  5322. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.TestJob)p[0];
  5323. var arg1 = (int)p[1];
  5324. result = d(ref arg0, arg1);
  5325. return result;
  5326. }
  5327. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5328. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5329. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.ParentStruct arg0);
  5330. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5331. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate(object delegateObj, object[] p)
  5332. {
  5333. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate)delegateObj;
  5334. object result = null;
  5335. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.ParentStruct)p[0];
  5336. result = d(ref arg0);
  5337. return result;
  5338. }
  5339. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5340. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5341. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SomeStruct arg0);
  5342. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5343. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(object delegateObj, object[] p)
  5344. {
  5345. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate)delegateObj;
  5346. object result = null;
  5347. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SomeStruct)p[0];
  5348. result = d(ref arg0);
  5349. return result;
  5350. }
  5351. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5352. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5353. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SomeStructWithMarshalAs arg0);
  5354. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5355. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate(object delegateObj, object[] p)
  5356. {
  5357. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate)delegateObj;
  5358. object result = null;
  5359. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SomeStructWithMarshalAs)p[0];
  5360. result = d(ref arg0);
  5361. return result;
  5362. }
  5363. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5365. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StaticCharStruct arg0);
  5366. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5367. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate(object delegateObj, object[] p)
  5368. {
  5369. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate)delegateObj;
  5370. object result = null;
  5371. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StaticCharStruct)p[0];
  5372. result = d(ref arg0);
  5373. return result;
  5374. }
  5375. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5377. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt arg0);
  5378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5379. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate(object delegateObj, object[] p)
  5380. {
  5381. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate)delegateObj;
  5382. object result = null;
  5383. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  5384. result = d(ref arg0);
  5385. return result;
  5386. }
  5387. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5389. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt arg0, ref Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt arg1);
  5390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5391. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate(object delegateObj, object[] p)
  5392. {
  5393. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate)delegateObj;
  5394. object result = null;
  5395. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  5396. var arg1 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[1];
  5397. result = d(ref arg0, ref arg1);
  5398. return result;
  5399. }
  5400. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5401. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5402. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int32_3_Int64_Delegate(ref Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt arg0, int arg1, int arg2, long arg3);
  5403. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5404. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int32_3_Int64_Delegate(object delegateObj, object[] p)
  5405. {
  5406. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int32_3_Int64_Delegate)delegateObj;
  5407. object result = null;
  5408. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  5409. var arg1 = (int)p[1];
  5410. var arg2 = (int)p[2];
  5411. var arg3 = (long)p[3];
  5412. result = d(ref arg0, arg1, arg2, arg3);
  5413. return result;
  5414. }
  5415. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5416. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5417. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int64_Delegate(ref Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt arg0, int arg1, long arg2);
  5418. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5419. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int64_Delegate(object delegateObj, object[] p)
  5420. {
  5421. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int64_Delegate)delegateObj;
  5422. object result = null;
  5423. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  5424. var arg1 = (int)p[1];
  5425. var arg2 = (long)p[2];
  5426. result = d(ref arg0, arg1, arg2);
  5427. return result;
  5428. }
  5429. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5430. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5431. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues arg0);
  5432. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5433. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  5434. {
  5435. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate)delegateObj;
  5436. object result = null;
  5437. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[0];
  5438. result = d(ref arg0);
  5439. return result;
  5440. }
  5441. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5442. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5443. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues arg0, int arg1);
  5444. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5445. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5446. {
  5447. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate)delegateObj;
  5448. object result = null;
  5449. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[0];
  5450. var arg1 = (int)p[1];
  5451. result = d(ref arg0, arg1);
  5452. return result;
  5453. }
  5454. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5455. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5456. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper arg0);
  5457. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5458. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate(object delegateObj, object[] p)
  5459. {
  5460. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate)delegateObj;
  5461. object result = null;
  5462. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper)p[0];
  5463. result = d(ref arg0);
  5464. return result;
  5465. }
  5466. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5467. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5468. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.NativeArrayBundle arg0);
  5469. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5470. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate(object delegateObj, object[] p)
  5471. {
  5472. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate)delegateObj;
  5473. object result = null;
  5474. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.NativeArrayBundle)p[0];
  5475. result = d(ref arg0);
  5476. return result;
  5477. }
  5478. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5479. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5480. private delegate int R_Int32_P_0_IntPtr_Ref_Delegate(ref System.IntPtr arg0);
  5481. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5482. private unsafe static object Call_R_Int32_P_0_IntPtr_Ref_Delegate(object delegateObj, object[] p)
  5483. {
  5484. var d = (R_Int32_P_0_IntPtr_Ref_Delegate)delegateObj;
  5485. object result = null;
  5486. var arg0 = (System.IntPtr)p[0];
  5487. result = d(ref arg0);
  5488. return result;
  5489. }
  5490. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5491. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5492. private delegate int R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate(ref System.ValueTuple<int,int> arg0);
  5493. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5494. private unsafe static object Call_R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate(object delegateObj, object[] p)
  5495. {
  5496. var d = (R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate)delegateObj;
  5497. object result = null;
  5498. var arg0 = (System.ValueTuple<int,int>)p[0];
  5499. result = d(ref arg0);
  5500. return result;
  5501. }
  5502. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5503. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5504. private unsafe delegate int R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(Unity.Burst.Intrinsics.v128* arg0);
  5505. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5506. private unsafe static object Call_R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(object delegateObj, object[] p)
  5507. {
  5508. var d = (R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate)delegateObj;
  5509. object result = null;
  5510. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5511. result = d(arg0);
  5512. return result;
  5513. }
  5514. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5515. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5516. private delegate int R_Int32_P_0_Byte_1_Single_Delegate(byte arg0, float arg1);
  5517. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5518. private unsafe static object Call_R_Int32_P_0_Byte_1_Single_Delegate(object delegateObj, object[] p)
  5519. {
  5520. var d = (R_Int32_P_0_Byte_1_Single_Delegate)delegateObj;
  5521. object result = null;
  5522. var arg0 = (byte)p[0];
  5523. var arg1 = (float)p[1];
  5524. result = d(arg0, arg1);
  5525. return result;
  5526. }
  5527. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5528. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5529. private delegate int R_Int32_P_0_Char_Delegate(char arg0);
  5530. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5531. private unsafe static object Call_R_Int32_P_0_Char_Delegate(object delegateObj, object[] p)
  5532. {
  5533. var d = (R_Int32_P_0_Char_Delegate)delegateObj;
  5534. object result = null;
  5535. var arg0 = (char)p[0];
  5536. result = d(arg0);
  5537. return result;
  5538. }
  5539. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5540. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5541. private delegate int R_Int32_P_0_Char_Ref_Delegate(ref char arg0);
  5542. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5543. private unsafe static object Call_R_Int32_P_0_Char_Ref_Delegate(object delegateObj, object[] p)
  5544. {
  5545. var d = (R_Int32_P_0_Char_Ref_Delegate)delegateObj;
  5546. object result = null;
  5547. var arg0 = (char)p[0];
  5548. result = d(ref arg0);
  5549. return result;
  5550. }
  5551. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5552. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5553. private delegate int R_Int32_P_0_Double_1_Double_Delegate(double arg0, double arg1);
  5554. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5555. private unsafe static object Call_R_Int32_P_0_Double_1_Double_Delegate(object delegateObj, object[] p)
  5556. {
  5557. var d = (R_Int32_P_0_Double_1_Double_Delegate)delegateObj;
  5558. object result = null;
  5559. var arg0 = (double)p[0];
  5560. var arg1 = (double)p[1];
  5561. result = d(arg0, arg1);
  5562. return result;
  5563. }
  5564. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5565. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5566. private delegate int R_Int32_P_0_Int32_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate(int arg0, int arg1, int arg2, int arg3, int arg4, int arg5, Burst.Compiler.IL.Tests.ABI.SmallStruct arg6);
  5567. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5568. private unsafe static object Call_R_Int32_P_0_Int32_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate(object delegateObj, object[] p)
  5569. {
  5570. var d = (R_Int32_P_0_Int32_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate)delegateObj;
  5571. object result = null;
  5572. var arg0 = (int)p[0];
  5573. var arg1 = (int)p[1];
  5574. var arg2 = (int)p[2];
  5575. var arg3 = (int)p[3];
  5576. var arg4 = (int)p[4];
  5577. var arg5 = (int)p[5];
  5578. var arg6 = (Burst.Compiler.IL.Tests.ABI.SmallStruct)p[6];
  5579. result = d(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
  5580. return result;
  5581. }
  5582. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5583. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5584. private delegate int R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate(ref int arg0, ref int arg1);
  5585. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5586. private unsafe static object Call_R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate(object delegateObj, object[] p)
  5587. {
  5588. var d = (R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate)delegateObj;
  5589. object result = null;
  5590. var arg0 = (int)p[0];
  5591. var arg1 = (int)p[1];
  5592. result = d(ref arg0, ref arg1);
  5593. return result;
  5594. }
  5595. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5596. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5597. private delegate int R_Int32_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  5598. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5599. private unsafe static object Call_R_Int32_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  5600. {
  5601. var d = (R_Int32_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  5602. object result = null;
  5603. var arg0 = (uint)p[0];
  5604. var arg1 = (uint)p[1];
  5605. result = d(arg0, arg1);
  5606. return result;
  5607. }
  5608. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5609. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5610. private delegate long R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper arg0);
  5611. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5612. private unsafe static object Call_R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate(object delegateObj, object[] p)
  5613. {
  5614. var d = (R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate)delegateObj;
  5615. object result = null;
  5616. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper)p[0];
  5617. result = d(ref arg0);
  5618. return result;
  5619. }
  5620. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5621. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5622. private delegate long R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector arg0);
  5623. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5624. private unsafe static object Call_R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(object delegateObj, object[] p)
  5625. {
  5626. var d = (R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate)delegateObj;
  5627. object result = null;
  5628. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[0];
  5629. result = d(ref arg0);
  5630. return result;
  5631. }
  5632. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5633. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5634. private delegate long R_Int64_P_0_Byte_Delegate(byte arg0);
  5635. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5636. private unsafe static object Call_R_Int64_P_0_Byte_Delegate(object delegateObj, object[] p)
  5637. {
  5638. var d = (R_Int64_P_0_Byte_Delegate)delegateObj;
  5639. object result = null;
  5640. var arg0 = (byte)p[0];
  5641. result = d(arg0);
  5642. return result;
  5643. }
  5644. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5645. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5646. private delegate long R_Int64_P_0_Single_Delegate(float arg0);
  5647. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5648. private unsafe static object Call_R_Int64_P_0_Single_Delegate(object delegateObj, object[] p)
  5649. {
  5650. var d = (R_Int64_P_0_Single_Delegate)delegateObj;
  5651. object result = null;
  5652. var arg0 = (float)p[0];
  5653. result = d(arg0);
  5654. return result;
  5655. }
  5656. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5657. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5658. private delegate long R_Int64_P_0_Int32_1_Int64_Delegate(int arg0, long arg1);
  5659. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5660. private unsafe static object Call_R_Int64_P_0_Int32_1_Int64_Delegate(object delegateObj, object[] p)
  5661. {
  5662. var d = (R_Int64_P_0_Int32_1_Int64_Delegate)delegateObj;
  5663. object result = null;
  5664. var arg0 = (int)p[0];
  5665. var arg1 = (long)p[1];
  5666. result = d(arg0, arg1);
  5667. return result;
  5668. }
  5669. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5670. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5671. private delegate short R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  5672. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5673. private unsafe static object Call_R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  5674. {
  5675. var d = (R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  5676. object result = null;
  5677. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  5678. result = d(ref arg0);
  5679. return result;
  5680. }
  5681. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5682. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5683. private delegate uint R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayUInt4 arg0, int arg1);
  5684. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5685. private unsafe static object Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5686. {
  5687. var d = (R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate)delegateObj;
  5688. object result = null;
  5689. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayUInt4)p[0];
  5690. var arg1 = (int)p[1];
  5691. result = d(ref arg0, arg1);
  5692. return result;
  5693. }
  5694. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5695. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5696. private delegate uint R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  5697. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5698. private unsafe static object Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  5699. {
  5700. var d = (R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  5701. object result = null;
  5702. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  5703. result = d(ref arg0);
  5704. return result;
  5705. }
  5706. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5707. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5708. private delegate uint R_UInt32_P_0_IntPtr_Ref_Delegate(ref System.IntPtr arg0);
  5709. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5710. private unsafe static object Call_R_UInt32_P_0_IntPtr_Ref_Delegate(object delegateObj, object[] p)
  5711. {
  5712. var d = (R_UInt32_P_0_IntPtr_Ref_Delegate)delegateObj;
  5713. object result = null;
  5714. var arg0 = (System.IntPtr)p[0];
  5715. result = d(ref arg0);
  5716. return result;
  5717. }
  5718. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5719. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5720. private delegate uint R_UInt32_P_0_Single_Delegate(float arg0);
  5721. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5722. private unsafe static object Call_R_UInt32_P_0_Single_Delegate(object delegateObj, object[] p)
  5723. {
  5724. var d = (R_UInt32_P_0_Single_Delegate)delegateObj;
  5725. object result = null;
  5726. var arg0 = (float)p[0];
  5727. result = d(arg0);
  5728. return result;
  5729. }
  5730. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5731. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5732. private unsafe delegate uint R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate(uint arg0, uint arg1, uint* arg2);
  5733. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5734. private unsafe static object Call_R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate(object delegateObj, object[] p)
  5735. {
  5736. var d = (R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate)delegateObj;
  5737. object result = null;
  5738. var arg0 = (uint)p[0];
  5739. var arg1 = (uint)p[1];
  5740. var arg2 = (uint*)(IntPtr)p[2];
  5741. result = d(arg0, arg1, arg2);
  5742. return result;
  5743. }
  5744. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5745. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5746. private delegate ulong R_UInt64_P_0_UInt64_Delegate(ulong arg0);
  5747. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5748. private unsafe static object Call_R_UInt64_P_0_UInt64_Delegate(object delegateObj, object[] p)
  5749. {
  5750. var d = (R_UInt64_P_0_UInt64_Delegate)delegateObj;
  5751. object result = null;
  5752. var arg0 = (ulong)p[0];
  5753. result = d(arg0);
  5754. return result;
  5755. }
  5756. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5757. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5758. private delegate ulong R_UInt64_P_0_UInt64_1_UInt32_Delegate(ulong arg0, uint arg1);
  5759. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5760. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt32_Delegate(object delegateObj, object[] p)
  5761. {
  5762. var d = (R_UInt64_P_0_UInt64_1_UInt32_Delegate)delegateObj;
  5763. object result = null;
  5764. var arg0 = (ulong)p[0];
  5765. var arg1 = (uint)p[1];
  5766. result = d(arg0, arg1);
  5767. return result;
  5768. }
  5769. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5770. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5771. private delegate ulong R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate(ulong arg0, uint arg1, uint arg2);
  5772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5773. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  5774. {
  5775. var d = (R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate)delegateObj;
  5776. object result = null;
  5777. var arg0 = (ulong)p[0];
  5778. var arg1 = (uint)p[1];
  5779. var arg2 = (uint)p[2];
  5780. result = d(arg0, arg1, arg2);
  5781. return result;
  5782. }
  5783. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5785. private unsafe delegate ulong R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate(ulong arg0, ulong arg1, ulong* arg2);
  5786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5787. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate(object delegateObj, object[] p)
  5788. {
  5789. var d = (R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate)delegateObj;
  5790. object result = null;
  5791. var arg0 = (ulong)p[0];
  5792. var arg1 = (ulong)p[1];
  5793. var arg2 = (ulong*)(IntPtr)p[2];
  5794. result = d(arg0, arg1, arg2);
  5795. return result;
  5796. }
  5797. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5799. private delegate ushort R_UInt16_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  5800. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5801. private unsafe static object Call_R_UInt16_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  5802. {
  5803. var d = (R_UInt16_P_0_Single_1_Single_Delegate)delegateObj;
  5804. object result = null;
  5805. var arg0 = (float)p[0];
  5806. var arg1 = (float)p[1];
  5807. result = d(arg0, arg1);
  5808. return result;
  5809. }
  5810. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5811. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5812. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.ABI.CullChunksWrapper arg0);
  5813. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5814. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate(object delegateObj, object[] p)
  5815. {
  5816. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate)delegateObj;
  5817. object result = null;
  5818. var arg0 = (Burst.Compiler.IL.Tests.ABI.CullChunksWrapper)p[0];
  5819. d(ref arg0);
  5820. return result;
  5821. }
  5822. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5823. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5824. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWithinGenericWrapper arg0);
  5825. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5826. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate(object delegateObj, object[] p)
  5827. {
  5828. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate)delegateObj;
  5829. object result = null;
  5830. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWithinGenericWrapper)p[0];
  5831. d(ref arg0);
  5832. return result;
  5833. }
  5834. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5835. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5836. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWrapper arg0);
  5837. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5838. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate(object delegateObj, object[] p)
  5839. {
  5840. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate)delegateObj;
  5841. object result = null;
  5842. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWrapper)p[0];
  5843. d(ref arg0);
  5844. return result;
  5845. }
  5846. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5848. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasOnStructWithinGenericWrapper arg0);
  5849. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5850. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate(object delegateObj, object[] p)
  5851. {
  5852. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate)delegateObj;
  5853. object result = null;
  5854. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasOnStructWithinGenericWrapper)p[0];
  5855. d(ref arg0);
  5856. return result;
  5857. }
  5858. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5860. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayJob arg0);
  5861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5862. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate(object delegateObj, object[] p)
  5863. {
  5864. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate)delegateObj;
  5865. object result = null;
  5866. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayJob)p[0];
  5867. d(ref arg0);
  5868. return result;
  5869. }
  5870. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5871. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5872. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayPointerIsNotReloadedJob arg0);
  5873. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5874. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate(object delegateObj, object[] p)
  5875. {
  5876. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate)delegateObj;
  5877. object result = null;
  5878. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayPointerIsNotReloadedJob)p[0];
  5879. d(ref arg0);
  5880. return result;
  5881. }
  5882. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5883. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5884. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NativeSliceJob arg0);
  5885. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5886. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate(object delegateObj, object[] p)
  5887. {
  5888. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate)delegateObj;
  5889. object result = null;
  5890. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NativeSliceJob)p[0];
  5891. d(ref arg0);
  5892. return result;
  5893. }
  5894. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5895. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5896. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NoAliasOnJobProducerTypeThisPointerJob arg0);
  5897. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5898. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate(object delegateObj, object[] p)
  5899. {
  5900. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate)delegateObj;
  5901. object result = null;
  5902. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NoAliasOnJobProducerTypeThisPointerJob)p[0];
  5903. d(ref arg0);
  5904. return result;
  5905. }
  5906. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5907. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5908. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesAliasWithJobStructJob arg0);
  5909. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5910. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate(object delegateObj, object[] p)
  5911. {
  5912. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate)delegateObj;
  5913. object result = null;
  5914. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesAliasWithJobStructJob)p[0];
  5915. d(ref arg0);
  5916. return result;
  5917. }
  5918. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5919. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5920. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesNotAliasWithJobStructJob arg0);
  5921. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5922. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate(object delegateObj, object[] p)
  5923. {
  5924. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate)delegateObj;
  5925. object result = null;
  5926. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesNotAliasWithJobStructJob)p[0];
  5927. d(ref arg0);
  5928. return result;
  5929. }
  5930. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5931. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5932. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0);
  5933. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5934. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(object delegateObj, object[] p)
  5935. {
  5936. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate)delegateObj;
  5937. object result = null;
  5938. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  5939. d(ref arg0);
  5940. return result;
  5941. }
  5942. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5943. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5944. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.Case1061135.NewMoveJob arg0);
  5945. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5946. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate(object delegateObj, object[] p)
  5947. {
  5948. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate)delegateObj;
  5949. object result = null;
  5950. var arg0 = (Burst.Compiler.IL.Tests.Case1061135.NewMoveJob)p[0];
  5951. d(ref arg0);
  5952. return result;
  5953. }
  5954. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5955. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5956. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_1_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat arg0, ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat arg1, ref Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat arg2);
  5957. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5958. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_1_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(object delegateObj, object[] p)
  5959. {
  5960. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_1_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_2_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate)delegateObj;
  5961. object result = null;
  5962. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[0];
  5963. var arg1 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[1];
  5964. var arg2 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[2];
  5965. d(ref arg0, ref arg1, ref arg2);
  5966. return result;
  5967. }
  5968. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5969. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5970. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeHashMaps.HashMapJob arg0);
  5971. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5972. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate(object delegateObj, object[] p)
  5973. {
  5974. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate)delegateObj;
  5975. object result = null;
  5976. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeHashMaps.HashMapJob)p[0];
  5977. d(ref arg0);
  5978. return result;
  5979. }
  5980. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5981. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5982. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.HashMapAndQueueJob arg0);
  5983. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5984. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate(object delegateObj, object[] p)
  5985. {
  5986. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate)delegateObj;
  5987. object result = null;
  5988. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.HashMapAndQueueJob)p[0];
  5989. d(ref arg0);
  5990. return result;
  5991. }
  5992. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5993. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5994. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate(ref Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructBVHTest arg0);
  5995. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5996. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate(object delegateObj, object[] p)
  5997. {
  5998. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate)delegateObj;
  5999. object result = null;
  6000. var arg0 = (Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructBVHTest)p[0];
  6001. d(ref arg0);
  6002. return result;
  6003. }
  6004. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6005. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6006. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructInitJob arg0);
  6007. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6008. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate(object delegateObj, object[] p)
  6009. {
  6010. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate)delegateObj;
  6011. object result = null;
  6012. var arg0 = (Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructInitJob)p[0];
  6013. d(ref arg0);
  6014. return result;
  6015. }
  6016. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6017. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6018. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate(ref Burst.Compiler.IL.Tests.SafetyChecks.NativeArrayInt arg0);
  6019. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6020. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate(object delegateObj, object[] p)
  6021. {
  6022. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate)delegateObj;
  6023. object result = null;
  6024. var arg0 = (Burst.Compiler.IL.Tests.SafetyChecks.NativeArrayInt)p[0];
  6025. d(ref arg0);
  6026. return result;
  6027. }
  6028. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6029. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6030. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.CopyJob arg0);
  6031. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6032. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate(object delegateObj, object[] p)
  6033. {
  6034. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate)delegateObj;
  6035. object result = null;
  6036. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.CopyJob)p[0];
  6037. d(ref arg0);
  6038. return result;
  6039. }
  6040. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6041. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6042. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.CopyWithExplicitNoAlias arg0);
  6043. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6044. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate(object delegateObj, object[] p)
  6045. {
  6046. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate)delegateObj;
  6047. object result = null;
  6048. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.CopyWithExplicitNoAlias)p[0];
  6049. d(ref arg0);
  6050. return result;
  6051. }
  6052. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6053. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6054. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.DivisionByVariable arg0);
  6055. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6056. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate(object delegateObj, object[] p)
  6057. {
  6058. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate)delegateObj;
  6059. object result = null;
  6060. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.DivisionByVariable)p[0];
  6061. d(ref arg0);
  6062. return result;
  6063. }
  6064. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6065. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6066. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.Float1Job arg0);
  6067. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6068. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate(object delegateObj, object[] p)
  6069. {
  6070. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate)delegateObj;
  6071. object result = null;
  6072. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.Float1Job)p[0];
  6073. d(ref arg0);
  6074. return result;
  6075. }
  6076. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6077. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6078. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.Float4Job arg0);
  6079. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6080. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate(object delegateObj, object[] p)
  6081. {
  6082. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate)delegateObj;
  6083. object result = null;
  6084. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.Float4Job)p[0];
  6085. d(ref arg0);
  6086. return result;
  6087. }
  6088. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6089. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6090. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceByteJob arg0);
  6091. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6092. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate(object delegateObj, object[] p)
  6093. {
  6094. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate)delegateObj;
  6095. object result = null;
  6096. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceByteJob)p[0];
  6097. d(ref arg0);
  6098. return result;
  6099. }
  6100. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6101. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6102. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceJob arg0);
  6103. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6104. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate(object delegateObj, object[] p)
  6105. {
  6106. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate)delegateObj;
  6107. object result = null;
  6108. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceJob)p[0];
  6109. d(ref arg0);
  6110. return result;
  6111. }
  6112. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6113. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6114. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.SimpleSOA1Job arg0);
  6115. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6116. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate(object delegateObj, object[] p)
  6117. {
  6118. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate)delegateObj;
  6119. object result = null;
  6120. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.SimpleSOA1Job)p[0];
  6121. d(ref arg0);
  6122. return result;
  6123. }
  6124. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6125. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6126. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.StructWithAction arg0);
  6127. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6128. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate(object delegateObj, object[] p)
  6129. {
  6130. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate)delegateObj;
  6131. object result = null;
  6132. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.StructWithAction)p[0];
  6133. d(ref arg0);
  6134. return result;
  6135. }
  6136. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6137. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6138. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_2_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct arg0, ref Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct arg1, int arg2);
  6139. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6140. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6141. {
  6142. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_2_Int32_Delegate)delegateObj;
  6143. object result = null;
  6144. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[0];
  6145. var arg1 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[1];
  6146. var arg2 = (int)p[2];
  6147. d(ref arg0, ref arg1, arg2);
  6148. return result;
  6149. }
  6150. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6151. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6152. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct arg0, int arg1);
  6153. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6154. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  6155. {
  6156. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate)delegateObj;
  6157. object result = null;
  6158. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[0];
  6159. var arg1 = (int)p[1];
  6160. d(ref arg0, arg1);
  6161. return result;
  6162. }
  6163. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6164. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6165. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_2_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct arg0, int arg1, ref Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct arg2);
  6166. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6167. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_2_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_Delegate(object delegateObj, object[] p)
  6168. {
  6169. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_2_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_Delegate)delegateObj;
  6170. object result = null;
  6171. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[0];
  6172. var arg1 = (int)p[1];
  6173. var arg2 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[2];
  6174. d(ref arg0, arg1, ref arg2);
  6175. return result;
  6176. }
  6177. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6178. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6179. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics arg0);
  6180. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6181. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate(object delegateObj, object[] p)
  6182. {
  6183. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate)delegateObj;
  6184. object result = null;
  6185. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics)p[0];
  6186. d(ref arg0);
  6187. return result;
  6188. }
  6189. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6190. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6191. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics2 arg0);
  6192. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6193. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate(object delegateObj, object[] p)
  6194. {
  6195. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate)delegateObj;
  6196. object result = null;
  6197. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics2)p[0];
  6198. d(ref arg0);
  6199. return result;
  6200. }
  6201. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6202. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6203. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_2_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 arg0, ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 arg1, ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 arg2);
  6204. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6205. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_2_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_Delegate(object delegateObj, object[] p)
  6206. {
  6207. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_1_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_2_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000_Ref_Delegate)delegateObj;
  6208. object result = null;
  6209. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)p[0];
  6210. var arg1 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)p[1];
  6211. var arg2 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)p[2];
  6212. d(ref arg0, ref arg1, ref arg2);
  6213. return result;
  6214. }
  6215. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6216. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6217. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStringLogging_MyEnum_Delegate(Burst.Compiler.IL.Tests.TestStringLogging.MyEnum arg0);
  6218. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6219. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStringLogging_MyEnum_Delegate(object delegateObj, object[] p)
  6220. {
  6221. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStringLogging_MyEnum_Delegate)delegateObj;
  6222. object result = null;
  6223. var arg0 = (Burst.Compiler.IL.Tests.TestStringLogging.MyEnum)p[0];
  6224. d(arg0);
  6225. return result;
  6226. }
  6227. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6228. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6229. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.AnsiStruct arg0);
  6230. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6231. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate(object delegateObj, object[] p)
  6232. {
  6233. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate)delegateObj;
  6234. object result = null;
  6235. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.AnsiStruct)p[0];
  6236. d(ref arg0);
  6237. return result;
  6238. }
  6239. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6240. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6241. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.AnsiStructWithMarshalAs arg0);
  6242. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6243. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate(object delegateObj, object[] p)
  6244. {
  6245. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate)delegateObj;
  6246. object result = null;
  6247. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.AnsiStructWithMarshalAs)p[0];
  6248. d(ref arg0);
  6249. return result;
  6250. }
  6251. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6252. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6253. private unsafe delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate(Burst.Compiler.IL.Tests.TestTestInfrastructure.SomeStruct* arg0);
  6254. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6255. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate(object delegateObj, object[] p)
  6256. {
  6257. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate)delegateObj;
  6258. object result = null;
  6259. var arg0 = (Burst.Compiler.IL.Tests.TestTestInfrastructure.SomeStruct*)(IntPtr)p[0];
  6260. d(arg0);
  6261. return result;
  6262. }
  6263. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6264. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6265. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Types_GenericStructHolder_Ref_Delegate(ref Burst.Compiler.IL.Tests.Types.GenericStructHolder arg0);
  6266. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6267. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Types_GenericStructHolder_Ref_Delegate(object delegateObj, object[] p)
  6268. {
  6269. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Types_GenericStructHolder_Ref_Delegate)delegateObj;
  6270. object result = null;
  6271. var arg0 = (Burst.Compiler.IL.Tests.Types.GenericStructHolder)p[0];
  6272. d(ref arg0);
  6273. return result;
  6274. }
  6275. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6276. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6277. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Vectorization_Enumerator2Layers_Ref_1_Single_Delegate(ref Burst.Compiler.IL.Tests.Vectorization.Enumerator2Layers arg0, float arg1);
  6278. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6279. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Vectorization_Enumerator2Layers_Ref_1_Single_Delegate(object delegateObj, object[] p)
  6280. {
  6281. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Vectorization_Enumerator2Layers_Ref_1_Single_Delegate)delegateObj;
  6282. object result = null;
  6283. var arg0 = (Burst.Compiler.IL.Tests.Vectorization.Enumerator2Layers)p[0];
  6284. var arg1 = (float)p[1];
  6285. d(ref arg0, arg1);
  6286. return result;
  6287. }
  6288. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6289. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6290. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues arg0);
  6291. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6292. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  6293. {
  6294. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate)delegateObj;
  6295. object result = null;
  6296. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[0];
  6297. d(ref arg0);
  6298. return result;
  6299. }
  6300. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6301. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6302. private unsafe delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_V128Pair_Ptr_1_Int32_Delegate(Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.V128Pair* arg0, int arg1);
  6303. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6304. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_V128Pair_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6305. {
  6306. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_V128Pair_Ptr_1_Int32_Delegate)delegateObj;
  6307. object result = null;
  6308. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.V128Pair*)(IntPtr)p[0];
  6309. var arg1 = (int)p[1];
  6310. d(arg0, arg1);
  6311. return result;
  6312. }
  6313. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6314. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6315. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues arg0);
  6316. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6317. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  6318. {
  6319. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate)delegateObj;
  6320. object result = null;
  6321. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[0];
  6322. d(ref arg0);
  6323. return result;
  6324. }
  6325. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6326. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6327. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues arg0);
  6328. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6329. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  6330. {
  6331. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate)delegateObj;
  6332. object result = null;
  6333. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues)p[0];
  6334. d(ref arg0);
  6335. return result;
  6336. }
  6337. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6338. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6339. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_1_Int32_Delegate(ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues arg0, int arg1);
  6340. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6341. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  6342. {
  6343. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_1_Int32_Delegate)delegateObj;
  6344. object result = null;
  6345. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues)p[0];
  6346. var arg1 = (int)p[1];
  6347. d(ref arg0, arg1);
  6348. return result;
  6349. }
  6350. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6351. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6352. private unsafe delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_TransposeResult_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate(Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.TransposeResult* arg0, float arg1, float arg2, float arg3, float arg4);
  6353. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6354. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_TransposeResult_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate(object delegateObj, object[] p)
  6355. {
  6356. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_TransposeResult_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate)delegateObj;
  6357. object result = null;
  6358. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.TransposeResult*)(IntPtr)p[0];
  6359. var arg1 = (float)p[1];
  6360. var arg2 = (float)p[2];
  6361. var arg3 = (float)p[3];
  6362. var arg4 = (float)p[4];
  6363. d(arg0, arg1, arg2, arg3, arg4);
  6364. return result;
  6365. }
  6366. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6367. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6368. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate(Unity.Burst.Intrinsics.f16* arg0);
  6369. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6370. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate(object delegateObj, object[] p)
  6371. {
  6372. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate)delegateObj;
  6373. object result = null;
  6374. var arg0 = (Unity.Burst.Intrinsics.f16*)(IntPtr)p[0];
  6375. d(arg0);
  6376. return result;
  6377. }
  6378. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6379. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6380. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate(Unity.Burst.Intrinsics.f16* arg0, float arg1);
  6381. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6382. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  6383. {
  6384. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate)delegateObj;
  6385. object result = null;
  6386. var arg0 = (Unity.Burst.Intrinsics.f16*)(IntPtr)p[0];
  6387. var arg1 = (float)p[1];
  6388. d(arg0, arg1);
  6389. return result;
  6390. }
  6391. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6392. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6393. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.f16* arg0, int arg1);
  6394. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6395. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6396. {
  6397. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate)delegateObj;
  6398. object result = null;
  6399. var arg0 = (Unity.Burst.Intrinsics.f16*)(IntPtr)p[0];
  6400. var arg1 = (int)p[1];
  6401. d(arg0, arg1);
  6402. return result;
  6403. }
  6404. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6405. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6406. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(Unity.Burst.Intrinsics.v128* arg0);
  6407. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6408. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(object delegateObj, object[] p)
  6409. {
  6410. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate)delegateObj;
  6411. object result = null;
  6412. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6413. d(arg0);
  6414. return result;
  6415. }
  6416. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6417. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6418. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues arg1, int arg2);
  6419. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6420. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6421. {
  6422. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate)delegateObj;
  6423. object result = null;
  6424. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6425. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[1];
  6426. var arg2 = (int)p[2];
  6427. d(arg0, ref arg1, arg2);
  6428. return result;
  6429. }
  6430. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6431. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6432. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts arg1, int arg2);
  6433. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6434. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6435. {
  6436. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate)delegateObj;
  6437. object result = null;
  6438. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6439. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  6440. var arg2 = (int)p[2];
  6441. d(arg0, ref arg1, arg2);
  6442. return result;
  6443. }
  6444. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6445. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6446. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts arg1, int arg2, int arg3);
  6447. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6448. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate(object delegateObj, object[] p)
  6449. {
  6450. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate)delegateObj;
  6451. object result = null;
  6452. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6453. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  6454. var arg2 = (int)p[2];
  6455. var arg3 = (int)p[3];
  6456. d(arg0, ref arg1, arg2, arg3);
  6457. return result;
  6458. }
  6459. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6460. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6461. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues arg1, int arg2);
  6462. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6463. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6464. {
  6465. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate)delegateObj;
  6466. object result = null;
  6467. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6468. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[1];
  6469. var arg2 = (int)p[2];
  6470. d(arg0, ref arg1, arg2);
  6471. return result;
  6472. }
  6473. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6474. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6475. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues arg1, int arg2);
  6476. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6477. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6478. {
  6479. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_2_Int32_Delegate)delegateObj;
  6480. object result = null;
  6481. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6482. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues)p[1];
  6483. var arg2 = (int)p[2];
  6484. d(arg0, ref arg1, arg2);
  6485. return result;
  6486. }
  6487. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6488. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6489. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithV128_Ref_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithV128 arg1);
  6490. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6491. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithV128_Ref_Delegate(object delegateObj, object[] p)
  6492. {
  6493. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithV128_Ref_Delegate)delegateObj;
  6494. object result = null;
  6495. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6496. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithV128)p[1];
  6497. d(arg0, ref arg1);
  6498. return result;
  6499. }
  6500. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6502. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector arg1);
  6503. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6504. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(object delegateObj, object[] p)
  6505. {
  6506. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate)delegateObj;
  6507. object result = null;
  6508. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6509. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[1];
  6510. d(arg0, ref arg1);
  6511. return result;
  6512. }
  6513. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6514. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6515. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_2_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(Unity.Burst.Intrinsics.v128* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector arg1, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector arg2);
  6516. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6517. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_2_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(object delegateObj, object[] p)
  6518. {
  6519. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_2_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate)delegateObj;
  6520. object result = null;
  6521. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6522. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[1];
  6523. var arg2 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[2];
  6524. d(arg0, ref arg1, ref arg2);
  6525. return result;
  6526. }
  6527. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6528. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6529. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate(Unity.Burst.Intrinsics.v128* arg0, double arg1);
  6530. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6531. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  6532. {
  6533. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate)delegateObj;
  6534. object result = null;
  6535. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6536. var arg1 = (double)p[1];
  6537. d(arg0, arg1);
  6538. return result;
  6539. }
  6540. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6541. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6542. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Burst.Intrinsics.v128* arg0, double arg1, Unity.Burst.Intrinsics.X86.MXCSRBits arg2);
  6543. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6544. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  6545. {
  6546. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6547. object result = null;
  6548. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6549. var arg1 = (double)p[1];
  6550. var arg2 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[2];
  6551. d(arg0, arg1, arg2);
  6552. return result;
  6553. }
  6554. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6555. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6556. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate(Unity.Burst.Intrinsics.v128* arg0, double arg1, double arg2);
  6557. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6558. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate(object delegateObj, object[] p)
  6559. {
  6560. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate)delegateObj;
  6561. object result = null;
  6562. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6563. var arg1 = (double)p[1];
  6564. var arg2 = (double)p[2];
  6565. d(arg0, arg1, arg2);
  6566. return result;
  6567. }
  6568. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6569. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6570. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, double arg1, int arg2);
  6571. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6572. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate(object delegateObj, object[] p)
  6573. {
  6574. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate)delegateObj;
  6575. object result = null;
  6576. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6577. var arg1 = (double)p[1];
  6578. var arg2 = (int)p[2];
  6579. d(arg0, arg1, arg2);
  6580. return result;
  6581. }
  6582. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6583. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6584. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate(Unity.Burst.Intrinsics.v128* arg0, float arg1);
  6585. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6586. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  6587. {
  6588. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate)delegateObj;
  6589. object result = null;
  6590. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6591. var arg1 = (float)p[1];
  6592. d(arg0, arg1);
  6593. return result;
  6594. }
  6595. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6596. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6597. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate(Unity.Burst.Intrinsics.v128* arg0, float arg1, float arg2);
  6598. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6599. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate(object delegateObj, object[] p)
  6600. {
  6601. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate)delegateObj;
  6602. object result = null;
  6603. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6604. var arg1 = (float)p[1];
  6605. var arg2 = (float)p[2];
  6606. d(arg0, arg1, arg2);
  6607. return result;
  6608. }
  6609. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6610. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6611. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate(Unity.Burst.Intrinsics.v128* arg0, float arg1, float arg2, float arg3, float arg4);
  6612. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6613. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate(object delegateObj, object[] p)
  6614. {
  6615. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate)delegateObj;
  6616. object result = null;
  6617. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6618. var arg1 = (float)p[1];
  6619. var arg2 = (float)p[2];
  6620. var arg3 = (float)p[3];
  6621. var arg4 = (float)p[4];
  6622. d(arg0, arg1, arg2, arg3, arg4);
  6623. return result;
  6624. }
  6625. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6626. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6627. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, float arg1, int arg2);
  6628. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6629. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate(object delegateObj, object[] p)
  6630. {
  6631. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate)delegateObj;
  6632. object result = null;
  6633. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6634. var arg1 = (float)p[1];
  6635. var arg2 = (int)p[2];
  6636. d(arg0, arg1, arg2);
  6637. return result;
  6638. }
  6639. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6640. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6641. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1);
  6642. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6643. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6644. {
  6645. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate)delegateObj;
  6646. object result = null;
  6647. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6648. var arg1 = (int)p[1];
  6649. d(arg0, arg1);
  6650. return result;
  6651. }
  6652. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6653. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6654. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1, Unity.Burst.Intrinsics.X86.MXCSRBits arg2);
  6655. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6656. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  6657. {
  6658. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6659. object result = null;
  6660. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6661. var arg1 = (int)p[1];
  6662. var arg2 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[2];
  6663. d(arg0, arg1, arg2);
  6664. return result;
  6665. }
  6666. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6667. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6668. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1, int arg2);
  6669. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6670. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  6671. {
  6672. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  6673. object result = null;
  6674. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6675. var arg1 = (int)p[1];
  6676. var arg2 = (int)p[2];
  6677. d(arg0, arg1, arg2);
  6678. return result;
  6679. }
  6680. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6681. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6682. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1, int arg2, int arg3, int arg4);
  6683. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6684. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate(object delegateObj, object[] p)
  6685. {
  6686. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate)delegateObj;
  6687. object result = null;
  6688. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6689. var arg1 = (int)p[1];
  6690. var arg2 = (int)p[2];
  6691. var arg3 = (int)p[3];
  6692. var arg4 = (int)p[4];
  6693. d(arg0, arg1, arg2, arg3, arg4);
  6694. return result;
  6695. }
  6696. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6697. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6698. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1, int arg2, int arg3, int arg4, int arg5, int arg6);
  6699. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6700. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate(object delegateObj, object[] p)
  6701. {
  6702. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate)delegateObj;
  6703. object result = null;
  6704. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6705. var arg1 = (int)p[1];
  6706. var arg2 = (int)p[2];
  6707. var arg3 = (int)p[3];
  6708. var arg4 = (int)p[4];
  6709. var arg5 = (int)p[5];
  6710. var arg6 = (int)p[6];
  6711. d(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
  6712. return result;
  6713. }
  6714. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6715. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6716. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1, uint arg2, Unity.Burst.Intrinsics.X86.MXCSRBits arg3);
  6717. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6718. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  6719. {
  6720. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6721. object result = null;
  6722. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6723. var arg1 = (int)p[1];
  6724. var arg2 = (uint)p[2];
  6725. var arg3 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[3];
  6726. d(arg0, arg1, arg2, arg3);
  6727. return result;
  6728. }
  6729. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6730. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6731. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate(Unity.Burst.Intrinsics.v128* arg0, long arg1);
  6732. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6733. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate(object delegateObj, object[] p)
  6734. {
  6735. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate)delegateObj;
  6736. object result = null;
  6737. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6738. var arg1 = (long)p[1];
  6739. d(arg0, arg1);
  6740. return result;
  6741. }
  6742. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6743. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6744. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_2_UInt64_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Burst.Intrinsics.v128* arg0, long arg1, ulong arg2, Unity.Burst.Intrinsics.X86.MXCSRBits arg3);
  6745. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6746. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_2_UInt64_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  6747. {
  6748. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_2_UInt64_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6749. object result = null;
  6750. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6751. var arg1 = (long)p[1];
  6752. var arg2 = (ulong)p[2];
  6753. var arg3 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[3];
  6754. d(arg0, arg1, arg2, arg3);
  6755. return result;
  6756. }
  6757. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6758. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6759. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate(Unity.Burst.Intrinsics.v128* arg0, sbyte arg1, sbyte arg2, sbyte arg3, sbyte arg4);
  6760. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6761. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate(object delegateObj, object[] p)
  6762. {
  6763. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate)delegateObj;
  6764. object result = null;
  6765. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6766. var arg1 = (sbyte)p[1];
  6767. var arg2 = (sbyte)p[2];
  6768. var arg3 = (sbyte)p[3];
  6769. var arg4 = (sbyte)p[4];
  6770. d(arg0, arg1, arg2, arg3, arg4);
  6771. return result;
  6772. }
  6773. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6775. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate(Unity.Burst.Intrinsics.v128* arg0, uint arg1);
  6776. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6777. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate(object delegateObj, object[] p)
  6778. {
  6779. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate)delegateObj;
  6780. object result = null;
  6781. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6782. var arg1 = (uint)p[1];
  6783. d(arg0, arg1);
  6784. return result;
  6785. }
  6786. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6787. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6788. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate(Unity.Burst.Intrinsics.v128* arg0, uint arg1, uint arg2);
  6789. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6790. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  6791. {
  6792. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate)delegateObj;
  6793. object result = null;
  6794. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6795. var arg1 = (uint)p[1];
  6796. var arg2 = (uint)p[2];
  6797. d(arg0, arg1, arg2);
  6798. return result;
  6799. }
  6800. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6801. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6802. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Burst.Intrinsics.v128* arg0, uint arg1, uint arg2, Unity.Burst.Intrinsics.X86.MXCSRBits arg3);
  6803. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6804. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  6805. {
  6806. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6807. object result = null;
  6808. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6809. var arg1 = (uint)p[1];
  6810. var arg2 = (uint)p[2];
  6811. var arg3 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[3];
  6812. d(arg0, arg1, arg2, arg3);
  6813. return result;
  6814. }
  6815. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6816. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6817. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_UInt32_4_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Burst.Intrinsics.v128* arg0, uint arg1, uint arg2, uint arg3, Unity.Burst.Intrinsics.X86.MXCSRBits arg4);
  6818. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6819. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_UInt32_4_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  6820. {
  6821. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_UInt32_4_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6822. object result = null;
  6823. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6824. var arg1 = (uint)p[1];
  6825. var arg2 = (uint)p[2];
  6826. var arg3 = (uint)p[3];
  6827. var arg4 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[4];
  6828. d(arg0, arg1, arg2, arg3, arg4);
  6829. return result;
  6830. }
  6831. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6832. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6833. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate(Unity.Burst.Intrinsics.v128* arg0, ushort arg1);
  6834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6835. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate(object delegateObj, object[] p)
  6836. {
  6837. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate)delegateObj;
  6838. object result = null;
  6839. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6840. var arg1 = (ushort)p[1];
  6841. d(arg0, arg1);
  6842. return result;
  6843. }
  6844. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6845. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6846. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128x2_Ptr_Delegate(Unity.Burst.Intrinsics.v128x2* arg0);
  6847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6848. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128x2_Ptr_Delegate(object delegateObj, object[] p)
  6849. {
  6850. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128x2_Ptr_Delegate)delegateObj;
  6851. object result = null;
  6852. var arg0 = (Unity.Burst.Intrinsics.v128x2*)(IntPtr)p[0];
  6853. d(arg0);
  6854. return result;
  6855. }
  6856. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6857. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6858. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128x3_Ptr_Delegate(Unity.Burst.Intrinsics.v128x3* arg0);
  6859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6860. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128x3_Ptr_Delegate(object delegateObj, object[] p)
  6861. {
  6862. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128x3_Ptr_Delegate)delegateObj;
  6863. object result = null;
  6864. var arg0 = (Unity.Burst.Intrinsics.v128x3*)(IntPtr)p[0];
  6865. d(arg0);
  6866. return result;
  6867. }
  6868. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6869. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6870. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128x4_Ptr_Delegate(Unity.Burst.Intrinsics.v128x4* arg0);
  6871. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6872. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128x4_Ptr_Delegate(object delegateObj, object[] p)
  6873. {
  6874. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128x4_Ptr_Delegate)delegateObj;
  6875. object result = null;
  6876. var arg0 = (Unity.Burst.Intrinsics.v128x4*)(IntPtr)p[0];
  6877. d(arg0);
  6878. return result;
  6879. }
  6880. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6881. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6882. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate(Unity.Burst.Intrinsics.v256* arg0);
  6883. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6884. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate(object delegateObj, object[] p)
  6885. {
  6886. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate)delegateObj;
  6887. object result = null;
  6888. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6889. d(arg0);
  6890. return result;
  6891. }
  6892. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6893. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6894. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues arg1);
  6895. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6896. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  6897. {
  6898. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate)delegateObj;
  6899. object result = null;
  6900. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6901. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[1];
  6902. d(arg0, ref arg1);
  6903. return result;
  6904. }
  6905. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6906. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6907. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues arg1, int arg2);
  6908. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6909. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6910. {
  6911. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_2_Int32_Delegate)delegateObj;
  6912. object result = null;
  6913. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6914. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[1];
  6915. var arg2 = (int)p[2];
  6916. d(arg0, ref arg1, arg2);
  6917. return result;
  6918. }
  6919. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6920. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6921. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_ArrayOfFrustumPlanesV256_Ref_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.ArrayOfFrustumPlanesV256 arg1);
  6922. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6923. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_ArrayOfFrustumPlanesV256_Ref_Delegate(object delegateObj, object[] p)
  6924. {
  6925. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_ArrayOfFrustumPlanesV256_Ref_Delegate)delegateObj;
  6926. object result = null;
  6927. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6928. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.ArrayOfFrustumPlanesV256)p[1];
  6929. d(arg0, ref arg1);
  6930. return result;
  6931. }
  6932. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6933. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6934. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts arg1, int arg2);
  6935. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6936. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6937. {
  6938. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_Delegate)delegateObj;
  6939. object result = null;
  6940. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6941. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  6942. var arg2 = (int)p[2];
  6943. d(arg0, ref arg1, arg2);
  6944. return result;
  6945. }
  6946. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6947. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6948. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts arg1, int arg2, int arg3);
  6949. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6950. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate(object delegateObj, object[] p)
  6951. {
  6952. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_GatherScatterInts_Ref_2_Int32_3_Int32_Delegate)delegateObj;
  6953. object result = null;
  6954. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6955. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  6956. var arg2 = (int)p[2];
  6957. var arg3 = (int)p[3];
  6958. d(arg0, ref arg1, arg2, arg3);
  6959. return result;
  6960. }
  6961. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6962. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6963. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues arg1);
  6964. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6965. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  6966. {
  6967. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate)delegateObj;
  6968. object result = null;
  6969. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6970. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[1];
  6971. d(arg0, ref arg1);
  6972. return result;
  6973. }
  6974. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6975. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6976. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues arg1, int arg2);
  6977. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6978. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate(object delegateObj, object[] p)
  6979. {
  6980. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_2_Int32_Delegate)delegateObj;
  6981. object result = null;
  6982. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6983. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[1];
  6984. var arg2 = (int)p[2];
  6985. d(arg0, ref arg1, arg2);
  6986. return result;
  6987. }
  6988. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6989. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6990. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Unity_Burst_Intrinsics_v256_Ref_Delegate(Unity.Burst.Intrinsics.v256* arg0, ref Unity.Burst.Intrinsics.v256 arg1);
  6991. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6992. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Unity_Burst_Intrinsics_v256_Ref_Delegate(object delegateObj, object[] p)
  6993. {
  6994. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Unity_Burst_Intrinsics_v256_Ref_Delegate)delegateObj;
  6995. object result = null;
  6996. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6997. var arg1 = (Unity.Burst.Intrinsics.v256)p[1];
  6998. d(arg0, ref arg1);
  6999. return result;
  7000. }
  7001. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7002. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7003. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate(Unity.Burst.Intrinsics.v256* arg0, double arg1);
  7004. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7005. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  7006. {
  7007. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate)delegateObj;
  7008. object result = null;
  7009. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7010. var arg1 = (double)p[1];
  7011. d(arg0, arg1);
  7012. return result;
  7013. }
  7014. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7015. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7016. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate(Unity.Burst.Intrinsics.v256* arg0, float arg1);
  7017. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7018. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  7019. {
  7020. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate)delegateObj;
  7021. object result = null;
  7022. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7023. var arg1 = (float)p[1];
  7024. d(arg0, arg1);
  7025. return result;
  7026. }
  7027. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7028. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7029. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, int arg1);
  7030. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7031. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7032. {
  7033. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate)delegateObj;
  7034. object result = null;
  7035. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7036. var arg1 = (int)p[1];
  7037. d(arg0, arg1);
  7038. return result;
  7039. }
  7040. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7041. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7042. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, int arg1, int arg2);
  7043. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7044. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  7045. {
  7046. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  7047. object result = null;
  7048. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7049. var arg1 = (int)p[1];
  7050. var arg2 = (int)p[2];
  7051. d(arg0, arg1, arg2);
  7052. return result;
  7053. }
  7054. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7055. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7056. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_3_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, int arg1, int arg2, int arg3);
  7057. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7058. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_3_Int32_Delegate(object delegateObj, object[] p)
  7059. {
  7060. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_3_Int32_Delegate)delegateObj;
  7061. object result = null;
  7062. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7063. var arg1 = (int)p[1];
  7064. var arg2 = (int)p[2];
  7065. var arg3 = (int)p[3];
  7066. d(arg0, arg1, arg2, arg3);
  7067. return result;
  7068. }
  7069. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7070. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7071. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate(Unity.Burst.Intrinsics.v256* arg0, int arg1, long arg2);
  7072. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7073. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate(object delegateObj, object[] p)
  7074. {
  7075. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate)delegateObj;
  7076. object result = null;
  7077. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7078. var arg1 = (int)p[1];
  7079. var arg2 = (long)p[2];
  7080. d(arg0, arg1, arg2);
  7081. return result;
  7082. }
  7083. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7084. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7085. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate(Unity.Burst.Intrinsics.v256* arg0, sbyte arg1, sbyte arg2, sbyte arg3, sbyte arg4);
  7086. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7087. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate(object delegateObj, object[] p)
  7088. {
  7089. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate)delegateObj;
  7090. object result = null;
  7091. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7092. var arg1 = (sbyte)p[1];
  7093. var arg2 = (sbyte)p[2];
  7094. var arg3 = (sbyte)p[3];
  7095. var arg4 = (sbyte)p[4];
  7096. d(arg0, arg1, arg2, arg3, arg4);
  7097. return result;
  7098. }
  7099. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7100. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7101. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate(Unity.Burst.Intrinsics.v256* arg0, uint arg1);
  7102. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7103. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate(object delegateObj, object[] p)
  7104. {
  7105. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate)delegateObj;
  7106. object result = null;
  7107. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7108. var arg1 = (uint)p[1];
  7109. d(arg0, arg1);
  7110. return result;
  7111. }
  7112. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7113. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7114. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_2_UInt32_3_UInt32_4_UInt32_Delegate(Unity.Burst.Intrinsics.v256* arg0, uint arg1, uint arg2, uint arg3, uint arg4);
  7115. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7116. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_2_UInt32_3_UInt32_4_UInt32_Delegate(object delegateObj, object[] p)
  7117. {
  7118. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_2_UInt32_3_UInt32_4_UInt32_Delegate)delegateObj;
  7119. object result = null;
  7120. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7121. var arg1 = (uint)p[1];
  7122. var arg2 = (uint)p[2];
  7123. var arg3 = (uint)p[3];
  7124. var arg4 = (uint)p[4];
  7125. d(arg0, arg1, arg2, arg3, arg4);
  7126. return result;
  7127. }
  7128. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7129. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7130. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate(Unity.Burst.Intrinsics.v256* arg0, ulong arg1);
  7131. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7132. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate(object delegateObj, object[] p)
  7133. {
  7134. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate)delegateObj;
  7135. object result = null;
  7136. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7137. var arg1 = (ulong)p[1];
  7138. d(arg0, arg1);
  7139. return result;
  7140. }
  7141. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7142. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7143. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt16_2_UInt16_3_UInt16_4_UInt16_Delegate(Unity.Burst.Intrinsics.v256* arg0, ushort arg1, ushort arg2, ushort arg3, ushort arg4);
  7144. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7145. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt16_2_UInt16_3_UInt16_4_UInt16_Delegate(object delegateObj, object[] p)
  7146. {
  7147. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt16_2_UInt16_3_UInt16_4_UInt16_Delegate)delegateObj;
  7148. object result = null;
  7149. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  7150. var arg1 = (ushort)p[1];
  7151. var arg2 = (ushort)p[2];
  7152. var arg3 = (ushort)p[3];
  7153. var arg4 = (ushort)p[4];
  7154. d(arg0, arg1, arg2, arg3, arg4);
  7155. return result;
  7156. }
  7157. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7158. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7159. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.v64* arg0, int arg1);
  7160. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7161. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7162. {
  7163. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate)delegateObj;
  7164. object result = null;
  7165. var arg0 = (Unity.Burst.Intrinsics.v64*)(IntPtr)p[0];
  7166. var arg1 = (int)p[1];
  7167. d(arg0, arg1);
  7168. return result;
  7169. }
  7170. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7171. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7172. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate(Unity.Burst.Intrinsics.v64* arg0, int arg1, float arg2);
  7173. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7174. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate(object delegateObj, object[] p)
  7175. {
  7176. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate)delegateObj;
  7177. object result = null;
  7178. var arg0 = (Unity.Burst.Intrinsics.v64*)(IntPtr)p[0];
  7179. var arg1 = (int)p[1];
  7180. var arg2 = (float)p[2];
  7181. d(arg0, arg1, arg2);
  7182. return result;
  7183. }
  7184. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7185. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7186. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v64x2_Ptr_Delegate(Unity.Burst.Intrinsics.v64x2* arg0);
  7187. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7188. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64x2_Ptr_Delegate(object delegateObj, object[] p)
  7189. {
  7190. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64x2_Ptr_Delegate)delegateObj;
  7191. object result = null;
  7192. var arg0 = (Unity.Burst.Intrinsics.v64x2*)(IntPtr)p[0];
  7193. d(arg0);
  7194. return result;
  7195. }
  7196. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7197. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7198. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v64x3_Ptr_Delegate(Unity.Burst.Intrinsics.v64x3* arg0);
  7199. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7200. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64x3_Ptr_Delegate(object delegateObj, object[] p)
  7201. {
  7202. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64x3_Ptr_Delegate)delegateObj;
  7203. object result = null;
  7204. var arg0 = (Unity.Burst.Intrinsics.v64x3*)(IntPtr)p[0];
  7205. d(arg0);
  7206. return result;
  7207. }
  7208. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7209. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7210. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v64x4_Ptr_Delegate(Unity.Burst.Intrinsics.v64x4* arg0);
  7211. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7212. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64x4_Ptr_Delegate(object delegateObj, object[] p)
  7213. {
  7214. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64x4_Ptr_Delegate)delegateObj;
  7215. object result = null;
  7216. var arg0 = (Unity.Burst.Intrinsics.v64x4*)(IntPtr)p[0];
  7217. d(arg0);
  7218. return result;
  7219. }
  7220. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7221. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7222. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate(Unity.Mathematics.double2* arg0);
  7223. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7224. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate(object delegateObj, object[] p)
  7225. {
  7226. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate)delegateObj;
  7227. object result = null;
  7228. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  7229. d(arg0);
  7230. return result;
  7231. }
  7232. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7233. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7234. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate(Unity.Mathematics.double2* arg0, ref Unity.Mathematics.double2 arg1);
  7235. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7236. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  7237. {
  7238. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  7239. object result = null;
  7240. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  7241. var arg1 = (Unity.Mathematics.double2)p[1];
  7242. d(arg0, ref arg1);
  7243. return result;
  7244. }
  7245. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7246. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7247. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_2_Unity_Mathematics_double2_Ref_Delegate(Unity.Mathematics.double2* arg0, ref Unity.Mathematics.double2 arg1, ref Unity.Mathematics.double2 arg2);
  7248. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7249. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_2_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  7250. {
  7251. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_2_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  7252. object result = null;
  7253. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  7254. var arg1 = (Unity.Mathematics.double2)p[1];
  7255. var arg2 = (Unity.Mathematics.double2)p[2];
  7256. d(arg0, ref arg1, ref arg2);
  7257. return result;
  7258. }
  7259. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7260. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7261. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate(Unity.Mathematics.double2* arg0, ref Unity.Mathematics.half2 arg1);
  7262. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7263. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate(object delegateObj, object[] p)
  7264. {
  7265. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate)delegateObj;
  7266. object result = null;
  7267. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  7268. var arg1 = (Unity.Mathematics.half2)p[1];
  7269. d(arg0, ref arg1);
  7270. return result;
  7271. }
  7272. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7273. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7274. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate(Unity.Mathematics.double2* arg0, int arg1);
  7275. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7276. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7277. {
  7278. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate)delegateObj;
  7279. object result = null;
  7280. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  7281. var arg1 = (int)p[1];
  7282. d(arg0, arg1);
  7283. return result;
  7284. }
  7285. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7286. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7287. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate(Unity.Mathematics.double2x2* arg0);
  7288. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7289. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate(object delegateObj, object[] p)
  7290. {
  7291. var d = (R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate)delegateObj;
  7292. object result = null;
  7293. var arg0 = (Unity.Mathematics.double2x2*)(IntPtr)p[0];
  7294. d(arg0);
  7295. return result;
  7296. }
  7297. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7298. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7299. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate(Unity.Mathematics.double3* arg0);
  7300. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7301. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate(object delegateObj, object[] p)
  7302. {
  7303. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate)delegateObj;
  7304. object result = null;
  7305. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  7306. d(arg0);
  7307. return result;
  7308. }
  7309. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7310. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7311. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate(Unity.Mathematics.double3* arg0, ref Unity.Mathematics.double3 arg1);
  7312. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7313. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  7314. {
  7315. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  7316. object result = null;
  7317. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  7318. var arg1 = (Unity.Mathematics.double3)p[1];
  7319. d(arg0, ref arg1);
  7320. return result;
  7321. }
  7322. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7323. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7324. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_2_Unity_Mathematics_double3_Ref_Delegate(Unity.Mathematics.double3* arg0, ref Unity.Mathematics.double3 arg1, ref Unity.Mathematics.double3 arg2);
  7325. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7326. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_2_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  7327. {
  7328. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_2_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  7329. object result = null;
  7330. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  7331. var arg1 = (Unity.Mathematics.double3)p[1];
  7332. var arg2 = (Unity.Mathematics.double3)p[2];
  7333. d(arg0, ref arg1, ref arg2);
  7334. return result;
  7335. }
  7336. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7337. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7338. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate(Unity.Mathematics.double3* arg0, ref Unity.Mathematics.half3 arg1);
  7339. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7340. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate(object delegateObj, object[] p)
  7341. {
  7342. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate)delegateObj;
  7343. object result = null;
  7344. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  7345. var arg1 = (Unity.Mathematics.half3)p[1];
  7346. d(arg0, ref arg1);
  7347. return result;
  7348. }
  7349. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7350. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7351. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate(Unity.Mathematics.double4* arg0);
  7352. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7353. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate(object delegateObj, object[] p)
  7354. {
  7355. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate)delegateObj;
  7356. object result = null;
  7357. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7358. d(arg0);
  7359. return result;
  7360. }
  7361. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7362. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7363. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate(Unity.Mathematics.double4* arg0, ref Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer arg1);
  7364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7365. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate(object delegateObj, object[] p)
  7366. {
  7367. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate)delegateObj;
  7368. object result = null;
  7369. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7370. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer)p[1];
  7371. d(arg0, ref arg1);
  7372. return result;
  7373. }
  7374. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7375. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7376. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate(Unity.Mathematics.double4* arg0, ref Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer arg1, ref Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer arg2);
  7377. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7378. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate(object delegateObj, object[] p)
  7379. {
  7380. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate)delegateObj;
  7381. object result = null;
  7382. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7383. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer)p[1];
  7384. var arg2 = (Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer)p[2];
  7385. d(arg0, ref arg1, ref arg2);
  7386. return result;
  7387. }
  7388. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7389. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7390. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(Unity.Mathematics.double4* arg0, ref Unity.Mathematics.double4 arg1);
  7391. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7392. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  7393. {
  7394. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  7395. object result = null;
  7396. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7397. var arg1 = (Unity.Mathematics.double4)p[1];
  7398. d(arg0, ref arg1);
  7399. return result;
  7400. }
  7401. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7402. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7403. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_2_Unity_Mathematics_double4_Ref_Delegate(Unity.Mathematics.double4* arg0, ref Unity.Mathematics.double4 arg1, ref Unity.Mathematics.double4 arg2);
  7404. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7405. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_2_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  7406. {
  7407. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_2_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  7408. object result = null;
  7409. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7410. var arg1 = (Unity.Mathematics.double4)p[1];
  7411. var arg2 = (Unity.Mathematics.double4)p[2];
  7412. d(arg0, ref arg1, ref arg2);
  7413. return result;
  7414. }
  7415. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7416. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7417. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate(Unity.Mathematics.double4* arg0, ref Unity.Mathematics.half4 arg1);
  7418. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7419. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate(object delegateObj, object[] p)
  7420. {
  7421. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate)delegateObj;
  7422. object result = null;
  7423. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7424. var arg1 = (Unity.Mathematics.half4)p[1];
  7425. d(arg0, ref arg1);
  7426. return result;
  7427. }
  7428. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7429. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7430. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate(Unity.Mathematics.double4* arg0, int arg1);
  7431. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7432. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7433. {
  7434. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate)delegateObj;
  7435. object result = null;
  7436. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  7437. var arg1 = (int)p[1];
  7438. d(arg0, arg1);
  7439. return result;
  7440. }
  7441. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7442. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7443. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate(Unity.Mathematics.float2* arg0);
  7444. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7445. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate(object delegateObj, object[] p)
  7446. {
  7447. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate)delegateObj;
  7448. object result = null;
  7449. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  7450. d(arg0);
  7451. return result;
  7452. }
  7453. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7454. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7455. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(Unity.Mathematics.float2* arg0, ref Unity.Mathematics.float2 arg1);
  7456. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7457. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  7458. {
  7459. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  7460. object result = null;
  7461. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  7462. var arg1 = (Unity.Mathematics.float2)p[1];
  7463. d(arg0, ref arg1);
  7464. return result;
  7465. }
  7466. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7467. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7468. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate(Unity.Mathematics.float2* arg0, ref Unity.Mathematics.float2 arg1, ref Unity.Mathematics.float2 arg2);
  7469. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7470. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  7471. {
  7472. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  7473. object result = null;
  7474. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  7475. var arg1 = (Unity.Mathematics.float2)p[1];
  7476. var arg2 = (Unity.Mathematics.float2)p[2];
  7477. d(arg0, ref arg1, ref arg2);
  7478. return result;
  7479. }
  7480. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7481. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7482. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate(Unity.Mathematics.float2* arg0, ref Unity.Mathematics.float2 arg1, ref Unity.Mathematics.float2 arg2, Unity.Mathematics.math.ShuffleComponent arg3);
  7483. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7484. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate(object delegateObj, object[] p)
  7485. {
  7486. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate)delegateObj;
  7487. object result = null;
  7488. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  7489. var arg1 = (Unity.Mathematics.float2)p[1];
  7490. var arg2 = (Unity.Mathematics.float2)p[2];
  7491. var arg3 = (Unity.Mathematics.math.ShuffleComponent)p[3];
  7492. d(arg0, ref arg1, ref arg2, arg3);
  7493. return result;
  7494. }
  7495. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7496. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7497. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate(Unity.Mathematics.float2* arg0, ref Unity.Mathematics.half2 arg1);
  7498. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7499. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate(object delegateObj, object[] p)
  7500. {
  7501. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate)delegateObj;
  7502. object result = null;
  7503. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  7504. var arg1 = (Unity.Mathematics.half2)p[1];
  7505. d(arg0, ref arg1);
  7506. return result;
  7507. }
  7508. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7509. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7510. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate(Unity.Mathematics.float3* arg0);
  7511. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7512. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate(object delegateObj, object[] p)
  7513. {
  7514. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate)delegateObj;
  7515. object result = null;
  7516. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7517. d(arg0);
  7518. return result;
  7519. }
  7520. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7521. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7522. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate(Unity.Mathematics.float3* arg0, ref Unity.Mathematics.float2 arg1, ref Unity.Mathematics.float2 arg2, Unity.Mathematics.math.ShuffleComponent arg3);
  7523. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7524. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate(object delegateObj, object[] p)
  7525. {
  7526. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate)delegateObj;
  7527. object result = null;
  7528. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7529. var arg1 = (Unity.Mathematics.float2)p[1];
  7530. var arg2 = (Unity.Mathematics.float2)p[2];
  7531. var arg3 = (Unity.Mathematics.math.ShuffleComponent)p[3];
  7532. d(arg0, ref arg1, ref arg2, arg3);
  7533. return result;
  7534. }
  7535. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7536. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7537. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(Unity.Mathematics.float3* arg0, ref Unity.Mathematics.float3 arg1);
  7538. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7539. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  7540. {
  7541. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7542. object result = null;
  7543. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7544. var arg1 = (Unity.Mathematics.float3)p[1];
  7545. d(arg0, ref arg1);
  7546. return result;
  7547. }
  7548. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7549. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7550. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate(Unity.Mathematics.float3* arg0, ref Unity.Mathematics.float3 arg1, ref Unity.Mathematics.float3 arg2);
  7551. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7552. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  7553. {
  7554. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7555. object result = null;
  7556. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7557. var arg1 = (Unity.Mathematics.float3)p[1];
  7558. var arg2 = (Unity.Mathematics.float3)p[2];
  7559. d(arg0, ref arg1, ref arg2);
  7560. return result;
  7561. }
  7562. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7563. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7564. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate(Unity.Mathematics.float3* arg0, ref Unity.Mathematics.half3 arg1);
  7565. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7566. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate(object delegateObj, object[] p)
  7567. {
  7568. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate)delegateObj;
  7569. object result = null;
  7570. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7571. var arg1 = (Unity.Mathematics.half3)p[1];
  7572. d(arg0, ref arg1);
  7573. return result;
  7574. }
  7575. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7576. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7577. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate(Unity.Mathematics.float4* arg0);
  7578. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7579. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate(object delegateObj, object[] p)
  7580. {
  7581. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate)delegateObj;
  7582. object result = null;
  7583. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7584. d(arg0);
  7585. return result;
  7586. }
  7587. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7588. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7589. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate(Unity.Mathematics.float4* arg0, ref Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer arg1);
  7590. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7591. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate(object delegateObj, object[] p)
  7592. {
  7593. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate)delegateObj;
  7594. object result = null;
  7595. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7596. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer)p[1];
  7597. d(arg0, ref arg1);
  7598. return result;
  7599. }
  7600. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7601. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7602. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate(Unity.Mathematics.float4* arg0, ref Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer arg1, ref Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer arg2);
  7603. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7604. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate(object delegateObj, object[] p)
  7605. {
  7606. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_2_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate)delegateObj;
  7607. object result = null;
  7608. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7609. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer)p[1];
  7610. var arg2 = (Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer)p[2];
  7611. d(arg0, ref arg1, ref arg2);
  7612. return result;
  7613. }
  7614. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7615. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7616. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate(Unity.Mathematics.float4* arg0, ref Unity.Mathematics.float2 arg1, ref Unity.Mathematics.float2 arg2, Unity.Mathematics.math.ShuffleComponent arg3);
  7617. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7618. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate(object delegateObj, object[] p)
  7619. {
  7620. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_3_Unity_Mathematics_math_ShuffleComponent_Delegate)delegateObj;
  7621. object result = null;
  7622. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7623. var arg1 = (Unity.Mathematics.float2)p[1];
  7624. var arg2 = (Unity.Mathematics.float2)p[2];
  7625. var arg3 = (Unity.Mathematics.math.ShuffleComponent)p[3];
  7626. d(arg0, ref arg1, ref arg2, arg3);
  7627. return result;
  7628. }
  7629. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7630. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7631. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(Unity.Mathematics.float4* arg0, ref Unity.Mathematics.float4 arg1);
  7632. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7633. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7634. {
  7635. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7636. object result = null;
  7637. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7638. var arg1 = (Unity.Mathematics.float4)p[1];
  7639. d(arg0, ref arg1);
  7640. return result;
  7641. }
  7642. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7643. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7644. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate(Unity.Mathematics.float4* arg0, ref Unity.Mathematics.float4 arg1, ref Unity.Mathematics.float4 arg2);
  7645. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7646. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7647. {
  7648. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7649. object result = null;
  7650. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7651. var arg1 = (Unity.Mathematics.float4)p[1];
  7652. var arg2 = (Unity.Mathematics.float4)p[2];
  7653. d(arg0, ref arg1, ref arg2);
  7654. return result;
  7655. }
  7656. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7657. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7658. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate(Unity.Mathematics.float4* arg0, ref Unity.Mathematics.half4 arg1);
  7659. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7660. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate(object delegateObj, object[] p)
  7661. {
  7662. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate)delegateObj;
  7663. object result = null;
  7664. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7665. var arg1 = (Unity.Mathematics.half4)p[1];
  7666. d(arg0, ref arg1);
  7667. return result;
  7668. }
  7669. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7670. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7671. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate(Unity.Mathematics.float4* arg0, int arg1);
  7672. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7673. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7674. {
  7675. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate)delegateObj;
  7676. object result = null;
  7677. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7678. var arg1 = (int)p[1];
  7679. d(arg0, arg1);
  7680. return result;
  7681. }
  7682. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7683. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7684. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Mathematics.float4* arg0, uint arg1, Unity.Burst.Intrinsics.X86.MXCSRBits arg2);
  7685. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7686. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(object delegateObj, object[] p)
  7687. {
  7688. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  7689. object result = null;
  7690. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7691. var arg1 = (uint)p[1];
  7692. var arg2 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[2];
  7693. d(arg0, arg1, arg2);
  7694. return result;
  7695. }
  7696. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7697. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7698. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate(Unity.Mathematics.float4x2* arg0, int arg1);
  7699. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7700. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7701. {
  7702. var d = (R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate)delegateObj;
  7703. object result = null;
  7704. var arg0 = (Unity.Mathematics.float4x2*)(IntPtr)p[0];
  7705. var arg1 = (int)p[1];
  7706. d(arg0, arg1);
  7707. return result;
  7708. }
  7709. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7710. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7711. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate(Unity.Mathematics.half2* arg0, ref Unity.Mathematics.double2 arg1);
  7712. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7713. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  7714. {
  7715. var d = (R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  7716. object result = null;
  7717. var arg0 = (Unity.Mathematics.half2*)(IntPtr)p[0];
  7718. var arg1 = (Unity.Mathematics.double2)p[1];
  7719. d(arg0, ref arg1);
  7720. return result;
  7721. }
  7722. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7723. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7724. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(Unity.Mathematics.half2* arg0, ref Unity.Mathematics.float2 arg1);
  7725. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7726. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  7727. {
  7728. var d = (R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  7729. object result = null;
  7730. var arg0 = (Unity.Mathematics.half2*)(IntPtr)p[0];
  7731. var arg1 = (Unity.Mathematics.float2)p[1];
  7732. d(arg0, ref arg1);
  7733. return result;
  7734. }
  7735. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7736. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7737. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate(Unity.Mathematics.half3* arg0, ref Unity.Mathematics.double3 arg1);
  7738. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7739. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  7740. {
  7741. var d = (R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  7742. object result = null;
  7743. var arg0 = (Unity.Mathematics.half3*)(IntPtr)p[0];
  7744. var arg1 = (Unity.Mathematics.double3)p[1];
  7745. d(arg0, ref arg1);
  7746. return result;
  7747. }
  7748. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7749. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7750. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(Unity.Mathematics.half3* arg0, ref Unity.Mathematics.float3 arg1);
  7751. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7752. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  7753. {
  7754. var d = (R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7755. object result = null;
  7756. var arg0 = (Unity.Mathematics.half3*)(IntPtr)p[0];
  7757. var arg1 = (Unity.Mathematics.float3)p[1];
  7758. d(arg0, ref arg1);
  7759. return result;
  7760. }
  7761. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7762. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7763. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(Unity.Mathematics.half4* arg0, ref Unity.Mathematics.double4 arg1);
  7764. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7765. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  7766. {
  7767. var d = (R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  7768. object result = null;
  7769. var arg0 = (Unity.Mathematics.half4*)(IntPtr)p[0];
  7770. var arg1 = (Unity.Mathematics.double4)p[1];
  7771. d(arg0, ref arg1);
  7772. return result;
  7773. }
  7774. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7775. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7776. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(Unity.Mathematics.half4* arg0, ref Unity.Mathematics.float4 arg1);
  7777. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7778. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7779. {
  7780. var d = (R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7781. object result = null;
  7782. var arg0 = (Unity.Mathematics.half4*)(IntPtr)p[0];
  7783. var arg1 = (Unity.Mathematics.float4)p[1];
  7784. d(arg0, ref arg1);
  7785. return result;
  7786. }
  7787. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7788. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7789. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_Int32_2_Int32_Delegate(Unity.Mathematics.int2* arg0, int arg1, int arg2);
  7790. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7791. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  7792. {
  7793. var d = (R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  7794. object result = null;
  7795. var arg0 = (Unity.Mathematics.int2*)(IntPtr)p[0];
  7796. var arg1 = (int)p[1];
  7797. var arg2 = (int)p[2];
  7798. d(arg0, arg1, arg2);
  7799. return result;
  7800. }
  7801. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7802. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7803. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate(Unity.Mathematics.int4* arg0);
  7804. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7805. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate(object delegateObj, object[] p)
  7806. {
  7807. var d = (R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate)delegateObj;
  7808. object result = null;
  7809. var arg0 = (Unity.Mathematics.int4*)(IntPtr)p[0];
  7810. d(arg0);
  7811. return result;
  7812. }
  7813. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7814. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7815. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_int4_Ptr_1_Int64_2_Int64_Delegate(Unity.Mathematics.int4* arg0, long arg1, long arg2);
  7816. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7817. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_int4_Ptr_1_Int64_2_Int64_Delegate(object delegateObj, object[] p)
  7818. {
  7819. var d = (R_System_Void_P_0_Unity_Mathematics_int4_Ptr_1_Int64_2_Int64_Delegate)delegateObj;
  7820. object result = null;
  7821. var arg0 = (Unity.Mathematics.int4*)(IntPtr)p[0];
  7822. var arg1 = (long)p[1];
  7823. var arg2 = (long)p[2];
  7824. d(arg0, arg1, arg2);
  7825. return result;
  7826. }
  7827. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7828. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7829. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate(Unity.Mathematics.quaternion* arg0);
  7830. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7831. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate(object delegateObj, object[] p)
  7832. {
  7833. var d = (R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate)delegateObj;
  7834. object result = null;
  7835. var arg0 = (Unity.Mathematics.quaternion*)(IntPtr)p[0];
  7836. d(arg0);
  7837. return result;
  7838. }
  7839. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7840. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7841. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(Unity.Mathematics.uint2* arg0, ref Unity.Mathematics.float2 arg1);
  7842. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7843. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  7844. {
  7845. var d = (R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  7846. object result = null;
  7847. var arg0 = (Unity.Mathematics.uint2*)(IntPtr)p[0];
  7848. var arg1 = (Unity.Mathematics.float2)p[1];
  7849. d(arg0, ref arg1);
  7850. return result;
  7851. }
  7852. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7853. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7854. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_UInt32_2_UInt32_Delegate(Unity.Mathematics.uint2* arg0, uint arg1, uint arg2);
  7855. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7856. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  7857. {
  7858. var d = (R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_UInt32_2_UInt32_Delegate)delegateObj;
  7859. object result = null;
  7860. var arg0 = (Unity.Mathematics.uint2*)(IntPtr)p[0];
  7861. var arg1 = (uint)p[1];
  7862. var arg2 = (uint)p[2];
  7863. d(arg0, arg1, arg2);
  7864. return result;
  7865. }
  7866. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7867. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7868. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(Unity.Mathematics.uint3* arg0, ref Unity.Mathematics.float3 arg1);
  7869. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7870. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  7871. {
  7872. var d = (R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7873. object result = null;
  7874. var arg0 = (Unity.Mathematics.uint3*)(IntPtr)p[0];
  7875. var arg1 = (Unity.Mathematics.float3)p[1];
  7876. d(arg0, ref arg1);
  7877. return result;
  7878. }
  7879. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7880. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7881. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(Unity.Mathematics.uint4* arg0, ref Unity.Mathematics.float4 arg1);
  7882. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7883. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7884. {
  7885. var d = (R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7886. object result = null;
  7887. var arg0 = (Unity.Mathematics.uint4*)(IntPtr)p[0];
  7888. var arg1 = (Unity.Mathematics.float4)p[1];
  7889. d(arg0, ref arg1);
  7890. return result;
  7891. }
  7892. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7893. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7894. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate(Unity.Mathematics.uint4* arg0, ref Unity.Mathematics.uint4 arg1);
  7895. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7896. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  7897. {
  7898. var d = (R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  7899. object result = null;
  7900. var arg0 = (Unity.Mathematics.uint4*)(IntPtr)p[0];
  7901. var arg1 = (Unity.Mathematics.uint4)p[1];
  7902. d(arg0, ref arg1);
  7903. return result;
  7904. }
  7905. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7906. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7907. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_UInt64_2_UInt64_Delegate(Unity.Mathematics.uint4* arg0, ulong arg1, ulong arg2);
  7908. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7909. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_UInt64_2_UInt64_Delegate(object delegateObj, object[] p)
  7910. {
  7911. var d = (R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_UInt64_2_UInt64_Delegate)delegateObj;
  7912. object result = null;
  7913. var arg0 = (Unity.Mathematics.uint4*)(IntPtr)p[0];
  7914. var arg1 = (ulong)p[1];
  7915. var arg2 = (ulong)p[2];
  7916. d(arg0, arg1, arg2);
  7917. return result;
  7918. }
  7919. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7920. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7921. private delegate void R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate(ref UnityBenchShared.DivisionByScalar arg0);
  7922. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7923. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate(object delegateObj, object[] p)
  7924. {
  7925. var d = (R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate)delegateObj;
  7926. object result = null;
  7927. var arg0 = (UnityBenchShared.DivisionByScalar)p[0];
  7928. d(ref arg0);
  7929. return result;
  7930. }
  7931. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7932. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7933. private delegate void R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate(ref UnityBenchShared.IntToFloatPenalty arg0);
  7934. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7935. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate(object delegateObj, object[] p)
  7936. {
  7937. var d = (R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate)delegateObj;
  7938. object result = null;
  7939. var arg0 = (UnityBenchShared.IntToFloatPenalty)p[0];
  7940. d(ref arg0);
  7941. return result;
  7942. }
  7943. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7944. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7945. private delegate void R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate(ref UnityBenchShared.PartialWrite arg0);
  7946. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7947. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate(object delegateObj, object[] p)
  7948. {
  7949. var d = (R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate)delegateObj;
  7950. object result = null;
  7951. var arg0 = (UnityBenchShared.PartialWrite)p[0];
  7952. d(ref arg0);
  7953. return result;
  7954. }
  7955. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7956. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7957. private delegate void R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate(ref UnityBenchShared.PartialWriteWorkaround arg0);
  7958. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7959. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate(object delegateObj, object[] p)
  7960. {
  7961. var d = (R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate)delegateObj;
  7962. object result = null;
  7963. var arg0 = (UnityBenchShared.PartialWriteWorkaround)p[0];
  7964. d(ref arg0);
  7965. return result;
  7966. }
  7967. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7968. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7969. private delegate void R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate(ref UnityBenchShared.RedundantStore arg0);
  7970. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7971. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate(object delegateObj, object[] p)
  7972. {
  7973. var d = (R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate)delegateObj;
  7974. object result = null;
  7975. var arg0 = (UnityBenchShared.RedundantStore)p[0];
  7976. d(ref arg0);
  7977. return result;
  7978. }
  7979. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7980. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7981. private delegate void R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate(ref UnityBenchShared.RedundantStoreWorkaround arg0);
  7982. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7983. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate(object delegateObj, object[] p)
  7984. {
  7985. var d = (R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate)delegateObj;
  7986. object result = null;
  7987. var arg0 = (UnityBenchShared.RedundantStoreWorkaround)p[0];
  7988. d(ref arg0);
  7989. return result;
  7990. }
  7991. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7992. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7993. private delegate void R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate(ref UnityBenchShared.SquareRoot arg0);
  7994. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7995. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate(object delegateObj, object[] p)
  7996. {
  7997. var d = (R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate)delegateObj;
  7998. object result = null;
  7999. var arg0 = (UnityBenchShared.SquareRoot)p[0];
  8000. d(ref arg0);
  8001. return result;
  8002. }
  8003. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8004. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8005. private delegate void R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate(ref UnityBenchShared.SquareRootRecip arg0);
  8006. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8007. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate(object delegateObj, object[] p)
  8008. {
  8009. var d = (R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate)delegateObj;
  8010. object result = null;
  8011. var arg0 = (UnityBenchShared.SquareRootRecip)p[0];
  8012. d(ref arg0);
  8013. return result;
  8014. }
  8015. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8016. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8017. private delegate void R_System_Void_P_0_Boolean_Delegate(bool arg0);
  8018. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8019. private unsafe static object Call_R_System_Void_P_0_Boolean_Delegate(object delegateObj, object[] p)
  8020. {
  8021. var d = (R_System_Void_P_0_Boolean_Delegate)delegateObj;
  8022. object result = null;
  8023. var arg0 = (bool)p[0];
  8024. d(arg0);
  8025. return result;
  8026. }
  8027. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8028. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8029. private delegate void R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate(bool arg0, ref Unity.Collections.FixedString64 arg1);
  8030. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8031. private unsafe static object Call_R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate(object delegateObj, object[] p)
  8032. {
  8033. var d = (R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate)delegateObj;
  8034. object result = null;
  8035. var arg0 = (bool)p[0];
  8036. var arg1 = (Unity.Collections.FixedString64)p[1];
  8037. d(arg0, ref arg1);
  8038. return result;
  8039. }
  8040. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8041. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8042. private delegate void R_System_Void_P_0_Byte_Delegate(byte arg0);
  8043. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8044. private unsafe static object Call_R_System_Void_P_0_Byte_Delegate(object delegateObj, object[] p)
  8045. {
  8046. var d = (R_System_Void_P_0_Byte_Delegate)delegateObj;
  8047. object result = null;
  8048. var arg0 = (byte)p[0];
  8049. d(arg0);
  8050. return result;
  8051. }
  8052. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8053. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8054. private unsafe delegate void R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate(byte* arg0, int arg1);
  8055. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8056. private unsafe static object Call_R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8057. {
  8058. var d = (R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate)delegateObj;
  8059. object result = null;
  8060. var arg0 = (byte*)(IntPtr)p[0];
  8061. var arg1 = (int)p[1];
  8062. d(arg0, arg1);
  8063. return result;
  8064. }
  8065. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8066. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8067. private delegate void R_System_Void_P_0_Double_Delegate(double arg0);
  8068. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8069. private unsafe static object Call_R_System_Void_P_0_Double_Delegate(object delegateObj, object[] p)
  8070. {
  8071. var d = (R_System_Void_P_0_Double_Delegate)delegateObj;
  8072. object result = null;
  8073. var arg0 = (double)p[0];
  8074. d(arg0);
  8075. return result;
  8076. }
  8077. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8078. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8079. private unsafe delegate void R_System_Void_P_0_Double_Ptr_Delegate(double* arg0);
  8080. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8081. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_Delegate(object delegateObj, object[] p)
  8082. {
  8083. var d = (R_System_Void_P_0_Double_Ptr_Delegate)delegateObj;
  8084. object result = null;
  8085. var arg0 = (double*)(IntPtr)p[0];
  8086. d(arg0);
  8087. return result;
  8088. }
  8089. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8090. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8091. private unsafe delegate void R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate(double* arg0, ref Unity.Mathematics.half arg1);
  8092. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8093. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate(object delegateObj, object[] p)
  8094. {
  8095. var d = (R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate)delegateObj;
  8096. object result = null;
  8097. var arg0 = (double*)(IntPtr)p[0];
  8098. var arg1 = (Unity.Mathematics.half)p[1];
  8099. d(arg0, ref arg1);
  8100. return result;
  8101. }
  8102. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8103. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8104. private unsafe delegate void R_System_Void_P_0_Double_Ptr_1_Double_Delegate(double* arg0, double arg1);
  8105. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8106. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  8107. {
  8108. var d = (R_System_Void_P_0_Double_Ptr_1_Double_Delegate)delegateObj;
  8109. object result = null;
  8110. var arg0 = (double*)(IntPtr)p[0];
  8111. var arg1 = (double)p[1];
  8112. d(arg0, arg1);
  8113. return result;
  8114. }
  8115. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8116. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8117. private unsafe delegate void R_System_Void_P_0_Double_Ptr_1_Int32_Delegate(double* arg0, int arg1);
  8118. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8119. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8120. {
  8121. var d = (R_System_Void_P_0_Double_Ptr_1_Int32_Delegate)delegateObj;
  8122. object result = null;
  8123. var arg0 = (double*)(IntPtr)p[0];
  8124. var arg1 = (int)p[1];
  8125. d(arg0, arg1);
  8126. return result;
  8127. }
  8128. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8129. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8130. private delegate void R_System_Void_P_0_Single_Delegate(float arg0);
  8131. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8132. private unsafe static object Call_R_System_Void_P_0_Single_Delegate(object delegateObj, object[] p)
  8133. {
  8134. var d = (R_System_Void_P_0_Single_Delegate)delegateObj;
  8135. object result = null;
  8136. var arg0 = (float)p[0];
  8137. d(arg0);
  8138. return result;
  8139. }
  8140. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8141. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8142. private unsafe delegate void R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate(float* arg0, ref Unity.Mathematics.half arg1);
  8143. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8144. private unsafe static object Call_R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate(object delegateObj, object[] p)
  8145. {
  8146. var d = (R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate)delegateObj;
  8147. object result = null;
  8148. var arg0 = (float*)(IntPtr)p[0];
  8149. var arg1 = (Unity.Mathematics.half)p[1];
  8150. d(arg0, ref arg1);
  8151. return result;
  8152. }
  8153. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8154. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8155. private unsafe delegate void R_System_Void_P_0_Single_Ptr_1_Single_Delegate(float* arg0, float arg1);
  8156. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8157. private unsafe static object Call_R_System_Void_P_0_Single_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  8158. {
  8159. var d = (R_System_Void_P_0_Single_Ptr_1_Single_Delegate)delegateObj;
  8160. object result = null;
  8161. var arg0 = (float*)(IntPtr)p[0];
  8162. var arg1 = (float)p[1];
  8163. d(arg0, arg1);
  8164. return result;
  8165. }
  8166. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8167. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8168. private unsafe delegate void R_System_Void_P_0_Single_Ptr_1_Single_Ptr_2_Single_Ptr_3_Int32_Delegate(float* arg0, float* arg1, float* arg2, int arg3);
  8169. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8170. private unsafe static object Call_R_System_Void_P_0_Single_Ptr_1_Single_Ptr_2_Single_Ptr_3_Int32_Delegate(object delegateObj, object[] p)
  8171. {
  8172. var d = (R_System_Void_P_0_Single_Ptr_1_Single_Ptr_2_Single_Ptr_3_Int32_Delegate)delegateObj;
  8173. object result = null;
  8174. var arg0 = (float*)(IntPtr)p[0];
  8175. var arg1 = (float*)(IntPtr)p[1];
  8176. var arg2 = (float*)(IntPtr)p[2];
  8177. var arg3 = (int)p[3];
  8178. d(arg0, arg1, arg2, arg3);
  8179. return result;
  8180. }
  8181. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8182. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8183. private unsafe delegate void R_System_Void_P_0_Single_Ptr_1_Int32_Delegate(float* arg0, int arg1);
  8184. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8185. private unsafe static object Call_R_System_Void_P_0_Single_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8186. {
  8187. var d = (R_System_Void_P_0_Single_Ptr_1_Int32_Delegate)delegateObj;
  8188. object result = null;
  8189. var arg0 = (float*)(IntPtr)p[0];
  8190. var arg1 = (int)p[1];
  8191. d(arg0, arg1);
  8192. return result;
  8193. }
  8194. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8195. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8196. private delegate void R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate(int arg0, int arg1, int arg2);
  8197. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8198. private unsafe static object Call_R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  8199. {
  8200. var d = (R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate)delegateObj;
  8201. object result = null;
  8202. var arg0 = (int)p[0];
  8203. var arg1 = (int)p[1];
  8204. var arg2 = (int)p[2];
  8205. d(arg0, arg1, arg2);
  8206. return result;
  8207. }
  8208. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8209. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8210. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_Delegate(int* arg0);
  8211. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8212. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_Delegate(object delegateObj, object[] p)
  8213. {
  8214. var d = (R_System_Void_P_0_Int32_Ptr_Delegate)delegateObj;
  8215. object result = null;
  8216. var arg0 = (int*)(IntPtr)p[0];
  8217. d(arg0);
  8218. return result;
  8219. }
  8220. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8221. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8222. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Double_Delegate(int* arg0, double arg1);
  8223. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8224. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  8225. {
  8226. var d = (R_System_Void_P_0_Int32_Ptr_1_Double_Delegate)delegateObj;
  8227. object result = null;
  8228. var arg0 = (int*)(IntPtr)p[0];
  8229. var arg1 = (double)p[1];
  8230. d(arg0, arg1);
  8231. return result;
  8232. }
  8233. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8234. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8235. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate(int* arg0, int arg1);
  8236. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8237. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8238. {
  8239. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate)delegateObj;
  8240. object result = null;
  8241. var arg0 = (int*)(IntPtr)p[0];
  8242. var arg1 = (int)p[1];
  8243. d(arg0, arg1);
  8244. return result;
  8245. }
  8246. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8247. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8248. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate(int* arg0, int arg1, int arg2);
  8249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8250. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  8251. {
  8252. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  8253. object result = null;
  8254. var arg0 = (int*)(IntPtr)p[0];
  8255. var arg1 = (int)p[1];
  8256. var arg2 = (int)p[2];
  8257. d(arg0, arg1, arg2);
  8258. return result;
  8259. }
  8260. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8262. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate(int* arg0, int arg1, int arg2, int arg3, int arg4);
  8263. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8264. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate(object delegateObj, object[] p)
  8265. {
  8266. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate)delegateObj;
  8267. object result = null;
  8268. var arg0 = (int*)(IntPtr)p[0];
  8269. var arg1 = (int)p[1];
  8270. var arg2 = (int)p[2];
  8271. var arg3 = (int)p[3];
  8272. var arg4 = (int)p[4];
  8273. d(arg0, arg1, arg2, arg3, arg4);
  8274. return result;
  8275. }
  8276. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8277. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8278. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate(int* arg0, int arg1, int arg2, int arg3, int arg4, int arg5, int arg6);
  8279. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8280. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate(object delegateObj, object[] p)
  8281. {
  8282. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate)delegateObj;
  8283. object result = null;
  8284. var arg0 = (int*)(IntPtr)p[0];
  8285. var arg1 = (int)p[1];
  8286. var arg2 = (int)p[2];
  8287. var arg3 = (int)p[3];
  8288. var arg4 = (int)p[4];
  8289. var arg5 = (int)p[5];
  8290. var arg6 = (int)p[6];
  8291. d(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
  8292. return result;
  8293. }
  8294. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8295. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8296. private unsafe delegate void R_System_Void_P_0_Int64_Ptr_Delegate(long* arg0);
  8297. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8298. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_Delegate(object delegateObj, object[] p)
  8299. {
  8300. var d = (R_System_Void_P_0_Int64_Ptr_Delegate)delegateObj;
  8301. object result = null;
  8302. var arg0 = (long*)(IntPtr)p[0];
  8303. d(arg0);
  8304. return result;
  8305. }
  8306. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8307. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8308. private unsafe delegate void R_System_Void_P_0_Int64_Ptr_1_Double_Delegate(long* arg0, double arg1);
  8309. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8310. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  8311. {
  8312. var d = (R_System_Void_P_0_Int64_Ptr_1_Double_Delegate)delegateObj;
  8313. object result = null;
  8314. var arg0 = (long*)(IntPtr)p[0];
  8315. var arg1 = (double)p[1];
  8316. d(arg0, arg1);
  8317. return result;
  8318. }
  8319. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8320. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8321. private unsafe delegate void R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate(long* arg0, int arg1);
  8322. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8323. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8324. {
  8325. var d = (R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate)delegateObj;
  8326. object result = null;
  8327. var arg0 = (long*)(IntPtr)p[0];
  8328. var arg1 = (int)p[1];
  8329. d(arg0, arg1);
  8330. return result;
  8331. }
  8332. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8333. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8334. private unsafe delegate void R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate(long* arg0, long arg1);
  8335. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8336. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate(object delegateObj, object[] p)
  8337. {
  8338. var d = (R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate)delegateObj;
  8339. object result = null;
  8340. var arg0 = (long*)(IntPtr)p[0];
  8341. var arg1 = (long)p[1];
  8342. d(arg0, arg1);
  8343. return result;
  8344. }
  8345. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8346. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8347. private unsafe delegate void R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate(long* arg0, ulong arg1);
  8348. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8349. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate(object delegateObj, object[] p)
  8350. {
  8351. var d = (R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate)delegateObj;
  8352. object result = null;
  8353. var arg0 = (long*)(IntPtr)p[0];
  8354. var arg1 = (ulong)p[1];
  8355. d(arg0, arg1);
  8356. return result;
  8357. }
  8358. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8359. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8360. private unsafe delegate void R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate(sbyte* arg0, int arg1);
  8361. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8362. private unsafe static object Call_R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8363. {
  8364. var d = (R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate)delegateObj;
  8365. object result = null;
  8366. var arg0 = (sbyte*)(IntPtr)p[0];
  8367. var arg1 = (int)p[1];
  8368. d(arg0, arg1);
  8369. return result;
  8370. }
  8371. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8372. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8373. private delegate void R_System_Void_P_0_Int16_Delegate(short arg0);
  8374. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8375. private unsafe static object Call_R_System_Void_P_0_Int16_Delegate(object delegateObj, object[] p)
  8376. {
  8377. var d = (R_System_Void_P_0_Int16_Delegate)delegateObj;
  8378. object result = null;
  8379. var arg0 = (short)p[0];
  8380. d(arg0);
  8381. return result;
  8382. }
  8383. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8384. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8385. private unsafe delegate void R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate(short* arg0, int arg1);
  8386. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8387. private unsafe static object Call_R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8388. {
  8389. var d = (R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate)delegateObj;
  8390. object result = null;
  8391. var arg0 = (short*)(IntPtr)p[0];
  8392. var arg1 = (int)p[1];
  8393. d(arg0, arg1);
  8394. return result;
  8395. }
  8396. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8397. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8398. private unsafe delegate void R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate(uint* arg0, int arg1);
  8399. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8400. private unsafe static object Call_R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8401. {
  8402. var d = (R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate)delegateObj;
  8403. object result = null;
  8404. var arg0 = (uint*)(IntPtr)p[0];
  8405. var arg1 = (int)p[1];
  8406. d(arg0, arg1);
  8407. return result;
  8408. }
  8409. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8410. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8411. private unsafe delegate void R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate(ulong* arg0, double arg1);
  8412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8413. private unsafe static object Call_R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  8414. {
  8415. var d = (R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate)delegateObj;
  8416. object result = null;
  8417. var arg0 = (ulong*)(IntPtr)p[0];
  8418. var arg1 = (double)p[1];
  8419. d(arg0, arg1);
  8420. return result;
  8421. }
  8422. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8423. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8424. private unsafe delegate void R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate(ulong* arg0, int arg1);
  8425. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8426. private unsafe static object Call_R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8427. {
  8428. var d = (R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate)delegateObj;
  8429. object result = null;
  8430. var arg0 = (ulong*)(IntPtr)p[0];
  8431. var arg1 = (int)p[1];
  8432. d(arg0, arg1);
  8433. return result;
  8434. }
  8435. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8436. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8437. private unsafe delegate void R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(ulong* arg0, ulong arg1, ulong arg2);
  8438. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8439. private unsafe static object Call_R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(object delegateObj, object[] p)
  8440. {
  8441. var d = (R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate)delegateObj;
  8442. object result = null;
  8443. var arg0 = (ulong*)(IntPtr)p[0];
  8444. var arg1 = (ulong)p[1];
  8445. var arg2 = (ulong)p[2];
  8446. d(arg0, arg1, arg2);
  8447. return result;
  8448. }
  8449. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  8450. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8451. private unsafe delegate void R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate(ushort* arg0, int arg1);
  8452. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  8453. private unsafe static object Call_R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  8454. {
  8455. var d = (R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate)delegateObj;
  8456. object result = null;
  8457. var arg0 = (ushort*)(IntPtr)p[0];
  8458. var arg1 = (int)p[1];
  8459. d(arg0, arg1);
  8460. return result;
  8461. }
  8462. #endif
  8463. }
  8464. }