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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859
  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(System.IntPtr) }, typeof(R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate), Call_R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate);
  20. Register(typeof(System.IntPtr), new Type[] { typeof(int) }, typeof(R_IntPtr_P_0_Int32_Delegate), Call_R_IntPtr_P_0_Int32_Delegate);
  21. Register(typeof(System.UIntPtr), Array.Empty<Type>(), typeof(R_UIntPtr_P_Delegate), Call_R_UIntPtr_P_Delegate);
  22. Register(typeof(System.UIntPtr), new Type[] { typeof(System.UIntPtr) }, typeof(R_UIntPtr_P_0_UIntPtr_Delegate), Call_R_UIntPtr_P_0_UIntPtr_Delegate);
  23. 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);
  24. Register(typeof(System.UIntPtr), new Type[] { typeof(uint) }, typeof(R_UIntPtr_P_0_UInt32_Delegate), Call_R_UIntPtr_P_0_UInt32_Delegate);
  25. Register(typeof(bool), Array.Empty<Type>(), typeof(R_Boolean_P_Delegate), Call_R_Boolean_P_Delegate);
  26. 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);
  27. 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);
  28. 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);
  29. Register(typeof(bool), new Type[] { typeof(System.IntPtr) }, typeof(R_Boolean_P_0_IntPtr_Delegate), Call_R_Boolean_P_0_IntPtr_Delegate);
  30. 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);
  31. 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);
  32. 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);
  33. 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);
  34. 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);
  35. 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);
  36. 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);
  37. 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);
  38. 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);
  39. 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);
  40. 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);
  41. 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);
  42. 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);
  43. 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);
  44. 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);
  45. 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);
  46. 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);
  47. 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);
  48. 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);
  49. 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);
  50. 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);
  51. 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);
  52. 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);
  53. Register(typeof(bool), new Type[] { typeof(bool) }, typeof(R_Boolean_P_0_Boolean_Delegate), Call_R_Boolean_P_0_Boolean_Delegate);
  54. 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);
  55. 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);
  56. Register(typeof(bool), new Type[] { typeof(double) }, typeof(R_Boolean_P_0_Double_Delegate), Call_R_Boolean_P_0_Double_Delegate);
  57. Register(typeof(bool), new Type[] { typeof(float) }, typeof(R_Boolean_P_0_Single_Delegate), Call_R_Boolean_P_0_Single_Delegate);
  58. 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);
  59. Register(typeof(bool), new Type[] { typeof(int) }, typeof(R_Boolean_P_0_Int32_Delegate), Call_R_Boolean_P_0_Int32_Delegate);
  60. 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);
  61. 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);
  62. 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);
  63. 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);
  64. 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);
  65. Register(typeof(byte), new Type[] { typeof(int) }, typeof(R_Byte_P_0_Int32_Delegate), Call_R_Byte_P_0_Int32_Delegate);
  66. Register(typeof(byte), new Type[] { typeof(long) }, typeof(R_Byte_P_0_Int64_Delegate), Call_R_Byte_P_0_Int64_Delegate);
  67. Register(typeof(byte), new Type[] { typeof(uint) }, typeof(R_Byte_P_0_UInt32_Delegate), Call_R_Byte_P_0_UInt32_Delegate);
  68. Register(typeof(double), Array.Empty<Type>(), typeof(R_Double_P_Delegate), Call_R_Double_P_Delegate);
  69. 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);
  70. 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);
  71. 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);
  72. 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);
  73. Register(typeof(double), new Type[] { typeof(double) }, typeof(R_Double_P_0_Double_Delegate), Call_R_Double_P_0_Double_Delegate);
  74. 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);
  75. Register(typeof(double), new Type[] { typeof(double).MakeByRefType() }, typeof(R_Double_P_0_Double_Ref_Delegate), Call_R_Double_P_0_Double_Ref_Delegate);
  76. Register(typeof(double), new Type[] { typeof(float) }, typeof(R_Double_P_0_Single_Delegate), Call_R_Double_P_0_Single_Delegate);
  77. 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);
  78. Register(typeof(double), new Type[] { typeof(int) }, typeof(R_Double_P_0_Int32_Delegate), Call_R_Double_P_0_Int32_Delegate);
  79. 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);
  80. Register(typeof(double), new Type[] { typeof(long).MakeByRefType() }, typeof(R_Double_P_0_Int64_Ref_Delegate), Call_R_Double_P_0_Int64_Ref_Delegate);
  81. Register(typeof(double), new Type[] { typeof(uint) }, typeof(R_Double_P_0_UInt32_Delegate), Call_R_Double_P_0_UInt32_Delegate);
  82. Register(typeof(double), new Type[] { typeof(ushort) }, typeof(R_Double_P_0_UInt16_Delegate), Call_R_Double_P_0_UInt16_Delegate);
  83. Register(typeof(float), Array.Empty<Type>(), typeof(R_Single_P_Delegate), Call_R_Single_P_Delegate);
  84. 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);
  85. 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);
  86. 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);
  87. 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);
  88. 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);
  89. 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);
  90. 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);
  91. 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);
  92. 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);
  93. 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);
  94. 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);
  95. 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);
  96. 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);
  97. 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);
  98. 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);
  99. 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);
  100. 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);
  101. 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);
  102. 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);
  103. 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);
  104. 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);
  105. Register(typeof(float), new Type[] { typeof(float) }, typeof(R_Single_P_0_Single_Delegate), Call_R_Single_P_0_Single_Delegate);
  106. 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);
  107. 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);
  108. Register(typeof(float), new Type[] { typeof(float).MakeByRefType() }, typeof(R_Single_P_0_Single_Ref_Delegate), Call_R_Single_P_0_Single_Ref_Delegate);
  109. Register(typeof(float), new Type[] { typeof(int) }, typeof(R_Single_P_0_Int32_Delegate), Call_R_Single_P_0_Int32_Delegate);
  110. 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);
  111. Register(typeof(float), new Type[] { typeof(int).MakeByRefType() }, typeof(R_Single_P_0_Int32_Ref_Delegate), Call_R_Single_P_0_Int32_Ref_Delegate);
  112. Register(typeof(float), new Type[] { typeof(uint) }, typeof(R_Single_P_0_UInt32_Delegate), Call_R_Single_P_0_UInt32_Delegate);
  113. 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);
  114. Register(typeof(float), new Type[] { typeof(ushort) }, typeof(R_Single_P_0_UInt16_Delegate), Call_R_Single_P_0_UInt16_Delegate);
  115. Register(typeof(int), Array.Empty<Type>(), typeof(R_Int32_P_Delegate), Call_R_Int32_P_Delegate);
  116. 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);
  117. 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);
  118. 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);
  119. 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);
  120. 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);
  121. 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);
  122. 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);
  123. 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);
  124. 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);
  125. 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);
  126. 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);
  127. 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);
  128. 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);
  129. 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);
  130. 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);
  131. Register(typeof(int), new Type[] { typeof(System.IntPtr) }, typeof(R_Int32_P_0_IntPtr_Delegate), Call_R_Int32_P_0_IntPtr_Delegate);
  132. 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);
  133. 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);
  134. 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);
  135. 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);
  136. 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);
  137. 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);
  138. 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);
  139. 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);
  140. 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);
  141. 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);
  142. 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);
  143. 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);
  144. 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);
  145. 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);
  146. 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);
  147. 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);
  148. 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);
  149. 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);
  150. 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);
  151. 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);
  152. 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);
  153. 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);
  154. 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);
  155. 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);
  156. 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);
  157. 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);
  158. 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);
  159. 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);
  160. 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);
  161. 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);
  162. 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);
  163. 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);
  164. 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);
  165. 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);
  166. 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);
  167. 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);
  168. 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);
  169. 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);
  170. 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);
  171. 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);
  172. Register(typeof(int), new Type[] { typeof(bool) }, typeof(R_Int32_P_0_Boolean_Delegate), Call_R_Int32_P_0_Boolean_Delegate);
  173. 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);
  174. 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);
  175. 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);
  176. Register(typeof(int), new Type[] { typeof(byte) }, typeof(R_Int32_P_0_Byte_Delegate), Call_R_Int32_P_0_Byte_Delegate);
  177. Register(typeof(int), new Type[] { typeof(byte).MakeByRefType() }, typeof(R_Int32_P_0_Byte_Ref_Delegate), Call_R_Int32_P_0_Byte_Ref_Delegate);
  178. Register(typeof(int), new Type[] { typeof(double) }, typeof(R_Int32_P_0_Double_Delegate), Call_R_Int32_P_0_Double_Delegate);
  179. Register(typeof(int), new Type[] { typeof(float) }, typeof(R_Int32_P_0_Single_Delegate), Call_R_Int32_P_0_Single_Delegate);
  180. 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);
  181. Register(typeof(int), new Type[] { typeof(int) }, typeof(R_Int32_P_0_Int32_Delegate), Call_R_Int32_P_0_Int32_Delegate);
  182. 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);
  183. 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);
  184. 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);
  185. Register(typeof(int), new Type[] { typeof(int).MakeByRefType() }, typeof(R_Int32_P_0_Int32_Ref_Delegate), Call_R_Int32_P_0_Int32_Ref_Delegate);
  186. 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);
  187. 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);
  188. Register(typeof(int), new Type[] { typeof(long) }, typeof(R_Int32_P_0_Int64_Delegate), Call_R_Int32_P_0_Int64_Delegate);
  189. Register(typeof(int), new Type[] { typeof(sbyte) }, typeof(R_Int32_P_0_SByte_Delegate), Call_R_Int32_P_0_SByte_Delegate);
  190. Register(typeof(int), new Type[] { typeof(sbyte).MakeByRefType() }, typeof(R_Int32_P_0_SByte_Ref_Delegate), Call_R_Int32_P_0_SByte_Ref_Delegate);
  191. Register(typeof(int), new Type[] { typeof(short) }, typeof(R_Int32_P_0_Int16_Delegate), Call_R_Int32_P_0_Int16_Delegate);
  192. Register(typeof(int), new Type[] { typeof(short).MakeByRefType() }, typeof(R_Int32_P_0_Int16_Ref_Delegate), Call_R_Int32_P_0_Int16_Ref_Delegate);
  193. Register(typeof(int), new Type[] { typeof(uint) }, typeof(R_Int32_P_0_UInt32_Delegate), Call_R_Int32_P_0_UInt32_Delegate);
  194. 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);
  195. Register(typeof(int), new Type[] { typeof(ulong) }, typeof(R_Int32_P_0_UInt64_Delegate), Call_R_Int32_P_0_UInt64_Delegate);
  196. Register(typeof(int), new Type[] { typeof(ushort) }, typeof(R_Int32_P_0_UInt16_Delegate), Call_R_Int32_P_0_UInt16_Delegate);
  197. Register(typeof(int), new Type[] { typeof(ushort).MakeByRefType() }, typeof(R_Int32_P_0_UInt16_Ref_Delegate), Call_R_Int32_P_0_UInt16_Ref_Delegate);
  198. Register(typeof(long), Array.Empty<Type>(), typeof(R_Int64_P_Delegate), Call_R_Int64_P_Delegate);
  199. 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);
  200. Register(typeof(long), new Type[] { typeof(double) }, typeof(R_Int64_P_0_Double_Delegate), Call_R_Int64_P_0_Double_Delegate);
  201. Register(typeof(long), new Type[] { typeof(int) }, typeof(R_Int64_P_0_Int32_Delegate), Call_R_Int64_P_0_Int32_Delegate);
  202. 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);
  203. Register(typeof(long), new Type[] { typeof(long) }, typeof(R_Int64_P_0_Int64_Delegate), Call_R_Int64_P_0_Int64_Delegate);
  204. 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);
  205. Register(typeof(long), new Type[] { typeof(long).MakeByRefType() }, typeof(R_Int64_P_0_Int64_Ref_Delegate), Call_R_Int64_P_0_Int64_Ref_Delegate);
  206. 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);
  207. Register(typeof(long), new Type[] { typeof(sbyte) }, typeof(R_Int64_P_0_SByte_Delegate), Call_R_Int64_P_0_SByte_Delegate);
  208. Register(typeof(long), new Type[] { typeof(short) }, typeof(R_Int64_P_0_Int16_Delegate), Call_R_Int64_P_0_Int16_Delegate);
  209. Register(typeof(long), new Type[] { typeof(uint) }, typeof(R_Int64_P_0_UInt32_Delegate), Call_R_Int64_P_0_UInt32_Delegate);
  210. Register(typeof(long), new Type[] { typeof(ulong) }, typeof(R_Int64_P_0_UInt64_Delegate), Call_R_Int64_P_0_UInt64_Delegate);
  211. Register(typeof(sbyte), new Type[] { typeof(int) }, typeof(R_SByte_P_0_Int32_Delegate), Call_R_SByte_P_0_Int32_Delegate);
  212. Register(typeof(sbyte), new Type[] { typeof(sbyte) }, typeof(R_SByte_P_0_SByte_Delegate), Call_R_SByte_P_0_SByte_Delegate);
  213. Register(typeof(sbyte), new Type[] { typeof(uint) }, typeof(R_SByte_P_0_UInt32_Delegate), Call_R_SByte_P_0_UInt32_Delegate);
  214. Register(typeof(short), new Type[] { typeof(int) }, typeof(R_Int16_P_0_Int32_Delegate), Call_R_Int16_P_0_Int32_Delegate);
  215. Register(typeof(short), new Type[] { typeof(short) }, typeof(R_Int16_P_0_Int16_Delegate), Call_R_Int16_P_0_Int16_Delegate);
  216. Register(typeof(short), new Type[] { typeof(uint) }, typeof(R_Int16_P_0_UInt32_Delegate), Call_R_Int16_P_0_UInt32_Delegate);
  217. Register(typeof(uint), Array.Empty<Type>(), typeof(R_UInt32_P_Delegate), Call_R_UInt32_P_Delegate);
  218. Register(typeof(uint), new Type[] { typeof(int) }, typeof(R_UInt32_P_0_Int32_Delegate), Call_R_UInt32_P_0_Int32_Delegate);
  219. Register(typeof(uint), new Type[] { typeof(sbyte) }, typeof(R_UInt32_P_0_SByte_Delegate), Call_R_UInt32_P_0_SByte_Delegate);
  220. Register(typeof(uint), new Type[] { typeof(uint) }, typeof(R_UInt32_P_0_UInt32_Delegate), Call_R_UInt32_P_0_UInt32_Delegate);
  221. 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);
  222. Register(typeof(uint), new Type[] { typeof(uint).MakeByRefType() }, typeof(R_UInt32_P_0_UInt32_Ref_Delegate), Call_R_UInt32_P_0_UInt32_Ref_Delegate);
  223. Register(typeof(uint), new Type[] { typeof(ulong) }, typeof(R_UInt32_P_0_UInt64_Delegate), Call_R_UInt32_P_0_UInt64_Delegate);
  224. Register(typeof(ulong), Array.Empty<Type>(), typeof(R_UInt64_P_Delegate), Call_R_UInt64_P_Delegate);
  225. Register(typeof(ulong), new Type[] { typeof(double) }, typeof(R_UInt64_P_0_Double_Delegate), Call_R_UInt64_P_0_Double_Delegate);
  226. Register(typeof(ulong), new Type[] { typeof(int) }, typeof(R_UInt64_P_0_Int32_Delegate), Call_R_UInt64_P_0_Int32_Delegate);
  227. Register(typeof(ulong), new Type[] { typeof(short) }, typeof(R_UInt64_P_0_Int16_Delegate), Call_R_UInt64_P_0_Int16_Delegate);
  228. Register(typeof(ulong), new Type[] { typeof(uint) }, typeof(R_UInt64_P_0_UInt32_Delegate), Call_R_UInt64_P_0_UInt32_Delegate);
  229. Register(typeof(ulong), new Type[] { typeof(ulong).MakeByRefType() }, typeof(R_UInt64_P_0_UInt64_Ref_Delegate), Call_R_UInt64_P_0_UInt64_Ref_Delegate);
  230. 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);
  231. 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);
  232. Register(typeof(ushort), new Type[] { typeof(int) }, typeof(R_UInt16_P_0_Int32_Delegate), Call_R_UInt16_P_0_Int32_Delegate);
  233. Register(typeof(ushort), new Type[] { typeof(uint) }, typeof(R_UInt16_P_0_UInt32_Delegate), Call_R_UInt16_P_0_UInt32_Delegate);
  234. Register(typeof(void), Array.Empty<Type>(), typeof(R_System_Void_P_Delegate), Call_R_System_Void_P_Delegate);
  235. 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);
  236. 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);
  237. 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);
  238. 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);
  239. 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);
  240. 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);
  241. 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);
  242. 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);
  243. 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);
  244. 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);
  245. 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);
  246. 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);
  247. 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);
  248. 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);
  249. 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);
  250. 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);
  251. 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);
  252. 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);
  253. 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);
  254. Register(typeof(void), new Type[] { typeof(int) }, typeof(R_System_Void_P_0_Int32_Delegate), Call_R_System_Void_P_0_Int32_Delegate);
  255. 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);
  256. 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);
  257. 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);
  258. 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);
  259. #if BURST_TESTS_ONLY
  260. 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);
  261. 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);
  262. 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);
  263. 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);
  264. 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);
  265. 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);
  266. 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);
  267. 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);
  268. 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);
  269. 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);
  270. 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);
  271. 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);
  272. 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);
  273. 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);
  274. 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);
  275. 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);
  276. 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);
  277. 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);
  278. 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);
  279. 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);
  280. 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);
  281. 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);
  282. 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);
  283. 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);
  284. Register(typeof(System.IntPtr), new Type[] { typeof(uint) }, typeof(R_IntPtr_P_0_UInt32_Delegate), Call_R_IntPtr_P_0_UInt32_Delegate);
  285. Register(typeof(System.UIntPtr), new Type[] { typeof(int) }, typeof(R_UIntPtr_P_0_Int32_Delegate), Call_R_UIntPtr_P_0_Int32_Delegate);
  286. 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);
  287. 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);
  288. 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);
  289. 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);
  290. 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);
  291. 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);
  292. 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);
  293. 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);
  294. 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);
  295. 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);
  296. Register(typeof(bool), new Type[] { typeof(byte) }, typeof(R_Boolean_P_0_Byte_Delegate), Call_R_Boolean_P_0_Byte_Delegate);
  297. Register(typeof(bool), new Type[] { typeof(int).MakeByRefType() }, typeof(R_Boolean_P_0_Int32_Ref_Delegate), Call_R_Boolean_P_0_Int32_Ref_Delegate);
  298. Register(typeof(bool), new Type[] { typeof(long) }, typeof(R_Boolean_P_0_Int64_Delegate), Call_R_Boolean_P_0_Int64_Delegate);
  299. Register(typeof(bool), new Type[] { typeof(sbyte) }, typeof(R_Boolean_P_0_SByte_Delegate), Call_R_Boolean_P_0_SByte_Delegate);
  300. Register(typeof(bool), new Type[] { typeof(short) }, typeof(R_Boolean_P_0_Int16_Delegate), Call_R_Boolean_P_0_Int16_Delegate);
  301. Register(typeof(bool), new Type[] { typeof(uint) }, typeof(R_Boolean_P_0_UInt32_Delegate), Call_R_Boolean_P_0_UInt32_Delegate);
  302. Register(typeof(bool), new Type[] { typeof(ulong) }, typeof(R_Boolean_P_0_UInt64_Delegate), Call_R_Boolean_P_0_UInt64_Delegate);
  303. Register(typeof(bool), new Type[] { typeof(ushort) }, typeof(R_Boolean_P_0_UInt16_Delegate), Call_R_Boolean_P_0_UInt16_Delegate);
  304. Register(typeof(char), Array.Empty<Type>(), typeof(R_Char_P_Delegate), Call_R_Char_P_Delegate);
  305. 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);
  306. 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);
  307. 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);
  308. 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);
  309. 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);
  310. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.ChunkedTestDataWrapper).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate);
  311. Register(typeof(float), new Type[] { typeof(Burst.Compiler.IL.Tests.FullSOATestDataWrapper).MakeByRefType() }, typeof(R_Single_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate), Call_R_Single_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate);
  312. 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);
  313. 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);
  314. 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);
  315. 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);
  316. 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);
  317. 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);
  318. 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);
  319. 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);
  320. 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);
  321. 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);
  322. 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);
  323. 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);
  324. 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);
  325. 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);
  326. 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);
  327. 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);
  328. 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);
  329. 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);
  330. 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);
  331. 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);
  332. 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);
  333. 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);
  334. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.ChunkedTestDataWrapper).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate);
  335. 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);
  336. Register(typeof(int), new Type[] { typeof(Burst.Compiler.IL.Tests.FullSOATestDataWrapper).MakeByRefType() }, typeof(R_Int32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate), Call_R_Int32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate);
  337. 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);
  338. 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);
  339. 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);
  340. 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);
  341. 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);
  342. 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);
  343. 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);
  344. 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);
  345. 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);
  346. 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);
  347. 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);
  348. 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);
  349. 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);
  350. 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);
  351. 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);
  352. 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);
  353. 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);
  354. 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);
  355. 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);
  356. 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);
  357. 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);
  358. 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);
  359. 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);
  360. 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);
  361. 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);
  362. 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);
  363. 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);
  364. 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);
  365. 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);
  366. 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);
  367. 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);
  368. 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);
  369. 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);
  370. 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);
  371. 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);
  372. Register(typeof(int), new Type[] { typeof(char) }, typeof(R_Int32_P_0_Char_Delegate), Call_R_Int32_P_0_Char_Delegate);
  373. Register(typeof(int), new Type[] { typeof(char).MakeByRefType() }, typeof(R_Int32_P_0_Char_Ref_Delegate), Call_R_Int32_P_0_Char_Ref_Delegate);
  374. 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);
  375. 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);
  376. 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);
  377. 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);
  378. 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);
  379. 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);
  380. Register(typeof(long), new Type[] { typeof(byte) }, typeof(R_Int64_P_0_Byte_Delegate), Call_R_Int64_P_0_Byte_Delegate);
  381. Register(typeof(long), new Type[] { typeof(float) }, typeof(R_Int64_P_0_Single_Delegate), Call_R_Int64_P_0_Single_Delegate);
  382. 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);
  383. 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);
  384. Register(typeof(uint), new Type[] { typeof(Burst.Compiler.IL.Tests.ChunkedTestDataWrapper).MakeByRefType() }, typeof(R_UInt32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate), Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate);
  385. Register(typeof(uint), new Type[] { typeof(Burst.Compiler.IL.Tests.FullSOATestDataWrapper).MakeByRefType() }, typeof(R_UInt32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate), Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate);
  386. 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);
  387. 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);
  388. 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);
  389. Register(typeof(uint), new Type[] { typeof(float) }, typeof(R_UInt32_P_0_Single_Delegate), Call_R_UInt32_P_0_Single_Delegate);
  390. 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);
  391. 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);
  392. 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);
  393. Register(typeof(ulong), new Type[] { typeof(ulong) }, typeof(R_UInt64_P_0_UInt64_Delegate), Call_R_UInt64_P_0_UInt64_Delegate);
  394. 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);
  395. 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);
  396. 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);
  397. 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);
  398. 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);
  399. 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);
  400. 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);
  401. 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);
  402. 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);
  403. 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);
  404. 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);
  405. 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);
  406. 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);
  407. 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);
  408. 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);
  409. 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);
  410. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.ChunkedTestDataWrapper).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate);
  411. Register(typeof(void), new Type[] { typeof(Burst.Compiler.IL.Tests.FullSOATestDataWrapper).MakeByRefType() }, typeof(R_System_Void_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate), Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate);
  412. 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);
  413. 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);
  414. 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);
  415. 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);
  416. 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);
  417. 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);
  418. 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);
  419. 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);
  420. 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);
  421. 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);
  422. 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);
  423. 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);
  424. 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);
  425. 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);
  426. 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);
  427. 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);
  428. 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);
  429. 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);
  430. 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);
  431. 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);
  432. 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);
  433. 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);
  434. 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);
  435. 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);
  436. 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);
  437. 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);
  438. 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);
  439. 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);
  440. 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);
  441. 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);
  442. 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);
  443. 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);
  444. 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);
  445. 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);
  446. 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);
  447. 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);
  448. 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);
  449. 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);
  450. 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);
  451. 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);
  452. 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);
  453. 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);
  454. 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);
  455. 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);
  456. 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);
  457. 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);
  458. 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);
  459. 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);
  460. 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);
  461. 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);
  462. 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);
  463. 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);
  464. 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);
  465. 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);
  466. 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);
  467. 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);
  468. 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);
  469. 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);
  470. 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);
  471. 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);
  472. 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);
  473. 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);
  474. 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);
  475. 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);
  476. 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);
  477. 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);
  478. 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);
  479. 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);
  480. 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);
  481. 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);
  482. 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);
  483. 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);
  484. 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);
  485. 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);
  486. 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);
  487. 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);
  488. 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);
  489. 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);
  490. 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);
  491. 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);
  492. 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);
  493. 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);
  494. 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);
  495. 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);
  496. 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);
  497. 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);
  498. 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);
  499. 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);
  500. 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);
  501. 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);
  502. 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);
  503. 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);
  504. 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);
  505. 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);
  506. 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);
  507. 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);
  508. 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);
  509. 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);
  510. 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);
  511. 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);
  512. 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);
  513. 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);
  514. 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);
  515. 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);
  516. 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);
  517. 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);
  518. 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);
  519. 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);
  520. 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);
  521. 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);
  522. 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);
  523. 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);
  524. 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);
  525. 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);
  526. 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);
  527. 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);
  528. 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);
  529. 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);
  530. 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);
  531. 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);
  532. 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);
  533. 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);
  534. 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);
  535. 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);
  536. 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);
  537. 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);
  538. 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);
  539. 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);
  540. 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);
  541. 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);
  542. 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);
  543. 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);
  544. 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);
  545. 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);
  546. 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);
  547. 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);
  548. 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);
  549. 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);
  550. 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);
  551. 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);
  552. 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);
  553. 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);
  554. 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);
  555. Register(typeof(void), new Type[] { typeof(bool) }, typeof(R_System_Void_P_0_Boolean_Delegate), Call_R_System_Void_P_0_Boolean_Delegate);
  556. 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);
  557. Register(typeof(void), new Type[] { typeof(byte) }, typeof(R_System_Void_P_0_Byte_Delegate), Call_R_System_Void_P_0_Byte_Delegate);
  558. 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);
  559. Register(typeof(void), new Type[] { typeof(double) }, typeof(R_System_Void_P_0_Double_Delegate), Call_R_System_Void_P_0_Double_Delegate);
  560. 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);
  561. 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);
  562. 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);
  563. 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);
  564. Register(typeof(void), new Type[] { typeof(float) }, typeof(R_System_Void_P_0_Single_Delegate), Call_R_System_Void_P_0_Single_Delegate);
  565. 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);
  566. 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);
  567. 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);
  568. 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);
  569. 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);
  570. 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);
  571. 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);
  572. 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);
  573. 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);
  574. 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);
  575. 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);
  576. 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);
  577. 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);
  578. 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);
  579. 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);
  580. 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);
  581. Register(typeof(void), new Type[] { typeof(short) }, typeof(R_System_Void_P_0_Int16_Delegate), Call_R_System_Void_P_0_Int16_Delegate);
  582. 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);
  583. 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);
  584. 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);
  585. 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);
  586. 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);
  587. 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);
  588. #endif
  589. }
  590. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  591. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  592. 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);
  593. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  594. 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)
  595. {
  596. var d = (R_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_P_0_Int32_1_Burst_Compiler_IL_Tests_Pointers_MyCastEnum_Delegate)delegateObj;
  597. object result = null;
  598. var arg0 = (int)p[0];
  599. var arg1 = (Burst.Compiler.IL.Tests.Pointers.MyCastEnum)p[1];
  600. result = d(arg0, arg1);
  601. return result;
  602. }
  603. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  604. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  605. 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);
  606. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  607. 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)
  608. {
  609. var d = (R_Burst_Compiler_IL_Tests_TestEnums_SomeByteEnum_P_0_Burst_Compiler_IL_Tests_TestEnums_FixedByte4Struct_Ref_Delegate)delegateObj;
  610. object result = null;
  611. var arg0 = (Burst.Compiler.IL.Tests.TestEnums.FixedByte4Struct)p[0];
  612. result = d(ref arg0);
  613. return result;
  614. }
  615. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  616. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  617. 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);
  618. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  619. 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)
  620. {
  621. var d = (R_Burst_Compiler_IL_Tests_Types_MyEnumByte_P_0_Burst_Compiler_IL_Tests_Types_MyEnumByte_Ref_Delegate)delegateObj;
  622. object result = null;
  623. var arg0 = (Burst.Compiler.IL.Tests.Types.MyEnumByte)p[0];
  624. result = d(ref arg0);
  625. return result;
  626. }
  627. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  628. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  629. private delegate System.IntPtr R_IntPtr_P_Delegate();
  630. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  631. private unsafe static object Call_R_IntPtr_P_Delegate(object delegateObj, object[] p)
  632. {
  633. var d = (R_IntPtr_P_Delegate)delegateObj;
  634. object result = null;
  635. result = d();
  636. return result;
  637. }
  638. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  639. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  640. private delegate System.IntPtr R_IntPtr_P_0_IntPtr_Delegate(System.IntPtr arg0);
  641. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  642. private unsafe static object Call_R_IntPtr_P_0_IntPtr_Delegate(object delegateObj, object[] p)
  643. {
  644. var d = (R_IntPtr_P_0_IntPtr_Delegate)delegateObj;
  645. object result = null;
  646. var arg0 = (System.IntPtr)p[0];
  647. result = d(arg0);
  648. return result;
  649. }
  650. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  651. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  652. private delegate System.IntPtr R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate(System.IntPtr arg0, System.IntPtr arg1, System.IntPtr arg2);
  653. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  654. private unsafe static object Call_R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate(object delegateObj, object[] p)
  655. {
  656. var d = (R_IntPtr_P_0_IntPtr_1_IntPtr_2_IntPtr_Delegate)delegateObj;
  657. object result = null;
  658. var arg0 = (System.IntPtr)p[0];
  659. var arg1 = (System.IntPtr)p[1];
  660. var arg2 = (System.IntPtr)p[2];
  661. result = d(arg0, arg1, arg2);
  662. return result;
  663. }
  664. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  665. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  666. private delegate System.IntPtr R_IntPtr_P_0_Int32_Delegate(int arg0);
  667. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  668. private unsafe static object Call_R_IntPtr_P_0_Int32_Delegate(object delegateObj, object[] p)
  669. {
  670. var d = (R_IntPtr_P_0_Int32_Delegate)delegateObj;
  671. object result = null;
  672. var arg0 = (int)p[0];
  673. result = d(arg0);
  674. return result;
  675. }
  676. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  677. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  678. private delegate System.UIntPtr R_UIntPtr_P_Delegate();
  679. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  680. private unsafe static object Call_R_UIntPtr_P_Delegate(object delegateObj, object[] p)
  681. {
  682. var d = (R_UIntPtr_P_Delegate)delegateObj;
  683. object result = null;
  684. result = d();
  685. return result;
  686. }
  687. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  688. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  689. private delegate System.UIntPtr R_UIntPtr_P_0_UIntPtr_Delegate(System.UIntPtr arg0);
  690. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  691. private unsafe static object Call_R_UIntPtr_P_0_UIntPtr_Delegate(object delegateObj, object[] p)
  692. {
  693. var d = (R_UIntPtr_P_0_UIntPtr_Delegate)delegateObj;
  694. object result = null;
  695. var arg0 = (System.UIntPtr)p[0];
  696. result = d(arg0);
  697. return result;
  698. }
  699. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  700. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  701. private delegate System.UIntPtr R_UIntPtr_P_0_UIntPtr_Ref_Delegate(ref System.UIntPtr arg0);
  702. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  703. private unsafe static object Call_R_UIntPtr_P_0_UIntPtr_Ref_Delegate(object delegateObj, object[] p)
  704. {
  705. var d = (R_UIntPtr_P_0_UIntPtr_Ref_Delegate)delegateObj;
  706. object result = null;
  707. var arg0 = (System.UIntPtr)p[0];
  708. result = d(ref arg0);
  709. return result;
  710. }
  711. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  712. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  713. private delegate System.UIntPtr R_UIntPtr_P_0_UInt32_Delegate(uint arg0);
  714. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  715. private unsafe static object Call_R_UIntPtr_P_0_UInt32_Delegate(object delegateObj, object[] p)
  716. {
  717. var d = (R_UIntPtr_P_0_UInt32_Delegate)delegateObj;
  718. object result = null;
  719. var arg0 = (uint)p[0];
  720. result = d(arg0);
  721. return result;
  722. }
  723. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  724. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  725. private delegate bool R_Boolean_P_Delegate();
  726. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  727. private unsafe static object Call_R_Boolean_P_Delegate(object delegateObj, object[] p)
  728. {
  729. var d = (R_Boolean_P_Delegate)delegateObj;
  730. object result = null;
  731. result = d();
  732. return result;
  733. }
  734. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  735. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  736. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.PointerConditional arg0);
  737. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  738. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate(object delegateObj, object[] p)
  739. {
  740. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_PointerConditional_Ref_Delegate)delegateObj;
  741. object result = null;
  742. var arg0 = (Burst.Compiler.IL.Tests.Pointers.PointerConditional)p[0];
  743. result = d(ref arg0);
  744. return result;
  745. }
  746. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  747. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  748. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.StackAllocCheck arg0);
  749. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  750. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate(object delegateObj, object[] p)
  751. {
  752. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_Pointers_StackAllocCheck_Ref_Delegate)delegateObj;
  753. object result = null;
  754. var arg0 = (Burst.Compiler.IL.Tests.Pointers.StackAllocCheck)p[0];
  755. result = d(ref arg0);
  756. return result;
  757. }
  758. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  759. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  760. 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);
  761. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  762. 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)
  763. {
  764. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_1_Burst_Compiler_IL_Tests_TestStructs_NetworkEndPoint_Delegate)delegateObj;
  765. object result = null;
  766. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint)p[0];
  767. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.NetworkEndPoint)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 bool R_Boolean_P_0_IntPtr_Delegate(System.IntPtr arg0);
  774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  775. private unsafe static object Call_R_Boolean_P_0_IntPtr_Delegate(object delegateObj, object[] p)
  776. {
  777. var d = (R_Boolean_P_0_IntPtr_Delegate)delegateObj;
  778. object result = null;
  779. var arg0 = (System.IntPtr)p[0];
  780. result = d(arg0);
  781. return result;
  782. }
  783. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  785. private delegate bool R_Boolean_P_0_IntPtr_1_IntPtr_Delegate(System.IntPtr arg0, System.IntPtr arg1);
  786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  787. private unsafe static object Call_R_Boolean_P_0_IntPtr_1_IntPtr_Delegate(object delegateObj, object[] p)
  788. {
  789. var d = (R_Boolean_P_0_IntPtr_1_IntPtr_Delegate)delegateObj;
  790. object result = null;
  791. var arg0 = (System.IntPtr)p[0];
  792. var arg1 = (System.IntPtr)p[1];
  793. result = d(arg0, arg1);
  794. return result;
  795. }
  796. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  797. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  798. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0);
  799. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  800. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  801. {
  802. var d = (R_Boolean_P_0_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  803. object result = null;
  804. var arg0 = (Unity.Mathematics.bool2)p[0];
  805. result = d(ref arg0);
  806. return result;
  807. }
  808. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  809. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  810. 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);
  811. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  812. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  813. {
  814. var d = (R_Boolean_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  815. object result = null;
  816. var arg0 = (Unity.Mathematics.bool2)p[0];
  817. var arg1 = (Unity.Mathematics.bool2)p[1];
  818. result = d(ref arg0, ref arg1);
  819. return result;
  820. }
  821. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  822. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  823. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0);
  824. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  825. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  826. {
  827. var d = (R_Boolean_P_0_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  828. object result = null;
  829. var arg0 = (Unity.Mathematics.bool3)p[0];
  830. result = d(ref arg0);
  831. return result;
  832. }
  833. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  835. 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);
  836. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  837. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  838. {
  839. var d = (R_Boolean_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  840. object result = null;
  841. var arg0 = (Unity.Mathematics.bool3)p[0];
  842. var arg1 = (Unity.Mathematics.bool3)p[1];
  843. result = d(ref arg0, ref arg1);
  844. return result;
  845. }
  846. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  848. private delegate bool R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0);
  849. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  850. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  851. {
  852. var d = (R_Boolean_P_0_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  853. object result = null;
  854. var arg0 = (Unity.Mathematics.bool4)p[0];
  855. result = d(ref arg0);
  856. return result;
  857. }
  858. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  860. 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);
  861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  862. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  863. {
  864. var d = (R_Boolean_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  865. object result = null;
  866. var arg0 = (Unity.Mathematics.bool4)p[0];
  867. var arg1 = (Unity.Mathematics.bool4)p[1];
  868. result = d(ref arg0, ref arg1);
  869. return result;
  870. }
  871. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  872. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  873. private delegate bool R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0);
  874. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  875. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  876. {
  877. var d = (R_Boolean_P_0_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  878. object result = null;
  879. var arg0 = (Unity.Mathematics.float2)p[0];
  880. result = d(ref arg0);
  881. return result;
  882. }
  883. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  884. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  885. 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);
  886. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  887. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  888. {
  889. var d = (R_Boolean_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  890. object result = null;
  891. var arg0 = (Unity.Mathematics.float2)p[0];
  892. var arg1 = (Unity.Mathematics.float2)p[1];
  893. result = d(ref arg0, ref arg1);
  894. return result;
  895. }
  896. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  897. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  898. private delegate bool R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0);
  899. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  900. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  901. {
  902. var d = (R_Boolean_P_0_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  903. object result = null;
  904. var arg0 = (Unity.Mathematics.float3)p[0];
  905. result = d(ref arg0);
  906. return result;
  907. }
  908. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  909. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  910. 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);
  911. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  912. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  913. {
  914. var d = (R_Boolean_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  915. object result = null;
  916. var arg0 = (Unity.Mathematics.float3)p[0];
  917. var arg1 = (Unity.Mathematics.float3)p[1];
  918. result = d(ref arg0, ref arg1);
  919. return result;
  920. }
  921. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  922. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  923. private delegate bool R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0);
  924. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  925. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  926. {
  927. var d = (R_Boolean_P_0_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  928. object result = null;
  929. var arg0 = (Unity.Mathematics.float4)p[0];
  930. result = d(ref arg0);
  931. return result;
  932. }
  933. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  934. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  935. 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);
  936. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  937. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  938. {
  939. var d = (R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  940. object result = null;
  941. var arg0 = (Unity.Mathematics.float4)p[0];
  942. var arg1 = (Unity.Mathematics.float4)p[1];
  943. result = d(ref arg0, ref arg1);
  944. return result;
  945. }
  946. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  947. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  948. private delegate bool R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(ref Unity.Mathematics.float4 arg0, float arg1);
  949. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  950. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(object delegateObj, object[] p)
  951. {
  952. var d = (R_Boolean_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate)delegateObj;
  953. object result = null;
  954. var arg0 = (Unity.Mathematics.float4)p[0];
  955. var arg1 = (float)p[1];
  956. result = d(ref arg0, arg1);
  957. return result;
  958. }
  959. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  960. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  961. private delegate bool R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0);
  962. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  963. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  964. {
  965. var d = (R_Boolean_P_0_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  966. object result = null;
  967. var arg0 = (Unity.Mathematics.int2)p[0];
  968. result = d(ref arg0);
  969. return result;
  970. }
  971. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  972. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  973. 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);
  974. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  975. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  976. {
  977. var d = (R_Boolean_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  978. object result = null;
  979. var arg0 = (Unity.Mathematics.int2)p[0];
  980. var arg1 = (Unity.Mathematics.int2)p[1];
  981. result = d(ref arg0, ref arg1);
  982. return result;
  983. }
  984. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  985. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  986. private delegate bool R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0);
  987. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  988. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  989. {
  990. var d = (R_Boolean_P_0_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  991. object result = null;
  992. var arg0 = (Unity.Mathematics.int3)p[0];
  993. result = d(ref arg0);
  994. return result;
  995. }
  996. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  997. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  998. 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);
  999. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1000. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  1001. {
  1002. var d = (R_Boolean_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  1003. object result = null;
  1004. var arg0 = (Unity.Mathematics.int3)p[0];
  1005. var arg1 = (Unity.Mathematics.int3)p[1];
  1006. result = d(ref arg0, ref arg1);
  1007. return result;
  1008. }
  1009. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1010. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1011. private delegate bool R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  1012. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1013. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1014. {
  1015. var d = (R_Boolean_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1016. object result = null;
  1017. var arg0 = (Unity.Mathematics.int4)p[0];
  1018. result = d(ref arg0);
  1019. return result;
  1020. }
  1021. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1022. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1023. 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);
  1024. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1025. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1026. {
  1027. var d = (R_Boolean_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1028. object result = null;
  1029. var arg0 = (Unity.Mathematics.int4)p[0];
  1030. var arg1 = (Unity.Mathematics.int4)p[1];
  1031. result = d(ref arg0, ref arg1);
  1032. return result;
  1033. }
  1034. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1035. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1036. 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);
  1037. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1038. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate(object delegateObj, object[] p)
  1039. {
  1040. var d = (R_Boolean_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate)delegateObj;
  1041. object result = null;
  1042. var arg0 = (Unity.Mathematics.uint2)p[0];
  1043. var arg1 = (Unity.Mathematics.uint2)p[1];
  1044. result = d(ref arg0, ref arg1);
  1045. return result;
  1046. }
  1047. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1048. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1049. 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);
  1050. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1051. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate(object delegateObj, object[] p)
  1052. {
  1053. var d = (R_Boolean_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate)delegateObj;
  1054. object result = null;
  1055. var arg0 = (Unity.Mathematics.uint3)p[0];
  1056. var arg1 = (Unity.Mathematics.uint3)p[1];
  1057. result = d(ref arg0, ref arg1);
  1058. return result;
  1059. }
  1060. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1061. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1062. 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);
  1063. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1064. private unsafe static object Call_R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  1065. {
  1066. var d = (R_Boolean_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  1067. object result = null;
  1068. var arg0 = (Unity.Mathematics.uint4)p[0];
  1069. var arg1 = (Unity.Mathematics.uint4)p[1];
  1070. result = d(ref arg0, ref arg1);
  1071. return result;
  1072. }
  1073. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1074. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1075. private delegate bool R_Boolean_P_0_Boolean_Delegate(bool arg0);
  1076. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1077. private unsafe static object Call_R_Boolean_P_0_Boolean_Delegate(object delegateObj, object[] p)
  1078. {
  1079. var d = (R_Boolean_P_0_Boolean_Delegate)delegateObj;
  1080. object result = null;
  1081. var arg0 = (bool)p[0];
  1082. result = d(arg0);
  1083. return result;
  1084. }
  1085. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1086. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1087. private delegate bool R_Boolean_P_0_Boolean_1_Boolean_Delegate(bool arg0, bool arg1);
  1088. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1089. private unsafe static object Call_R_Boolean_P_0_Boolean_1_Boolean_Delegate(object delegateObj, object[] p)
  1090. {
  1091. var d = (R_Boolean_P_0_Boolean_1_Boolean_Delegate)delegateObj;
  1092. object result = null;
  1093. var arg0 = (bool)p[0];
  1094. var arg1 = (bool)p[1];
  1095. result = d(arg0, arg1);
  1096. return result;
  1097. }
  1098. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1099. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1100. private delegate bool R_Boolean_P_0_Boolean_1_Int32_Delegate(bool arg0, int arg1);
  1101. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1102. private unsafe static object Call_R_Boolean_P_0_Boolean_1_Int32_Delegate(object delegateObj, object[] p)
  1103. {
  1104. var d = (R_Boolean_P_0_Boolean_1_Int32_Delegate)delegateObj;
  1105. object result = null;
  1106. var arg0 = (bool)p[0];
  1107. var arg1 = (int)p[1];
  1108. result = d(arg0, arg1);
  1109. return result;
  1110. }
  1111. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1112. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1113. private delegate bool R_Boolean_P_0_Double_Delegate(double arg0);
  1114. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1115. private unsafe static object Call_R_Boolean_P_0_Double_Delegate(object delegateObj, object[] p)
  1116. {
  1117. var d = (R_Boolean_P_0_Double_Delegate)delegateObj;
  1118. object result = null;
  1119. var arg0 = (double)p[0];
  1120. result = d(arg0);
  1121. return result;
  1122. }
  1123. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1124. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1125. private delegate bool R_Boolean_P_0_Single_Delegate(float arg0);
  1126. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1127. private unsafe static object Call_R_Boolean_P_0_Single_Delegate(object delegateObj, object[] p)
  1128. {
  1129. var d = (R_Boolean_P_0_Single_Delegate)delegateObj;
  1130. object result = null;
  1131. var arg0 = (float)p[0];
  1132. result = d(arg0);
  1133. return result;
  1134. }
  1135. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1136. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1137. private delegate bool R_Boolean_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  1138. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1139. private unsafe static object Call_R_Boolean_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  1140. {
  1141. var d = (R_Boolean_P_0_Single_1_Single_Delegate)delegateObj;
  1142. object result = null;
  1143. var arg0 = (float)p[0];
  1144. var arg1 = (float)p[1];
  1145. result = d(arg0, arg1);
  1146. return result;
  1147. }
  1148. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1149. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1150. private delegate bool R_Boolean_P_0_Int32_Delegate(int arg0);
  1151. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1152. private unsafe static object Call_R_Boolean_P_0_Int32_Delegate(object delegateObj, object[] p)
  1153. {
  1154. var d = (R_Boolean_P_0_Int32_Delegate)delegateObj;
  1155. object result = null;
  1156. var arg0 = (int)p[0];
  1157. result = d(arg0);
  1158. return result;
  1159. }
  1160. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1161. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1162. private delegate bool R_Boolean_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  1163. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1164. private unsafe static object Call_R_Boolean_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  1165. {
  1166. var d = (R_Boolean_P_0_Int32_1_Int32_Delegate)delegateObj;
  1167. object result = null;
  1168. var arg0 = (int)p[0];
  1169. var arg1 = (int)p[1];
  1170. result = d(arg0, arg1);
  1171. return result;
  1172. }
  1173. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1174. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1175. private delegate bool R_Boolean_P_0_Int32_1_UInt32_Delegate(int arg0, uint arg1);
  1176. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1177. private unsafe static object Call_R_Boolean_P_0_Int32_1_UInt32_Delegate(object delegateObj, object[] p)
  1178. {
  1179. var d = (R_Boolean_P_0_Int32_1_UInt32_Delegate)delegateObj;
  1180. object result = null;
  1181. var arg0 = (int)p[0];
  1182. var arg1 = (uint)p[1];
  1183. result = d(arg0, arg1);
  1184. return result;
  1185. }
  1186. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1187. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1188. private delegate bool R_Boolean_P_0_Int64_1_Int32_Delegate(long arg0, int arg1);
  1189. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1190. private unsafe static object Call_R_Boolean_P_0_Int64_1_Int32_Delegate(object delegateObj, object[] p)
  1191. {
  1192. var d = (R_Boolean_P_0_Int64_1_Int32_Delegate)delegateObj;
  1193. object result = null;
  1194. var arg0 = (long)p[0];
  1195. var arg1 = (int)p[1];
  1196. result = d(arg0, arg1);
  1197. return result;
  1198. }
  1199. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1200. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1201. private delegate bool R_Boolean_P_0_UInt32_1_Int32_Delegate(uint arg0, int arg1);
  1202. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1203. private unsafe static object Call_R_Boolean_P_0_UInt32_1_Int32_Delegate(object delegateObj, object[] p)
  1204. {
  1205. var d = (R_Boolean_P_0_UInt32_1_Int32_Delegate)delegateObj;
  1206. object result = null;
  1207. var arg0 = (uint)p[0];
  1208. var arg1 = (int)p[1];
  1209. result = d(arg0, arg1);
  1210. return result;
  1211. }
  1212. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1213. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1214. private unsafe delegate byte R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate(Burst.Compiler.IL.Tests.TestStructs.WithPadding* arg0);
  1215. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1216. private unsafe static object Call_R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate(object delegateObj, object[] p)
  1217. {
  1218. var d = (R_Byte_P_0_Burst_Compiler_IL_Tests_TestStructs_WithPadding_Ptr_Delegate)delegateObj;
  1219. object result = null;
  1220. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.WithPadding*)(IntPtr)p[0];
  1221. result = d(arg0);
  1222. return result;
  1223. }
  1224. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1225. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1226. private delegate byte R_Byte_P_0_Int32_Delegate(int arg0);
  1227. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1228. private unsafe static object Call_R_Byte_P_0_Int32_Delegate(object delegateObj, object[] p)
  1229. {
  1230. var d = (R_Byte_P_0_Int32_Delegate)delegateObj;
  1231. object result = null;
  1232. var arg0 = (int)p[0];
  1233. result = d(arg0);
  1234. return result;
  1235. }
  1236. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1237. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1238. private delegate byte R_Byte_P_0_Int64_Delegate(long arg0);
  1239. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1240. private unsafe static object Call_R_Byte_P_0_Int64_Delegate(object delegateObj, object[] p)
  1241. {
  1242. var d = (R_Byte_P_0_Int64_Delegate)delegateObj;
  1243. object result = null;
  1244. var arg0 = (long)p[0];
  1245. result = d(arg0);
  1246. return result;
  1247. }
  1248. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1250. private delegate byte R_Byte_P_0_UInt32_Delegate(uint arg0);
  1251. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1252. private unsafe static object Call_R_Byte_P_0_UInt32_Delegate(object delegateObj, object[] p)
  1253. {
  1254. var d = (R_Byte_P_0_UInt32_Delegate)delegateObj;
  1255. object result = null;
  1256. var arg0 = (uint)p[0];
  1257. result = d(arg0);
  1258. return result;
  1259. }
  1260. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1262. private delegate double R_Double_P_Delegate();
  1263. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1264. private unsafe static object Call_R_Double_P_Delegate(object delegateObj, object[] p)
  1265. {
  1266. var d = (R_Double_P_Delegate)delegateObj;
  1267. object result = null;
  1268. result = d();
  1269. return result;
  1270. }
  1271. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1272. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1273. private delegate double R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate(ref Unity.Mathematics.double2 arg0);
  1274. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1275. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  1276. {
  1277. var d = (R_Double_P_0_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  1278. object result = null;
  1279. var arg0 = (Unity.Mathematics.double2)p[0];
  1280. result = d(ref arg0);
  1281. return result;
  1282. }
  1283. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1284. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1285. private delegate double R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate(ref Unity.Mathematics.double3 arg0);
  1286. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1287. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  1288. {
  1289. var d = (R_Double_P_0_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  1290. object result = null;
  1291. var arg0 = (Unity.Mathematics.double3)p[0];
  1292. result = d(ref arg0);
  1293. return result;
  1294. }
  1295. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1296. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1297. private delegate double R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate(ref Unity.Mathematics.double4 arg0);
  1298. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1299. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  1300. {
  1301. var d = (R_Double_P_0_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  1302. object result = null;
  1303. var arg0 = (Unity.Mathematics.double4)p[0];
  1304. result = d(ref arg0);
  1305. return result;
  1306. }
  1307. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1308. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1309. private delegate double R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  1310. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1311. private unsafe static object Call_R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1312. {
  1313. var d = (R_Double_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1314. object result = null;
  1315. var arg0 = (Unity.Mathematics.int4)p[0];
  1316. result = d(ref arg0);
  1317. return result;
  1318. }
  1319. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1320. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1321. private delegate double R_Double_P_0_Double_Delegate(double arg0);
  1322. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1323. private unsafe static object Call_R_Double_P_0_Double_Delegate(object delegateObj, object[] p)
  1324. {
  1325. var d = (R_Double_P_0_Double_Delegate)delegateObj;
  1326. object result = null;
  1327. var arg0 = (double)p[0];
  1328. result = d(arg0);
  1329. return result;
  1330. }
  1331. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1332. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1333. private delegate double R_Double_P_0_Double_1_Double_Delegate(double arg0, double arg1);
  1334. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1335. private unsafe static object Call_R_Double_P_0_Double_1_Double_Delegate(object delegateObj, object[] p)
  1336. {
  1337. var d = (R_Double_P_0_Double_1_Double_Delegate)delegateObj;
  1338. object result = null;
  1339. var arg0 = (double)p[0];
  1340. var arg1 = (double)p[1];
  1341. result = d(arg0, arg1);
  1342. return result;
  1343. }
  1344. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1345. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1346. private delegate double R_Double_P_0_Double_Ref_Delegate(ref double arg0);
  1347. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1348. private unsafe static object Call_R_Double_P_0_Double_Ref_Delegate(object delegateObj, object[] p)
  1349. {
  1350. var d = (R_Double_P_0_Double_Ref_Delegate)delegateObj;
  1351. object result = null;
  1352. var arg0 = (double)p[0];
  1353. result = d(ref arg0);
  1354. return result;
  1355. }
  1356. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1357. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1358. private delegate double R_Double_P_0_Single_Delegate(float arg0);
  1359. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1360. private unsafe static object Call_R_Double_P_0_Single_Delegate(object delegateObj, object[] p)
  1361. {
  1362. var d = (R_Double_P_0_Single_Delegate)delegateObj;
  1363. object result = null;
  1364. var arg0 = (float)p[0];
  1365. result = d(arg0);
  1366. return result;
  1367. }
  1368. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1369. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1370. private delegate double R_Double_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  1371. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1372. private unsafe static object Call_R_Double_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  1373. {
  1374. var d = (R_Double_P_0_Single_1_Single_Delegate)delegateObj;
  1375. object result = null;
  1376. var arg0 = (float)p[0];
  1377. var arg1 = (float)p[1];
  1378. result = d(arg0, arg1);
  1379. return result;
  1380. }
  1381. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1382. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1383. private delegate double R_Double_P_0_Int32_Delegate(int arg0);
  1384. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1385. private unsafe static object Call_R_Double_P_0_Int32_Delegate(object delegateObj, object[] p)
  1386. {
  1387. var d = (R_Double_P_0_Int32_Delegate)delegateObj;
  1388. object result = null;
  1389. var arg0 = (int)p[0];
  1390. result = d(arg0);
  1391. return result;
  1392. }
  1393. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1394. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1395. private delegate double R_Double_P_0_Int32_1_UInt32_Delegate(int arg0, uint arg1);
  1396. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1397. private unsafe static object Call_R_Double_P_0_Int32_1_UInt32_Delegate(object delegateObj, object[] p)
  1398. {
  1399. var d = (R_Double_P_0_Int32_1_UInt32_Delegate)delegateObj;
  1400. object result = null;
  1401. var arg0 = (int)p[0];
  1402. var arg1 = (uint)p[1];
  1403. result = d(arg0, arg1);
  1404. return result;
  1405. }
  1406. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1407. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1408. private delegate double R_Double_P_0_Int64_Ref_Delegate(ref long arg0);
  1409. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1410. private unsafe static object Call_R_Double_P_0_Int64_Ref_Delegate(object delegateObj, object[] p)
  1411. {
  1412. var d = (R_Double_P_0_Int64_Ref_Delegate)delegateObj;
  1413. object result = null;
  1414. var arg0 = (long)p[0];
  1415. result = d(ref arg0);
  1416. return result;
  1417. }
  1418. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1419. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1420. private delegate double R_Double_P_0_UInt32_Delegate(uint arg0);
  1421. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1422. private unsafe static object Call_R_Double_P_0_UInt32_Delegate(object delegateObj, object[] p)
  1423. {
  1424. var d = (R_Double_P_0_UInt32_Delegate)delegateObj;
  1425. object result = null;
  1426. var arg0 = (uint)p[0];
  1427. result = d(arg0);
  1428. return result;
  1429. }
  1430. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1431. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1432. private delegate double R_Double_P_0_UInt16_Delegate(ushort arg0);
  1433. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1434. private unsafe static object Call_R_Double_P_0_UInt16_Delegate(object delegateObj, object[] p)
  1435. {
  1436. var d = (R_Double_P_0_UInt16_Delegate)delegateObj;
  1437. object result = null;
  1438. var arg0 = (ushort)p[0];
  1439. result = d(arg0);
  1440. return result;
  1441. }
  1442. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1443. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1444. private delegate float R_Single_P_Delegate();
  1445. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1446. private unsafe static object Call_R_Single_P_Delegate(object delegateObj, object[] p)
  1447. {
  1448. var d = (R_Single_P_Delegate)delegateObj;
  1449. object result = null;
  1450. result = d();
  1451. return result;
  1452. }
  1453. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1454. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1455. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate(Burst.Compiler.IL.Tests.Expressions.SByteEnum arg0);
  1456. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1457. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate(object delegateObj, object[] p)
  1458. {
  1459. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_SByteEnum_Delegate)delegateObj;
  1460. object result = null;
  1461. var arg0 = (Burst.Compiler.IL.Tests.Expressions.SByteEnum)p[0];
  1462. result = d(arg0);
  1463. return result;
  1464. }
  1465. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1466. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1467. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate(Burst.Compiler.IL.Tests.Expressions.UnsignedEnum arg0);
  1468. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1469. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate(object delegateObj, object[] p)
  1470. {
  1471. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Expressions_UnsignedEnum_Delegate)delegateObj;
  1472. object result = null;
  1473. var arg0 = (Burst.Compiler.IL.Tests.Expressions.UnsignedEnum)p[0];
  1474. result = d(arg0);
  1475. return result;
  1476. }
  1477. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1478. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1479. 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);
  1480. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1481. 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)
  1482. {
  1483. var d = (R_Single_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1484. object result = null;
  1485. var arg0 = (Unity.Mathematics.bool2)p[0];
  1486. var arg1 = (Unity.Mathematics.float2)p[1];
  1487. var arg2 = (Unity.Mathematics.float2)p[2];
  1488. result = d(ref arg0, ref arg1, ref arg2);
  1489. return result;
  1490. }
  1491. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1492. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1493. 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);
  1494. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1495. 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)
  1496. {
  1497. var d = (R_Single_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1498. object result = null;
  1499. var arg0 = (Unity.Mathematics.bool3)p[0];
  1500. var arg1 = (Unity.Mathematics.float3)p[1];
  1501. var arg2 = (Unity.Mathematics.float3)p[2];
  1502. result = d(ref arg0, ref arg1, ref arg2);
  1503. return result;
  1504. }
  1505. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1506. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1507. 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);
  1508. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1509. 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)
  1510. {
  1511. var d = (R_Single_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1512. object result = null;
  1513. var arg0 = (Unity.Mathematics.bool4)p[0];
  1514. var arg1 = (Unity.Mathematics.float4)p[1];
  1515. var arg2 = (Unity.Mathematics.float4)p[2];
  1516. result = d(ref arg0, ref arg1, ref arg2);
  1517. return result;
  1518. }
  1519. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1520. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1521. private delegate float R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0);
  1522. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1523. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1524. {
  1525. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1526. object result = null;
  1527. var arg0 = (Unity.Mathematics.float2)p[0];
  1528. result = d(ref arg0);
  1529. return result;
  1530. }
  1531. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1532. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1533. 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);
  1534. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1535. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  1536. {
  1537. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1538. object result = null;
  1539. var arg0 = (Unity.Mathematics.float2)p[0];
  1540. var arg1 = (Unity.Mathematics.float2)p[1];
  1541. result = d(ref arg0, ref arg1);
  1542. return result;
  1543. }
  1544. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1545. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1546. 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);
  1547. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1548. 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)
  1549. {
  1550. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  1551. object result = null;
  1552. var arg0 = (Unity.Mathematics.float2)p[0];
  1553. var arg1 = (Unity.Mathematics.float2)p[1];
  1554. var arg2 = (Unity.Mathematics.float2)p[2];
  1555. result = d(ref arg0, ref arg1, ref arg2);
  1556. return result;
  1557. }
  1558. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1559. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1560. 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);
  1561. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1562. 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)
  1563. {
  1564. var d = (R_Single_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_2_Single_Delegate)delegateObj;
  1565. object result = null;
  1566. var arg0 = (Unity.Mathematics.float2)p[0];
  1567. var arg1 = (Unity.Mathematics.float2)p[1];
  1568. var arg2 = (float)p[2];
  1569. result = d(ref arg0, ref arg1, arg2);
  1570. return result;
  1571. }
  1572. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1573. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1574. private delegate float R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0);
  1575. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1576. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1577. {
  1578. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1579. object result = null;
  1580. var arg0 = (Unity.Mathematics.float3)p[0];
  1581. result = d(ref arg0);
  1582. return result;
  1583. }
  1584. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1585. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1586. 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);
  1587. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1588. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  1589. {
  1590. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1591. object result = null;
  1592. var arg0 = (Unity.Mathematics.float3)p[0];
  1593. var arg1 = (Unity.Mathematics.float3)p[1];
  1594. result = d(ref arg0, ref arg1);
  1595. return result;
  1596. }
  1597. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1598. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1599. 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);
  1600. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1601. 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)
  1602. {
  1603. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  1604. object result = null;
  1605. var arg0 = (Unity.Mathematics.float3)p[0];
  1606. var arg1 = (Unity.Mathematics.float3)p[1];
  1607. var arg2 = (Unity.Mathematics.float3)p[2];
  1608. result = d(ref arg0, ref arg1, ref arg2);
  1609. return result;
  1610. }
  1611. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1612. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1613. 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);
  1614. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1615. 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)
  1616. {
  1617. var d = (R_Single_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_2_Single_Delegate)delegateObj;
  1618. object result = null;
  1619. var arg0 = (Unity.Mathematics.float3)p[0];
  1620. var arg1 = (Unity.Mathematics.float3)p[1];
  1621. var arg2 = (float)p[2];
  1622. result = d(ref arg0, ref arg1, arg2);
  1623. return result;
  1624. }
  1625. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1626. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1627. private delegate float R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0);
  1628. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1629. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1630. {
  1631. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1632. object result = null;
  1633. var arg0 = (Unity.Mathematics.float4)p[0];
  1634. result = d(ref arg0);
  1635. return result;
  1636. }
  1637. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1638. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1639. 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);
  1640. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1641. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  1642. {
  1643. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1644. object result = null;
  1645. var arg0 = (Unity.Mathematics.float4)p[0];
  1646. var arg1 = (Unity.Mathematics.float4)p[1];
  1647. result = d(ref arg0, ref arg1);
  1648. return result;
  1649. }
  1650. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1651. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1652. 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);
  1653. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1654. 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)
  1655. {
  1656. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  1657. object result = null;
  1658. var arg0 = (Unity.Mathematics.float4)p[0];
  1659. var arg1 = (Unity.Mathematics.float4)p[1];
  1660. var arg2 = (Unity.Mathematics.float4)p[2];
  1661. result = d(ref arg0, ref arg1, ref arg2);
  1662. return result;
  1663. }
  1664. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1665. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1666. 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);
  1667. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1668. 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)
  1669. {
  1670. var d = (R_Single_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_2_Single_Delegate)delegateObj;
  1671. object result = null;
  1672. var arg0 = (Unity.Mathematics.float4)p[0];
  1673. var arg1 = (Unity.Mathematics.float4)p[1];
  1674. var arg2 = (float)p[2];
  1675. result = d(ref arg0, ref arg1, arg2);
  1676. return result;
  1677. }
  1678. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1679. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1680. private delegate float R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0);
  1681. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1682. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  1683. {
  1684. var d = (R_Single_P_0_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  1685. object result = null;
  1686. var arg0 = (Unity.Mathematics.int2)p[0];
  1687. result = d(ref arg0);
  1688. return result;
  1689. }
  1690. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1691. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1692. private delegate float R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0);
  1693. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1694. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  1695. {
  1696. var d = (R_Single_P_0_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  1697. object result = null;
  1698. var arg0 = (Unity.Mathematics.int3)p[0];
  1699. result = d(ref arg0);
  1700. return result;
  1701. }
  1702. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1703. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1704. private delegate float R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  1705. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1706. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  1707. {
  1708. var d = (R_Single_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  1709. object result = null;
  1710. var arg0 = (Unity.Mathematics.int4)p[0];
  1711. result = d(ref arg0);
  1712. return result;
  1713. }
  1714. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1715. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1716. private delegate float R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0);
  1717. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1718. private unsafe static object Call_R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  1719. {
  1720. var d = (R_Single_P_0_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  1721. object result = null;
  1722. var arg0 = (Unity.Mathematics.uint4)p[0];
  1723. result = d(ref arg0);
  1724. return result;
  1725. }
  1726. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1727. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1728. private delegate float R_Single_P_0_Single_Delegate(float arg0);
  1729. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1730. private unsafe static object Call_R_Single_P_0_Single_Delegate(object delegateObj, object[] p)
  1731. {
  1732. var d = (R_Single_P_0_Single_Delegate)delegateObj;
  1733. object result = null;
  1734. var arg0 = (float)p[0];
  1735. result = d(arg0);
  1736. return result;
  1737. }
  1738. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1739. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1740. private delegate float R_Single_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  1741. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1742. private unsafe static object Call_R_Single_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  1743. {
  1744. var d = (R_Single_P_0_Single_1_Single_Delegate)delegateObj;
  1745. object result = null;
  1746. var arg0 = (float)p[0];
  1747. var arg1 = (float)p[1];
  1748. result = d(arg0, arg1);
  1749. return result;
  1750. }
  1751. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1752. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1753. private delegate float R_Single_P_0_Single_1_Single_2_Single_Delegate(float arg0, float arg1, float arg2);
  1754. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1755. private unsafe static object Call_R_Single_P_0_Single_1_Single_2_Single_Delegate(object delegateObj, object[] p)
  1756. {
  1757. var d = (R_Single_P_0_Single_1_Single_2_Single_Delegate)delegateObj;
  1758. object result = null;
  1759. var arg0 = (float)p[0];
  1760. var arg1 = (float)p[1];
  1761. var arg2 = (float)p[2];
  1762. result = d(arg0, arg1, arg2);
  1763. return result;
  1764. }
  1765. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1766. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1767. private delegate float R_Single_P_0_Single_Ref_Delegate(ref float arg0);
  1768. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1769. private unsafe static object Call_R_Single_P_0_Single_Ref_Delegate(object delegateObj, object[] p)
  1770. {
  1771. var d = (R_Single_P_0_Single_Ref_Delegate)delegateObj;
  1772. object result = null;
  1773. var arg0 = (float)p[0];
  1774. result = d(ref arg0);
  1775. return result;
  1776. }
  1777. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1778. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1779. private delegate float R_Single_P_0_Int32_Delegate(int arg0);
  1780. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1781. private unsafe static object Call_R_Single_P_0_Int32_Delegate(object delegateObj, object[] p)
  1782. {
  1783. var d = (R_Single_P_0_Int32_Delegate)delegateObj;
  1784. object result = null;
  1785. var arg0 = (int)p[0];
  1786. result = d(arg0);
  1787. return result;
  1788. }
  1789. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1790. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1791. private delegate float R_Single_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  1792. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1793. private unsafe static object Call_R_Single_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  1794. {
  1795. var d = (R_Single_P_0_Int32_1_Int32_Delegate)delegateObj;
  1796. object result = null;
  1797. var arg0 = (int)p[0];
  1798. var arg1 = (int)p[1];
  1799. result = d(arg0, arg1);
  1800. return result;
  1801. }
  1802. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1803. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1804. private delegate float R_Single_P_0_Int32_Ref_Delegate(ref int arg0);
  1805. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1806. private unsafe static object Call_R_Single_P_0_Int32_Ref_Delegate(object delegateObj, object[] p)
  1807. {
  1808. var d = (R_Single_P_0_Int32_Ref_Delegate)delegateObj;
  1809. object result = null;
  1810. var arg0 = (int)p[0];
  1811. result = d(ref arg0);
  1812. return result;
  1813. }
  1814. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1815. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1816. private delegate float R_Single_P_0_UInt32_Delegate(uint arg0);
  1817. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1818. private unsafe static object Call_R_Single_P_0_UInt32_Delegate(object delegateObj, object[] p)
  1819. {
  1820. var d = (R_Single_P_0_UInt32_Delegate)delegateObj;
  1821. object result = null;
  1822. var arg0 = (uint)p[0];
  1823. result = d(arg0);
  1824. return result;
  1825. }
  1826. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1827. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1828. private delegate float R_Single_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  1829. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1830. private unsafe static object Call_R_Single_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  1831. {
  1832. var d = (R_Single_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  1833. object result = null;
  1834. var arg0 = (uint)p[0];
  1835. var arg1 = (uint)p[1];
  1836. result = d(arg0, arg1);
  1837. return result;
  1838. }
  1839. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1840. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1841. private delegate float R_Single_P_0_UInt16_Delegate(ushort arg0);
  1842. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1843. private unsafe static object Call_R_Single_P_0_UInt16_Delegate(object delegateObj, object[] p)
  1844. {
  1845. var d = (R_Single_P_0_UInt16_Delegate)delegateObj;
  1846. object result = null;
  1847. var arg0 = (ushort)p[0];
  1848. result = d(arg0);
  1849. return result;
  1850. }
  1851. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1852. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1853. private delegate int R_Int32_P_Delegate();
  1854. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1855. private unsafe static object Call_R_Int32_P_Delegate(object delegateObj, object[] p)
  1856. {
  1857. var d = (R_Int32_P_Delegate)delegateObj;
  1858. object result = null;
  1859. result = d();
  1860. return result;
  1861. }
  1862. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1863. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1864. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate(Burst.Compiler.IL.Tests.ControlFlows.EnumSwitch arg0);
  1865. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1866. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate(object delegateObj, object[] p)
  1867. {
  1868. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ControlFlows_EnumSwitch_Delegate)delegateObj;
  1869. object result = null;
  1870. var arg0 = (Burst.Compiler.IL.Tests.ControlFlows.EnumSwitch)p[0];
  1871. result = d(arg0);
  1872. return result;
  1873. }
  1874. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1875. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1876. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(ref Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer arg0);
  1877. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1878. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(object delegateObj, object[] p)
  1879. {
  1880. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate)delegateObj;
  1881. object result = null;
  1882. var arg0 = (Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer)p[0];
  1883. result = d(ref arg0);
  1884. return result;
  1885. }
  1886. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1887. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1888. 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);
  1889. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1890. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  1891. {
  1892. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NotSupported_CharbyValueFunc_Ref_1_Int32_Delegate)delegateObj;
  1893. object result = null;
  1894. var arg0 = (Burst.Compiler.IL.Tests.NotSupported.CharbyValueFunc)p[0];
  1895. var arg1 = (int)p[1];
  1896. result = d(ref arg0, arg1);
  1897. return result;
  1898. }
  1899. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1900. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1901. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed arg0);
  1902. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1903. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate(object delegateObj, object[] p)
  1904. {
  1905. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_Delegate)delegateObj;
  1906. object result = null;
  1907. var arg0 = (Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed)p[0];
  1908. result = d(ref arg0);
  1909. return result;
  1910. }
  1911. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1912. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1913. 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);
  1914. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1915. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  1916. {
  1917. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Pointers_MyStructWithFixed_Ref_1_Int32_Delegate)delegateObj;
  1918. object result = null;
  1919. var arg0 = (Burst.Compiler.IL.Tests.Pointers.MyStructWithFixed)p[0];
  1920. var arg1 = (int)p[1];
  1921. result = d(ref arg0, arg1);
  1922. return result;
  1923. }
  1924. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1925. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1926. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate(Burst.Compiler.IL.Tests.TestEnums.MyEnum arg0);
  1927. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1928. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate(object delegateObj, object[] p)
  1929. {
  1930. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_MyEnum_Delegate)delegateObj;
  1931. object result = null;
  1932. var arg0 = (Burst.Compiler.IL.Tests.TestEnums.MyEnum)p[0];
  1933. result = d(arg0);
  1934. return result;
  1935. }
  1936. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1937. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1938. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate(Burst.Compiler.IL.Tests.TestEnums.SmallEnum arg0);
  1939. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1940. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate(object delegateObj, object[] p)
  1941. {
  1942. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestEnums_SmallEnum_Delegate)delegateObj;
  1943. object result = null;
  1944. var arg0 = (Burst.Compiler.IL.Tests.TestEnums.SmallEnum)p[0];
  1945. result = d(arg0);
  1946. return result;
  1947. }
  1948. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1949. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1950. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.ExplicitLayoutStructFixedBuffer arg0);
  1951. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1952. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate(object delegateObj, object[] p)
  1953. {
  1954. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ExplicitLayoutStructFixedBuffer_Ref_Delegate)delegateObj;
  1955. object result = null;
  1956. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.ExplicitLayoutStructFixedBuffer)p[0];
  1957. result = d(ref arg0);
  1958. return result;
  1959. }
  1960. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1961. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1962. private unsafe delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate(Burst.Compiler.IL.Tests.TestStructs.MyCompilerGeneratedButNotReally* arg0);
  1963. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1964. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate(object delegateObj, object[] p)
  1965. {
  1966. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_MyCompilerGeneratedButNotReally_Ptr_Delegate)delegateObj;
  1967. object result = null;
  1968. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.MyCompilerGeneratedButNotReally*)(IntPtr)p[0];
  1969. result = d(arg0);
  1970. return result;
  1971. }
  1972. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1973. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1974. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SequentialStructWithPaddingAndVectorField arg0);
  1975. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1976. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate(object delegateObj, object[] p)
  1977. {
  1978. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SequentialStructWithPaddingAndVectorField_Ref_Delegate)delegateObj;
  1979. object result = null;
  1980. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SequentialStructWithPaddingAndVectorField)p[0];
  1981. result = d(ref arg0);
  1982. return result;
  1983. }
  1984. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1985. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1986. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StructWithBlittableTypes arg0);
  1987. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1988. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate(object delegateObj, object[] p)
  1989. {
  1990. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithBlittableTypes_Ref_Delegate)delegateObj;
  1991. object result = null;
  1992. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StructWithBlittableTypes)p[0];
  1993. result = d(ref arg0);
  1994. return result;
  1995. }
  1996. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  1997. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1998. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypes arg0);
  1999. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2000. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate(object delegateObj, object[] p)
  2001. {
  2002. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypes_Ref_Delegate)delegateObj;
  2003. object result = null;
  2004. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypes)p[0];
  2005. result = d(ref arg0);
  2006. return result;
  2007. }
  2008. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2009. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2010. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypesWithMarshalAs arg0);
  2011. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2012. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate(object delegateObj, object[] p)
  2013. {
  2014. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StructWithNonBlittableTypesWithMarshalAs_Ref_Delegate)delegateObj;
  2015. object result = null;
  2016. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StructWithNonBlittableTypesWithMarshalAs)p[0];
  2017. result = d(ref arg0);
  2018. return result;
  2019. }
  2020. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2021. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2022. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate(Burst.Compiler.IL.Tests.Types.MyEnum arg0);
  2023. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2024. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate(object delegateObj, object[] p)
  2025. {
  2026. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Types_MyEnum_Delegate)delegateObj;
  2027. object result = null;
  2028. var arg0 = (Burst.Compiler.IL.Tests.Types.MyEnum)p[0];
  2029. result = d(arg0);
  2030. return result;
  2031. }
  2032. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2033. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2034. private delegate int R_Int32_P_0_System_Guid_Ref_Delegate(ref System.Guid arg0);
  2035. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2036. private unsafe static object Call_R_Int32_P_0_System_Guid_Ref_Delegate(object delegateObj, object[] p)
  2037. {
  2038. var d = (R_Int32_P_0_System_Guid_Ref_Delegate)delegateObj;
  2039. object result = null;
  2040. var arg0 = (System.Guid)p[0];
  2041. result = d(ref arg0);
  2042. return result;
  2043. }
  2044. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2045. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2046. private delegate int R_Int32_P_0_IntPtr_Delegate(System.IntPtr arg0);
  2047. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2048. private unsafe static object Call_R_Int32_P_0_IntPtr_Delegate(object delegateObj, object[] p)
  2049. {
  2050. var d = (R_Int32_P_0_IntPtr_Delegate)delegateObj;
  2051. object result = null;
  2052. var arg0 = (System.IntPtr)p[0];
  2053. result = d(arg0);
  2054. return result;
  2055. }
  2056. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2057. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2058. private delegate int R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate(ref Unity.Mathematics.bool2 arg0);
  2059. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2060. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  2061. {
  2062. var d = (R_Int32_P_0_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  2063. object result = null;
  2064. var arg0 = (Unity.Mathematics.bool2)p[0];
  2065. result = d(ref arg0);
  2066. return result;
  2067. }
  2068. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2069. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2070. 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);
  2071. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2072. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate(object delegateObj, object[] p)
  2073. {
  2074. var d = (R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Unity_Mathematics_bool2_Ref_Delegate)delegateObj;
  2075. object result = null;
  2076. var arg0 = (Unity.Mathematics.bool2)p[0];
  2077. var arg1 = (Unity.Mathematics.bool2)p[1];
  2078. result = d(ref arg0, ref arg1);
  2079. return result;
  2080. }
  2081. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2082. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2083. private delegate int R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate(ref Unity.Mathematics.bool2 arg0, bool arg1);
  2084. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2085. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate(object delegateObj, object[] p)
  2086. {
  2087. var d = (R_Int32_P_0_Unity_Mathematics_bool2_Ref_1_Boolean_Delegate)delegateObj;
  2088. object result = null;
  2089. var arg0 = (Unity.Mathematics.bool2)p[0];
  2090. var arg1 = (bool)p[1];
  2091. result = d(ref arg0, arg1);
  2092. return result;
  2093. }
  2094. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2095. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2096. private delegate int R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate(ref Unity.Mathematics.bool3 arg0);
  2097. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2098. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  2099. {
  2100. var d = (R_Int32_P_0_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  2101. object result = null;
  2102. var arg0 = (Unity.Mathematics.bool3)p[0];
  2103. result = d(ref arg0);
  2104. return result;
  2105. }
  2106. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2107. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2108. 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);
  2109. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2110. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate(object delegateObj, object[] p)
  2111. {
  2112. var d = (R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Unity_Mathematics_bool3_Ref_Delegate)delegateObj;
  2113. object result = null;
  2114. var arg0 = (Unity.Mathematics.bool3)p[0];
  2115. var arg1 = (Unity.Mathematics.bool3)p[1];
  2116. result = d(ref arg0, ref arg1);
  2117. return result;
  2118. }
  2119. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2120. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2121. private delegate int R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate(ref Unity.Mathematics.bool3 arg0, bool arg1);
  2122. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2123. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate(object delegateObj, object[] p)
  2124. {
  2125. var d = (R_Int32_P_0_Unity_Mathematics_bool3_Ref_1_Boolean_Delegate)delegateObj;
  2126. object result = null;
  2127. var arg0 = (Unity.Mathematics.bool3)p[0];
  2128. var arg1 = (bool)p[1];
  2129. result = d(ref arg0, arg1);
  2130. return result;
  2131. }
  2132. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2133. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2134. private delegate int R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate(ref Unity.Mathematics.bool4 arg0);
  2135. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2136. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  2137. {
  2138. var d = (R_Int32_P_0_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  2139. object result = null;
  2140. var arg0 = (Unity.Mathematics.bool4)p[0];
  2141. result = d(ref arg0);
  2142. return result;
  2143. }
  2144. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2145. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2146. 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);
  2147. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2148. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  2149. {
  2150. var d = (R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  2151. object result = null;
  2152. var arg0 = (Unity.Mathematics.bool4)p[0];
  2153. var arg1 = (Unity.Mathematics.bool4)p[1];
  2154. result = d(ref arg0, ref arg1);
  2155. return result;
  2156. }
  2157. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2158. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2159. private delegate int R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate(ref Unity.Mathematics.bool4 arg0, bool arg1);
  2160. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2161. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate(object delegateObj, object[] p)
  2162. {
  2163. var d = (R_Int32_P_0_Unity_Mathematics_bool4_Ref_1_Boolean_Delegate)delegateObj;
  2164. object result = null;
  2165. var arg0 = (Unity.Mathematics.bool4)p[0];
  2166. var arg1 = (bool)p[1];
  2167. result = d(ref arg0, arg1);
  2168. return result;
  2169. }
  2170. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2171. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2172. private delegate int R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate(ref Unity.Mathematics.float2 arg0);
  2173. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2174. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  2175. {
  2176. var d = (R_Int32_P_0_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  2177. object result = null;
  2178. var arg0 = (Unity.Mathematics.float2)p[0];
  2179. result = d(ref arg0);
  2180. return result;
  2181. }
  2182. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2183. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2184. 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);
  2185. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2186. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  2187. {
  2188. var d = (R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  2189. object result = null;
  2190. var arg0 = (Unity.Mathematics.float2)p[0];
  2191. var arg1 = (Unity.Mathematics.float2)p[1];
  2192. result = d(ref arg0, ref arg1);
  2193. return result;
  2194. }
  2195. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2196. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2197. private delegate int R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate(ref Unity.Mathematics.float2 arg0, float arg1);
  2198. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2199. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate(object delegateObj, object[] p)
  2200. {
  2201. var d = (R_Int32_P_0_Unity_Mathematics_float2_Ref_1_Single_Delegate)delegateObj;
  2202. object result = null;
  2203. var arg0 = (Unity.Mathematics.float2)p[0];
  2204. var arg1 = (float)p[1];
  2205. result = d(ref arg0, arg1);
  2206. return result;
  2207. }
  2208. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2209. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2210. private delegate int R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate(ref Unity.Mathematics.float3 arg0);
  2211. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2212. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  2213. {
  2214. var d = (R_Int32_P_0_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  2215. object result = null;
  2216. var arg0 = (Unity.Mathematics.float3)p[0];
  2217. result = d(ref arg0);
  2218. return result;
  2219. }
  2220. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2221. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2222. 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);
  2223. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2224. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  2225. {
  2226. var d = (R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  2227. object result = null;
  2228. var arg0 = (Unity.Mathematics.float3)p[0];
  2229. var arg1 = (Unity.Mathematics.float3)p[1];
  2230. result = d(ref arg0, ref arg1);
  2231. return result;
  2232. }
  2233. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2234. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2235. private delegate int R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate(ref Unity.Mathematics.float3 arg0, float arg1);
  2236. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2237. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate(object delegateObj, object[] p)
  2238. {
  2239. var d = (R_Int32_P_0_Unity_Mathematics_float3_Ref_1_Single_Delegate)delegateObj;
  2240. object result = null;
  2241. var arg0 = (Unity.Mathematics.float3)p[0];
  2242. var arg1 = (float)p[1];
  2243. result = d(ref arg0, arg1);
  2244. return result;
  2245. }
  2246. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2247. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2248. private delegate int R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate(ref Unity.Mathematics.float4 arg0);
  2249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2250. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  2251. {
  2252. var d = (R_Int32_P_0_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  2253. object result = null;
  2254. var arg0 = (Unity.Mathematics.float4)p[0];
  2255. result = d(ref arg0);
  2256. return result;
  2257. }
  2258. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2259. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2260. 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);
  2261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2262. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  2263. {
  2264. var d = (R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  2265. object result = null;
  2266. var arg0 = (Unity.Mathematics.float4)p[0];
  2267. var arg1 = (Unity.Mathematics.float4)p[1];
  2268. result = d(ref arg0, ref arg1);
  2269. return result;
  2270. }
  2271. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2272. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2273. private delegate int R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(ref Unity.Mathematics.float4 arg0, float arg1);
  2274. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2275. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate(object delegateObj, object[] p)
  2276. {
  2277. var d = (R_Int32_P_0_Unity_Mathematics_float4_Ref_1_Single_Delegate)delegateObj;
  2278. object result = null;
  2279. var arg0 = (Unity.Mathematics.float4)p[0];
  2280. var arg1 = (float)p[1];
  2281. result = d(ref arg0, arg1);
  2282. return result;
  2283. }
  2284. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2285. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2286. private delegate int R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate(ref Unity.Mathematics.int2 arg0);
  2287. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2288. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  2289. {
  2290. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2291. object result = null;
  2292. var arg0 = (Unity.Mathematics.int2)p[0];
  2293. result = d(ref arg0);
  2294. return result;
  2295. }
  2296. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2297. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2298. 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);
  2299. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2300. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate(object delegateObj, object[] p)
  2301. {
  2302. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2303. object result = null;
  2304. var arg0 = (Unity.Mathematics.int2)p[0];
  2305. var arg1 = (Unity.Mathematics.int2)p[1];
  2306. result = d(ref arg0, ref arg1);
  2307. return result;
  2308. }
  2309. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2310. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2311. 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);
  2312. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2313. 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)
  2314. {
  2315. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Unity_Mathematics_int2_Ref_2_Unity_Mathematics_int2_Ref_Delegate)delegateObj;
  2316. object result = null;
  2317. var arg0 = (Unity.Mathematics.int2)p[0];
  2318. var arg1 = (Unity.Mathematics.int2)p[1];
  2319. var arg2 = (Unity.Mathematics.int2)p[2];
  2320. result = d(ref arg0, ref arg1, ref arg2);
  2321. return result;
  2322. }
  2323. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2324. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2325. private delegate int R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate(ref Unity.Mathematics.int2 arg0, int arg1);
  2326. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2327. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2328. {
  2329. var d = (R_Int32_P_0_Unity_Mathematics_int2_Ref_1_Int32_Delegate)delegateObj;
  2330. object result = null;
  2331. var arg0 = (Unity.Mathematics.int2)p[0];
  2332. var arg1 = (int)p[1];
  2333. result = d(ref arg0, arg1);
  2334. return result;
  2335. }
  2336. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2337. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2338. private delegate int R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate(ref Unity.Mathematics.int3 arg0);
  2339. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2340. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  2341. {
  2342. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2343. object result = null;
  2344. var arg0 = (Unity.Mathematics.int3)p[0];
  2345. result = d(ref arg0);
  2346. return result;
  2347. }
  2348. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2349. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2350. 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);
  2351. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2352. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate(object delegateObj, object[] p)
  2353. {
  2354. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2355. object result = null;
  2356. var arg0 = (Unity.Mathematics.int3)p[0];
  2357. var arg1 = (Unity.Mathematics.int3)p[1];
  2358. result = d(ref arg0, ref arg1);
  2359. return result;
  2360. }
  2361. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2362. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2363. 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);
  2364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2365. 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)
  2366. {
  2367. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Unity_Mathematics_int3_Ref_2_Unity_Mathematics_int3_Ref_Delegate)delegateObj;
  2368. object result = null;
  2369. var arg0 = (Unity.Mathematics.int3)p[0];
  2370. var arg1 = (Unity.Mathematics.int3)p[1];
  2371. var arg2 = (Unity.Mathematics.int3)p[2];
  2372. result = d(ref arg0, ref arg1, ref arg2);
  2373. return result;
  2374. }
  2375. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2377. private delegate int R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate(ref Unity.Mathematics.int3 arg0, int arg1);
  2378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2379. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2380. {
  2381. var d = (R_Int32_P_0_Unity_Mathematics_int3_Ref_1_Int32_Delegate)delegateObj;
  2382. object result = null;
  2383. var arg0 = (Unity.Mathematics.int3)p[0];
  2384. var arg1 = (int)p[1];
  2385. result = d(ref arg0, arg1);
  2386. return result;
  2387. }
  2388. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2389. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2390. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate(ref Unity.Mathematics.int4 arg0);
  2391. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2392. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  2393. {
  2394. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2395. object result = null;
  2396. var arg0 = (Unity.Mathematics.int4)p[0];
  2397. result = d(ref arg0);
  2398. return result;
  2399. }
  2400. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2401. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2402. 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);
  2403. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2404. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate(object delegateObj, object[] p)
  2405. {
  2406. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_bool4_Ref_Delegate)delegateObj;
  2407. object result = null;
  2408. var arg0 = (Unity.Mathematics.int4)p[0];
  2409. var arg1 = (Unity.Mathematics.bool4)p[1];
  2410. result = d(ref arg0, ref arg1);
  2411. return result;
  2412. }
  2413. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2414. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2415. 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);
  2416. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2417. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate(object delegateObj, object[] p)
  2418. {
  2419. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2420. object result = null;
  2421. var arg0 = (Unity.Mathematics.int4)p[0];
  2422. var arg1 = (Unity.Mathematics.int4)p[1];
  2423. result = d(ref arg0, ref arg1);
  2424. return result;
  2425. }
  2426. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2427. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2428. 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);
  2429. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2430. 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)
  2431. {
  2432. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Unity_Mathematics_int4_Ref_2_Unity_Mathematics_int4_Ref_Delegate)delegateObj;
  2433. object result = null;
  2434. var arg0 = (Unity.Mathematics.int4)p[0];
  2435. var arg1 = (Unity.Mathematics.int4)p[1];
  2436. var arg2 = (Unity.Mathematics.int4)p[2];
  2437. result = d(ref arg0, ref arg1, ref arg2);
  2438. return result;
  2439. }
  2440. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2441. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2442. private delegate int R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate(ref Unity.Mathematics.int4 arg0, int arg1);
  2443. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2444. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  2445. {
  2446. var d = (R_Int32_P_0_Unity_Mathematics_int4_Ref_1_Int32_Delegate)delegateObj;
  2447. object result = null;
  2448. var arg0 = (Unity.Mathematics.int4)p[0];
  2449. var arg1 = (int)p[1];
  2450. result = d(ref arg0, arg1);
  2451. return result;
  2452. }
  2453. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2454. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2455. private delegate int R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate(ref Unity.Mathematics.uint2 arg0);
  2456. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2457. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate(object delegateObj, object[] p)
  2458. {
  2459. var d = (R_Int32_P_0_Unity_Mathematics_uint2_Ref_Delegate)delegateObj;
  2460. object result = null;
  2461. var arg0 = (Unity.Mathematics.uint2)p[0];
  2462. result = d(ref arg0);
  2463. return result;
  2464. }
  2465. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2466. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2467. 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);
  2468. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2469. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate(object delegateObj, object[] p)
  2470. {
  2471. var d = (R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_Unity_Mathematics_uint2_Ref_Delegate)delegateObj;
  2472. object result = null;
  2473. var arg0 = (Unity.Mathematics.uint2)p[0];
  2474. var arg1 = (Unity.Mathematics.uint2)p[1];
  2475. result = d(ref arg0, ref arg1);
  2476. return result;
  2477. }
  2478. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2479. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2480. private delegate int R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate(ref Unity.Mathematics.uint2 arg0, uint arg1);
  2481. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2482. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate(object delegateObj, object[] p)
  2483. {
  2484. var d = (R_Int32_P_0_Unity_Mathematics_uint2_Ref_1_UInt32_Delegate)delegateObj;
  2485. object result = null;
  2486. var arg0 = (Unity.Mathematics.uint2)p[0];
  2487. var arg1 = (uint)p[1];
  2488. result = d(ref arg0, arg1);
  2489. return result;
  2490. }
  2491. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2492. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2493. private delegate int R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate(ref Unity.Mathematics.uint3 arg0);
  2494. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2495. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate(object delegateObj, object[] p)
  2496. {
  2497. var d = (R_Int32_P_0_Unity_Mathematics_uint3_Ref_Delegate)delegateObj;
  2498. object result = null;
  2499. var arg0 = (Unity.Mathematics.uint3)p[0];
  2500. result = d(ref arg0);
  2501. return result;
  2502. }
  2503. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2504. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2505. 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);
  2506. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2507. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate(object delegateObj, object[] p)
  2508. {
  2509. var d = (R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_Unity_Mathematics_uint3_Ref_Delegate)delegateObj;
  2510. object result = null;
  2511. var arg0 = (Unity.Mathematics.uint3)p[0];
  2512. var arg1 = (Unity.Mathematics.uint3)p[1];
  2513. result = d(ref arg0, ref arg1);
  2514. return result;
  2515. }
  2516. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2517. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2518. private delegate int R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate(ref Unity.Mathematics.uint3 arg0, uint arg1);
  2519. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2520. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate(object delegateObj, object[] p)
  2521. {
  2522. var d = (R_Int32_P_0_Unity_Mathematics_uint3_Ref_1_UInt32_Delegate)delegateObj;
  2523. object result = null;
  2524. var arg0 = (Unity.Mathematics.uint3)p[0];
  2525. var arg1 = (uint)p[1];
  2526. result = d(ref arg0, arg1);
  2527. return result;
  2528. }
  2529. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2530. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2531. private delegate int R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate(ref Unity.Mathematics.uint4 arg0);
  2532. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2533. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  2534. {
  2535. var d = (R_Int32_P_0_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  2536. object result = null;
  2537. var arg0 = (Unity.Mathematics.uint4)p[0];
  2538. result = d(ref arg0);
  2539. return result;
  2540. }
  2541. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2542. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2543. 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);
  2544. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2545. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  2546. {
  2547. var d = (R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  2548. object result = null;
  2549. var arg0 = (Unity.Mathematics.uint4)p[0];
  2550. var arg1 = (Unity.Mathematics.uint4)p[1];
  2551. result = d(ref arg0, ref arg1);
  2552. return result;
  2553. }
  2554. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2555. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2556. private delegate int R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate(ref Unity.Mathematics.uint4 arg0, uint arg1);
  2557. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2558. private unsafe static object Call_R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate(object delegateObj, object[] p)
  2559. {
  2560. var d = (R_Int32_P_0_Unity_Mathematics_uint4_Ref_1_UInt32_Delegate)delegateObj;
  2561. object result = null;
  2562. var arg0 = (Unity.Mathematics.uint4)p[0];
  2563. var arg1 = (uint)p[1];
  2564. result = d(ref arg0, arg1);
  2565. return result;
  2566. }
  2567. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2568. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2569. private delegate int R_Int32_P_0_Boolean_Delegate(bool arg0);
  2570. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2571. private unsafe static object Call_R_Int32_P_0_Boolean_Delegate(object delegateObj, object[] p)
  2572. {
  2573. var d = (R_Int32_P_0_Boolean_Delegate)delegateObj;
  2574. object result = null;
  2575. var arg0 = (bool)p[0];
  2576. result = d(arg0);
  2577. return result;
  2578. }
  2579. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2580. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2581. private delegate int R_Int32_P_0_Boolean_1_Boolean_Delegate(bool arg0, bool arg1);
  2582. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2583. private unsafe static object Call_R_Int32_P_0_Boolean_1_Boolean_Delegate(object delegateObj, object[] p)
  2584. {
  2585. var d = (R_Int32_P_0_Boolean_1_Boolean_Delegate)delegateObj;
  2586. object result = null;
  2587. var arg0 = (bool)p[0];
  2588. var arg1 = (bool)p[1];
  2589. result = d(arg0, arg1);
  2590. return result;
  2591. }
  2592. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2593. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2594. private delegate int R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate(bool arg0, bool arg1, bool arg2);
  2595. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2596. private unsafe static object Call_R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate(object delegateObj, object[] p)
  2597. {
  2598. var d = (R_Int32_P_0_Boolean_1_Boolean_2_Boolean_Delegate)delegateObj;
  2599. object result = null;
  2600. var arg0 = (bool)p[0];
  2601. var arg1 = (bool)p[1];
  2602. var arg2 = (bool)p[2];
  2603. result = d(arg0, arg1, arg2);
  2604. return result;
  2605. }
  2606. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2607. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2608. private delegate int R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate(bool arg0, bool arg1, bool arg2, bool arg3);
  2609. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2610. private unsafe static object Call_R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate(object delegateObj, object[] p)
  2611. {
  2612. var d = (R_Int32_P_0_Boolean_1_Boolean_2_Boolean_3_Boolean_Delegate)delegateObj;
  2613. object result = null;
  2614. var arg0 = (bool)p[0];
  2615. var arg1 = (bool)p[1];
  2616. var arg2 = (bool)p[2];
  2617. var arg3 = (bool)p[3];
  2618. result = d(arg0, arg1, arg2, arg3);
  2619. return result;
  2620. }
  2621. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2622. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2623. private delegate int R_Int32_P_0_Byte_Delegate(byte arg0);
  2624. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2625. private unsafe static object Call_R_Int32_P_0_Byte_Delegate(object delegateObj, object[] p)
  2626. {
  2627. var d = (R_Int32_P_0_Byte_Delegate)delegateObj;
  2628. object result = null;
  2629. var arg0 = (byte)p[0];
  2630. result = d(arg0);
  2631. return result;
  2632. }
  2633. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2634. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2635. private delegate int R_Int32_P_0_Byte_Ref_Delegate(ref byte arg0);
  2636. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2637. private unsafe static object Call_R_Int32_P_0_Byte_Ref_Delegate(object delegateObj, object[] p)
  2638. {
  2639. var d = (R_Int32_P_0_Byte_Ref_Delegate)delegateObj;
  2640. object result = null;
  2641. var arg0 = (byte)p[0];
  2642. result = d(ref arg0);
  2643. return result;
  2644. }
  2645. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2646. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2647. private delegate int R_Int32_P_0_Double_Delegate(double arg0);
  2648. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2649. private unsafe static object Call_R_Int32_P_0_Double_Delegate(object delegateObj, object[] p)
  2650. {
  2651. var d = (R_Int32_P_0_Double_Delegate)delegateObj;
  2652. object result = null;
  2653. var arg0 = (double)p[0];
  2654. result = d(arg0);
  2655. return result;
  2656. }
  2657. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2658. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2659. private delegate int R_Int32_P_0_Single_Delegate(float arg0);
  2660. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2661. private unsafe static object Call_R_Int32_P_0_Single_Delegate(object delegateObj, object[] p)
  2662. {
  2663. var d = (R_Int32_P_0_Single_Delegate)delegateObj;
  2664. object result = null;
  2665. var arg0 = (float)p[0];
  2666. result = d(arg0);
  2667. return result;
  2668. }
  2669. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2670. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2671. private delegate int R_Int32_P_0_Single_1_Single_Delegate(float arg0, float arg1);
  2672. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2673. private unsafe static object Call_R_Int32_P_0_Single_1_Single_Delegate(object delegateObj, object[] p)
  2674. {
  2675. var d = (R_Int32_P_0_Single_1_Single_Delegate)delegateObj;
  2676. object result = null;
  2677. var arg0 = (float)p[0];
  2678. var arg1 = (float)p[1];
  2679. result = d(arg0, arg1);
  2680. return result;
  2681. }
  2682. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2683. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2684. private delegate int R_Int32_P_0_Int32_Delegate(int arg0);
  2685. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2686. private unsafe static object Call_R_Int32_P_0_Int32_Delegate(object delegateObj, object[] p)
  2687. {
  2688. var d = (R_Int32_P_0_Int32_Delegate)delegateObj;
  2689. object result = null;
  2690. var arg0 = (int)p[0];
  2691. result = d(arg0);
  2692. return result;
  2693. }
  2694. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2695. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2696. 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);
  2697. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2698. private unsafe static object Call_R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate(object delegateObj, object[] p)
  2699. {
  2700. var d = (R_Int32_P_0_Int32_1_Burst_Compiler_IL_Tests_Functions_Pair_Ref_Delegate)delegateObj;
  2701. object result = null;
  2702. var arg0 = (int)p[0];
  2703. var arg1 = (Burst.Compiler.IL.Tests.Functions.Pair)p[1];
  2704. result = d(arg0, ref arg1);
  2705. return result;
  2706. }
  2707. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2708. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2709. private delegate int R_Int32_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  2710. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2711. private unsafe static object Call_R_Int32_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  2712. {
  2713. var d = (R_Int32_P_0_Int32_1_Int32_Delegate)delegateObj;
  2714. object result = null;
  2715. var arg0 = (int)p[0];
  2716. var arg1 = (int)p[1];
  2717. result = d(arg0, arg1);
  2718. return result;
  2719. }
  2720. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2721. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2722. private delegate int R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate(int arg0, int arg1, int arg2);
  2723. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2724. private unsafe static object Call_R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  2725. {
  2726. var d = (R_Int32_P_0_Int32_1_Int32_2_Int32_Delegate)delegateObj;
  2727. object result = null;
  2728. var arg0 = (int)p[0];
  2729. var arg1 = (int)p[1];
  2730. var arg2 = (int)p[2];
  2731. result = d(arg0, arg1, arg2);
  2732. return result;
  2733. }
  2734. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2735. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2736. private delegate int R_Int32_P_0_Int32_Ref_Delegate(ref int arg0);
  2737. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2738. private unsafe static object Call_R_Int32_P_0_Int32_Ref_Delegate(object delegateObj, object[] p)
  2739. {
  2740. var d = (R_Int32_P_0_Int32_Ref_Delegate)delegateObj;
  2741. object result = null;
  2742. var arg0 = (int)p[0];
  2743. result = d(ref arg0);
  2744. return result;
  2745. }
  2746. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2747. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2748. private delegate int R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate(ref int arg0, int arg1, int arg2);
  2749. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2750. private unsafe static object Call_R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  2751. {
  2752. var d = (R_Int32_P_0_Int32_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  2753. object result = null;
  2754. var arg0 = (int)p[0];
  2755. var arg1 = (int)p[1];
  2756. var arg2 = (int)p[2];
  2757. result = d(ref arg0, arg1, arg2);
  2758. return result;
  2759. }
  2760. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2761. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2762. private unsafe delegate int R_Int32_P_0_Int32_Ptr_1_Int32_Delegate(int* arg0, int arg1);
  2763. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2764. private unsafe static object Call_R_Int32_P_0_Int32_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  2765. {
  2766. var d = (R_Int32_P_0_Int32_Ptr_1_Int32_Delegate)delegateObj;
  2767. object result = null;
  2768. var arg0 = (int*)(IntPtr)p[0];
  2769. var arg1 = (int)p[1];
  2770. result = d(arg0, arg1);
  2771. return result;
  2772. }
  2773. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2775. private delegate int R_Int32_P_0_Int64_Delegate(long arg0);
  2776. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2777. private unsafe static object Call_R_Int32_P_0_Int64_Delegate(object delegateObj, object[] p)
  2778. {
  2779. var d = (R_Int32_P_0_Int64_Delegate)delegateObj;
  2780. object result = null;
  2781. var arg0 = (long)p[0];
  2782. result = d(arg0);
  2783. return result;
  2784. }
  2785. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2787. private delegate int R_Int32_P_0_SByte_Delegate(sbyte arg0);
  2788. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2789. private unsafe static object Call_R_Int32_P_0_SByte_Delegate(object delegateObj, object[] p)
  2790. {
  2791. var d = (R_Int32_P_0_SByte_Delegate)delegateObj;
  2792. object result = null;
  2793. var arg0 = (sbyte)p[0];
  2794. result = d(arg0);
  2795. return result;
  2796. }
  2797. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2799. private delegate int R_Int32_P_0_SByte_Ref_Delegate(ref sbyte arg0);
  2800. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2801. private unsafe static object Call_R_Int32_P_0_SByte_Ref_Delegate(object delegateObj, object[] p)
  2802. {
  2803. var d = (R_Int32_P_0_SByte_Ref_Delegate)delegateObj;
  2804. object result = null;
  2805. var arg0 = (sbyte)p[0];
  2806. result = d(ref arg0);
  2807. return result;
  2808. }
  2809. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2810. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2811. private delegate int R_Int32_P_0_Int16_Delegate(short arg0);
  2812. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2813. private unsafe static object Call_R_Int32_P_0_Int16_Delegate(object delegateObj, object[] p)
  2814. {
  2815. var d = (R_Int32_P_0_Int16_Delegate)delegateObj;
  2816. object result = null;
  2817. var arg0 = (short)p[0];
  2818. result = d(arg0);
  2819. return result;
  2820. }
  2821. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2822. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2823. private delegate int R_Int32_P_0_Int16_Ref_Delegate(ref short arg0);
  2824. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2825. private unsafe static object Call_R_Int32_P_0_Int16_Ref_Delegate(object delegateObj, object[] p)
  2826. {
  2827. var d = (R_Int32_P_0_Int16_Ref_Delegate)delegateObj;
  2828. object result = null;
  2829. var arg0 = (short)p[0];
  2830. result = d(ref arg0);
  2831. return result;
  2832. }
  2833. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2835. private delegate int R_Int32_P_0_UInt32_Delegate(uint arg0);
  2836. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2837. private unsafe static object Call_R_Int32_P_0_UInt32_Delegate(object delegateObj, object[] p)
  2838. {
  2839. var d = (R_Int32_P_0_UInt32_Delegate)delegateObj;
  2840. object result = null;
  2841. var arg0 = (uint)p[0];
  2842. result = d(arg0);
  2843. return result;
  2844. }
  2845. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2846. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2847. private delegate int R_Int32_P_0_UInt32_1_Int32_Delegate(uint arg0, int arg1);
  2848. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2849. private unsafe static object Call_R_Int32_P_0_UInt32_1_Int32_Delegate(object delegateObj, object[] p)
  2850. {
  2851. var d = (R_Int32_P_0_UInt32_1_Int32_Delegate)delegateObj;
  2852. object result = null;
  2853. var arg0 = (uint)p[0];
  2854. var arg1 = (int)p[1];
  2855. result = d(arg0, arg1);
  2856. return result;
  2857. }
  2858. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2860. private delegate int R_Int32_P_0_UInt64_Delegate(ulong arg0);
  2861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2862. private unsafe static object Call_R_Int32_P_0_UInt64_Delegate(object delegateObj, object[] p)
  2863. {
  2864. var d = (R_Int32_P_0_UInt64_Delegate)delegateObj;
  2865. object result = null;
  2866. var arg0 = (ulong)p[0];
  2867. result = d(arg0);
  2868. return result;
  2869. }
  2870. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2871. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2872. private delegate int R_Int32_P_0_UInt16_Delegate(ushort arg0);
  2873. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2874. private unsafe static object Call_R_Int32_P_0_UInt16_Delegate(object delegateObj, object[] p)
  2875. {
  2876. var d = (R_Int32_P_0_UInt16_Delegate)delegateObj;
  2877. object result = null;
  2878. var arg0 = (ushort)p[0];
  2879. result = d(arg0);
  2880. return result;
  2881. }
  2882. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2883. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2884. private delegate int R_Int32_P_0_UInt16_Ref_Delegate(ref ushort arg0);
  2885. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2886. private unsafe static object Call_R_Int32_P_0_UInt16_Ref_Delegate(object delegateObj, object[] p)
  2887. {
  2888. var d = (R_Int32_P_0_UInt16_Ref_Delegate)delegateObj;
  2889. object result = null;
  2890. var arg0 = (ushort)p[0];
  2891. result = d(ref arg0);
  2892. return result;
  2893. }
  2894. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2895. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2896. private delegate long R_Int64_P_Delegate();
  2897. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2898. private unsafe static object Call_R_Int64_P_Delegate(object delegateObj, object[] p)
  2899. {
  2900. var d = (R_Int64_P_Delegate)delegateObj;
  2901. object result = null;
  2902. result = d();
  2903. return result;
  2904. }
  2905. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2906. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2907. private delegate long R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate(ref Burst.Compiler.IL.Tests.Pointers.PointerArithmetic arg0);
  2908. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2909. private unsafe static object Call_R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate(object delegateObj, object[] p)
  2910. {
  2911. var d = (R_Int64_P_0_Burst_Compiler_IL_Tests_Pointers_PointerArithmetic_Ref_Delegate)delegateObj;
  2912. object result = null;
  2913. var arg0 = (Burst.Compiler.IL.Tests.Pointers.PointerArithmetic)p[0];
  2914. result = d(ref arg0);
  2915. return result;
  2916. }
  2917. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2918. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2919. private delegate long R_Int64_P_0_Double_Delegate(double arg0);
  2920. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2921. private unsafe static object Call_R_Int64_P_0_Double_Delegate(object delegateObj, object[] p)
  2922. {
  2923. var d = (R_Int64_P_0_Double_Delegate)delegateObj;
  2924. object result = null;
  2925. var arg0 = (double)p[0];
  2926. result = d(arg0);
  2927. return result;
  2928. }
  2929. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2930. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2931. private delegate long R_Int64_P_0_Int32_Delegate(int arg0);
  2932. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2933. private unsafe static object Call_R_Int64_P_0_Int32_Delegate(object delegateObj, object[] p)
  2934. {
  2935. var d = (R_Int64_P_0_Int32_Delegate)delegateObj;
  2936. object result = null;
  2937. var arg0 = (int)p[0];
  2938. result = d(arg0);
  2939. return result;
  2940. }
  2941. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2942. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2943. private delegate long R_Int64_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  2944. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2945. private unsafe static object Call_R_Int64_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  2946. {
  2947. var d = (R_Int64_P_0_Int32_1_Int32_Delegate)delegateObj;
  2948. object result = null;
  2949. var arg0 = (int)p[0];
  2950. var arg1 = (int)p[1];
  2951. result = d(arg0, arg1);
  2952. return result;
  2953. }
  2954. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2955. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2956. private delegate long R_Int64_P_0_Int64_Delegate(long arg0);
  2957. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2958. private unsafe static object Call_R_Int64_P_0_Int64_Delegate(object delegateObj, object[] p)
  2959. {
  2960. var d = (R_Int64_P_0_Int64_Delegate)delegateObj;
  2961. object result = null;
  2962. var arg0 = (long)p[0];
  2963. result = d(arg0);
  2964. return result;
  2965. }
  2966. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2967. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2968. private delegate long R_Int64_P_0_Int64_1_Int32_Delegate(long arg0, int arg1);
  2969. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2970. private unsafe static object Call_R_Int64_P_0_Int64_1_Int32_Delegate(object delegateObj, object[] p)
  2971. {
  2972. var d = (R_Int64_P_0_Int64_1_Int32_Delegate)delegateObj;
  2973. object result = null;
  2974. var arg0 = (long)p[0];
  2975. var arg1 = (int)p[1];
  2976. result = d(arg0, arg1);
  2977. return result;
  2978. }
  2979. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2980. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2981. private delegate long R_Int64_P_0_Int64_Ref_Delegate(ref long arg0);
  2982. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2983. private unsafe static object Call_R_Int64_P_0_Int64_Ref_Delegate(object delegateObj, object[] p)
  2984. {
  2985. var d = (R_Int64_P_0_Int64_Ref_Delegate)delegateObj;
  2986. object result = null;
  2987. var arg0 = (long)p[0];
  2988. result = d(ref arg0);
  2989. return result;
  2990. }
  2991. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  2992. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2993. private delegate long R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate(ref long arg0, long arg1, long arg2);
  2994. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2995. private unsafe static object Call_R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate(object delegateObj, object[] p)
  2996. {
  2997. var d = (R_Int64_P_0_Int64_Ref_1_Int64_2_Int64_Delegate)delegateObj;
  2998. object result = null;
  2999. var arg0 = (long)p[0];
  3000. var arg1 = (long)p[1];
  3001. var arg2 = (long)p[2];
  3002. result = d(ref arg0, arg1, arg2);
  3003. return result;
  3004. }
  3005. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3006. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3007. private delegate long R_Int64_P_0_SByte_Delegate(sbyte arg0);
  3008. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3009. private unsafe static object Call_R_Int64_P_0_SByte_Delegate(object delegateObj, object[] p)
  3010. {
  3011. var d = (R_Int64_P_0_SByte_Delegate)delegateObj;
  3012. object result = null;
  3013. var arg0 = (sbyte)p[0];
  3014. result = d(arg0);
  3015. return result;
  3016. }
  3017. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3018. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3019. private delegate long R_Int64_P_0_Int16_Delegate(short arg0);
  3020. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3021. private unsafe static object Call_R_Int64_P_0_Int16_Delegate(object delegateObj, object[] p)
  3022. {
  3023. var d = (R_Int64_P_0_Int16_Delegate)delegateObj;
  3024. object result = null;
  3025. var arg0 = (short)p[0];
  3026. result = d(arg0);
  3027. return result;
  3028. }
  3029. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3030. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3031. private delegate long R_Int64_P_0_UInt32_Delegate(uint arg0);
  3032. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3033. private unsafe static object Call_R_Int64_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3034. {
  3035. var d = (R_Int64_P_0_UInt32_Delegate)delegateObj;
  3036. object result = null;
  3037. var arg0 = (uint)p[0];
  3038. result = d(arg0);
  3039. return result;
  3040. }
  3041. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3042. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3043. private delegate long R_Int64_P_0_UInt64_Delegate(ulong arg0);
  3044. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3045. private unsafe static object Call_R_Int64_P_0_UInt64_Delegate(object delegateObj, object[] p)
  3046. {
  3047. var d = (R_Int64_P_0_UInt64_Delegate)delegateObj;
  3048. object result = null;
  3049. var arg0 = (ulong)p[0];
  3050. result = d(arg0);
  3051. return result;
  3052. }
  3053. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3054. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3055. private delegate sbyte R_SByte_P_0_Int32_Delegate(int arg0);
  3056. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3057. private unsafe static object Call_R_SByte_P_0_Int32_Delegate(object delegateObj, object[] p)
  3058. {
  3059. var d = (R_SByte_P_0_Int32_Delegate)delegateObj;
  3060. object result = null;
  3061. var arg0 = (int)p[0];
  3062. result = d(arg0);
  3063. return result;
  3064. }
  3065. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3066. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3067. private delegate sbyte R_SByte_P_0_SByte_Delegate(sbyte arg0);
  3068. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3069. private unsafe static object Call_R_SByte_P_0_SByte_Delegate(object delegateObj, object[] p)
  3070. {
  3071. var d = (R_SByte_P_0_SByte_Delegate)delegateObj;
  3072. object result = null;
  3073. var arg0 = (sbyte)p[0];
  3074. result = d(arg0);
  3075. return result;
  3076. }
  3077. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3078. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3079. private delegate sbyte R_SByte_P_0_UInt32_Delegate(uint arg0);
  3080. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3081. private unsafe static object Call_R_SByte_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3082. {
  3083. var d = (R_SByte_P_0_UInt32_Delegate)delegateObj;
  3084. object result = null;
  3085. var arg0 = (uint)p[0];
  3086. result = d(arg0);
  3087. return result;
  3088. }
  3089. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3090. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3091. private delegate short R_Int16_P_0_Int32_Delegate(int arg0);
  3092. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3093. private unsafe static object Call_R_Int16_P_0_Int32_Delegate(object delegateObj, object[] p)
  3094. {
  3095. var d = (R_Int16_P_0_Int32_Delegate)delegateObj;
  3096. object result = null;
  3097. var arg0 = (int)p[0];
  3098. result = d(arg0);
  3099. return result;
  3100. }
  3101. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3102. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3103. private delegate short R_Int16_P_0_Int16_Delegate(short arg0);
  3104. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3105. private unsafe static object Call_R_Int16_P_0_Int16_Delegate(object delegateObj, object[] p)
  3106. {
  3107. var d = (R_Int16_P_0_Int16_Delegate)delegateObj;
  3108. object result = null;
  3109. var arg0 = (short)p[0];
  3110. result = d(arg0);
  3111. return result;
  3112. }
  3113. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3114. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3115. private delegate short R_Int16_P_0_UInt32_Delegate(uint arg0);
  3116. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3117. private unsafe static object Call_R_Int16_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3118. {
  3119. var d = (R_Int16_P_0_UInt32_Delegate)delegateObj;
  3120. object result = null;
  3121. var arg0 = (uint)p[0];
  3122. result = d(arg0);
  3123. return result;
  3124. }
  3125. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3126. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3127. private delegate uint R_UInt32_P_Delegate();
  3128. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3129. private unsafe static object Call_R_UInt32_P_Delegate(object delegateObj, object[] p)
  3130. {
  3131. var d = (R_UInt32_P_Delegate)delegateObj;
  3132. object result = null;
  3133. result = d();
  3134. return result;
  3135. }
  3136. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3137. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3138. private delegate uint R_UInt32_P_0_Int32_Delegate(int arg0);
  3139. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3140. private unsafe static object Call_R_UInt32_P_0_Int32_Delegate(object delegateObj, object[] p)
  3141. {
  3142. var d = (R_UInt32_P_0_Int32_Delegate)delegateObj;
  3143. object result = null;
  3144. var arg0 = (int)p[0];
  3145. result = d(arg0);
  3146. return result;
  3147. }
  3148. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3149. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3150. private delegate uint R_UInt32_P_0_SByte_Delegate(sbyte arg0);
  3151. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3152. private unsafe static object Call_R_UInt32_P_0_SByte_Delegate(object delegateObj, object[] p)
  3153. {
  3154. var d = (R_UInt32_P_0_SByte_Delegate)delegateObj;
  3155. object result = null;
  3156. var arg0 = (sbyte)p[0];
  3157. result = d(arg0);
  3158. return result;
  3159. }
  3160. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3161. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3162. private delegate uint R_UInt32_P_0_UInt32_Delegate(uint arg0);
  3163. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3164. private unsafe static object Call_R_UInt32_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3165. {
  3166. var d = (R_UInt32_P_0_UInt32_Delegate)delegateObj;
  3167. object result = null;
  3168. var arg0 = (uint)p[0];
  3169. result = d(arg0);
  3170. return result;
  3171. }
  3172. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3173. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3174. private delegate uint R_UInt32_P_0_UInt32_1_Int32_Delegate(uint arg0, int arg1);
  3175. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3176. private unsafe static object Call_R_UInt32_P_0_UInt32_1_Int32_Delegate(object delegateObj, object[] p)
  3177. {
  3178. var d = (R_UInt32_P_0_UInt32_1_Int32_Delegate)delegateObj;
  3179. object result = null;
  3180. var arg0 = (uint)p[0];
  3181. var arg1 = (int)p[1];
  3182. result = d(arg0, arg1);
  3183. return result;
  3184. }
  3185. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3186. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3187. private delegate uint R_UInt32_P_0_UInt32_Ref_Delegate(ref uint arg0);
  3188. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3189. private unsafe static object Call_R_UInt32_P_0_UInt32_Ref_Delegate(object delegateObj, object[] p)
  3190. {
  3191. var d = (R_UInt32_P_0_UInt32_Ref_Delegate)delegateObj;
  3192. object result = null;
  3193. var arg0 = (uint)p[0];
  3194. result = d(ref arg0);
  3195. return result;
  3196. }
  3197. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3198. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3199. private delegate uint R_UInt32_P_0_UInt64_Delegate(ulong arg0);
  3200. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3201. private unsafe static object Call_R_UInt32_P_0_UInt64_Delegate(object delegateObj, object[] p)
  3202. {
  3203. var d = (R_UInt32_P_0_UInt64_Delegate)delegateObj;
  3204. object result = null;
  3205. var arg0 = (ulong)p[0];
  3206. result = d(arg0);
  3207. return result;
  3208. }
  3209. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3210. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3211. private delegate ulong R_UInt64_P_Delegate();
  3212. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3213. private unsafe static object Call_R_UInt64_P_Delegate(object delegateObj, object[] p)
  3214. {
  3215. var d = (R_UInt64_P_Delegate)delegateObj;
  3216. object result = null;
  3217. result = d();
  3218. return result;
  3219. }
  3220. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3221. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3222. private delegate ulong R_UInt64_P_0_Double_Delegate(double arg0);
  3223. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3224. private unsafe static object Call_R_UInt64_P_0_Double_Delegate(object delegateObj, object[] p)
  3225. {
  3226. var d = (R_UInt64_P_0_Double_Delegate)delegateObj;
  3227. object result = null;
  3228. var arg0 = (double)p[0];
  3229. result = d(arg0);
  3230. return result;
  3231. }
  3232. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3233. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3234. private delegate ulong R_UInt64_P_0_Int32_Delegate(int arg0);
  3235. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3236. private unsafe static object Call_R_UInt64_P_0_Int32_Delegate(object delegateObj, object[] p)
  3237. {
  3238. var d = (R_UInt64_P_0_Int32_Delegate)delegateObj;
  3239. object result = null;
  3240. var arg0 = (int)p[0];
  3241. result = d(arg0);
  3242. return result;
  3243. }
  3244. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3245. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3246. private delegate ulong R_UInt64_P_0_Int16_Delegate(short arg0);
  3247. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3248. private unsafe static object Call_R_UInt64_P_0_Int16_Delegate(object delegateObj, object[] p)
  3249. {
  3250. var d = (R_UInt64_P_0_Int16_Delegate)delegateObj;
  3251. object result = null;
  3252. var arg0 = (short)p[0];
  3253. result = d(arg0);
  3254. return result;
  3255. }
  3256. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3257. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3258. private delegate ulong R_UInt64_P_0_UInt32_Delegate(uint arg0);
  3259. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3260. private unsafe static object Call_R_UInt64_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3261. {
  3262. var d = (R_UInt64_P_0_UInt32_Delegate)delegateObj;
  3263. object result = null;
  3264. var arg0 = (uint)p[0];
  3265. result = d(arg0);
  3266. return result;
  3267. }
  3268. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3269. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3270. private delegate ulong R_UInt64_P_0_UInt64_Ref_Delegate(ref ulong arg0);
  3271. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3272. private unsafe static object Call_R_UInt64_P_0_UInt64_Ref_Delegate(object delegateObj, object[] p)
  3273. {
  3274. var d = (R_UInt64_P_0_UInt64_Ref_Delegate)delegateObj;
  3275. object result = null;
  3276. var arg0 = (ulong)p[0];
  3277. result = d(ref arg0);
  3278. return result;
  3279. }
  3280. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3281. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3282. private unsafe delegate ulong R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(ulong* arg0, ulong arg1, ulong arg2);
  3283. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3284. private unsafe static object Call_R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(object delegateObj, object[] p)
  3285. {
  3286. var d = (R_UInt64_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate)delegateObj;
  3287. object result = null;
  3288. var arg0 = (ulong*)(IntPtr)p[0];
  3289. var arg1 = (ulong)p[1];
  3290. var arg2 = (ulong)p[2];
  3291. result = d(arg0, arg1, arg2);
  3292. return result;
  3293. }
  3294. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3295. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3296. private delegate ushort R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFixed.SomeStruct arg0);
  3297. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3298. private unsafe static object Call_R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate(object delegateObj, object[] p)
  3299. {
  3300. var d = (R_UInt16_P_0_Burst_Compiler_IL_Tests_TestFixed_SomeStruct_Ref_Delegate)delegateObj;
  3301. object result = null;
  3302. var arg0 = (Burst.Compiler.IL.Tests.TestFixed.SomeStruct)p[0];
  3303. result = d(ref arg0);
  3304. return result;
  3305. }
  3306. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3307. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3308. private delegate ushort R_UInt16_P_0_Int32_Delegate(int arg0);
  3309. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3310. private unsafe static object Call_R_UInt16_P_0_Int32_Delegate(object delegateObj, object[] p)
  3311. {
  3312. var d = (R_UInt16_P_0_Int32_Delegate)delegateObj;
  3313. object result = null;
  3314. var arg0 = (int)p[0];
  3315. result = d(arg0);
  3316. return result;
  3317. }
  3318. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3319. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3320. private delegate ushort R_UInt16_P_0_UInt32_Delegate(uint arg0);
  3321. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3322. private unsafe static object Call_R_UInt16_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3323. {
  3324. var d = (R_UInt16_P_0_UInt32_Delegate)delegateObj;
  3325. object result = null;
  3326. var arg0 = (uint)p[0];
  3327. result = d(arg0);
  3328. return result;
  3329. }
  3330. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3331. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3332. private delegate void R_System_Void_P_Delegate();
  3333. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3334. private unsafe static object Call_R_System_Void_P_Delegate(object delegateObj, object[] p)
  3335. {
  3336. var d = (R_System_Void_P_Delegate)delegateObj;
  3337. object result = null;
  3338. d();
  3339. return result;
  3340. }
  3341. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3342. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3343. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.ContainerOfManyNoAliasFields arg0);
  3344. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3345. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate(object delegateObj, object[] p)
  3346. {
  3347. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_ContainerOfManyNoAliasFields_Ref_Delegate)delegateObj;
  3348. object result = null;
  3349. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.ContainerOfManyNoAliasFields)p[0];
  3350. d(ref arg0);
  3351. return result;
  3352. }
  3353. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3354. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3355. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.DoesAliasWithSubStructPointersStruct arg0);
  3356. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3357. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate(object delegateObj, object[] p)
  3358. {
  3359. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_DoesAliasWithSubStructPointersStruct_Ref_Delegate)delegateObj;
  3360. object result = null;
  3361. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.DoesAliasWithSubStructPointersStruct)p[0];
  3362. d(ref arg0);
  3363. return result;
  3364. }
  3365. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3366. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3367. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.LinkedList arg0);
  3368. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3369. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate(object delegateObj, object[] p)
  3370. {
  3371. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_LinkedList_Ref_Delegate)delegateObj;
  3372. object result = null;
  3373. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.LinkedList)p[0];
  3374. d(ref arg0);
  3375. return result;
  3376. }
  3377. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3379. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasField arg0);
  3380. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3381. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate(object delegateObj, object[] p)
  3382. {
  3383. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate)delegateObj;
  3384. object result = null;
  3385. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasField)p[0];
  3386. d(ref arg0);
  3387. return result;
  3388. }
  3389. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3391. 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);
  3392. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3393. 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)
  3394. {
  3395. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_1_Burst_Compiler_IL_Tests_Aliasing_NoAliasField_Ref_Delegate)delegateObj;
  3396. object result = null;
  3397. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasField)p[0];
  3398. var arg1 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasField)p[1];
  3399. d(ref arg0, ref arg1);
  3400. return result;
  3401. }
  3402. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3403. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3404. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasWithContentsStruct arg0);
  3405. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3406. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate(object delegateObj, object[] p)
  3407. {
  3408. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasWithContentsStruct_Ref_Delegate)delegateObj;
  3409. object result = null;
  3410. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasWithContentsStruct)p[0];
  3411. d(ref arg0);
  3412. return result;
  3413. }
  3414. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3415. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3416. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.Union arg0);
  3417. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3418. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate(object delegateObj, object[] p)
  3419. {
  3420. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_Union_Ref_Delegate)delegateObj;
  3421. object result = null;
  3422. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.Union)p[0];
  3423. d(ref arg0);
  3424. return result;
  3425. }
  3426. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3427. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3428. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(ref Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer arg0);
  3429. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3430. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate(object delegateObj, object[] p)
  3431. {
  3432. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_IntrinsicsCommon_Buffer_Ref_Delegate)delegateObj;
  3433. object result = null;
  3434. var arg0 = (Burst.Compiler.IL.Tests.IntrinsicsCommon.Buffer)p[0];
  3435. d(ref arg0);
  3436. return result;
  3437. }
  3438. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3439. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3440. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.Fixed4096 arg0);
  3441. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3442. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate(object delegateObj, object[] p)
  3443. {
  3444. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate)delegateObj;
  3445. object result = null;
  3446. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[0];
  3447. d(ref arg0);
  3448. return result;
  3449. }
  3450. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3451. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3452. 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);
  3453. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3454. 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)
  3455. {
  3456. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate)delegateObj;
  3457. object result = null;
  3458. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[0];
  3459. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[1];
  3460. d(ref arg0, ref arg1);
  3461. return result;
  3462. }
  3463. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3464. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3465. 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);
  3466. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3467. 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)
  3468. {
  3469. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_MultipleSized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate)delegateObj;
  3470. object result = null;
  3471. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096)p[0];
  3472. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[1];
  3473. d(ref arg0, ref arg1);
  3474. return result;
  3475. }
  3476. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3477. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3478. 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);
  3479. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3480. 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)
  3481. {
  3482. 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;
  3483. object result = null;
  3484. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.MultipleSized4096)p[0];
  3485. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[1];
  3486. var arg2 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[2];
  3487. d(ref arg0, ref arg1, ref arg2);
  3488. return result;
  3489. }
  3490. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3491. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3492. 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);
  3493. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3494. 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)
  3495. {
  3496. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_PointersInStruct_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Fixed4096_Ref_Delegate)delegateObj;
  3497. object result = null;
  3498. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.PointersInStruct)p[0];
  3499. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Fixed4096)p[1];
  3500. d(ref arg0, ref arg1);
  3501. return result;
  3502. }
  3503. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3504. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3505. 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);
  3506. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3507. 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)
  3508. {
  3509. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_1_Burst_Compiler_IL_Tests_TestStructs_Sized4096_Ref_Delegate)delegateObj;
  3510. object result = null;
  3511. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[0];
  3512. var arg1 = (Burst.Compiler.IL.Tests.TestStructs.Sized4096)p[1];
  3513. d(ref arg0, ref arg1);
  3514. return result;
  3515. }
  3516. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3517. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3518. private unsafe delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate(Burst.Compiler.IL.Tests.TestStructs.UninitFieldsAreZero* arg0);
  3519. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3520. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate(object delegateObj, object[] p)
  3521. {
  3522. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_UninitFieldsAreZero_Ptr_Delegate)delegateObj;
  3523. object result = null;
  3524. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.UninitFieldsAreZero*)(IntPtr)p[0];
  3525. d(arg0);
  3526. return result;
  3527. }
  3528. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3529. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3530. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate(Unity.Mathematics.float2x2* arg0);
  3531. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3532. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate(object delegateObj, object[] p)
  3533. {
  3534. var d = (R_System_Void_P_0_Unity_Mathematics_float2x2_Ptr_Delegate)delegateObj;
  3535. object result = null;
  3536. var arg0 = (Unity.Mathematics.float2x2*)(IntPtr)p[0];
  3537. d(arg0);
  3538. return result;
  3539. }
  3540. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3541. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3542. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate(Unity.Mathematics.float3x3* arg0);
  3543. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3544. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate(object delegateObj, object[] p)
  3545. {
  3546. var d = (R_System_Void_P_0_Unity_Mathematics_float3x3_Ptr_Delegate)delegateObj;
  3547. object result = null;
  3548. var arg0 = (Unity.Mathematics.float3x3*)(IntPtr)p[0];
  3549. d(arg0);
  3550. return result;
  3551. }
  3552. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3553. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3554. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate(Unity.Mathematics.float4x4* arg0);
  3555. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3556. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate(object delegateObj, object[] p)
  3557. {
  3558. var d = (R_System_Void_P_0_Unity_Mathematics_float4x4_Ptr_Delegate)delegateObj;
  3559. object result = null;
  3560. var arg0 = (Unity.Mathematics.float4x4*)(IntPtr)p[0];
  3561. d(arg0);
  3562. return result;
  3563. }
  3564. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3565. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3566. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate(Unity.Mathematics.int2* arg0, ushort arg1);
  3567. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3568. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate(object delegateObj, object[] p)
  3569. {
  3570. var d = (R_System_Void_P_0_Unity_Mathematics_int2_Ptr_1_UInt16_Delegate)delegateObj;
  3571. object result = null;
  3572. var arg0 = (Unity.Mathematics.int2*)(IntPtr)p[0];
  3573. var arg1 = (ushort)p[1];
  3574. d(arg0, arg1);
  3575. return result;
  3576. }
  3577. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3578. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3579. private delegate void R_System_Void_P_0_Int32_Delegate(int arg0);
  3580. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3581. private unsafe static object Call_R_System_Void_P_0_Int32_Delegate(object delegateObj, object[] p)
  3582. {
  3583. var d = (R_System_Void_P_0_Int32_Delegate)delegateObj;
  3584. object result = null;
  3585. var arg0 = (int)p[0];
  3586. d(arg0);
  3587. return result;
  3588. }
  3589. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3590. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3591. private delegate void R_System_Void_P_0_Int32_1_Int32_Delegate(int arg0, int arg1);
  3592. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3593. private unsafe static object Call_R_System_Void_P_0_Int32_1_Int32_Delegate(object delegateObj, object[] p)
  3594. {
  3595. var d = (R_System_Void_P_0_Int32_1_Int32_Delegate)delegateObj;
  3596. object result = null;
  3597. var arg0 = (int)p[0];
  3598. var arg1 = (int)p[1];
  3599. d(arg0, arg1);
  3600. return result;
  3601. }
  3602. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3603. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3604. private delegate void R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate(ref int arg0, ref float arg1);
  3605. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3606. private unsafe static object Call_R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate(object delegateObj, object[] p)
  3607. {
  3608. var d = (R_System_Void_P_0_Int32_Ref_1_Single_Ref_Delegate)delegateObj;
  3609. object result = null;
  3610. var arg0 = (int)p[0];
  3611. var arg1 = (float)p[1];
  3612. d(ref arg0, ref arg1);
  3613. return result;
  3614. }
  3615. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3616. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3617. private delegate void R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate(ref int arg0, ref int arg1);
  3618. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3619. private unsafe static object Call_R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate(object delegateObj, object[] p)
  3620. {
  3621. var d = (R_System_Void_P_0_Int32_Ref_1_Int32_Ref_Delegate)delegateObj;
  3622. object result = null;
  3623. var arg0 = (int)p[0];
  3624. var arg1 = (int)p[1];
  3625. d(ref arg0, ref arg1);
  3626. return result;
  3627. }
  3628. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3629. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3630. 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);
  3631. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3632. private unsafe static object Call_R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate(object delegateObj, object[] p)
  3633. {
  3634. var d = (R_System_Void_P_0_Int32_Ref_1_Int32_Ref_2_Int32_Ref_Delegate)delegateObj;
  3635. object result = null;
  3636. var arg0 = (int)p[0];
  3637. var arg1 = (int)p[1];
  3638. var arg2 = (int)p[2];
  3639. d(ref arg0, ref arg1, ref arg2);
  3640. return result;
  3641. }
  3642. #if BURST_TESTS_ONLY
  3643. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3644. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3645. 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);
  3646. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3647. 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)
  3648. {
  3649. var d = (R_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigExplicitLayoutStruct_1_Int32_Delegate)delegateObj;
  3650. object result = null;
  3651. var arg0 = (Burst.Compiler.IL.Tests.ABI.BigExplicitLayoutStruct)p[0];
  3652. var arg1 = (int)p[1];
  3653. result = d(arg0, arg1);
  3654. return result;
  3655. }
  3656. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3657. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3658. 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);
  3659. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3660. 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)
  3661. {
  3662. var d = (R_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_P_0_Burst_Compiler_IL_Tests_ABI_BigSSEStruct_Delegate)delegateObj;
  3663. object result = null;
  3664. var arg0 = (Burst.Compiler.IL.Tests.ABI.BigSSEStruct)p[0];
  3665. result = d(arg0);
  3666. return result;
  3667. }
  3668. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3669. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3670. private delegate Burst.Compiler.IL.Tests.ABI.BigStruct R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate();
  3671. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3672. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate(object delegateObj, object[] p)
  3673. {
  3674. var d = (R_Burst_Compiler_IL_Tests_ABI_BigStruct_P_Delegate)delegateObj;
  3675. object result = null;
  3676. result = d();
  3677. return result;
  3678. }
  3679. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3680. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3681. 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);
  3682. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3683. 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)
  3684. {
  3685. var d = (R_Burst_Compiler_IL_Tests_ABI_EmptyStruct_P_0_Burst_Compiler_IL_Tests_ABI_EmptyStruct_Delegate)delegateObj;
  3686. object result = null;
  3687. var arg0 = (Burst.Compiler.IL.Tests.ABI.EmptyStruct)p[0];
  3688. result = d(arg0);
  3689. return result;
  3690. }
  3691. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3692. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3693. 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);
  3694. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3695. 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)
  3696. {
  3697. var d = (R_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_P_0_Burst_Compiler_IL_Tests_ABI_ExplicitButAligned_Delegate)delegateObj;
  3698. object result = null;
  3699. var arg0 = (Burst.Compiler.IL.Tests.ABI.ExplicitButAligned)p[0];
  3700. result = d(arg0);
  3701. return result;
  3702. }
  3703. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3704. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3705. 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);
  3706. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3707. 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)
  3708. {
  3709. var d = (R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_Delegate)delegateObj;
  3710. object result = null;
  3711. var arg0 = (Burst.Compiler.IL.Tests.ABI.HandleStruct)p[0];
  3712. result = d(arg0);
  3713. return result;
  3714. }
  3715. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3716. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3717. 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);
  3718. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3719. 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)
  3720. {
  3721. var d = (R_Burst_Compiler_IL_Tests_ABI_HandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_HandleStruct_1_Int32_Delegate)delegateObj;
  3722. object result = null;
  3723. var arg0 = (Burst.Compiler.IL.Tests.ABI.HandleStruct)p[0];
  3724. var arg1 = (int)p[1];
  3725. result = d(arg0, arg1);
  3726. return result;
  3727. }
  3728. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3729. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3730. 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);
  3731. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3732. 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)
  3733. {
  3734. var d = (R_Burst_Compiler_IL_Tests_ABI_IIF_P_0_Burst_Compiler_IL_Tests_ABI_IIF_Delegate)delegateObj;
  3735. object result = null;
  3736. var arg0 = (Burst.Compiler.IL.Tests.ABI.IIF)p[0];
  3737. result = d(arg0);
  3738. return result;
  3739. }
  3740. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3741. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3742. 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);
  3743. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3744. 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)
  3745. {
  3746. var d = (R_Burst_Compiler_IL_Tests_ABI_IntInStruct_P_0_Burst_Compiler_IL_Tests_ABI_IntInStruct_Delegate)delegateObj;
  3747. object result = null;
  3748. var arg0 = (Burst.Compiler.IL.Tests.ABI.IntInStruct)p[0];
  3749. result = d(arg0);
  3750. return result;
  3751. }
  3752. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3753. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3754. 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);
  3755. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3756. 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)
  3757. {
  3758. var d = (R_Burst_Compiler_IL_Tests_ABI_KindaBig_P_0_Burst_Compiler_IL_Tests_ABI_KindaBig_Delegate)delegateObj;
  3759. object result = null;
  3760. var arg0 = (Burst.Compiler.IL.Tests.ABI.KindaBig)p[0];
  3761. result = d(arg0);
  3762. return result;
  3763. }
  3764. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3765. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3766. 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);
  3767. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3768. 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)
  3769. {
  3770. var d = (R_Burst_Compiler_IL_Tests_ABI_LongInStruct_P_0_Burst_Compiler_IL_Tests_ABI_LongInStruct_Delegate)delegateObj;
  3771. object result = null;
  3772. var arg0 = (Burst.Compiler.IL.Tests.ABI.LongInStruct)p[0];
  3773. result = d(arg0);
  3774. return result;
  3775. }
  3776. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3777. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3778. 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);
  3779. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3780. 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)
  3781. {
  3782. 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;
  3783. object result = null;
  3784. var arg0 = (Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.BigSSEStruct>)p[0];
  3785. result = d(arg0);
  3786. return result;
  3787. }
  3788. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3789. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3790. 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);
  3791. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3792. 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)
  3793. {
  3794. 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;
  3795. object result = null;
  3796. var arg0 = (Burst.Compiler.IL.Tests.ABI.NestedHandleGenericStruct<Burst.Compiler.IL.Tests.ABI.HandleStruct>)p[0];
  3797. result = d(arg0);
  3798. return result;
  3799. }
  3800. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3801. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3802. 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);
  3803. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3804. 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)
  3805. {
  3806. var d = (R_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_NestedHandleStruct_Delegate)delegateObj;
  3807. object result = null;
  3808. var arg0 = (Burst.Compiler.IL.Tests.ABI.NestedHandleStruct)p[0];
  3809. result = d(arg0);
  3810. return result;
  3811. }
  3812. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3813. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3814. 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);
  3815. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3816. 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)
  3817. {
  3818. var d = (R_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_P_0_Burst_Compiler_IL_Tests_ABI_OverlappingFieldsStruct_Delegate)delegateObj;
  3819. object result = null;
  3820. var arg0 = (Burst.Compiler.IL.Tests.ABI.OverlappingFieldsStruct)p[0];
  3821. result = d(arg0);
  3822. return result;
  3823. }
  3824. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3825. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3826. 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);
  3827. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3828. 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)
  3829. {
  3830. 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;
  3831. object result = null;
  3832. var arg0 = (Burst.Compiler.IL.Tests.ABI.SizePaddedBig)p[0];
  3833. var arg1 = (Burst.Compiler.IL.Tests.ABI.SizePaddedBig)p[1];
  3834. result = d(arg0, arg1);
  3835. return result;
  3836. }
  3837. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3838. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3839. 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);
  3840. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3841. 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)
  3842. {
  3843. 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;
  3844. object result = null;
  3845. var arg0 = (Burst.Compiler.IL.Tests.ABI.SizePaddedSmall)p[0];
  3846. var arg1 = (Burst.Compiler.IL.Tests.ABI.SizePaddedSmall)p[1];
  3847. result = d(arg0, arg1);
  3848. return result;
  3849. }
  3850. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3851. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3852. 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);
  3853. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3854. 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)
  3855. {
  3856. var d = (R_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_P_0_Burst_Compiler_IL_Tests_ABI_SmallSseUpStruct_Delegate)delegateObj;
  3857. object result = null;
  3858. var arg0 = (Burst.Compiler.IL.Tests.ABI.SmallSseUpStruct)p[0];
  3859. result = d(arg0);
  3860. return result;
  3861. }
  3862. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3863. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3864. private delegate Burst.Compiler.IL.Tests.ABI.SmallStruct R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate();
  3865. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3866. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate(object delegateObj, object[] p)
  3867. {
  3868. var d = (R_Burst_Compiler_IL_Tests_ABI_SmallStruct_P_Delegate)delegateObj;
  3869. object result = null;
  3870. result = d();
  3871. return result;
  3872. }
  3873. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3874. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3875. 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);
  3876. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3877. 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)
  3878. {
  3879. var d = (R_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_P_0_Burst_Compiler_IL_Tests_ABI_TypedHandleStruct_Delegate)delegateObj;
  3880. object result = null;
  3881. var arg0 = (Burst.Compiler.IL.Tests.ABI.TypedHandleStruct)p[0];
  3882. result = d(arg0);
  3883. return result;
  3884. }
  3885. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3886. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3887. private delegate Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate();
  3888. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3889. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate(object delegateObj, object[] p)
  3890. {
  3891. var d = (R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_Delegate)delegateObj;
  3892. object result = null;
  3893. result = d();
  3894. return result;
  3895. }
  3896. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3897. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3898. 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);
  3899. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3900. 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)
  3901. {
  3902. var d = (R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_P_0_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStruct_Delegate)delegateObj;
  3903. object result = null;
  3904. var arg0 = (Burst.Compiler.IL.Tests.ABI.UnalignedSmallStruct)p[0];
  3905. result = d(arg0);
  3906. return result;
  3907. }
  3908. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3909. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3910. private delegate Burst.Compiler.IL.Tests.ABI.UnalignedSmallStructWithPadding R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate();
  3911. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3912. private unsafe static object Call_R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate(object delegateObj, object[] p)
  3913. {
  3914. var d = (R_Burst_Compiler_IL_Tests_ABI_UnalignedSmallStructWithPadding_P_Delegate)delegateObj;
  3915. object result = null;
  3916. result = d();
  3917. return result;
  3918. }
  3919. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3920. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3921. private delegate ref Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate();
  3922. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3923. private unsafe static object Call_R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate(object delegateObj, object[] p)
  3924. {
  3925. var d = (R_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_P_Delegate)delegateObj;
  3926. object result = null;
  3927. result = d();
  3928. return result;
  3929. }
  3930. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3931. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3932. private delegate System.IntPtr R_IntPtr_P_0_UInt32_Delegate(uint arg0);
  3933. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3934. private unsafe static object Call_R_IntPtr_P_0_UInt32_Delegate(object delegateObj, object[] p)
  3935. {
  3936. var d = (R_IntPtr_P_0_UInt32_Delegate)delegateObj;
  3937. object result = null;
  3938. var arg0 = (uint)p[0];
  3939. result = d(arg0);
  3940. return result;
  3941. }
  3942. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3943. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3944. private delegate System.UIntPtr R_UIntPtr_P_0_Int32_Delegate(int arg0);
  3945. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3946. private unsafe static object Call_R_UIntPtr_P_0_Int32_Delegate(object delegateObj, object[] p)
  3947. {
  3948. var d = (R_UIntPtr_P_0_Int32_Delegate)delegateObj;
  3949. object result = null;
  3950. var arg0 = (int)p[0];
  3951. result = d(arg0);
  3952. return result;
  3953. }
  3954. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3955. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3956. private delegate ref System.ValueTuple<int,int> R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate();
  3957. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3958. private unsafe static object Call_R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate(object delegateObj, object[] p)
  3959. {
  3960. var d = (R_System_ValueTuple2_G0_Int32_G1_Int32_Ref_P_Delegate)delegateObj;
  3961. object result = null;
  3962. result = d();
  3963. return result;
  3964. }
  3965. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3966. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3967. 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);
  3968. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3969. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(object delegateObj, object[] p)
  3970. {
  3971. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate)delegateObj;
  3972. object result = null;
  3973. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[0];
  3974. result = d(ref arg0);
  3975. return result;
  3976. }
  3977. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3978. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3979. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.DefaultFunc arg0);
  3980. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3981. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate(object delegateObj, object[] p)
  3982. {
  3983. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_DefaultFunc_Ref_Delegate)delegateObj;
  3984. object result = null;
  3985. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.DefaultFunc)p[0];
  3986. result = d(ref arg0);
  3987. return result;
  3988. }
  3989. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  3990. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3991. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.NullFunc arg0);
  3992. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  3993. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate(object delegateObj, object[] p)
  3994. {
  3995. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NullFunc_Ref_Delegate)delegateObj;
  3996. object result = null;
  3997. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.NullFunc)p[0];
  3998. result = d(ref arg0);
  3999. return result;
  4000. }
  4001. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4002. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4003. private delegate bool R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SomeStruct arg0);
  4004. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4005. private unsafe static object Call_R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(object delegateObj, object[] p)
  4006. {
  4007. var d = (R_Boolean_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate)delegateObj;
  4008. object result = null;
  4009. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SomeStruct)p[0];
  4010. result = d(ref arg0);
  4011. return result;
  4012. }
  4013. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4014. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4015. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate(ref UnityBenchShared.SphereCullingAOSJob arg0);
  4016. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4017. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate(object delegateObj, object[] p)
  4018. {
  4019. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingAOSJob_Ref_Delegate)delegateObj;
  4020. object result = null;
  4021. var arg0 = (UnityBenchShared.SphereCullingAOSJob)p[0];
  4022. result = d(ref arg0);
  4023. return result;
  4024. }
  4025. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4026. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4027. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate(ref UnityBenchShared.SphereCullingChunkFixedSOAJob arg0);
  4028. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4029. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate(object delegateObj, object[] p)
  4030. {
  4031. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingChunkFixedSOAJob_Ref_Delegate)delegateObj;
  4032. object result = null;
  4033. var arg0 = (UnityBenchShared.SphereCullingChunkFixedSOAJob)p[0];
  4034. result = d(ref arg0);
  4035. return result;
  4036. }
  4037. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4038. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4039. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate(ref UnityBenchShared.SphereCullingChunkSOAJob arg0);
  4040. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4041. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate(object delegateObj, object[] p)
  4042. {
  4043. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingChunkSOAJob_Ref_Delegate)delegateObj;
  4044. object result = null;
  4045. var arg0 = (UnityBenchShared.SphereCullingChunkSOAJob)p[0];
  4046. result = d(ref arg0);
  4047. return result;
  4048. }
  4049. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4050. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4051. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate(ref UnityBenchShared.SphereCullingFloat4AOSJob arg0);
  4052. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4053. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate(object delegateObj, object[] p)
  4054. {
  4055. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingFloat4AOSJob_Ref_Delegate)delegateObj;
  4056. object result = null;
  4057. var arg0 = (UnityBenchShared.SphereCullingFloat4AOSJob)p[0];
  4058. result = d(ref arg0);
  4059. return result;
  4060. }
  4061. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4062. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4063. private delegate bool R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate(ref UnityBenchShared.SphereCullingSOAJob arg0);
  4064. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4065. private unsafe static object Call_R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate(object delegateObj, object[] p)
  4066. {
  4067. var d = (R_Boolean_P_0_UnityBenchShared_SphereCullingSOAJob_Ref_Delegate)delegateObj;
  4068. object result = null;
  4069. var arg0 = (UnityBenchShared.SphereCullingSOAJob)p[0];
  4070. result = d(ref arg0);
  4071. return result;
  4072. }
  4073. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4074. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4075. private delegate bool R_Boolean_P_0_Byte_Delegate(byte arg0);
  4076. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4077. private unsafe static object Call_R_Boolean_P_0_Byte_Delegate(object delegateObj, object[] p)
  4078. {
  4079. var d = (R_Boolean_P_0_Byte_Delegate)delegateObj;
  4080. object result = null;
  4081. var arg0 = (byte)p[0];
  4082. result = d(arg0);
  4083. return result;
  4084. }
  4085. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4086. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4087. private delegate bool R_Boolean_P_0_Int32_Ref_Delegate(ref int arg0);
  4088. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4089. private unsafe static object Call_R_Boolean_P_0_Int32_Ref_Delegate(object delegateObj, object[] p)
  4090. {
  4091. var d = (R_Boolean_P_0_Int32_Ref_Delegate)delegateObj;
  4092. object result = null;
  4093. var arg0 = (int)p[0];
  4094. result = d(ref arg0);
  4095. return result;
  4096. }
  4097. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4098. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4099. private delegate bool R_Boolean_P_0_Int64_Delegate(long arg0);
  4100. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4101. private unsafe static object Call_R_Boolean_P_0_Int64_Delegate(object delegateObj, object[] p)
  4102. {
  4103. var d = (R_Boolean_P_0_Int64_Delegate)delegateObj;
  4104. object result = null;
  4105. var arg0 = (long)p[0];
  4106. result = d(arg0);
  4107. return result;
  4108. }
  4109. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4110. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4111. private delegate bool R_Boolean_P_0_SByte_Delegate(sbyte arg0);
  4112. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4113. private unsafe static object Call_R_Boolean_P_0_SByte_Delegate(object delegateObj, object[] p)
  4114. {
  4115. var d = (R_Boolean_P_0_SByte_Delegate)delegateObj;
  4116. object result = null;
  4117. var arg0 = (sbyte)p[0];
  4118. result = d(arg0);
  4119. return result;
  4120. }
  4121. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4122. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4123. private delegate bool R_Boolean_P_0_Int16_Delegate(short arg0);
  4124. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4125. private unsafe static object Call_R_Boolean_P_0_Int16_Delegate(object delegateObj, object[] p)
  4126. {
  4127. var d = (R_Boolean_P_0_Int16_Delegate)delegateObj;
  4128. object result = null;
  4129. var arg0 = (short)p[0];
  4130. result = d(arg0);
  4131. return result;
  4132. }
  4133. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4134. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4135. private delegate bool R_Boolean_P_0_UInt32_Delegate(uint arg0);
  4136. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4137. private unsafe static object Call_R_Boolean_P_0_UInt32_Delegate(object delegateObj, object[] p)
  4138. {
  4139. var d = (R_Boolean_P_0_UInt32_Delegate)delegateObj;
  4140. object result = null;
  4141. var arg0 = (uint)p[0];
  4142. result = d(arg0);
  4143. return result;
  4144. }
  4145. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4146. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4147. private delegate bool R_Boolean_P_0_UInt64_Delegate(ulong arg0);
  4148. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4149. private unsafe static object Call_R_Boolean_P_0_UInt64_Delegate(object delegateObj, object[] p)
  4150. {
  4151. var d = (R_Boolean_P_0_UInt64_Delegate)delegateObj;
  4152. object result = null;
  4153. var arg0 = (ulong)p[0];
  4154. result = d(arg0);
  4155. return result;
  4156. }
  4157. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4158. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4159. private delegate bool R_Boolean_P_0_UInt16_Delegate(ushort arg0);
  4160. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4161. private unsafe static object Call_R_Boolean_P_0_UInt16_Delegate(object delegateObj, object[] p)
  4162. {
  4163. var d = (R_Boolean_P_0_UInt16_Delegate)delegateObj;
  4164. object result = null;
  4165. var arg0 = (ushort)p[0];
  4166. result = d(arg0);
  4167. return result;
  4168. }
  4169. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4170. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4171. private delegate char R_Char_P_Delegate();
  4172. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4173. private unsafe static object Call_R_Char_P_Delegate(object delegateObj, object[] p)
  4174. {
  4175. var d = (R_Char_P_Delegate)delegateObj;
  4176. object result = null;
  4177. result = d();
  4178. return result;
  4179. }
  4180. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4181. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4182. private delegate double R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer arg0);
  4183. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4184. private unsafe static object Call_R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate(object delegateObj, object[] p)
  4185. {
  4186. var d = (R_Double_P_0_Burst_Compiler_IL_Tests_SafetyChecks_MySafetyCheckedContainer_Ref_Delegate)delegateObj;
  4187. object result = null;
  4188. var arg0 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[0];
  4189. result = d(ref arg0);
  4190. return result;
  4191. }
  4192. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4193. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4194. 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);
  4195. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4196. 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)
  4197. {
  4198. 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;
  4199. object result = null;
  4200. var arg0 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[0];
  4201. var arg1 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[1];
  4202. var arg2 = (Burst.Compiler.IL.Tests.SafetyChecks.MySafetyCheckedContainer)p[2];
  4203. result = d(ref arg0, ref arg1, ref arg2);
  4204. return result;
  4205. }
  4206. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4207. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4208. private delegate double R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  4209. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4210. private unsafe static object Call_R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  4211. {
  4212. var d = (R_Double_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  4213. object result = null;
  4214. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  4215. result = d(ref arg0);
  4216. return result;
  4217. }
  4218. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4219. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4220. private delegate double R_Double_P_0_Double_1_Int32_Delegate(double arg0, int arg1);
  4221. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4222. private unsafe static object Call_R_Double_P_0_Double_1_Int32_Delegate(object delegateObj, object[] p)
  4223. {
  4224. var d = (R_Double_P_0_Double_1_Int32_Delegate)delegateObj;
  4225. object result = null;
  4226. var arg0 = (double)p[0];
  4227. var arg1 = (int)p[1];
  4228. result = d(arg0, arg1);
  4229. return result;
  4230. }
  4231. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4232. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4233. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0);
  4234. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4235. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(object delegateObj, object[] p)
  4236. {
  4237. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate)delegateObj;
  4238. object result = null;
  4239. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  4240. result = d(ref arg0);
  4241. return result;
  4242. }
  4243. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4244. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4245. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.ChunkedTestDataWrapper arg0);
  4246. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4247. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  4248. {
  4249. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate)delegateObj;
  4250. object result = null;
  4251. var arg0 = (Burst.Compiler.IL.Tests.ChunkedTestDataWrapper)p[0];
  4252. result = d(ref arg0);
  4253. return result;
  4254. }
  4255. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4256. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4257. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.FullSOATestDataWrapper arg0);
  4258. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4259. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  4260. {
  4261. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate)delegateObj;
  4262. object result = null;
  4263. var arg0 = (Burst.Compiler.IL.Tests.FullSOATestDataWrapper)p[0];
  4264. result = d(ref arg0);
  4265. return result;
  4266. }
  4267. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4268. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4269. 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);
  4270. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4271. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate(object delegateObj, object[] p)
  4272. {
  4273. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_Climate_Ref_Delegate)delegateObj;
  4274. object result = null;
  4275. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.Climate)p[0];
  4276. result = d(ref arg0);
  4277. return result;
  4278. }
  4279. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4280. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4281. 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);
  4282. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4283. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate(object delegateObj, object[] p)
  4284. {
  4285. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayCustomItem_Ref_Delegate)delegateObj;
  4286. object result = null;
  4287. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayCustomItem)p[0];
  4288. result = d(ref arg0);
  4289. return result;
  4290. }
  4291. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4292. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4293. 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);
  4294. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4295. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate(object delegateObj, object[] p)
  4296. {
  4297. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat_Ref_Delegate)delegateObj;
  4298. object result = null;
  4299. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[0];
  4300. result = d(ref arg0);
  4301. return result;
  4302. }
  4303. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4304. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4305. 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);
  4306. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4307. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate(object delegateObj, object[] p)
  4308. {
  4309. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayFloat4_Ref_Delegate)delegateObj;
  4310. object result = null;
  4311. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat4)p[0];
  4312. result = d(ref arg0);
  4313. return result;
  4314. }
  4315. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4316. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4317. 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);
  4318. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4319. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate(object delegateObj, object[] p)
  4320. {
  4321. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeQueues_JobData_Ref_Delegate)delegateObj;
  4322. object result = null;
  4323. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeQueues.JobData)p[0];
  4324. result = d(ref arg0);
  4325. return result;
  4326. }
  4327. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4328. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4329. 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);
  4330. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4331. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate(object delegateObj, object[] p)
  4332. {
  4333. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat_Ref_Delegate)delegateObj;
  4334. object result = null;
  4335. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat)p[0];
  4336. result = d(ref arg0);
  4337. return result;
  4338. }
  4339. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4340. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4341. 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);
  4342. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4343. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate(object delegateObj, object[] p)
  4344. {
  4345. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceFloat4_Ref_Delegate)delegateObj;
  4346. object result = null;
  4347. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceFloat4)p[0];
  4348. result = d(ref arg0);
  4349. return result;
  4350. }
  4351. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4352. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4353. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  4354. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4355. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  4356. {
  4357. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  4358. object result = null;
  4359. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  4360. result = d(ref arg0);
  4361. return result;
  4362. }
  4363. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4365. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.DoubleData arg0);
  4366. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4367. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate(object delegateObj, object[] p)
  4368. {
  4369. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Spmd_DoubleData_Ref_Delegate)delegateObj;
  4370. object result = null;
  4371. var arg0 = (Burst.Compiler.IL.Tests.Spmd.DoubleData)p[0];
  4372. result = d(ref arg0);
  4373. return result;
  4374. }
  4375. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4377. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.BigStructNativeArrayJob arg0);
  4378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4379. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate(object delegateObj, object[] p)
  4380. {
  4381. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_BigStructNativeArrayJob_Ref_Delegate)delegateObj;
  4382. object result = null;
  4383. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.BigStructNativeArrayJob)p[0];
  4384. result = d(ref arg0);
  4385. return result;
  4386. }
  4387. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4389. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat3Job arg0);
  4390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4391. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate(object delegateObj, object[] p)
  4392. {
  4393. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat3Job_Ref_Delegate)delegateObj;
  4394. object result = null;
  4395. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat3Job)p[0];
  4396. result = d(ref arg0);
  4397. return result;
  4398. }
  4399. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4400. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4401. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat4Job arg0);
  4402. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4403. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate(object delegateObj, object[] p)
  4404. {
  4405. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceFloat4Job_Ref_Delegate)delegateObj;
  4406. object result = null;
  4407. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceFloat4Job)p[0];
  4408. result = d(ref arg0);
  4409. return result;
  4410. }
  4411. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4413. private delegate float R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate(ref Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple arg0);
  4414. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4415. private unsafe static object Call_R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate(object delegateObj, object[] p)
  4416. {
  4417. var d = (R_Single_P_0_Burst_Compiler_IL_Tests_Types_SomeStructWithValueTuple_Ref_Delegate)delegateObj;
  4418. object result = null;
  4419. var arg0 = (Burst.Compiler.IL.Tests.Types.SomeStructWithValueTuple)p[0];
  4420. result = d(ref arg0);
  4421. return result;
  4422. }
  4423. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4424. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4425. private delegate float R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate(ref UnityBenchShared.SumNumbersTest arg0);
  4426. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4427. private unsafe static object Call_R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate(object delegateObj, object[] p)
  4428. {
  4429. var d = (R_Single_P_0_UnityBenchShared_SumNumbersTest_Ref_Delegate)delegateObj;
  4430. object result = null;
  4431. var arg0 = (UnityBenchShared.SumNumbersTest)p[0];
  4432. result = d(ref arg0);
  4433. return result;
  4434. }
  4435. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4436. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4437. private delegate float R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate(ref UnityEngine.Boids.BoidsJob arg0, int arg1);
  4438. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4439. private unsafe static object Call_R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4440. {
  4441. var d = (R_Single_P_0_UnityEngine_Boids_BoidsJob_Ref_1_Int32_Delegate)delegateObj;
  4442. object result = null;
  4443. var arg0 = (UnityEngine.Boids.BoidsJob)p[0];
  4444. var arg1 = (int)p[1];
  4445. result = d(ref arg0, arg1);
  4446. return result;
  4447. }
  4448. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4449. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4450. private delegate float R_Single_P_0_Single_1_Int32_Delegate(float arg0, int arg1);
  4451. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4452. private unsafe static object Call_R_Single_P_0_Single_1_Int32_Delegate(object delegateObj, object[] p)
  4453. {
  4454. var d = (R_Single_P_0_Single_1_Int32_Delegate)delegateObj;
  4455. object result = null;
  4456. var arg0 = (float)p[0];
  4457. var arg1 = (int)p[1];
  4458. result = d(arg0, arg1);
  4459. return result;
  4460. }
  4461. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4462. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4463. private delegate float R_Single_P_0_Single_Ref_1_Int32_Delegate(ref float arg0, int arg1);
  4464. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4465. private unsafe static object Call_R_Single_P_0_Single_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4466. {
  4467. var d = (R_Single_P_0_Single_Ref_1_Int32_Delegate)delegateObj;
  4468. object result = null;
  4469. var arg0 = (float)p[0];
  4470. var arg1 = (int)p[1];
  4471. result = d(ref arg0, arg1);
  4472. return result;
  4473. }
  4474. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4475. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4476. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate(Burst.Compiler.IL.Tests.ABI.BigStruct arg0);
  4477. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4478. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate(object delegateObj, object[] p)
  4479. {
  4480. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate)delegateObj;
  4481. object result = null;
  4482. var arg0 = (Burst.Compiler.IL.Tests.ABI.BigStruct)p[0];
  4483. result = d(arg0);
  4484. return result;
  4485. }
  4486. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4487. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4488. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate(Burst.Compiler.IL.Tests.ABI.SmallStruct arg0);
  4489. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4490. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate(object delegateObj, object[] p)
  4491. {
  4492. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ABI_SmallStruct_Delegate)delegateObj;
  4493. object result = null;
  4494. var arg0 = (Burst.Compiler.IL.Tests.ABI.SmallStruct)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 int R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0);
  4501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4502. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(object delegateObj, object[] p)
  4503. {
  4504. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate)delegateObj;
  4505. object result = null;
  4506. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  4507. result = d(ref arg0);
  4508. return result;
  4509. }
  4510. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4511. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4512. 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);
  4513. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4514. 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)
  4515. {
  4516. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_IntArray_Ref_Delegate)delegateObj;
  4517. object result = null;
  4518. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  4519. var arg1 = (Burst.Compiler.IL.Tests.CalliBinding.IntArray)p[1];
  4520. result = d(ref arg0, ref arg1);
  4521. return result;
  4522. }
  4523. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4524. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4525. 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);
  4526. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4527. 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)
  4528. {
  4529. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_1_Burst_Compiler_IL_Tests_CalliBinding_SmallStructArray_Ref_Delegate)delegateObj;
  4530. object result = null;
  4531. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  4532. var arg1 = (Burst.Compiler.IL.Tests.CalliBinding.SmallStructArray)p[1];
  4533. result = d(ref arg0, ref arg1);
  4534. return result;
  4535. }
  4536. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4537. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4538. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.ChunkedTestDataWrapper arg0);
  4539. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4540. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  4541. {
  4542. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate)delegateObj;
  4543. object result = null;
  4544. var arg0 = (Burst.Compiler.IL.Tests.ChunkedTestDataWrapper)p[0];
  4545. result = d(ref arg0);
  4546. return result;
  4547. }
  4548. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4549. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4550. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate(Burst.Compiler.IL.Tests.Expressions.MyArrayIndex arg0);
  4551. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4552. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate(object delegateObj, object[] p)
  4553. {
  4554. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Expressions_MyArrayIndex_Delegate)delegateObj;
  4555. object result = null;
  4556. var arg0 = (Burst.Compiler.IL.Tests.Expressions.MyArrayIndex)p[0];
  4557. result = d(arg0);
  4558. return result;
  4559. }
  4560. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4561. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4562. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.FullSOATestDataWrapper arg0);
  4563. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4564. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  4565. {
  4566. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate)delegateObj;
  4567. object result = null;
  4568. var arg0 = (Burst.Compiler.IL.Tests.FullSOATestDataWrapper)p[0];
  4569. result = d(ref arg0);
  4570. return result;
  4571. }
  4572. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4573. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4574. 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);
  4575. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4576. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate(object delegateObj, object[] p)
  4577. {
  4578. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayBool_Ref_Delegate)delegateObj;
  4579. object result = null;
  4580. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayBool)p[0];
  4581. result = d(ref arg0);
  4582. return result;
  4583. }
  4584. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4585. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4586. 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);
  4587. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4588. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate(object delegateObj, object[] p)
  4589. {
  4590. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_Delegate)delegateObj;
  4591. object result = null;
  4592. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy)p[0];
  4593. result = d(ref arg0);
  4594. return result;
  4595. }
  4596. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4597. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4598. 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);
  4599. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4600. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4601. {
  4602. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntCopy_Ref_1_Int32_Delegate)delegateObj;
  4603. object result = null;
  4604. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntCopy)p[0];
  4605. var arg1 = (int)p[1];
  4606. result = d(ref arg0, arg1);
  4607. return result;
  4608. }
  4609. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4610. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4611. 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);
  4612. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4613. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4614. {
  4615. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayIntSize32_Ref_1_Int32_Delegate)delegateObj;
  4616. object result = null;
  4617. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayIntSize32)p[0];
  4618. var arg1 = (int)p[1];
  4619. result = d(ref arg0, arg1);
  4620. return result;
  4621. }
  4622. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4623. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4624. 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);
  4625. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4626. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate(object delegateObj, object[] p)
  4627. {
  4628. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_JobData_Ref_Delegate)delegateObj;
  4629. object result = null;
  4630. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.JobData)p[0];
  4631. result = d(ref arg0);
  4632. return result;
  4633. }
  4634. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4635. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4636. 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);
  4637. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4638. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate(object delegateObj, object[] p)
  4639. {
  4640. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeSlices_NativeSliceIntCopy_Ref_Delegate)delegateObj;
  4641. object result = null;
  4642. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeSlices.NativeSliceIntCopy)p[0];
  4643. result = d(ref arg0);
  4644. return result;
  4645. }
  4646. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4647. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4648. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  4649. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4650. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  4651. {
  4652. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  4653. object result = null;
  4654. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  4655. result = d(ref arg0);
  4656. return result;
  4657. }
  4658. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4659. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4660. 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);
  4661. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4662. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4663. {
  4664. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_1_Int32_Delegate)delegateObj;
  4665. object result = null;
  4666. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  4667. var arg1 = (int)p[1];
  4668. result = d(ref arg0, arg1);
  4669. return result;
  4670. }
  4671. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4672. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4673. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestCullingJob.CullingJob arg0);
  4674. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4675. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate(object delegateObj, object[] p)
  4676. {
  4677. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestCullingJob_CullingJob_Ref_Delegate)delegateObj;
  4678. object result = null;
  4679. var arg0 = (Burst.Compiler.IL.Tests.TestCullingJob.CullingJob)p[0];
  4680. result = d(ref arg0);
  4681. return result;
  4682. }
  4683. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4684. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4685. 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);
  4686. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4687. 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)
  4688. {
  4689. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPBigStructFunc_1_Burst_Compiler_IL_Tests_ABI_BigStruct_Delegate)delegateObj;
  4690. object result = null;
  4691. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPBigStructFunc)p[0];
  4692. var arg1 = (Burst.Compiler.IL.Tests.ABI.BigStruct)p[1];
  4693. result = d(arg0, arg1);
  4694. return result;
  4695. }
  4696. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4697. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4698. 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);
  4699. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4700. 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)
  4701. {
  4702. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPInIntFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  4703. object result = null;
  4704. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPInIntFunc)p[0];
  4705. var arg1 = (int)p[1];
  4706. var arg2 = (int)p[2];
  4707. result = d(ref arg0, arg1, arg2);
  4708. return result;
  4709. }
  4710. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4711. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4712. 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);
  4713. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4714. 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)
  4715. {
  4716. 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;
  4717. object result = null;
  4718. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[0];
  4719. var arg1 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[1];
  4720. var arg2 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[2];
  4721. var arg3 = (int)p[3];
  4722. result = d(ref arg0, ref arg1, ref arg2, arg3);
  4723. return result;
  4724. }
  4725. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4726. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4727. 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);
  4728. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4729. 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)
  4730. {
  4731. 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;
  4732. object result = null;
  4733. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[0];
  4734. var arg1 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[1];
  4735. var arg2 = (int)p[2];
  4736. result = d(ref arg0, ref arg1, arg2);
  4737. return result;
  4738. }
  4739. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4740. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4741. 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);
  4742. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4743. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4744. {
  4745. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_FPIntFunc_Ref_1_Int32_Delegate)delegateObj;
  4746. object result = null;
  4747. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.FPIntFunc)p[0];
  4748. var arg1 = (int)p[1];
  4749. result = d(ref arg0, arg1);
  4750. return result;
  4751. }
  4752. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4753. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4754. 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);
  4755. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4756. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4757. {
  4758. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_Delegate)delegateObj;
  4759. object result = null;
  4760. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc)p[0];
  4761. var arg1 = (int)p[1];
  4762. result = d(ref arg0, arg1);
  4763. return result;
  4764. }
  4765. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4766. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4767. 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);
  4768. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4769. 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)
  4770. {
  4771. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_NoAliasFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  4772. object result = null;
  4773. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.NoAliasFunc)p[0];
  4774. var arg1 = (int)p[1];
  4775. var arg2 = (int)p[2];
  4776. result = d(ref arg0, arg1, arg2);
  4777. return result;
  4778. }
  4779. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4780. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4781. 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);
  4782. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4783. 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)
  4784. {
  4785. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_ReturnRefReadOnlyFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  4786. object result = null;
  4787. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.ReturnRefReadOnlyFunc)p[0];
  4788. var arg1 = (int)p[1];
  4789. var arg2 = (int)p[2];
  4790. result = d(ref arg0, arg1, arg2);
  4791. return result;
  4792. }
  4793. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4794. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4795. 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);
  4796. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4797. 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)
  4798. {
  4799. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructsInFunc_Ref_1_Int32_2_Int32_Delegate)delegateObj;
  4800. object result = null;
  4801. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.StructsInFunc)p[0];
  4802. var arg1 = (int)p[1];
  4803. var arg2 = (int)p[2];
  4804. result = d(ref arg0, arg1, arg2);
  4805. return result;
  4806. }
  4807. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4808. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4809. 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);
  4810. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4811. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4812. {
  4813. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestGenerics_TestJob_Ref_1_Int32_Delegate)delegateObj;
  4814. object result = null;
  4815. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.TestJob)p[0];
  4816. var arg1 = (int)p[1];
  4817. result = d(ref arg0, arg1);
  4818. return result;
  4819. }
  4820. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4821. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4822. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.ParentStruct arg0);
  4823. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4824. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate(object delegateObj, object[] p)
  4825. {
  4826. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_ParentStruct_Ref_Delegate)delegateObj;
  4827. object result = null;
  4828. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.ParentStruct)p[0];
  4829. result = d(ref arg0);
  4830. return result;
  4831. }
  4832. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4833. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4834. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SomeStruct arg0);
  4835. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4836. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate(object delegateObj, object[] p)
  4837. {
  4838. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStruct_Ref_Delegate)delegateObj;
  4839. object result = null;
  4840. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SomeStruct)p[0];
  4841. result = d(ref arg0);
  4842. return result;
  4843. }
  4844. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4845. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4846. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.SomeStructWithMarshalAs arg0);
  4847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4848. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate(object delegateObj, object[] p)
  4849. {
  4850. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_SomeStructWithMarshalAs_Ref_Delegate)delegateObj;
  4851. object result = null;
  4852. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.SomeStructWithMarshalAs)p[0];
  4853. result = d(ref arg0);
  4854. return result;
  4855. }
  4856. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4857. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4858. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.StaticCharStruct arg0);
  4859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4860. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate(object delegateObj, object[] p)
  4861. {
  4862. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestStructs_StaticCharStruct_Ref_Delegate)delegateObj;
  4863. object result = null;
  4864. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.StaticCharStruct)p[0];
  4865. result = d(ref arg0);
  4866. return result;
  4867. }
  4868. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4869. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4870. private delegate int R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt arg0);
  4871. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4872. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate(object delegateObj, object[] p)
  4873. {
  4874. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate)delegateObj;
  4875. object result = null;
  4876. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  4877. result = d(ref arg0);
  4878. return result;
  4879. }
  4880. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4881. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4882. 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);
  4883. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4884. 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)
  4885. {
  4886. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_Delegate)delegateObj;
  4887. object result = null;
  4888. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  4889. var arg1 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[1];
  4890. result = d(ref arg0, ref arg1);
  4891. return result;
  4892. }
  4893. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4894. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4895. 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);
  4896. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4897. 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)
  4898. {
  4899. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int32_3_Int64_Delegate)delegateObj;
  4900. object result = null;
  4901. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  4902. var arg1 = (int)p[1];
  4903. var arg2 = (int)p[2];
  4904. var arg3 = (long)p[3];
  4905. result = d(ref arg0, arg1, arg2, arg3);
  4906. return result;
  4907. }
  4908. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4909. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4910. 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);
  4911. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4912. 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)
  4913. {
  4914. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_TestUnsafeUtility_NativeArrayInt_Ref_1_Int32_2_Int64_Delegate)delegateObj;
  4915. object result = null;
  4916. var arg0 = (Burst.Compiler.IL.Tests.TestUnsafeUtility.NativeArrayInt)p[0];
  4917. var arg1 = (int)p[1];
  4918. var arg2 = (long)p[2];
  4919. result = d(ref arg0, arg1, arg2);
  4920. return result;
  4921. }
  4922. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4923. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4924. 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);
  4925. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4926. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  4927. {
  4928. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate)delegateObj;
  4929. object result = null;
  4930. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[0];
  4931. result = d(ref arg0);
  4932. return result;
  4933. }
  4934. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4935. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4936. 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);
  4937. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4938. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  4939. {
  4940. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_1_Int32_Delegate)delegateObj;
  4941. object result = null;
  4942. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[0];
  4943. var arg1 = (int)p[1];
  4944. result = d(ref arg0, arg1);
  4945. return result;
  4946. }
  4947. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4948. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4949. 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);
  4950. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4951. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate(object delegateObj, object[] p)
  4952. {
  4953. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate)delegateObj;
  4954. object result = null;
  4955. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper)p[0];
  4956. result = d(ref arg0);
  4957. return result;
  4958. }
  4959. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4960. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4961. 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);
  4962. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4963. private unsafe static object Call_R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate(object delegateObj, object[] p)
  4964. {
  4965. var d = (R_Int32_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_NativeArrayBundle_Ref_Delegate)delegateObj;
  4966. object result = null;
  4967. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.NativeArrayBundle)p[0];
  4968. result = d(ref arg0);
  4969. return result;
  4970. }
  4971. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4972. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4973. private delegate int R_Int32_P_0_IntPtr_Ref_Delegate(ref System.IntPtr arg0);
  4974. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4975. private unsafe static object Call_R_Int32_P_0_IntPtr_Ref_Delegate(object delegateObj, object[] p)
  4976. {
  4977. var d = (R_Int32_P_0_IntPtr_Ref_Delegate)delegateObj;
  4978. object result = null;
  4979. var arg0 = (System.IntPtr)p[0];
  4980. result = d(ref arg0);
  4981. return result;
  4982. }
  4983. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4984. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4985. private delegate int R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate(ref System.ValueTuple<int,int> arg0);
  4986. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4987. private unsafe static object Call_R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate(object delegateObj, object[] p)
  4988. {
  4989. var d = (R_Int32_P_0_System_ValueTuple2_G0_Int32_G1_Int32_Ref_Delegate)delegateObj;
  4990. object result = null;
  4991. var arg0 = (System.ValueTuple<int,int>)p[0];
  4992. result = d(ref arg0);
  4993. return result;
  4994. }
  4995. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  4996. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4997. private unsafe delegate int R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(Unity.Burst.Intrinsics.v128* arg0);
  4998. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  4999. private unsafe static object Call_R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(object delegateObj, object[] p)
  5000. {
  5001. var d = (R_Int32_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate)delegateObj;
  5002. object result = null;
  5003. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5004. result = d(arg0);
  5005. return result;
  5006. }
  5007. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5008. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5009. private delegate int R_Int32_P_0_Byte_1_Single_Delegate(byte arg0, float arg1);
  5010. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5011. private unsafe static object Call_R_Int32_P_0_Byte_1_Single_Delegate(object delegateObj, object[] p)
  5012. {
  5013. var d = (R_Int32_P_0_Byte_1_Single_Delegate)delegateObj;
  5014. object result = null;
  5015. var arg0 = (byte)p[0];
  5016. var arg1 = (float)p[1];
  5017. result = d(arg0, arg1);
  5018. return result;
  5019. }
  5020. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5021. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5022. private delegate int R_Int32_P_0_Char_Delegate(char arg0);
  5023. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5024. private unsafe static object Call_R_Int32_P_0_Char_Delegate(object delegateObj, object[] p)
  5025. {
  5026. var d = (R_Int32_P_0_Char_Delegate)delegateObj;
  5027. object result = null;
  5028. var arg0 = (char)p[0];
  5029. result = d(arg0);
  5030. return result;
  5031. }
  5032. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5033. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5034. private delegate int R_Int32_P_0_Char_Ref_Delegate(ref char arg0);
  5035. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5036. private unsafe static object Call_R_Int32_P_0_Char_Ref_Delegate(object delegateObj, object[] p)
  5037. {
  5038. var d = (R_Int32_P_0_Char_Ref_Delegate)delegateObj;
  5039. object result = null;
  5040. var arg0 = (char)p[0];
  5041. result = d(ref arg0);
  5042. return result;
  5043. }
  5044. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5045. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5046. private delegate int R_Int32_P_0_Double_1_Double_Delegate(double arg0, double arg1);
  5047. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5048. private unsafe static object Call_R_Int32_P_0_Double_1_Double_Delegate(object delegateObj, object[] p)
  5049. {
  5050. var d = (R_Int32_P_0_Double_1_Double_Delegate)delegateObj;
  5051. object result = null;
  5052. var arg0 = (double)p[0];
  5053. var arg1 = (double)p[1];
  5054. result = d(arg0, arg1);
  5055. return result;
  5056. }
  5057. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5058. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5059. 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);
  5060. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5061. 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)
  5062. {
  5063. 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;
  5064. object result = null;
  5065. var arg0 = (int)p[0];
  5066. var arg1 = (int)p[1];
  5067. var arg2 = (int)p[2];
  5068. var arg3 = (int)p[3];
  5069. var arg4 = (int)p[4];
  5070. var arg5 = (int)p[5];
  5071. var arg6 = (Burst.Compiler.IL.Tests.ABI.SmallStruct)p[6];
  5072. result = d(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
  5073. return result;
  5074. }
  5075. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5076. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5077. private delegate int R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate(ref int arg0, ref int arg1);
  5078. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5079. private unsafe static object Call_R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate(object delegateObj, object[] p)
  5080. {
  5081. var d = (R_Int32_P_0_Int32_Ref_1_Int32_Ref_Delegate)delegateObj;
  5082. object result = null;
  5083. var arg0 = (int)p[0];
  5084. var arg1 = (int)p[1];
  5085. result = d(ref arg0, ref arg1);
  5086. return result;
  5087. }
  5088. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5089. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5090. private delegate int R_Int32_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  5091. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5092. private unsafe static object Call_R_Int32_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  5093. {
  5094. var d = (R_Int32_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  5095. object result = null;
  5096. var arg0 = (uint)p[0];
  5097. var arg1 = (uint)p[1];
  5098. result = d(arg0, arg1);
  5099. return result;
  5100. }
  5101. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5102. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5103. 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);
  5104. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5105. private unsafe static object Call_R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate(object delegateObj, object[] p)
  5106. {
  5107. var d = (R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_m256_wrapper_Ref_Delegate)delegateObj;
  5108. object result = null;
  5109. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.m256_wrapper)p[0];
  5110. result = d(ref arg0);
  5111. return result;
  5112. }
  5113. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5114. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5115. 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);
  5116. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5117. private unsafe static object Call_R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate(object delegateObj, object[] p)
  5118. {
  5119. var d = (R_Int64_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate)delegateObj;
  5120. object result = null;
  5121. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[0];
  5122. result = d(ref arg0);
  5123. return result;
  5124. }
  5125. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5126. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5127. private delegate long R_Int64_P_0_Byte_Delegate(byte arg0);
  5128. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5129. private unsafe static object Call_R_Int64_P_0_Byte_Delegate(object delegateObj, object[] p)
  5130. {
  5131. var d = (R_Int64_P_0_Byte_Delegate)delegateObj;
  5132. object result = null;
  5133. var arg0 = (byte)p[0];
  5134. result = d(arg0);
  5135. return result;
  5136. }
  5137. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5138. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5139. private delegate long R_Int64_P_0_Single_Delegate(float arg0);
  5140. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5141. private unsafe static object Call_R_Int64_P_0_Single_Delegate(object delegateObj, object[] p)
  5142. {
  5143. var d = (R_Int64_P_0_Single_Delegate)delegateObj;
  5144. object result = null;
  5145. var arg0 = (float)p[0];
  5146. result = d(arg0);
  5147. return result;
  5148. }
  5149. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5150. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5151. private delegate long R_Int64_P_0_Int32_1_Int64_Delegate(int arg0, long arg1);
  5152. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5153. private unsafe static object Call_R_Int64_P_0_Int32_1_Int64_Delegate(object delegateObj, object[] p)
  5154. {
  5155. var d = (R_Int64_P_0_Int32_1_Int64_Delegate)delegateObj;
  5156. object result = null;
  5157. var arg0 = (int)p[0];
  5158. var arg1 = (long)p[1];
  5159. result = d(arg0, arg1);
  5160. return result;
  5161. }
  5162. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5163. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5164. private delegate short R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  5165. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5166. private unsafe static object Call_R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  5167. {
  5168. var d = (R_Int16_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  5169. object result = null;
  5170. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  5171. result = d(ref arg0);
  5172. return result;
  5173. }
  5174. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5175. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5176. private delegate uint R_UInt32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.ChunkedTestDataWrapper arg0);
  5177. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5178. private unsafe static object Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  5179. {
  5180. var d = (R_UInt32_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate)delegateObj;
  5181. object result = null;
  5182. var arg0 = (Burst.Compiler.IL.Tests.ChunkedTestDataWrapper)p[0];
  5183. result = d(ref arg0);
  5184. return result;
  5185. }
  5186. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5187. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5188. private delegate uint R_UInt32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.FullSOATestDataWrapper arg0);
  5189. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5190. private unsafe static object Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  5191. {
  5192. var d = (R_UInt32_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate)delegateObj;
  5193. object result = null;
  5194. var arg0 = (Burst.Compiler.IL.Tests.FullSOATestDataWrapper)p[0];
  5195. result = d(ref arg0);
  5196. return result;
  5197. }
  5198. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5199. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5200. 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);
  5201. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5202. private unsafe static object Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5203. {
  5204. var d = (R_UInt32_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeArrays_NativeArrayUInt4_Ref_1_Int32_Delegate)delegateObj;
  5205. object result = null;
  5206. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayUInt4)p[0];
  5207. var arg1 = (int)p[1];
  5208. result = d(ref arg0, arg1);
  5209. return result;
  5210. }
  5211. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5212. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5213. private delegate uint R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(ref Burst.Compiler.IL.Tests.Spmd.Data arg0);
  5214. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5215. private unsafe static object Call_R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate(object delegateObj, object[] p)
  5216. {
  5217. var d = (R_UInt32_P_0_Burst_Compiler_IL_Tests_Spmd_Data_Ref_Delegate)delegateObj;
  5218. object result = null;
  5219. var arg0 = (Burst.Compiler.IL.Tests.Spmd.Data)p[0];
  5220. result = d(ref arg0);
  5221. return result;
  5222. }
  5223. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5224. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5225. private delegate uint R_UInt32_P_0_IntPtr_Ref_Delegate(ref System.IntPtr arg0);
  5226. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5227. private unsafe static object Call_R_UInt32_P_0_IntPtr_Ref_Delegate(object delegateObj, object[] p)
  5228. {
  5229. var d = (R_UInt32_P_0_IntPtr_Ref_Delegate)delegateObj;
  5230. object result = null;
  5231. var arg0 = (System.IntPtr)p[0];
  5232. result = d(ref arg0);
  5233. return result;
  5234. }
  5235. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5236. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5237. private delegate uint R_UInt32_P_0_Single_Delegate(float arg0);
  5238. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5239. private unsafe static object Call_R_UInt32_P_0_Single_Delegate(object delegateObj, object[] p)
  5240. {
  5241. var d = (R_UInt32_P_0_Single_Delegate)delegateObj;
  5242. object result = null;
  5243. var arg0 = (float)p[0];
  5244. result = d(arg0);
  5245. return result;
  5246. }
  5247. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5248. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5249. private delegate uint R_UInt32_P_0_UInt32_1_UInt32_Delegate(uint arg0, uint arg1);
  5250. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5251. private unsafe static object Call_R_UInt32_P_0_UInt32_1_UInt32_Delegate(object delegateObj, object[] p)
  5252. {
  5253. var d = (R_UInt32_P_0_UInt32_1_UInt32_Delegate)delegateObj;
  5254. object result = null;
  5255. var arg0 = (uint)p[0];
  5256. var arg1 = (uint)p[1];
  5257. result = d(arg0, arg1);
  5258. return result;
  5259. }
  5260. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5262. private delegate uint R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate(uint arg0, uint arg1, uint arg2);
  5263. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5264. private unsafe static object Call_R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  5265. {
  5266. var d = (R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Delegate)delegateObj;
  5267. object result = null;
  5268. var arg0 = (uint)p[0];
  5269. var arg1 = (uint)p[1];
  5270. var arg2 = (uint)p[2];
  5271. result = d(arg0, arg1, arg2);
  5272. return result;
  5273. }
  5274. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5275. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5276. private unsafe delegate uint R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate(uint arg0, uint arg1, uint* arg2);
  5277. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5278. private unsafe static object Call_R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate(object delegateObj, object[] p)
  5279. {
  5280. var d = (R_UInt32_P_0_UInt32_1_UInt32_2_UInt32_Ptr_Delegate)delegateObj;
  5281. object result = null;
  5282. var arg0 = (uint)p[0];
  5283. var arg1 = (uint)p[1];
  5284. var arg2 = (uint*)(IntPtr)p[2];
  5285. result = d(arg0, arg1, arg2);
  5286. return result;
  5287. }
  5288. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5289. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5290. private delegate ulong R_UInt64_P_0_UInt64_Delegate(ulong arg0);
  5291. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5292. private unsafe static object Call_R_UInt64_P_0_UInt64_Delegate(object delegateObj, object[] p)
  5293. {
  5294. var d = (R_UInt64_P_0_UInt64_Delegate)delegateObj;
  5295. object result = null;
  5296. var arg0 = (ulong)p[0];
  5297. result = d(arg0);
  5298. return result;
  5299. }
  5300. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5301. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5302. private delegate ulong R_UInt64_P_0_UInt64_1_UInt32_Delegate(ulong arg0, uint arg1);
  5303. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5304. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt32_Delegate(object delegateObj, object[] p)
  5305. {
  5306. var d = (R_UInt64_P_0_UInt64_1_UInt32_Delegate)delegateObj;
  5307. object result = null;
  5308. var arg0 = (ulong)p[0];
  5309. var arg1 = (uint)p[1];
  5310. result = d(arg0, arg1);
  5311. return result;
  5312. }
  5313. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5314. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5315. private delegate ulong R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate(ulong arg0, uint arg1, uint arg2);
  5316. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5317. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  5318. {
  5319. var d = (R_UInt64_P_0_UInt64_1_UInt32_2_UInt32_Delegate)delegateObj;
  5320. object result = null;
  5321. var arg0 = (ulong)p[0];
  5322. var arg1 = (uint)p[1];
  5323. var arg2 = (uint)p[2];
  5324. result = d(arg0, arg1, arg2);
  5325. return result;
  5326. }
  5327. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5328. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5329. private delegate ulong R_UInt64_P_0_UInt64_1_UInt64_Delegate(ulong arg0, ulong arg1);
  5330. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5331. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt64_Delegate(object delegateObj, object[] p)
  5332. {
  5333. var d = (R_UInt64_P_0_UInt64_1_UInt64_Delegate)delegateObj;
  5334. object result = null;
  5335. var arg0 = (ulong)p[0];
  5336. var arg1 = (ulong)p[1];
  5337. result = d(arg0, arg1);
  5338. return result;
  5339. }
  5340. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5341. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5342. private unsafe delegate ulong R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate(ulong arg0, ulong arg1, ulong* arg2);
  5343. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5344. private unsafe static object Call_R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate(object delegateObj, object[] p)
  5345. {
  5346. var d = (R_UInt64_P_0_UInt64_1_UInt64_2_UInt64_Ptr_Delegate)delegateObj;
  5347. object result = null;
  5348. var arg0 = (ulong)p[0];
  5349. var arg1 = (ulong)p[1];
  5350. var arg2 = (ulong*)(IntPtr)p[2];
  5351. result = d(arg0, arg1, arg2);
  5352. return result;
  5353. }
  5354. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5355. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5356. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.ABI.CullChunksWrapper arg0);
  5357. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5358. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate(object delegateObj, object[] p)
  5359. {
  5360. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_ABI_CullChunksWrapper_Ref_Delegate)delegateObj;
  5361. object result = null;
  5362. var arg0 = (Burst.Compiler.IL.Tests.ABI.CullChunksWrapper)p[0];
  5363. d(ref arg0);
  5364. return result;
  5365. }
  5366. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5367. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5368. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWithinGenericWrapper arg0);
  5369. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5370. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate(object delegateObj, object[] p)
  5371. {
  5372. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWithinGenericWrapper_Ref_Delegate)delegateObj;
  5373. object result = null;
  5374. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWithinGenericWrapper)p[0];
  5375. d(ref arg0);
  5376. return result;
  5377. }
  5378. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5379. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5380. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWrapper arg0);
  5381. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5382. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate(object delegateObj, object[] p)
  5383. {
  5384. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnGenericWrapper_Ref_Delegate)delegateObj;
  5385. object result = null;
  5386. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasOnGenericWrapper)p[0];
  5387. d(ref arg0);
  5388. return result;
  5389. }
  5390. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5391. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5392. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.Aliasing.NoAliasOnStructWithinGenericWrapper arg0);
  5393. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5394. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate(object delegateObj, object[] p)
  5395. {
  5396. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Aliasing_NoAliasOnStructWithinGenericWrapper_Ref_Delegate)delegateObj;
  5397. object result = null;
  5398. var arg0 = (Burst.Compiler.IL.Tests.Aliasing.NoAliasOnStructWithinGenericWrapper)p[0];
  5399. d(ref arg0);
  5400. return result;
  5401. }
  5402. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5403. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5404. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayJob arg0);
  5405. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5406. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate(object delegateObj, object[] p)
  5407. {
  5408. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayJob_Ref_Delegate)delegateObj;
  5409. object result = null;
  5410. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayJob)p[0];
  5411. d(ref arg0);
  5412. return result;
  5413. }
  5414. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5415. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5416. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayPointerIsNotReloadedJob arg0);
  5417. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5418. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate(object delegateObj, object[] p)
  5419. {
  5420. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeArrayPointerIsNotReloadedJob_Ref_Delegate)delegateObj;
  5421. object result = null;
  5422. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NativeArrayPointerIsNotReloadedJob)p[0];
  5423. d(ref arg0);
  5424. return result;
  5425. }
  5426. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5427. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5428. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NativeSliceJob arg0);
  5429. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5430. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate(object delegateObj, object[] p)
  5431. {
  5432. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NativeSliceJob_Ref_Delegate)delegateObj;
  5433. object result = null;
  5434. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NativeSliceJob)p[0];
  5435. d(ref arg0);
  5436. return result;
  5437. }
  5438. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5439. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5440. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.NoAliasOnJobProducerTypeThisPointerJob arg0);
  5441. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5442. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate(object delegateObj, object[] p)
  5443. {
  5444. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_NoAliasOnJobProducerTypeThisPointerJob_Ref_Delegate)delegateObj;
  5445. object result = null;
  5446. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.NoAliasOnJobProducerTypeThisPointerJob)p[0];
  5447. d(ref arg0);
  5448. return result;
  5449. }
  5450. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5451. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5452. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesAliasWithJobStructJob arg0);
  5453. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5454. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate(object delegateObj, object[] p)
  5455. {
  5456. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesAliasWithJobStructJob_Ref_Delegate)delegateObj;
  5457. object result = null;
  5458. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesAliasWithJobStructJob)p[0];
  5459. d(ref arg0);
  5460. return result;
  5461. }
  5462. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5463. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5464. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesNotAliasWithJobStructJob arg0);
  5465. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5466. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate(object delegateObj, object[] p)
  5467. {
  5468. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_AliasingJobs_PointerDoesNotAliasWithJobStructJob_Ref_Delegate)delegateObj;
  5469. object result = null;
  5470. var arg0 = (Burst.Compiler.IL.Tests.AliasingJobs.PointerDoesNotAliasWithJobStructJob)p[0];
  5471. d(ref arg0);
  5472. return result;
  5473. }
  5474. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5475. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5476. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(ref Burst.Compiler.IL.Tests.CalliBinding.BindingContainer arg0);
  5477. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5478. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate(object delegateObj, object[] p)
  5479. {
  5480. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_CalliBinding_BindingContainer_Ref_Delegate)delegateObj;
  5481. object result = null;
  5482. var arg0 = (Burst.Compiler.IL.Tests.CalliBinding.BindingContainer)p[0];
  5483. d(ref arg0);
  5484. return result;
  5485. }
  5486. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5487. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5488. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.Case1061135.NewMoveJob arg0);
  5489. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5490. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate(object delegateObj, object[] p)
  5491. {
  5492. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_Case1061135_NewMoveJob_Ref_Delegate)delegateObj;
  5493. object result = null;
  5494. var arg0 = (Burst.Compiler.IL.Tests.Case1061135.NewMoveJob)p[0];
  5495. d(ref arg0);
  5496. return result;
  5497. }
  5498. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5499. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5500. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.ChunkedTestDataWrapper arg0);
  5501. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5502. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  5503. {
  5504. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_ChunkedTestDataWrapper_Ref_Delegate)delegateObj;
  5505. object result = null;
  5506. var arg0 = (Burst.Compiler.IL.Tests.ChunkedTestDataWrapper)p[0];
  5507. d(ref arg0);
  5508. return result;
  5509. }
  5510. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5511. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5512. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(ref Burst.Compiler.IL.Tests.FullSOATestDataWrapper arg0);
  5513. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5514. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate(object delegateObj, object[] p)
  5515. {
  5516. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_FullSOATestDataWrapper_Ref_Delegate)delegateObj;
  5517. object result = null;
  5518. var arg0 = (Burst.Compiler.IL.Tests.FullSOATestDataWrapper)p[0];
  5519. d(ref arg0);
  5520. return result;
  5521. }
  5522. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5523. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5524. 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);
  5525. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5526. 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)
  5527. {
  5528. 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;
  5529. object result = null;
  5530. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[0];
  5531. var arg1 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[1];
  5532. var arg2 = (Burst.Compiler.IL.Tests.NativeContainers.NativeArrays.NativeArrayFloat)p[2];
  5533. d(ref arg0, ref arg1, ref arg2);
  5534. return result;
  5535. }
  5536. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5537. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5538. 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);
  5539. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5540. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate(object delegateObj, object[] p)
  5541. {
  5542. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeHashMaps_HashMapJob_Ref_Delegate)delegateObj;
  5543. object result = null;
  5544. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeHashMaps.HashMapJob)p[0];
  5545. d(ref arg0);
  5546. return result;
  5547. }
  5548. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5549. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5550. 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);
  5551. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5552. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate(object delegateObj, object[] p)
  5553. {
  5554. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_NativeContainers_NativeMultiHashMaps_HashMapAndQueueJob_Ref_Delegate)delegateObj;
  5555. object result = null;
  5556. var arg0 = (Burst.Compiler.IL.Tests.NativeContainers.NativeMultiHashMaps.HashMapAndQueueJob)p[0];
  5557. d(ref arg0);
  5558. return result;
  5559. }
  5560. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5561. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5562. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate(ref Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructBVHTest arg0);
  5563. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5564. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate(object delegateObj, object[] p)
  5565. {
  5566. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructBVHTest_Ref_Delegate)delegateObj;
  5567. object result = null;
  5568. var arg0 = (Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructBVHTest)p[0];
  5569. d(ref arg0);
  5570. return result;
  5571. }
  5572. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5573. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5574. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructInitJob arg0);
  5575. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5576. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate(object delegateObj, object[] p)
  5577. {
  5578. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_RegressionsInBurstV1_StructInitJob_Ref_Delegate)delegateObj;
  5579. object result = null;
  5580. var arg0 = (Burst.Compiler.IL.Tests.RegressionsInBurstV1.StructInitJob)p[0];
  5581. d(ref arg0);
  5582. return result;
  5583. }
  5584. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5585. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5586. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate(ref Burst.Compiler.IL.Tests.SafetyChecks.NativeArrayInt arg0);
  5587. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5588. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate(object delegateObj, object[] p)
  5589. {
  5590. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_SafetyChecks_NativeArrayInt_Ref_Delegate)delegateObj;
  5591. object result = null;
  5592. var arg0 = (Burst.Compiler.IL.Tests.SafetyChecks.NativeArrayInt)p[0];
  5593. d(ref arg0);
  5594. return result;
  5595. }
  5596. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5597. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5598. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.CopyJob arg0);
  5599. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5600. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate(object delegateObj, object[] p)
  5601. {
  5602. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyJob_Ref_Delegate)delegateObj;
  5603. object result = null;
  5604. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.CopyJob)p[0];
  5605. d(ref arg0);
  5606. return result;
  5607. }
  5608. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5609. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5610. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.CopyWithExplicitNoAlias arg0);
  5611. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5612. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate(object delegateObj, object[] p)
  5613. {
  5614. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_CopyWithExplicitNoAlias_Ref_Delegate)delegateObj;
  5615. object result = null;
  5616. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.CopyWithExplicitNoAlias)p[0];
  5617. d(ref arg0);
  5618. return result;
  5619. }
  5620. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5621. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5622. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.DivisionByVariable arg0);
  5623. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5624. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate(object delegateObj, object[] p)
  5625. {
  5626. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_DivisionByVariable_Ref_Delegate)delegateObj;
  5627. object result = null;
  5628. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.DivisionByVariable)p[0];
  5629. d(ref arg0);
  5630. return result;
  5631. }
  5632. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5633. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5634. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.Float1Job arg0);
  5635. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5636. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate(object delegateObj, object[] p)
  5637. {
  5638. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float1Job_Ref_Delegate)delegateObj;
  5639. object result = null;
  5640. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.Float1Job)p[0];
  5641. d(ref arg0);
  5642. return result;
  5643. }
  5644. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5645. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5646. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.Float4Job arg0);
  5647. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5648. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate(object delegateObj, object[] p)
  5649. {
  5650. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_Float4Job_Ref_Delegate)delegateObj;
  5651. object result = null;
  5652. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.Float4Job)p[0];
  5653. d(ref arg0);
  5654. return result;
  5655. }
  5656. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5657. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5658. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceByteJob arg0);
  5659. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5660. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate(object delegateObj, object[] p)
  5661. {
  5662. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceByteJob_Ref_Delegate)delegateObj;
  5663. object result = null;
  5664. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceByteJob)p[0];
  5665. d(ref arg0);
  5666. return result;
  5667. }
  5668. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5669. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5670. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.InPlaceJob arg0);
  5671. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5672. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate(object delegateObj, object[] p)
  5673. {
  5674. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_InPlaceJob_Ref_Delegate)delegateObj;
  5675. object result = null;
  5676. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.InPlaceJob)p[0];
  5677. d(ref arg0);
  5678. return result;
  5679. }
  5680. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5681. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5682. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestAlias.SimpleSOA1Job arg0);
  5683. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5684. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate(object delegateObj, object[] p)
  5685. {
  5686. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestAlias_SimpleSOA1Job_Ref_Delegate)delegateObj;
  5687. object result = null;
  5688. var arg0 = (Burst.Compiler.IL.Tests.TestAlias.SimpleSOA1Job)p[0];
  5689. d(ref arg0);
  5690. return result;
  5691. }
  5692. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5693. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5694. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestFunctionPointers.StructWithAction arg0);
  5695. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5696. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate(object delegateObj, object[] p)
  5697. {
  5698. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestFunctionPointers_StructWithAction_Ref_Delegate)delegateObj;
  5699. object result = null;
  5700. var arg0 = (Burst.Compiler.IL.Tests.TestFunctionPointers.StructWithAction)p[0];
  5701. d(ref arg0);
  5702. return result;
  5703. }
  5704. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5705. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5706. 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);
  5707. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5708. 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)
  5709. {
  5710. 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;
  5711. object result = null;
  5712. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[0];
  5713. var arg1 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[1];
  5714. var arg2 = (int)p[2];
  5715. d(ref arg0, ref arg1, arg2);
  5716. return result;
  5717. }
  5718. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5719. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5720. 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);
  5721. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5722. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate(object delegateObj, object[] p)
  5723. {
  5724. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_PointerCastStruct_Ref_1_Int32_Delegate)delegateObj;
  5725. object result = null;
  5726. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[0];
  5727. var arg1 = (int)p[1];
  5728. d(ref arg0, arg1);
  5729. return result;
  5730. }
  5731. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5732. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5733. 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);
  5734. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5735. 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)
  5736. {
  5737. 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;
  5738. object result = null;
  5739. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[0];
  5740. var arg1 = (int)p[1];
  5741. var arg2 = (Burst.Compiler.IL.Tests.TestGenerics.PointerCastStruct)p[2];
  5742. d(ref arg0, arg1, ref arg2);
  5743. return result;
  5744. }
  5745. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5746. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5747. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics arg0);
  5748. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5749. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate(object delegateObj, object[] p)
  5750. {
  5751. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics_Ref_Delegate)delegateObj;
  5752. object result = null;
  5753. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics)p[0];
  5754. d(ref arg0);
  5755. return result;
  5756. }
  5757. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5758. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5759. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics2 arg0);
  5760. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5761. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate(object delegateObj, object[] p)
  5762. {
  5763. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestGenerics_StructWithGenerics2_Ref_Delegate)delegateObj;
  5764. object result = null;
  5765. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenerics2)p[0];
  5766. d(ref arg0);
  5767. return result;
  5768. }
  5769. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5770. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5771. 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);
  5772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5773. 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)
  5774. {
  5775. 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;
  5776. object result = null;
  5777. var arg0 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)p[0];
  5778. var arg1 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)p[1];
  5779. var arg2 = (Burst.Compiler.IL.Tests.TestGenerics.StructWithGenericsAndALongName00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)p[2];
  5780. d(ref arg0, ref arg1, ref arg2);
  5781. return result;
  5782. }
  5783. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5785. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.AnsiStruct arg0);
  5786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5787. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate(object delegateObj, object[] p)
  5788. {
  5789. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStruct_Ref_Delegate)delegateObj;
  5790. object result = null;
  5791. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.AnsiStruct)p[0];
  5792. d(ref arg0);
  5793. return result;
  5794. }
  5795. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5796. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5797. private delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate(ref Burst.Compiler.IL.Tests.TestStructs.AnsiStructWithMarshalAs arg0);
  5798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5799. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate(object delegateObj, object[] p)
  5800. {
  5801. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestStructs_AnsiStructWithMarshalAs_Ref_Delegate)delegateObj;
  5802. object result = null;
  5803. var arg0 = (Burst.Compiler.IL.Tests.TestStructs.AnsiStructWithMarshalAs)p[0];
  5804. d(ref arg0);
  5805. return result;
  5806. }
  5807. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5808. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5809. private unsafe delegate void R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate(Burst.Compiler.IL.Tests.TestTestInfrastructure.SomeStruct* arg0);
  5810. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5811. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate(object delegateObj, object[] p)
  5812. {
  5813. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_TestTestInfrastructure_SomeStruct_Ptr_Delegate)delegateObj;
  5814. object result = null;
  5815. var arg0 = (Burst.Compiler.IL.Tests.TestTestInfrastructure.SomeStruct*)(IntPtr)p[0];
  5816. d(arg0);
  5817. return result;
  5818. }
  5819. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5820. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5821. 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);
  5822. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5823. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  5824. {
  5825. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate)delegateObj;
  5826. object result = null;
  5827. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[0];
  5828. d(ref arg0);
  5829. return result;
  5830. }
  5831. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5832. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5833. 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);
  5834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5835. 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)
  5836. {
  5837. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_V128Pair_Ptr_1_Int32_Delegate)delegateObj;
  5838. object result = null;
  5839. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.V128Pair*)(IntPtr)p[0];
  5840. var arg1 = (int)p[1];
  5841. d(arg0, arg1);
  5842. return result;
  5843. }
  5844. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5845. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5846. 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);
  5847. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5848. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  5849. {
  5850. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate)delegateObj;
  5851. object result = null;
  5852. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[0];
  5853. d(ref arg0);
  5854. return result;
  5855. }
  5856. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5857. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5858. 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);
  5859. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5860. private unsafe static object Call_R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate(object delegateObj, object[] p)
  5861. {
  5862. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_Delegate)delegateObj;
  5863. object result = null;
  5864. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues)p[0];
  5865. d(ref arg0);
  5866. return result;
  5867. }
  5868. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5869. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5870. 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);
  5871. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5872. 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)
  5873. {
  5874. var d = (R_System_Void_P_0_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_InMemoryValues_Ref_1_Int32_Delegate)delegateObj;
  5875. object result = null;
  5876. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues)p[0];
  5877. var arg1 = (int)p[1];
  5878. d(ref arg0, arg1);
  5879. return result;
  5880. }
  5881. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5882. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5883. 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);
  5884. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5885. 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)
  5886. {
  5887. 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;
  5888. object result = null;
  5889. var arg0 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.TransposeResult*)(IntPtr)p[0];
  5890. var arg1 = (float)p[1];
  5891. var arg2 = (float)p[2];
  5892. var arg3 = (float)p[3];
  5893. var arg4 = (float)p[4];
  5894. d(arg0, arg1, arg2, arg3, arg4);
  5895. return result;
  5896. }
  5897. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5898. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5899. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate(Unity.Burst.Intrinsics.f16* arg0);
  5900. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5901. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate(object delegateObj, object[] p)
  5902. {
  5903. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_Delegate)delegateObj;
  5904. object result = null;
  5905. var arg0 = (Unity.Burst.Intrinsics.f16*)(IntPtr)p[0];
  5906. d(arg0);
  5907. return result;
  5908. }
  5909. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5910. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5911. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate(Unity.Burst.Intrinsics.f16* arg0, float arg1);
  5912. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5913. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  5914. {
  5915. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Single_Delegate)delegateObj;
  5916. object result = null;
  5917. var arg0 = (Unity.Burst.Intrinsics.f16*)(IntPtr)p[0];
  5918. var arg1 = (float)p[1];
  5919. d(arg0, arg1);
  5920. return result;
  5921. }
  5922. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5923. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5924. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.f16* arg0, int arg1);
  5925. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5926. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  5927. {
  5928. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_f16_Ptr_1_Int32_Delegate)delegateObj;
  5929. object result = null;
  5930. var arg0 = (Unity.Burst.Intrinsics.f16*)(IntPtr)p[0];
  5931. var arg1 = (int)p[1];
  5932. d(arg0, arg1);
  5933. return result;
  5934. }
  5935. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5936. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5937. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(Unity.Burst.Intrinsics.v128* arg0);
  5938. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5939. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate(object delegateObj, object[] p)
  5940. {
  5941. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_Delegate)delegateObj;
  5942. object result = null;
  5943. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5944. d(arg0);
  5945. return result;
  5946. }
  5947. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5948. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5949. 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);
  5950. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5951. 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)
  5952. {
  5953. 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;
  5954. object result = null;
  5955. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5956. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[1];
  5957. var arg2 = (int)p[2];
  5958. d(arg0, ref arg1, arg2);
  5959. return result;
  5960. }
  5961. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5962. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5963. 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);
  5964. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5965. 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)
  5966. {
  5967. 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;
  5968. object result = null;
  5969. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5970. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  5971. var arg2 = (int)p[2];
  5972. d(arg0, ref arg1, arg2);
  5973. return result;
  5974. }
  5975. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5976. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5977. 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);
  5978. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5979. 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)
  5980. {
  5981. 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;
  5982. object result = null;
  5983. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5984. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  5985. var arg2 = (int)p[2];
  5986. var arg3 = (int)p[3];
  5987. d(arg0, ref arg1, arg2, arg3);
  5988. return result;
  5989. }
  5990. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  5991. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5992. 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);
  5993. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  5994. 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)
  5995. {
  5996. 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;
  5997. object result = null;
  5998. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  5999. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[1];
  6000. var arg2 = (int)p[2];
  6001. d(arg0, ref arg1, arg2);
  6002. return result;
  6003. }
  6004. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6005. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6006. 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);
  6007. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6008. 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)
  6009. {
  6010. 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;
  6011. object result = null;
  6012. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6013. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.InMemoryValues)p[1];
  6014. var arg2 = (int)p[2];
  6015. d(arg0, ref arg1, arg2);
  6016. return result;
  6017. }
  6018. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6019. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6020. 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);
  6021. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6022. 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)
  6023. {
  6024. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithV128_Ref_Delegate)delegateObj;
  6025. object result = null;
  6026. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6027. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithV128)p[1];
  6028. d(arg0, ref arg1);
  6029. return result;
  6030. }
  6031. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6032. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6033. 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);
  6034. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6035. 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)
  6036. {
  6037. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsX86_StructWithVector_Ref_Delegate)delegateObj;
  6038. object result = null;
  6039. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6040. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[1];
  6041. d(arg0, ref arg1);
  6042. return result;
  6043. }
  6044. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6045. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6046. 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);
  6047. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6048. 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)
  6049. {
  6050. 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;
  6051. object result = null;
  6052. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6053. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[1];
  6054. var arg2 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsX86.StructWithVector)p[2];
  6055. d(arg0, ref arg1, ref arg2);
  6056. return result;
  6057. }
  6058. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6059. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6060. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate(Unity.Burst.Intrinsics.v128* arg0, double arg1);
  6061. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6062. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  6063. {
  6064. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_Delegate)delegateObj;
  6065. object result = null;
  6066. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6067. var arg1 = (double)p[1];
  6068. d(arg0, arg1);
  6069. return result;
  6070. }
  6071. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6072. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6073. 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);
  6074. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6075. 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)
  6076. {
  6077. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6078. object result = null;
  6079. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6080. var arg1 = (double)p[1];
  6081. var arg2 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[2];
  6082. d(arg0, arg1, arg2);
  6083. return result;
  6084. }
  6085. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6086. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6087. 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);
  6088. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6089. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate(object delegateObj, object[] p)
  6090. {
  6091. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Double_Delegate)delegateObj;
  6092. object result = null;
  6093. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6094. var arg1 = (double)p[1];
  6095. var arg2 = (double)p[2];
  6096. d(arg0, arg1, arg2);
  6097. return result;
  6098. }
  6099. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6100. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6101. 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);
  6102. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6103. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate(object delegateObj, object[] p)
  6104. {
  6105. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Double_2_Int32_Delegate)delegateObj;
  6106. object result = null;
  6107. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6108. var arg1 = (double)p[1];
  6109. var arg2 = (int)p[2];
  6110. d(arg0, arg1, arg2);
  6111. return result;
  6112. }
  6113. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6114. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6115. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate(Unity.Burst.Intrinsics.v128* arg0, float arg1);
  6116. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6117. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  6118. {
  6119. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_Delegate)delegateObj;
  6120. object result = null;
  6121. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6122. var arg1 = (float)p[1];
  6123. d(arg0, arg1);
  6124. return result;
  6125. }
  6126. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6127. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6128. 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);
  6129. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6130. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate(object delegateObj, object[] p)
  6131. {
  6132. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_Delegate)delegateObj;
  6133. object result = null;
  6134. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6135. var arg1 = (float)p[1];
  6136. var arg2 = (float)p[2];
  6137. d(arg0, arg1, arg2);
  6138. return result;
  6139. }
  6140. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6141. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6142. 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);
  6143. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6144. 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)
  6145. {
  6146. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Single_3_Single_4_Single_Delegate)delegateObj;
  6147. object result = null;
  6148. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6149. var arg1 = (float)p[1];
  6150. var arg2 = (float)p[2];
  6151. var arg3 = (float)p[3];
  6152. var arg4 = (float)p[4];
  6153. d(arg0, arg1, arg2, arg3, arg4);
  6154. return result;
  6155. }
  6156. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6157. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6158. 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);
  6159. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6160. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate(object delegateObj, object[] p)
  6161. {
  6162. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Single_2_Int32_Delegate)delegateObj;
  6163. object result = null;
  6164. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6165. var arg1 = (float)p[1];
  6166. var arg2 = (int)p[2];
  6167. d(arg0, arg1, arg2);
  6168. return result;
  6169. }
  6170. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6171. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6172. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.v128* arg0, int arg1);
  6173. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6174. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6175. {
  6176. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_Delegate)delegateObj;
  6177. object result = null;
  6178. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6179. var arg1 = (int)p[1];
  6180. d(arg0, arg1);
  6181. return result;
  6182. }
  6183. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6184. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6185. 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);
  6186. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6187. 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)
  6188. {
  6189. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6190. object result = null;
  6191. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6192. var arg1 = (int)p[1];
  6193. var arg2 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[2];
  6194. d(arg0, arg1, arg2);
  6195. return result;
  6196. }
  6197. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6198. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6199. 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);
  6200. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6201. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  6202. {
  6203. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  6204. object result = null;
  6205. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6206. var arg1 = (int)p[1];
  6207. var arg2 = (int)p[2];
  6208. d(arg0, arg1, arg2);
  6209. return result;
  6210. }
  6211. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6212. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6213. 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);
  6214. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6215. 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)
  6216. {
  6217. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate)delegateObj;
  6218. object result = null;
  6219. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6220. var arg1 = (int)p[1];
  6221. var arg2 = (int)p[2];
  6222. var arg3 = (int)p[3];
  6223. var arg4 = (int)p[4];
  6224. d(arg0, arg1, arg2, arg3, arg4);
  6225. return result;
  6226. }
  6227. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6228. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6229. 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);
  6230. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6231. 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)
  6232. {
  6233. 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;
  6234. object result = null;
  6235. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6236. var arg1 = (int)p[1];
  6237. var arg2 = (int)p[2];
  6238. var arg3 = (int)p[3];
  6239. var arg4 = (int)p[4];
  6240. var arg5 = (int)p[5];
  6241. var arg6 = (int)p[6];
  6242. d(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
  6243. return result;
  6244. }
  6245. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6246. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6247. 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);
  6248. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6249. 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)
  6250. {
  6251. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6252. object result = null;
  6253. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6254. var arg1 = (int)p[1];
  6255. var arg2 = (uint)p[2];
  6256. var arg3 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[3];
  6257. d(arg0, arg1, arg2, arg3);
  6258. return result;
  6259. }
  6260. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6262. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate(Unity.Burst.Intrinsics.v128* arg0, long arg1);
  6263. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6264. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate(object delegateObj, object[] p)
  6265. {
  6266. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_Delegate)delegateObj;
  6267. object result = null;
  6268. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6269. var arg1 = (long)p[1];
  6270. d(arg0, arg1);
  6271. return result;
  6272. }
  6273. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6274. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6275. 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);
  6276. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6277. 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)
  6278. {
  6279. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_Int64_2_UInt64_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6280. object result = null;
  6281. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6282. var arg1 = (long)p[1];
  6283. var arg2 = (ulong)p[2];
  6284. var arg3 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[3];
  6285. d(arg0, arg1, arg2, arg3);
  6286. return result;
  6287. }
  6288. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6289. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6290. 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);
  6291. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6292. 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)
  6293. {
  6294. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate)delegateObj;
  6295. object result = null;
  6296. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6297. var arg1 = (sbyte)p[1];
  6298. var arg2 = (sbyte)p[2];
  6299. var arg3 = (sbyte)p[3];
  6300. var arg4 = (sbyte)p[4];
  6301. d(arg0, arg1, arg2, arg3, arg4);
  6302. return result;
  6303. }
  6304. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6305. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6306. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate(Unity.Burst.Intrinsics.v128* arg0, uint arg1);
  6307. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6308. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate(object delegateObj, object[] p)
  6309. {
  6310. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_Delegate)delegateObj;
  6311. object result = null;
  6312. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6313. var arg1 = (uint)p[1];
  6314. d(arg0, arg1);
  6315. return result;
  6316. }
  6317. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6318. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6319. 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);
  6320. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6321. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate(object delegateObj, object[] p)
  6322. {
  6323. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_Delegate)delegateObj;
  6324. object result = null;
  6325. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6326. var arg1 = (uint)p[1];
  6327. var arg2 = (uint)p[2];
  6328. d(arg0, arg1, arg2);
  6329. return result;
  6330. }
  6331. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6332. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6333. 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);
  6334. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6335. 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)
  6336. {
  6337. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt32_2_UInt32_3_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  6338. object result = null;
  6339. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6340. var arg1 = (uint)p[1];
  6341. var arg2 = (uint)p[2];
  6342. var arg3 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[3];
  6343. d(arg0, arg1, arg2, arg3);
  6344. return result;
  6345. }
  6346. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6347. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6348. 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);
  6349. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6350. 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)
  6351. {
  6352. 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;
  6353. object result = null;
  6354. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6355. var arg1 = (uint)p[1];
  6356. var arg2 = (uint)p[2];
  6357. var arg3 = (uint)p[3];
  6358. var arg4 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[4];
  6359. d(arg0, arg1, arg2, arg3, arg4);
  6360. return result;
  6361. }
  6362. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6363. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6364. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate(Unity.Burst.Intrinsics.v128* arg0, ushort arg1);
  6365. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6366. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate(object delegateObj, object[] p)
  6367. {
  6368. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v128_Ptr_1_UInt16_Delegate)delegateObj;
  6369. object result = null;
  6370. var arg0 = (Unity.Burst.Intrinsics.v128*)(IntPtr)p[0];
  6371. var arg1 = (ushort)p[1];
  6372. d(arg0, arg1);
  6373. return result;
  6374. }
  6375. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6377. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate(Unity.Burst.Intrinsics.v256* arg0);
  6378. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6379. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate(object delegateObj, object[] p)
  6380. {
  6381. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_Delegate)delegateObj;
  6382. object result = null;
  6383. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6384. d(arg0);
  6385. return result;
  6386. }
  6387. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6389. 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);
  6390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6391. 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)
  6392. {
  6393. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX_InMemoryValues_Ref_Delegate)delegateObj;
  6394. object result = null;
  6395. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6396. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[1];
  6397. d(arg0, ref arg1);
  6398. return result;
  6399. }
  6400. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6401. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6402. 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);
  6403. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6404. 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)
  6405. {
  6406. 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;
  6407. object result = null;
  6408. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6409. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX.InMemoryValues)p[1];
  6410. var arg2 = (int)p[2];
  6411. d(arg0, ref arg1, arg2);
  6412. return result;
  6413. }
  6414. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6415. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6416. 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);
  6417. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6418. 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)
  6419. {
  6420. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_ArrayOfFrustumPlanesV256_Ref_Delegate)delegateObj;
  6421. object result = null;
  6422. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6423. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.ArrayOfFrustumPlanesV256)p[1];
  6424. d(arg0, ref arg1);
  6425. return result;
  6426. }
  6427. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6428. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6429. 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);
  6430. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6431. 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)
  6432. {
  6433. 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;
  6434. object result = null;
  6435. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6436. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  6437. var arg2 = (int)p[2];
  6438. d(arg0, ref arg1, arg2);
  6439. return result;
  6440. }
  6441. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6442. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6443. 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);
  6444. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6445. 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)
  6446. {
  6447. 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;
  6448. object result = null;
  6449. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6450. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.GatherScatterInts)p[1];
  6451. var arg2 = (int)p[2];
  6452. var arg3 = (int)p[3];
  6453. d(arg0, ref arg1, arg2, arg3);
  6454. return result;
  6455. }
  6456. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6457. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6458. 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);
  6459. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6460. 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)
  6461. {
  6462. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Burst_Compiler_IL_Tests_X86_TestInstrinsicsAVX2_InMemoryValues_Ref_Delegate)delegateObj;
  6463. object result = null;
  6464. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6465. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[1];
  6466. d(arg0, ref arg1);
  6467. return result;
  6468. }
  6469. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6470. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6471. 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);
  6472. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6473. 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)
  6474. {
  6475. 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;
  6476. object result = null;
  6477. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6478. var arg1 = (Burst.Compiler.IL.Tests.X86.TestInstrinsicsAVX2.InMemoryValues)p[1];
  6479. var arg2 = (int)p[2];
  6480. d(arg0, ref arg1, arg2);
  6481. return result;
  6482. }
  6483. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6484. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6485. 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);
  6486. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6487. 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)
  6488. {
  6489. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Unity_Burst_Intrinsics_v256_Ref_Delegate)delegateObj;
  6490. object result = null;
  6491. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6492. var arg1 = (Unity.Burst.Intrinsics.v256)p[1];
  6493. d(arg0, ref arg1);
  6494. return result;
  6495. }
  6496. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6497. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6498. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate(Unity.Burst.Intrinsics.v256* arg0, double arg1);
  6499. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6500. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  6501. {
  6502. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Double_Delegate)delegateObj;
  6503. object result = null;
  6504. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6505. var arg1 = (double)p[1];
  6506. d(arg0, arg1);
  6507. return result;
  6508. }
  6509. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6510. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6511. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate(Unity.Burst.Intrinsics.v256* arg0, float arg1);
  6512. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6513. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate(object delegateObj, object[] p)
  6514. {
  6515. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Single_Delegate)delegateObj;
  6516. object result = null;
  6517. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6518. var arg1 = (float)p[1];
  6519. d(arg0, arg1);
  6520. return result;
  6521. }
  6522. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6523. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6524. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.v256* arg0, int arg1);
  6525. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6526. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6527. {
  6528. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_Delegate)delegateObj;
  6529. object result = null;
  6530. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6531. var arg1 = (int)p[1];
  6532. d(arg0, arg1);
  6533. return result;
  6534. }
  6535. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6536. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6537. 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);
  6538. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6539. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  6540. {
  6541. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  6542. object result = null;
  6543. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6544. var arg1 = (int)p[1];
  6545. var arg2 = (int)p[2];
  6546. d(arg0, arg1, arg2);
  6547. return result;
  6548. }
  6549. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6550. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6551. 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);
  6552. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6553. 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)
  6554. {
  6555. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int32_3_Int32_Delegate)delegateObj;
  6556. object result = null;
  6557. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6558. var arg1 = (int)p[1];
  6559. var arg2 = (int)p[2];
  6560. var arg3 = (int)p[3];
  6561. d(arg0, arg1, arg2, arg3);
  6562. return result;
  6563. }
  6564. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6565. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6566. 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);
  6567. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6568. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate(object delegateObj, object[] p)
  6569. {
  6570. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_Int32_2_Int64_Delegate)delegateObj;
  6571. object result = null;
  6572. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6573. var arg1 = (int)p[1];
  6574. var arg2 = (long)p[2];
  6575. d(arg0, arg1, arg2);
  6576. return result;
  6577. }
  6578. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6579. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6580. 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);
  6581. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6582. 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)
  6583. {
  6584. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_SByte_2_SByte_3_SByte_4_SByte_Delegate)delegateObj;
  6585. object result = null;
  6586. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6587. var arg1 = (sbyte)p[1];
  6588. var arg2 = (sbyte)p[2];
  6589. var arg3 = (sbyte)p[3];
  6590. var arg4 = (sbyte)p[4];
  6591. d(arg0, arg1, arg2, arg3, arg4);
  6592. return result;
  6593. }
  6594. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6595. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6596. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate(Unity.Burst.Intrinsics.v256* arg0, uint arg1);
  6597. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6598. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate(object delegateObj, object[] p)
  6599. {
  6600. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_Delegate)delegateObj;
  6601. object result = null;
  6602. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6603. var arg1 = (uint)p[1];
  6604. d(arg0, arg1);
  6605. return result;
  6606. }
  6607. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6608. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6609. 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);
  6610. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6611. 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)
  6612. {
  6613. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt32_2_UInt32_3_UInt32_4_UInt32_Delegate)delegateObj;
  6614. object result = null;
  6615. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6616. var arg1 = (uint)p[1];
  6617. var arg2 = (uint)p[2];
  6618. var arg3 = (uint)p[3];
  6619. var arg4 = (uint)p[4];
  6620. d(arg0, arg1, arg2, arg3, arg4);
  6621. return result;
  6622. }
  6623. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6624. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6625. private unsafe delegate void R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate(Unity.Burst.Intrinsics.v256* arg0, ulong arg1);
  6626. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6627. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate(object delegateObj, object[] p)
  6628. {
  6629. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt64_Delegate)delegateObj;
  6630. object result = null;
  6631. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6632. var arg1 = (ulong)p[1];
  6633. d(arg0, arg1);
  6634. return result;
  6635. }
  6636. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6637. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6638. 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);
  6639. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6640. 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)
  6641. {
  6642. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v256_Ptr_1_UInt16_2_UInt16_3_UInt16_4_UInt16_Delegate)delegateObj;
  6643. object result = null;
  6644. var arg0 = (Unity.Burst.Intrinsics.v256*)(IntPtr)p[0];
  6645. var arg1 = (ushort)p[1];
  6646. var arg2 = (ushort)p[2];
  6647. var arg3 = (ushort)p[3];
  6648. var arg4 = (ushort)p[4];
  6649. d(arg0, arg1, arg2, arg3, arg4);
  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_v64_Ptr_1_Int32_Delegate(Unity.Burst.Intrinsics.v64* arg0, int arg1);
  6655. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6656. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6657. {
  6658. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_Delegate)delegateObj;
  6659. object result = null;
  6660. var arg0 = (Unity.Burst.Intrinsics.v64*)(IntPtr)p[0];
  6661. var arg1 = (int)p[1];
  6662. d(arg0, arg1);
  6663. return result;
  6664. }
  6665. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6666. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6667. 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);
  6668. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6669. private unsafe static object Call_R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate(object delegateObj, object[] p)
  6670. {
  6671. var d = (R_System_Void_P_0_Unity_Burst_Intrinsics_v64_Ptr_1_Int32_2_Single_Delegate)delegateObj;
  6672. object result = null;
  6673. var arg0 = (Unity.Burst.Intrinsics.v64*)(IntPtr)p[0];
  6674. var arg1 = (int)p[1];
  6675. var arg2 = (float)p[2];
  6676. d(arg0, arg1, arg2);
  6677. return result;
  6678. }
  6679. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6680. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6681. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate(Unity.Mathematics.double2* arg0);
  6682. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6683. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate(object delegateObj, object[] p)
  6684. {
  6685. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_Delegate)delegateObj;
  6686. object result = null;
  6687. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  6688. d(arg0);
  6689. return result;
  6690. }
  6691. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6692. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6693. 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);
  6694. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6695. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  6696. {
  6697. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  6698. object result = null;
  6699. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  6700. var arg1 = (Unity.Mathematics.double2)p[1];
  6701. d(arg0, ref arg1);
  6702. return result;
  6703. }
  6704. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6705. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6706. 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);
  6707. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6708. 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)
  6709. {
  6710. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_double2_Ref_2_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  6711. object result = null;
  6712. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  6713. var arg1 = (Unity.Mathematics.double2)p[1];
  6714. var arg2 = (Unity.Mathematics.double2)p[2];
  6715. d(arg0, ref arg1, ref arg2);
  6716. return result;
  6717. }
  6718. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6719. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6720. 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);
  6721. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6722. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate(object delegateObj, object[] p)
  6723. {
  6724. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate)delegateObj;
  6725. object result = null;
  6726. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  6727. var arg1 = (Unity.Mathematics.half2)p[1];
  6728. d(arg0, ref arg1);
  6729. return result;
  6730. }
  6731. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6732. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6733. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate(Unity.Mathematics.double2* arg0, int arg1);
  6734. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6735. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6736. {
  6737. var d = (R_System_Void_P_0_Unity_Mathematics_double2_Ptr_1_Int32_Delegate)delegateObj;
  6738. object result = null;
  6739. var arg0 = (Unity.Mathematics.double2*)(IntPtr)p[0];
  6740. var arg1 = (int)p[1];
  6741. d(arg0, arg1);
  6742. return result;
  6743. }
  6744. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6745. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6746. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate(Unity.Mathematics.double2x2* arg0);
  6747. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6748. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate(object delegateObj, object[] p)
  6749. {
  6750. var d = (R_System_Void_P_0_Unity_Mathematics_double2x2_Ptr_Delegate)delegateObj;
  6751. object result = null;
  6752. var arg0 = (Unity.Mathematics.double2x2*)(IntPtr)p[0];
  6753. d(arg0);
  6754. return result;
  6755. }
  6756. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6757. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6758. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate(Unity.Mathematics.double3* arg0);
  6759. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6760. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate(object delegateObj, object[] p)
  6761. {
  6762. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_Delegate)delegateObj;
  6763. object result = null;
  6764. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  6765. d(arg0);
  6766. return result;
  6767. }
  6768. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6769. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6770. 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);
  6771. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6772. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  6773. {
  6774. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  6775. object result = null;
  6776. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  6777. var arg1 = (Unity.Mathematics.double3)p[1];
  6778. d(arg0, ref arg1);
  6779. return result;
  6780. }
  6781. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6782. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6783. 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);
  6784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6785. 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)
  6786. {
  6787. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_double3_Ref_2_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  6788. object result = null;
  6789. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  6790. var arg1 = (Unity.Mathematics.double3)p[1];
  6791. var arg2 = (Unity.Mathematics.double3)p[2];
  6792. d(arg0, ref arg1, ref arg2);
  6793. return result;
  6794. }
  6795. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6796. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6797. 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);
  6798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6799. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate(object delegateObj, object[] p)
  6800. {
  6801. var d = (R_System_Void_P_0_Unity_Mathematics_double3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate)delegateObj;
  6802. object result = null;
  6803. var arg0 = (Unity.Mathematics.double3*)(IntPtr)p[0];
  6804. var arg1 = (Unity.Mathematics.half3)p[1];
  6805. d(arg0, ref arg1);
  6806. return result;
  6807. }
  6808. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6809. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6810. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate(Unity.Mathematics.double4* arg0);
  6811. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6812. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate(object delegateObj, object[] p)
  6813. {
  6814. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_Delegate)delegateObj;
  6815. object result = null;
  6816. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6817. d(arg0);
  6818. return result;
  6819. }
  6820. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6821. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6822. 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);
  6823. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6824. 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)
  6825. {
  6826. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_DoublePointer_Ref_Delegate)delegateObj;
  6827. object result = null;
  6828. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6829. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer)p[1];
  6830. d(arg0, ref arg1);
  6831. return result;
  6832. }
  6833. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6835. 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);
  6836. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6837. 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)
  6838. {
  6839. 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;
  6840. object result = null;
  6841. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6842. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer)p[1];
  6843. var arg2 = (Burst.Compiler.IL.Tests.VectorsMaths.DoublePointer)p[2];
  6844. d(arg0, ref arg1, ref arg2);
  6845. return result;
  6846. }
  6847. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6848. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6849. 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);
  6850. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6851. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  6852. {
  6853. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  6854. object result = null;
  6855. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6856. var arg1 = (Unity.Mathematics.double4)p[1];
  6857. d(arg0, ref arg1);
  6858. return result;
  6859. }
  6860. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6861. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6862. 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);
  6863. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6864. 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)
  6865. {
  6866. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_double4_Ref_2_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  6867. object result = null;
  6868. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6869. var arg1 = (Unity.Mathematics.double4)p[1];
  6870. var arg2 = (Unity.Mathematics.double4)p[2];
  6871. d(arg0, ref arg1, ref arg2);
  6872. return result;
  6873. }
  6874. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6875. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6876. 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);
  6877. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6878. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate(object delegateObj, object[] p)
  6879. {
  6880. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate)delegateObj;
  6881. object result = null;
  6882. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6883. var arg1 = (Unity.Mathematics.half4)p[1];
  6884. d(arg0, ref arg1);
  6885. return result;
  6886. }
  6887. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6888. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6889. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate(Unity.Mathematics.double4* arg0, int arg1);
  6890. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6891. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  6892. {
  6893. var d = (R_System_Void_P_0_Unity_Mathematics_double4_Ptr_1_Int32_Delegate)delegateObj;
  6894. object result = null;
  6895. var arg0 = (Unity.Mathematics.double4*)(IntPtr)p[0];
  6896. var arg1 = (int)p[1];
  6897. d(arg0, arg1);
  6898. return result;
  6899. }
  6900. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6901. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6902. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate(Unity.Mathematics.float2* arg0);
  6903. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6904. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate(object delegateObj, object[] p)
  6905. {
  6906. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_Delegate)delegateObj;
  6907. object result = null;
  6908. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  6909. d(arg0);
  6910. return result;
  6911. }
  6912. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6913. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6914. 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);
  6915. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6916. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  6917. {
  6918. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  6919. object result = null;
  6920. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  6921. var arg1 = (Unity.Mathematics.float2)p[1];
  6922. d(arg0, ref arg1);
  6923. return result;
  6924. }
  6925. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6926. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6927. 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);
  6928. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6929. 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)
  6930. {
  6931. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_float2_Ref_2_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  6932. object result = null;
  6933. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  6934. var arg1 = (Unity.Mathematics.float2)p[1];
  6935. var arg2 = (Unity.Mathematics.float2)p[2];
  6936. d(arg0, ref arg1, ref arg2);
  6937. return result;
  6938. }
  6939. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6940. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6941. 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);
  6942. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6943. 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)
  6944. {
  6945. 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;
  6946. object result = null;
  6947. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  6948. var arg1 = (Unity.Mathematics.float2)p[1];
  6949. var arg2 = (Unity.Mathematics.float2)p[2];
  6950. var arg3 = (Unity.Mathematics.math.ShuffleComponent)p[3];
  6951. d(arg0, ref arg1, ref arg2, arg3);
  6952. return result;
  6953. }
  6954. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6955. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6956. 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);
  6957. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6958. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate(object delegateObj, object[] p)
  6959. {
  6960. var d = (R_System_Void_P_0_Unity_Mathematics_float2_Ptr_1_Unity_Mathematics_half2_Ref_Delegate)delegateObj;
  6961. object result = null;
  6962. var arg0 = (Unity.Mathematics.float2*)(IntPtr)p[0];
  6963. var arg1 = (Unity.Mathematics.half2)p[1];
  6964. d(arg0, ref arg1);
  6965. return result;
  6966. }
  6967. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6968. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6969. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate(Unity.Mathematics.float3* arg0);
  6970. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6971. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate(object delegateObj, object[] p)
  6972. {
  6973. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_Delegate)delegateObj;
  6974. object result = null;
  6975. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  6976. d(arg0);
  6977. return result;
  6978. }
  6979. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6980. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6981. 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);
  6982. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6983. 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)
  6984. {
  6985. 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;
  6986. object result = null;
  6987. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  6988. var arg1 = (Unity.Mathematics.float2)p[1];
  6989. var arg2 = (Unity.Mathematics.float2)p[2];
  6990. var arg3 = (Unity.Mathematics.math.ShuffleComponent)p[3];
  6991. d(arg0, ref arg1, ref arg2, arg3);
  6992. return result;
  6993. }
  6994. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6995. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6996. 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);
  6997. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  6998. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  6999. {
  7000. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7001. object result = null;
  7002. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7003. var arg1 = (Unity.Mathematics.float3)p[1];
  7004. d(arg0, ref arg1);
  7005. return result;
  7006. }
  7007. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7008. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7009. 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);
  7010. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7011. 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)
  7012. {
  7013. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_float3_Ref_2_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7014. object result = null;
  7015. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7016. var arg1 = (Unity.Mathematics.float3)p[1];
  7017. var arg2 = (Unity.Mathematics.float3)p[2];
  7018. d(arg0, ref arg1, ref arg2);
  7019. return result;
  7020. }
  7021. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7022. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7023. 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);
  7024. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7025. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate(object delegateObj, object[] p)
  7026. {
  7027. var d = (R_System_Void_P_0_Unity_Mathematics_float3_Ptr_1_Unity_Mathematics_half3_Ref_Delegate)delegateObj;
  7028. object result = null;
  7029. var arg0 = (Unity.Mathematics.float3*)(IntPtr)p[0];
  7030. var arg1 = (Unity.Mathematics.half3)p[1];
  7031. d(arg0, ref arg1);
  7032. return result;
  7033. }
  7034. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7035. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7036. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate(Unity.Mathematics.float4* arg0);
  7037. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7038. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate(object delegateObj, object[] p)
  7039. {
  7040. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_Delegate)delegateObj;
  7041. object result = null;
  7042. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7043. d(arg0);
  7044. return result;
  7045. }
  7046. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7047. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7048. 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);
  7049. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7050. 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)
  7051. {
  7052. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Burst_Compiler_IL_Tests_VectorsMaths_FloatPointer_Ref_Delegate)delegateObj;
  7053. object result = null;
  7054. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7055. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer)p[1];
  7056. d(arg0, ref arg1);
  7057. return result;
  7058. }
  7059. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7060. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7061. 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);
  7062. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7063. 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)
  7064. {
  7065. 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;
  7066. object result = null;
  7067. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7068. var arg1 = (Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer)p[1];
  7069. var arg2 = (Burst.Compiler.IL.Tests.VectorsMaths.FloatPointer)p[2];
  7070. d(arg0, ref arg1, ref arg2);
  7071. return result;
  7072. }
  7073. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7074. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7075. 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);
  7076. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7077. 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)
  7078. {
  7079. 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;
  7080. object result = null;
  7081. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7082. var arg1 = (Unity.Mathematics.float2)p[1];
  7083. var arg2 = (Unity.Mathematics.float2)p[2];
  7084. var arg3 = (Unity.Mathematics.math.ShuffleComponent)p[3];
  7085. d(arg0, ref arg1, ref arg2, arg3);
  7086. return result;
  7087. }
  7088. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7089. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7090. 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);
  7091. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7092. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7093. {
  7094. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7095. object result = null;
  7096. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7097. var arg1 = (Unity.Mathematics.float4)p[1];
  7098. d(arg0, ref arg1);
  7099. return result;
  7100. }
  7101. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7102. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7103. 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);
  7104. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7105. 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)
  7106. {
  7107. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_float4_Ref_2_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7108. object result = null;
  7109. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7110. var arg1 = (Unity.Mathematics.float4)p[1];
  7111. var arg2 = (Unity.Mathematics.float4)p[2];
  7112. d(arg0, ref arg1, ref arg2);
  7113. return result;
  7114. }
  7115. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7116. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7117. 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);
  7118. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7119. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate(object delegateObj, object[] p)
  7120. {
  7121. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Unity_Mathematics_half4_Ref_Delegate)delegateObj;
  7122. object result = null;
  7123. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7124. var arg1 = (Unity.Mathematics.half4)p[1];
  7125. d(arg0, ref arg1);
  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_Mathematics_float4_Ptr_1_Int32_Delegate(Unity.Mathematics.float4* arg0, int arg1);
  7131. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7132. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7133. {
  7134. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_Int32_Delegate)delegateObj;
  7135. object result = null;
  7136. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7137. var arg1 = (int)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_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate(Unity.Mathematics.float4* arg0, uint arg1, Unity.Burst.Intrinsics.X86.MXCSRBits arg2);
  7144. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7145. 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)
  7146. {
  7147. var d = (R_System_Void_P_0_Unity_Mathematics_float4_Ptr_1_UInt32_2_Unity_Burst_Intrinsics_X86_MXCSRBits_Delegate)delegateObj;
  7148. object result = null;
  7149. var arg0 = (Unity.Mathematics.float4*)(IntPtr)p[0];
  7150. var arg1 = (uint)p[1];
  7151. var arg2 = (Unity.Burst.Intrinsics.X86.MXCSRBits)p[2];
  7152. d(arg0, arg1, arg2);
  7153. return result;
  7154. }
  7155. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7156. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7157. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate(Unity.Mathematics.float4x2* arg0, int arg1);
  7158. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7159. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7160. {
  7161. var d = (R_System_Void_P_0_Unity_Mathematics_float4x2_Ptr_1_Int32_Delegate)delegateObj;
  7162. object result = null;
  7163. var arg0 = (Unity.Mathematics.float4x2*)(IntPtr)p[0];
  7164. var arg1 = (int)p[1];
  7165. d(arg0, arg1);
  7166. return result;
  7167. }
  7168. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7169. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7170. 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);
  7171. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7172. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate(object delegateObj, object[] p)
  7173. {
  7174. var d = (R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_double2_Ref_Delegate)delegateObj;
  7175. object result = null;
  7176. var arg0 = (Unity.Mathematics.half2*)(IntPtr)p[0];
  7177. var arg1 = (Unity.Mathematics.double2)p[1];
  7178. d(arg0, ref arg1);
  7179. return result;
  7180. }
  7181. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7182. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7183. 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);
  7184. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7185. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  7186. {
  7187. var d = (R_System_Void_P_0_Unity_Mathematics_half2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  7188. object result = null;
  7189. var arg0 = (Unity.Mathematics.half2*)(IntPtr)p[0];
  7190. var arg1 = (Unity.Mathematics.float2)p[1];
  7191. d(arg0, ref arg1);
  7192. return result;
  7193. }
  7194. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7195. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7196. 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);
  7197. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7198. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate(object delegateObj, object[] p)
  7199. {
  7200. var d = (R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_double3_Ref_Delegate)delegateObj;
  7201. object result = null;
  7202. var arg0 = (Unity.Mathematics.half3*)(IntPtr)p[0];
  7203. var arg1 = (Unity.Mathematics.double3)p[1];
  7204. d(arg0, ref arg1);
  7205. return result;
  7206. }
  7207. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7208. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7209. 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);
  7210. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7211. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  7212. {
  7213. var d = (R_System_Void_P_0_Unity_Mathematics_half3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7214. object result = null;
  7215. var arg0 = (Unity.Mathematics.half3*)(IntPtr)p[0];
  7216. var arg1 = (Unity.Mathematics.float3)p[1];
  7217. d(arg0, ref arg1);
  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_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(Unity.Mathematics.half4* arg0, ref Unity.Mathematics.double4 arg1);
  7223. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7224. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate(object delegateObj, object[] p)
  7225. {
  7226. var d = (R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_double4_Ref_Delegate)delegateObj;
  7227. object result = null;
  7228. var arg0 = (Unity.Mathematics.half4*)(IntPtr)p[0];
  7229. var arg1 = (Unity.Mathematics.double4)p[1];
  7230. d(arg0, ref arg1);
  7231. return result;
  7232. }
  7233. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7234. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7235. 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);
  7236. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7237. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7238. {
  7239. var d = (R_System_Void_P_0_Unity_Mathematics_half4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7240. object result = null;
  7241. var arg0 = (Unity.Mathematics.half4*)(IntPtr)p[0];
  7242. var arg1 = (Unity.Mathematics.float4)p[1];
  7243. d(arg0, ref arg1);
  7244. return result;
  7245. }
  7246. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7247. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7248. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate(Unity.Mathematics.int4* arg0);
  7249. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7250. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate(object delegateObj, object[] p)
  7251. {
  7252. var d = (R_System_Void_P_0_Unity_Mathematics_int4_Ptr_Delegate)delegateObj;
  7253. object result = null;
  7254. var arg0 = (Unity.Mathematics.int4*)(IntPtr)p[0];
  7255. d(arg0);
  7256. return result;
  7257. }
  7258. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7259. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7260. private unsafe delegate void R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate(Unity.Mathematics.quaternion* arg0);
  7261. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7262. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate(object delegateObj, object[] p)
  7263. {
  7264. var d = (R_System_Void_P_0_Unity_Mathematics_quaternion_Ptr_Delegate)delegateObj;
  7265. object result = null;
  7266. var arg0 = (Unity.Mathematics.quaternion*)(IntPtr)p[0];
  7267. d(arg0);
  7268. return result;
  7269. }
  7270. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7271. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7272. 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);
  7273. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7274. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate(object delegateObj, object[] p)
  7275. {
  7276. var d = (R_System_Void_P_0_Unity_Mathematics_uint2_Ptr_1_Unity_Mathematics_float2_Ref_Delegate)delegateObj;
  7277. object result = null;
  7278. var arg0 = (Unity.Mathematics.uint2*)(IntPtr)p[0];
  7279. var arg1 = (Unity.Mathematics.float2)p[1];
  7280. d(arg0, ref arg1);
  7281. return result;
  7282. }
  7283. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7284. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7285. 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);
  7286. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7287. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate(object delegateObj, object[] p)
  7288. {
  7289. var d = (R_System_Void_P_0_Unity_Mathematics_uint3_Ptr_1_Unity_Mathematics_float3_Ref_Delegate)delegateObj;
  7290. object result = null;
  7291. var arg0 = (Unity.Mathematics.uint3*)(IntPtr)p[0];
  7292. var arg1 = (Unity.Mathematics.float3)p[1];
  7293. d(arg0, ref arg1);
  7294. return result;
  7295. }
  7296. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7297. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7298. 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);
  7299. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7300. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate(object delegateObj, object[] p)
  7301. {
  7302. var d = (R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_float4_Ref_Delegate)delegateObj;
  7303. object result = null;
  7304. var arg0 = (Unity.Mathematics.uint4*)(IntPtr)p[0];
  7305. var arg1 = (Unity.Mathematics.float4)p[1];
  7306. d(arg0, ref arg1);
  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_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate(Unity.Mathematics.uint4* arg0, ref Unity.Mathematics.uint4 arg1);
  7312. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7313. private unsafe static object Call_R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate(object delegateObj, object[] p)
  7314. {
  7315. var d = (R_System_Void_P_0_Unity_Mathematics_uint4_Ptr_1_Unity_Mathematics_uint4_Ref_Delegate)delegateObj;
  7316. object result = null;
  7317. var arg0 = (Unity.Mathematics.uint4*)(IntPtr)p[0];
  7318. var arg1 = (Unity.Mathematics.uint4)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 delegate void R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate(ref UnityBenchShared.DivisionByScalar arg0);
  7325. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7326. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate(object delegateObj, object[] p)
  7327. {
  7328. var d = (R_System_Void_P_0_UnityBenchShared_DivisionByScalar_Ref_Delegate)delegateObj;
  7329. object result = null;
  7330. var arg0 = (UnityBenchShared.DivisionByScalar)p[0];
  7331. d(ref arg0);
  7332. return result;
  7333. }
  7334. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7335. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7336. private delegate void R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate(ref UnityBenchShared.IntToFloatPenalty arg0);
  7337. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7338. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate(object delegateObj, object[] p)
  7339. {
  7340. var d = (R_System_Void_P_0_UnityBenchShared_IntToFloatPenalty_Ref_Delegate)delegateObj;
  7341. object result = null;
  7342. var arg0 = (UnityBenchShared.IntToFloatPenalty)p[0];
  7343. d(ref arg0);
  7344. return result;
  7345. }
  7346. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7347. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7348. private delegate void R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate(ref UnityBenchShared.PartialWrite arg0);
  7349. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7350. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate(object delegateObj, object[] p)
  7351. {
  7352. var d = (R_System_Void_P_0_UnityBenchShared_PartialWrite_Ref_Delegate)delegateObj;
  7353. object result = null;
  7354. var arg0 = (UnityBenchShared.PartialWrite)p[0];
  7355. d(ref arg0);
  7356. return result;
  7357. }
  7358. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7359. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7360. private delegate void R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate(ref UnityBenchShared.PartialWriteWorkaround arg0);
  7361. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7362. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate(object delegateObj, object[] p)
  7363. {
  7364. var d = (R_System_Void_P_0_UnityBenchShared_PartialWriteWorkaround_Ref_Delegate)delegateObj;
  7365. object result = null;
  7366. var arg0 = (UnityBenchShared.PartialWriteWorkaround)p[0];
  7367. d(ref arg0);
  7368. return result;
  7369. }
  7370. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7371. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7372. private delegate void R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate(ref UnityBenchShared.RedundantStore arg0);
  7373. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7374. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate(object delegateObj, object[] p)
  7375. {
  7376. var d = (R_System_Void_P_0_UnityBenchShared_RedundantStore_Ref_Delegate)delegateObj;
  7377. object result = null;
  7378. var arg0 = (UnityBenchShared.RedundantStore)p[0];
  7379. d(ref arg0);
  7380. return result;
  7381. }
  7382. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7383. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7384. private delegate void R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate(ref UnityBenchShared.RedundantStoreWorkaround arg0);
  7385. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7386. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate(object delegateObj, object[] p)
  7387. {
  7388. var d = (R_System_Void_P_0_UnityBenchShared_RedundantStoreWorkaround_Ref_Delegate)delegateObj;
  7389. object result = null;
  7390. var arg0 = (UnityBenchShared.RedundantStoreWorkaround)p[0];
  7391. d(ref arg0);
  7392. return result;
  7393. }
  7394. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7395. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7396. private delegate void R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate(ref UnityBenchShared.SquareRoot arg0);
  7397. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7398. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate(object delegateObj, object[] p)
  7399. {
  7400. var d = (R_System_Void_P_0_UnityBenchShared_SquareRoot_Ref_Delegate)delegateObj;
  7401. object result = null;
  7402. var arg0 = (UnityBenchShared.SquareRoot)p[0];
  7403. d(ref arg0);
  7404. return result;
  7405. }
  7406. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7407. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7408. private delegate void R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate(ref UnityBenchShared.SquareRootRecip arg0);
  7409. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7410. private unsafe static object Call_R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate(object delegateObj, object[] p)
  7411. {
  7412. var d = (R_System_Void_P_0_UnityBenchShared_SquareRootRecip_Ref_Delegate)delegateObj;
  7413. object result = null;
  7414. var arg0 = (UnityBenchShared.SquareRootRecip)p[0];
  7415. d(ref arg0);
  7416. return result;
  7417. }
  7418. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7419. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7420. private delegate void R_System_Void_P_0_Boolean_Delegate(bool arg0);
  7421. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7422. private unsafe static object Call_R_System_Void_P_0_Boolean_Delegate(object delegateObj, object[] p)
  7423. {
  7424. var d = (R_System_Void_P_0_Boolean_Delegate)delegateObj;
  7425. object result = null;
  7426. var arg0 = (bool)p[0];
  7427. d(arg0);
  7428. return result;
  7429. }
  7430. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7431. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7432. private delegate void R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate(bool arg0, ref Unity.Collections.FixedString64 arg1);
  7433. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7434. private unsafe static object Call_R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate(object delegateObj, object[] p)
  7435. {
  7436. var d = (R_System_Void_P_0_Boolean_1_Unity_Collections_FixedString64_Ref_Delegate)delegateObj;
  7437. object result = null;
  7438. var arg0 = (bool)p[0];
  7439. var arg1 = (Unity.Collections.FixedString64)p[1];
  7440. d(arg0, ref arg1);
  7441. return result;
  7442. }
  7443. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7444. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7445. private delegate void R_System_Void_P_0_Byte_Delegate(byte arg0);
  7446. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7447. private unsafe static object Call_R_System_Void_P_0_Byte_Delegate(object delegateObj, object[] p)
  7448. {
  7449. var d = (R_System_Void_P_0_Byte_Delegate)delegateObj;
  7450. object result = null;
  7451. var arg0 = (byte)p[0];
  7452. d(arg0);
  7453. return result;
  7454. }
  7455. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7456. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7457. private unsafe delegate void R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate(byte* arg0, int arg1);
  7458. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7459. private unsafe static object Call_R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7460. {
  7461. var d = (R_System_Void_P_0_Byte_Ptr_1_Int32_Delegate)delegateObj;
  7462. object result = null;
  7463. var arg0 = (byte*)(IntPtr)p[0];
  7464. var arg1 = (int)p[1];
  7465. d(arg0, arg1);
  7466. return result;
  7467. }
  7468. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7469. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7470. private delegate void R_System_Void_P_0_Double_Delegate(double arg0);
  7471. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7472. private unsafe static object Call_R_System_Void_P_0_Double_Delegate(object delegateObj, object[] p)
  7473. {
  7474. var d = (R_System_Void_P_0_Double_Delegate)delegateObj;
  7475. object result = null;
  7476. var arg0 = (double)p[0];
  7477. d(arg0);
  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_Double_Ptr_Delegate(double* arg0);
  7483. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7484. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_Delegate(object delegateObj, object[] p)
  7485. {
  7486. var d = (R_System_Void_P_0_Double_Ptr_Delegate)delegateObj;
  7487. object result = null;
  7488. var arg0 = (double*)(IntPtr)p[0];
  7489. d(arg0);
  7490. return result;
  7491. }
  7492. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7493. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7494. private unsafe delegate void R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate(double* arg0, ref Unity.Mathematics.half arg1);
  7495. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7496. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate(object delegateObj, object[] p)
  7497. {
  7498. var d = (R_System_Void_P_0_Double_Ptr_1_Unity_Mathematics_half_Ref_Delegate)delegateObj;
  7499. object result = null;
  7500. var arg0 = (double*)(IntPtr)p[0];
  7501. var arg1 = (Unity.Mathematics.half)p[1];
  7502. d(arg0, ref arg1);
  7503. return result;
  7504. }
  7505. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7506. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7507. private unsafe delegate void R_System_Void_P_0_Double_Ptr_1_Double_Delegate(double* arg0, double arg1);
  7508. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7509. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  7510. {
  7511. var d = (R_System_Void_P_0_Double_Ptr_1_Double_Delegate)delegateObj;
  7512. object result = null;
  7513. var arg0 = (double*)(IntPtr)p[0];
  7514. var arg1 = (double)p[1];
  7515. d(arg0, arg1);
  7516. return result;
  7517. }
  7518. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7519. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7520. private unsafe delegate void R_System_Void_P_0_Double_Ptr_1_Int32_Delegate(double* arg0, int arg1);
  7521. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7522. private unsafe static object Call_R_System_Void_P_0_Double_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7523. {
  7524. var d = (R_System_Void_P_0_Double_Ptr_1_Int32_Delegate)delegateObj;
  7525. object result = null;
  7526. var arg0 = (double*)(IntPtr)p[0];
  7527. var arg1 = (int)p[1];
  7528. d(arg0, arg1);
  7529. return result;
  7530. }
  7531. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7532. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7533. private delegate void R_System_Void_P_0_Single_Delegate(float arg0);
  7534. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7535. private unsafe static object Call_R_System_Void_P_0_Single_Delegate(object delegateObj, object[] p)
  7536. {
  7537. var d = (R_System_Void_P_0_Single_Delegate)delegateObj;
  7538. object result = null;
  7539. var arg0 = (float)p[0];
  7540. d(arg0);
  7541. return result;
  7542. }
  7543. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7544. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7545. private unsafe delegate void R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate(float* arg0, ref Unity.Mathematics.half arg1);
  7546. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7547. private unsafe static object Call_R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate(object delegateObj, object[] p)
  7548. {
  7549. var d = (R_System_Void_P_0_Single_Ptr_1_Unity_Mathematics_half_Ref_Delegate)delegateObj;
  7550. object result = null;
  7551. var arg0 = (float*)(IntPtr)p[0];
  7552. var arg1 = (Unity.Mathematics.half)p[1];
  7553. d(arg0, ref arg1);
  7554. return result;
  7555. }
  7556. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7557. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7558. 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);
  7559. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7560. 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)
  7561. {
  7562. var d = (R_System_Void_P_0_Single_Ptr_1_Single_Ptr_2_Single_Ptr_3_Int32_Delegate)delegateObj;
  7563. object result = null;
  7564. var arg0 = (float*)(IntPtr)p[0];
  7565. var arg1 = (float*)(IntPtr)p[1];
  7566. var arg2 = (float*)(IntPtr)p[2];
  7567. var arg3 = (int)p[3];
  7568. d(arg0, arg1, arg2, arg3);
  7569. return result;
  7570. }
  7571. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7572. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7573. private unsafe delegate void R_System_Void_P_0_Single_Ptr_1_Int32_Delegate(float* arg0, int arg1);
  7574. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7575. private unsafe static object Call_R_System_Void_P_0_Single_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7576. {
  7577. var d = (R_System_Void_P_0_Single_Ptr_1_Int32_Delegate)delegateObj;
  7578. object result = null;
  7579. var arg0 = (float*)(IntPtr)p[0];
  7580. var arg1 = (int)p[1];
  7581. d(arg0, arg1);
  7582. return result;
  7583. }
  7584. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7585. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7586. private delegate void R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate(int arg0, int arg1, int arg2);
  7587. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7588. private unsafe static object Call_R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  7589. {
  7590. var d = (R_System_Void_P_0_Int32_1_Int32_2_Int32_Delegate)delegateObj;
  7591. object result = null;
  7592. var arg0 = (int)p[0];
  7593. var arg1 = (int)p[1];
  7594. var arg2 = (int)p[2];
  7595. d(arg0, arg1, arg2);
  7596. return result;
  7597. }
  7598. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7599. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7600. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_Delegate(int* arg0);
  7601. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7602. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_Delegate(object delegateObj, object[] p)
  7603. {
  7604. var d = (R_System_Void_P_0_Int32_Ptr_Delegate)delegateObj;
  7605. object result = null;
  7606. var arg0 = (int*)(IntPtr)p[0];
  7607. d(arg0);
  7608. return result;
  7609. }
  7610. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7611. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7612. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Double_Delegate(int* arg0, double arg1);
  7613. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7614. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  7615. {
  7616. var d = (R_System_Void_P_0_Int32_Ptr_1_Double_Delegate)delegateObj;
  7617. object result = null;
  7618. var arg0 = (int*)(IntPtr)p[0];
  7619. var arg1 = (double)p[1];
  7620. d(arg0, arg1);
  7621. return result;
  7622. }
  7623. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7624. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7625. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate(int* arg0, int arg1);
  7626. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7627. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7628. {
  7629. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_Delegate)delegateObj;
  7630. object result = null;
  7631. var arg0 = (int*)(IntPtr)p[0];
  7632. var arg1 = (int)p[1];
  7633. d(arg0, arg1);
  7634. return result;
  7635. }
  7636. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7637. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7638. private unsafe delegate void R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate(int* arg0, int arg1, int arg2);
  7639. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7640. private unsafe static object Call_R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate(object delegateObj, object[] p)
  7641. {
  7642. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_Delegate)delegateObj;
  7643. object result = null;
  7644. var arg0 = (int*)(IntPtr)p[0];
  7645. var arg1 = (int)p[1];
  7646. var arg2 = (int)p[2];
  7647. d(arg0, arg1, arg2);
  7648. return result;
  7649. }
  7650. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7651. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7652. 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);
  7653. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7654. 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)
  7655. {
  7656. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_Delegate)delegateObj;
  7657. object result = null;
  7658. var arg0 = (int*)(IntPtr)p[0];
  7659. var arg1 = (int)p[1];
  7660. var arg2 = (int)p[2];
  7661. var arg3 = (int)p[3];
  7662. var arg4 = (int)p[4];
  7663. d(arg0, arg1, arg2, arg3, arg4);
  7664. return result;
  7665. }
  7666. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7667. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7668. 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);
  7669. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7670. 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)
  7671. {
  7672. var d = (R_System_Void_P_0_Int32_Ptr_1_Int32_2_Int32_3_Int32_4_Int32_5_Int32_6_Int32_Delegate)delegateObj;
  7673. object result = null;
  7674. var arg0 = (int*)(IntPtr)p[0];
  7675. var arg1 = (int)p[1];
  7676. var arg2 = (int)p[2];
  7677. var arg3 = (int)p[3];
  7678. var arg4 = (int)p[4];
  7679. var arg5 = (int)p[5];
  7680. var arg6 = (int)p[6];
  7681. d(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
  7682. return result;
  7683. }
  7684. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7685. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7686. private unsafe delegate void R_System_Void_P_0_Int64_Ptr_Delegate(long* arg0);
  7687. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7688. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_Delegate(object delegateObj, object[] p)
  7689. {
  7690. var d = (R_System_Void_P_0_Int64_Ptr_Delegate)delegateObj;
  7691. object result = null;
  7692. var arg0 = (long*)(IntPtr)p[0];
  7693. d(arg0);
  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_Int64_Ptr_1_Double_Delegate(long* arg0, double arg1);
  7699. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7700. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  7701. {
  7702. var d = (R_System_Void_P_0_Int64_Ptr_1_Double_Delegate)delegateObj;
  7703. object result = null;
  7704. var arg0 = (long*)(IntPtr)p[0];
  7705. var arg1 = (double)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_Int64_Ptr_1_Int32_Delegate(long* arg0, int arg1);
  7712. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7713. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7714. {
  7715. var d = (R_System_Void_P_0_Int64_Ptr_1_Int32_Delegate)delegateObj;
  7716. object result = null;
  7717. var arg0 = (long*)(IntPtr)p[0];
  7718. var arg1 = (int)p[1];
  7719. d(arg0, 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_Int64_Ptr_1_Int64_Delegate(long* arg0, long arg1);
  7725. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7726. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate(object delegateObj, object[] p)
  7727. {
  7728. var d = (R_System_Void_P_0_Int64_Ptr_1_Int64_Delegate)delegateObj;
  7729. object result = null;
  7730. var arg0 = (long*)(IntPtr)p[0];
  7731. var arg1 = (long)p[1];
  7732. d(arg0, 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_Int64_Ptr_1_UInt64_Delegate(long* arg0, ulong arg1);
  7738. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7739. private unsafe static object Call_R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate(object delegateObj, object[] p)
  7740. {
  7741. var d = (R_System_Void_P_0_Int64_Ptr_1_UInt64_Delegate)delegateObj;
  7742. object result = null;
  7743. var arg0 = (long*)(IntPtr)p[0];
  7744. var arg1 = (ulong)p[1];
  7745. d(arg0, 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_SByte_Ptr_1_Int32_Delegate(sbyte* arg0, int arg1);
  7751. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7752. private unsafe static object Call_R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7753. {
  7754. var d = (R_System_Void_P_0_SByte_Ptr_1_Int32_Delegate)delegateObj;
  7755. object result = null;
  7756. var arg0 = (sbyte*)(IntPtr)p[0];
  7757. var arg1 = (int)p[1];
  7758. d(arg0, arg1);
  7759. return result;
  7760. }
  7761. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7762. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7763. private delegate void R_System_Void_P_0_Int16_Delegate(short arg0);
  7764. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7765. private unsafe static object Call_R_System_Void_P_0_Int16_Delegate(object delegateObj, object[] p)
  7766. {
  7767. var d = (R_System_Void_P_0_Int16_Delegate)delegateObj;
  7768. object result = null;
  7769. var arg0 = (short)p[0];
  7770. d(arg0);
  7771. return result;
  7772. }
  7773. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7775. private unsafe delegate void R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate(short* arg0, int arg1);
  7776. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7777. private unsafe static object Call_R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7778. {
  7779. var d = (R_System_Void_P_0_Int16_Ptr_1_Int32_Delegate)delegateObj;
  7780. object result = null;
  7781. var arg0 = (short*)(IntPtr)p[0];
  7782. var arg1 = (int)p[1];
  7783. d(arg0, arg1);
  7784. return result;
  7785. }
  7786. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7787. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7788. private unsafe delegate void R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate(uint* arg0, int arg1);
  7789. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7790. private unsafe static object Call_R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7791. {
  7792. var d = (R_System_Void_P_0_UInt32_Ptr_1_Int32_Delegate)delegateObj;
  7793. object result = null;
  7794. var arg0 = (uint*)(IntPtr)p[0];
  7795. var arg1 = (int)p[1];
  7796. d(arg0, arg1);
  7797. return result;
  7798. }
  7799. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7800. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7801. private unsafe delegate void R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate(ulong* arg0, double arg1);
  7802. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7803. private unsafe static object Call_R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate(object delegateObj, object[] p)
  7804. {
  7805. var d = (R_System_Void_P_0_UInt64_Ptr_1_Double_Delegate)delegateObj;
  7806. object result = null;
  7807. var arg0 = (ulong*)(IntPtr)p[0];
  7808. var arg1 = (double)p[1];
  7809. d(arg0, arg1);
  7810. return result;
  7811. }
  7812. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7813. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7814. private unsafe delegate void R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate(ulong* arg0, int arg1);
  7815. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7816. private unsafe static object Call_R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7817. {
  7818. var d = (R_System_Void_P_0_UInt64_Ptr_1_Int32_Delegate)delegateObj;
  7819. object result = null;
  7820. var arg0 = (ulong*)(IntPtr)p[0];
  7821. var arg1 = (int)p[1];
  7822. d(arg0, arg1);
  7823. return result;
  7824. }
  7825. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  7826. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7827. private unsafe delegate void R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(ulong* arg0, ulong arg1, ulong arg2);
  7828. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7829. private unsafe static object Call_R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate(object delegateObj, object[] p)
  7830. {
  7831. var d = (R_System_Void_P_0_UInt64_Ptr_1_UInt64_2_UInt64_Delegate)delegateObj;
  7832. object result = null;
  7833. var arg0 = (ulong*)(IntPtr)p[0];
  7834. var arg1 = (ulong)p[1];
  7835. var arg2 = (ulong)p[2];
  7836. d(arg0, arg1, arg2);
  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_UInt16_Ptr_1_Int32_Delegate(ushort* arg0, int arg1);
  7842. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  7843. private unsafe static object Call_R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate(object delegateObj, object[] p)
  7844. {
  7845. var d = (R_System_Void_P_0_UInt16_Ptr_1_Int32_Delegate)delegateObj;
  7846. object result = null;
  7847. var arg0 = (ushort*)(IntPtr)p[0];
  7848. var arg1 = (int)p[1];
  7849. d(arg0, arg1);
  7850. return result;
  7851. }
  7852. #endif
  7853. }
  7854. }