UnityEngine.TextCoreFontEngineModule.cpp 279 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC;
  9. struct Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7;
  10. struct Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A;
  11. struct IEqualityComparer_1_t0BB8211419723EB61BF19007AC9D62365E50500E;
  12. struct KeyCollection_t7DFB54EEE9F73B96A1C6B50FFA50248E330F8F23;
  13. struct List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B;
  14. struct List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A;
  15. struct ValueCollection_t9D8F6C6B5687314A4B0B69B729B1DF24C2AE9AED;
  16. struct EntryU5BU5D_t2B23F93FCF85B0BA4D4C152B1468476B33B470D1;
  17. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  18. struct GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5;
  19. struct GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E;
  20. struct GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7;
  21. struct GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70;
  22. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  23. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  24. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  25. struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
  26. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  27. struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6;
  28. struct Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F;
  29. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  30. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
  31. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  32. struct String_t;
  33. struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
  34. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F;
  35. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  36. struct FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1;
  37. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  38. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7_il2cpp_TypeInfo_var;
  39. IL2CPP_EXTERN_C RuntimeClass* FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var;
  40. IL2CPP_EXTERN_C RuntimeClass* GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var;
  41. IL2CPP_EXTERN_C RuntimeClass* GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E_il2cpp_TypeInfo_var;
  42. IL2CPP_EXTERN_C RuntimeClass* GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var;
  43. IL2CPP_EXTERN_C RuntimeClass* GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var;
  44. IL2CPP_EXTERN_C RuntimeClass* GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var;
  45. IL2CPP_EXTERN_C RuntimeClass* GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var;
  46. IL2CPP_EXTERN_C RuntimeClass* GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5_il2cpp_TypeInfo_var;
  47. IL2CPP_EXTERN_C RuntimeClass* GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var;
  48. IL2CPP_EXTERN_C RuntimeClass* Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var;
  49. IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var;
  50. IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
  51. IL2CPP_EXTERN_C String_t* _stringLiteral31D159E683556C06B3B3963D92483B6867EB3233;
  52. IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
  53. IL2CPP_EXTERN_C String_t* _stringLiteralF0EDAB22225C2411ABFD38819044326FB5BDC916;
  54. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m30C3F5890A20AF5FA64A272E19CFC8750E0F9D16_RuntimeMethod_var;
  55. IL2CPP_EXTERN_C const RuntimeMethod* FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3_RuntimeMethod_var;
  56. IL2CPP_EXTERN_C const RuntimeMethod* FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_RuntimeMethod_var;
  57. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var;
  58. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var;
  59. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_RuntimeMethod_var;
  60. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var;
  61. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var;
  62. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324_RuntimeMethod_var;
  63. IL2CPP_EXTERN_C const RuntimeMethod* Profiler_ValidateArguments_m631DF788CA8A7DF599A5871AF4D7FA8B9C3B52CC_RuntimeMethod_var;
  64. struct Exception_t_marshaled_com;
  65. struct Exception_t_marshaled_pinvoke;
  66. struct GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5;
  67. struct GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E;
  68. struct GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7;
  69. struct GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70;
  70. struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
  71. IL2CPP_EXTERN_C_BEGIN
  72. IL2CPP_EXTERN_C_END
  73. #ifdef __clang__
  74. #pragma clang diagnostic push
  75. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  76. #pragma clang diagnostic ignored "-Wunused-variable"
  77. #endif
  78. struct U3CModuleU3E_t3B74AF9E7E84B3C57D4687184E31363228069DF2
  79. {
  80. };
  81. struct Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7 : public RuntimeObject
  82. {
  83. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
  84. EntryU5BU5D_t2B23F93FCF85B0BA4D4C152B1468476B33B470D1* ____entries;
  85. int32_t ____count;
  86. int32_t ____freeList;
  87. int32_t ____freeCount;
  88. int32_t ____version;
  89. RuntimeObject* ____comparer;
  90. KeyCollection_t7DFB54EEE9F73B96A1C6B50FFA50248E330F8F23* ____keys;
  91. ValueCollection_t9D8F6C6B5687314A4B0B69B729B1DF24C2AE9AED* ____values;
  92. RuntimeObject* ____syncRoot;
  93. };
  94. struct List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B : public RuntimeObject
  95. {
  96. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ____items;
  97. int32_t ____size;
  98. int32_t ____version;
  99. RuntimeObject* ____syncRoot;
  100. };
  101. struct List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A : public RuntimeObject
  102. {
  103. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ____items;
  104. int32_t ____size;
  105. int32_t ____version;
  106. RuntimeObject* ____syncRoot;
  107. };
  108. struct FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A : public RuntimeObject
  109. {
  110. };
  111. struct String_t : public RuntimeObject
  112. {
  113. int32_t ____stringLength;
  114. Il2CppChar ____firstChar;
  115. };
  116. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  117. {
  118. };
  119. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  120. {
  121. };
  122. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  123. {
  124. };
  125. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  126. {
  127. bool ___m_value;
  128. };
  129. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  130. {
  131. };
  132. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  133. {
  134. };
  135. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  136. {
  137. };
  138. struct FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756
  139. {
  140. int32_t ___m_FaceIndex;
  141. String_t* ___m_FamilyName;
  142. String_t* ___m_StyleName;
  143. int32_t ___m_PointSize;
  144. float ___m_Scale;
  145. int32_t ___m_UnitsPerEM;
  146. float ___m_LineHeight;
  147. float ___m_AscentLine;
  148. float ___m_CapLine;
  149. float ___m_MeanLine;
  150. float ___m_Baseline;
  151. float ___m_DescentLine;
  152. float ___m_SuperscriptOffset;
  153. float ___m_SuperscriptSize;
  154. float ___m_SubscriptOffset;
  155. float ___m_SubscriptSize;
  156. float ___m_UnderlineOffset;
  157. float ___m_UnderlineThickness;
  158. float ___m_StrikethroughOffset;
  159. float ___m_StrikethroughThickness;
  160. float ___m_TabWidth;
  161. };
  162. struct FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_pinvoke
  163. {
  164. int32_t ___m_FaceIndex;
  165. char* ___m_FamilyName;
  166. char* ___m_StyleName;
  167. int32_t ___m_PointSize;
  168. float ___m_Scale;
  169. int32_t ___m_UnitsPerEM;
  170. float ___m_LineHeight;
  171. float ___m_AscentLine;
  172. float ___m_CapLine;
  173. float ___m_MeanLine;
  174. float ___m_Baseline;
  175. float ___m_DescentLine;
  176. float ___m_SuperscriptOffset;
  177. float ___m_SuperscriptSize;
  178. float ___m_SubscriptOffset;
  179. float ___m_SubscriptSize;
  180. float ___m_UnderlineOffset;
  181. float ___m_UnderlineThickness;
  182. float ___m_StrikethroughOffset;
  183. float ___m_StrikethroughThickness;
  184. float ___m_TabWidth;
  185. };
  186. struct FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_com
  187. {
  188. int32_t ___m_FaceIndex;
  189. Il2CppChar* ___m_FamilyName;
  190. Il2CppChar* ___m_StyleName;
  191. int32_t ___m_PointSize;
  192. float ___m_Scale;
  193. int32_t ___m_UnitsPerEM;
  194. float ___m_LineHeight;
  195. float ___m_AscentLine;
  196. float ___m_CapLine;
  197. float ___m_MeanLine;
  198. float ___m_Baseline;
  199. float ___m_DescentLine;
  200. float ___m_SuperscriptOffset;
  201. float ___m_SuperscriptSize;
  202. float ___m_SubscriptOffset;
  203. float ___m_SubscriptSize;
  204. float ___m_UnderlineOffset;
  205. float ___m_UnderlineThickness;
  206. float ___m_StrikethroughOffset;
  207. float ___m_StrikethroughThickness;
  208. float ___m_TabWidth;
  209. };
  210. struct FontEngineUtilities_t08D8707F6F929B42407961E303FD339A793E5BBB
  211. {
  212. union
  213. {
  214. struct
  215. {
  216. };
  217. uint8_t FontEngineUtilities_t08D8707F6F929B42407961E303FD339A793E5BBB__padding[1];
  218. };
  219. };
  220. struct FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172
  221. {
  222. String_t* ___familyName;
  223. String_t* ___styleName;
  224. int32_t ___faceIndex;
  225. String_t* ___filePath;
  226. };
  227. struct FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_pinvoke
  228. {
  229. char* ___familyName;
  230. char* ___styleName;
  231. int32_t ___faceIndex;
  232. char* ___filePath;
  233. };
  234. struct FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_com
  235. {
  236. Il2CppChar* ___familyName;
  237. Il2CppChar* ___styleName;
  238. int32_t ___faceIndex;
  239. Il2CppChar* ___filePath;
  240. };
  241. struct GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08
  242. {
  243. float ___m_XCoordinate;
  244. float ___m_YCoordinate;
  245. };
  246. struct GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A
  247. {
  248. float ___m_Width;
  249. float ___m_Height;
  250. float ___m_HorizontalBearingX;
  251. float ___m_HorizontalBearingY;
  252. float ___m_HorizontalAdvance;
  253. };
  254. struct GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D
  255. {
  256. int32_t ___m_X;
  257. int32_t ___m_Y;
  258. int32_t ___m_Width;
  259. int32_t ___m_Height;
  260. };
  261. struct GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E
  262. {
  263. float ___m_XPlacement;
  264. float ___m_YPlacement;
  265. float ___m_XAdvance;
  266. float ___m_YAdvance;
  267. };
  268. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  269. {
  270. int32_t ___m_value;
  271. };
  272. struct IntPtr_t
  273. {
  274. void* ___m_value;
  275. };
  276. struct LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94
  277. {
  278. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_ComponentGlyphIDs;
  279. uint32_t ___m_LigatureGlyphID;
  280. };
  281. struct LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_pinvoke
  282. {
  283. Il2CppSafeArray* ___m_ComponentGlyphIDs;
  284. uint32_t ___m_LigatureGlyphID;
  285. };
  286. struct LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_com
  287. {
  288. Il2CppSafeArray* ___m_ComponentGlyphIDs;
  289. uint32_t ___m_LigatureGlyphID;
  290. };
  291. struct MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436
  292. {
  293. float ___m_XPositionAdjustment;
  294. float ___m_YPositionAdjustment;
  295. };
  296. struct MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B
  297. {
  298. uint32_t ___m_TargetGlyphID;
  299. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_SubstituteGlyphIDs;
  300. };
  301. struct MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_pinvoke
  302. {
  303. uint32_t ___m_TargetGlyphID;
  304. Il2CppSafeArray* ___m_SubstituteGlyphIDs;
  305. };
  306. struct MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_com
  307. {
  308. uint32_t ___m_TargetGlyphID;
  309. Il2CppSafeArray* ___m_SubstituteGlyphIDs;
  310. };
  311. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  312. {
  313. float ___m_value;
  314. };
  315. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  316. {
  317. uint32_t ___m_value;
  318. };
  319. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  320. {
  321. union
  322. {
  323. struct
  324. {
  325. };
  326. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  327. };
  328. };
  329. struct Exception_t : public RuntimeObject
  330. {
  331. String_t* ____className;
  332. String_t* ____message;
  333. RuntimeObject* ____data;
  334. Exception_t* ____innerException;
  335. String_t* ____helpURL;
  336. RuntimeObject* ____stackTrace;
  337. String_t* ____stackTraceString;
  338. String_t* ____remoteStackTraceString;
  339. int32_t ____remoteStackIndex;
  340. RuntimeObject* ____dynamicMethods;
  341. int32_t ____HResult;
  342. String_t* ____source;
  343. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  344. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  345. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  346. int32_t ___caught_in_unmanaged;
  347. };
  348. struct Exception_t_marshaled_pinvoke
  349. {
  350. char* ____className;
  351. char* ____message;
  352. RuntimeObject* ____data;
  353. Exception_t_marshaled_pinvoke* ____innerException;
  354. char* ____helpURL;
  355. Il2CppIUnknown* ____stackTrace;
  356. char* ____stackTraceString;
  357. char* ____remoteStackTraceString;
  358. int32_t ____remoteStackIndex;
  359. Il2CppIUnknown* ____dynamicMethods;
  360. int32_t ____HResult;
  361. char* ____source;
  362. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  363. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  364. Il2CppSafeArray* ___native_trace_ips;
  365. int32_t ___caught_in_unmanaged;
  366. };
  367. struct Exception_t_marshaled_com
  368. {
  369. Il2CppChar* ____className;
  370. Il2CppChar* ____message;
  371. RuntimeObject* ____data;
  372. Exception_t_marshaled_com* ____innerException;
  373. Il2CppChar* ____helpURL;
  374. Il2CppIUnknown* ____stackTrace;
  375. Il2CppChar* ____stackTraceString;
  376. Il2CppChar* ____remoteStackTraceString;
  377. int32_t ____remoteStackIndex;
  378. Il2CppIUnknown* ____dynamicMethods;
  379. int32_t ____HResult;
  380. Il2CppChar* ____source;
  381. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  382. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  383. Il2CppSafeArray* ___native_trace_ips;
  384. int32_t ___caught_in_unmanaged;
  385. };
  386. struct FontEngineError_t10530F16DD874A1E0682E44AACD4A3BD05AA05CE
  387. {
  388. int32_t ___value__;
  389. };
  390. struct FontFeatureLookupFlags_t2000121BA341A3CAE5E0D4FAC6AA4378FE14AE1B
  391. {
  392. int32_t ___value__;
  393. };
  394. struct GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7
  395. {
  396. uint32_t ___m_GlyphIndex;
  397. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___m_GlyphValueRecord;
  398. };
  399. struct GlyphClassDefinitionType_t9C21A3848A07B17C2690F285B5FA60A2E246FBA2
  400. {
  401. int32_t ___value__;
  402. };
  403. struct GlyphLoadFlags_t0007C50C115E02DDE1F7490DA7BC17DE67CE780C
  404. {
  405. int32_t ___value__;
  406. };
  407. struct GlyphPackingMode_t0DD4406D5D2B01F8045DD6B99C78E7FFDCCE225E
  408. {
  409. int32_t ___value__;
  410. };
  411. struct GlyphRenderMode_tE7FB60827750662A45E89D168932FE2D8AEB5281
  412. {
  413. int32_t ___value__;
  414. };
  415. struct MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607
  416. {
  417. uint32_t ___m_BaseGlyphID;
  418. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 ___m_BaseGlyphAnchorPoint;
  419. uint32_t ___m_MarkGlyphID;
  420. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 ___m_MarkPositionAdjustment;
  421. };
  422. struct MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C
  423. {
  424. uint32_t ___m_BaseMarkGlyphID;
  425. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 ___m_BaseMarkGlyphAnchorPoint;
  426. uint32_t ___m_CombiningMarkGlyphID;
  427. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 ___m_CombiningMarkPositionAdjustment;
  428. };
  429. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  430. {
  431. intptr_t ___m_CachedPtr;
  432. };
  433. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  434. {
  435. intptr_t ___m_CachedPtr;
  436. };
  437. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  438. {
  439. intptr_t ___m_CachedPtr;
  440. };
  441. struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  442. {
  443. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* ___m_FontTextureRebuildCallback;
  444. };
  445. struct Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F : public RuntimeObject
  446. {
  447. uint32_t ___m_Index;
  448. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___m_Metrics;
  449. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___m_GlyphRect;
  450. float ___m_Scale;
  451. int32_t ___m_AtlasIndex;
  452. int32_t ___m_ClassDefinitionType;
  453. };
  454. struct Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_pinvoke
  455. {
  456. uint32_t ___m_Index;
  457. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___m_Metrics;
  458. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___m_GlyphRect;
  459. float ___m_Scale;
  460. int32_t ___m_AtlasIndex;
  461. int32_t ___m_ClassDefinitionType;
  462. };
  463. struct Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_com
  464. {
  465. uint32_t ___m_Index;
  466. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___m_Metrics;
  467. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___m_GlyphRect;
  468. float ___m_Scale;
  469. int32_t ___m_AtlasIndex;
  470. int32_t ___m_ClassDefinitionType;
  471. };
  472. struct GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C
  473. {
  474. uint32_t ___index;
  475. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___metrics;
  476. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___glyphRect;
  477. float ___scale;
  478. int32_t ___atlasIndex;
  479. int32_t ___classDefinitionType;
  480. };
  481. struct GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E
  482. {
  483. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___m_FirstAdjustmentRecord;
  484. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___m_SecondAdjustmentRecord;
  485. int32_t ___m_FeatureLookupFlags;
  486. };
  487. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  488. {
  489. };
  490. struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  491. {
  492. };
  493. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  494. {
  495. String_t* ____paramName;
  496. };
  497. struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4 : public Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700
  498. {
  499. };
  500. struct List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B_StaticFields
  501. {
  502. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___s_emptyArray;
  503. };
  504. struct List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A_StaticFields
  505. {
  506. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_emptyArray;
  507. };
  508. struct FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields
  509. {
  510. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* ___s_Glyphs;
  511. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_GlyphIndexes_MarshallingArray_A;
  512. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* ___s_GlyphMarshallingStruct_IN;
  513. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* ___s_GlyphMarshallingStruct_OUT;
  514. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___s_FreeGlyphRects;
  515. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___s_UsedGlyphRects;
  516. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* ___s_PairAdjustmentRecords_MarshallingArray;
  517. Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7* ___s_GlyphLookupDictionary;
  518. };
  519. struct String_t_StaticFields
  520. {
  521. String_t* ___Empty;
  522. };
  523. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  524. {
  525. String_t* ___TrueString;
  526. String_t* ___FalseString;
  527. };
  528. struct GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_StaticFields
  529. {
  530. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___s_ZeroGlyphRect;
  531. };
  532. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
  533. {
  534. int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
  535. };
  536. struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields
  537. {
  538. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___textureRebuilt;
  539. };
  540. #ifdef __clang__
  541. #pragma clang diagnostic pop
  542. #endif
  543. struct GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70 : public RuntimeArray
  544. {
  545. ALIGN_FIELD (8) GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D m_Items[1];
  546. inline GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D GetAt(il2cpp_array_size_t index) const
  547. {
  548. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  549. return m_Items[index];
  550. }
  551. inline GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* GetAddressAt(il2cpp_array_size_t index)
  552. {
  553. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  554. return m_Items + index;
  555. }
  556. inline void SetAt(il2cpp_array_size_t index, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D value)
  557. {
  558. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  559. m_Items[index] = value;
  560. }
  561. inline GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D GetAtUnchecked(il2cpp_array_size_t index) const
  562. {
  563. return m_Items[index];
  564. }
  565. inline GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* GetAddressAtUnchecked(il2cpp_array_size_t index)
  566. {
  567. return m_Items + index;
  568. }
  569. inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D value)
  570. {
  571. m_Items[index] = value;
  572. }
  573. };
  574. struct GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5 : public RuntimeArray
  575. {
  576. ALIGN_FIELD (8) Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* m_Items[1];
  577. inline Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* GetAt(il2cpp_array_size_t index) const
  578. {
  579. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  580. return m_Items[index];
  581. }
  582. inline Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** GetAddressAt(il2cpp_array_size_t index)
  583. {
  584. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  585. return m_Items + index;
  586. }
  587. inline void SetAt(il2cpp_array_size_t index, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* value)
  588. {
  589. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  590. m_Items[index] = value;
  591. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  592. }
  593. inline Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* GetAtUnchecked(il2cpp_array_size_t index) const
  594. {
  595. return m_Items[index];
  596. }
  597. inline Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** GetAddressAtUnchecked(il2cpp_array_size_t index)
  598. {
  599. return m_Items + index;
  600. }
  601. inline void SetAtUnchecked(il2cpp_array_size_t index, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* value)
  602. {
  603. m_Items[index] = value;
  604. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  605. }
  606. };
  607. struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA : public RuntimeArray
  608. {
  609. ALIGN_FIELD (8) uint32_t m_Items[1];
  610. inline uint32_t GetAt(il2cpp_array_size_t index) const
  611. {
  612. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  613. return m_Items[index];
  614. }
  615. inline uint32_t* GetAddressAt(il2cpp_array_size_t index)
  616. {
  617. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  618. return m_Items + index;
  619. }
  620. inline void SetAt(il2cpp_array_size_t index, uint32_t value)
  621. {
  622. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  623. m_Items[index] = value;
  624. }
  625. inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
  626. {
  627. return m_Items[index];
  628. }
  629. inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  630. {
  631. return m_Items + index;
  632. }
  633. inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
  634. {
  635. m_Items[index] = value;
  636. }
  637. };
  638. struct GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E : public RuntimeArray
  639. {
  640. ALIGN_FIELD (8) GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C m_Items[1];
  641. inline GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C GetAt(il2cpp_array_size_t index) const
  642. {
  643. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  644. return m_Items[index];
  645. }
  646. inline GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* GetAddressAt(il2cpp_array_size_t index)
  647. {
  648. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  649. return m_Items + index;
  650. }
  651. inline void SetAt(il2cpp_array_size_t index, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C value)
  652. {
  653. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  654. m_Items[index] = value;
  655. }
  656. inline GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C GetAtUnchecked(il2cpp_array_size_t index) const
  657. {
  658. return m_Items[index];
  659. }
  660. inline GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* GetAddressAtUnchecked(il2cpp_array_size_t index)
  661. {
  662. return m_Items + index;
  663. }
  664. inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C value)
  665. {
  666. m_Items[index] = value;
  667. }
  668. };
  669. struct GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7 : public RuntimeArray
  670. {
  671. ALIGN_FIELD (8) GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E m_Items[1];
  672. inline GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E GetAt(il2cpp_array_size_t index) const
  673. {
  674. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  675. return m_Items[index];
  676. }
  677. inline GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* GetAddressAt(il2cpp_array_size_t index)
  678. {
  679. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  680. return m_Items + index;
  681. }
  682. inline void SetAt(il2cpp_array_size_t index, GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E value)
  683. {
  684. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  685. m_Items[index] = value;
  686. }
  687. inline GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E GetAtUnchecked(il2cpp_array_size_t index) const
  688. {
  689. return m_Items[index];
  690. }
  691. inline GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* GetAddressAtUnchecked(il2cpp_array_size_t index)
  692. {
  693. return m_Items + index;
  694. }
  695. inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E value)
  696. {
  697. m_Items[index] = value;
  698. }
  699. };
  700. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_gshared_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, const RuntimeMethod* method) ;
  701. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_gshared (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  702. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_gshared_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, const RuntimeMethod* method) ;
  703. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_gshared_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_item, const RuntimeMethod* method) ;
  704. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_gshared_inline (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* __this, const RuntimeMethod* method) ;
  705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324_gshared (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_gshared (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7** ___0_marshallingArray, int32_t ___1_recordCount, const RuntimeMethod* method) ;
  707. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3_gshared (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A** ___0_srcList, UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA** ___1_dstArray, const RuntimeMethod* method) ;
  708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5F2C53FF0072F4015E5D14621F555D29B1EB79E5_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, const RuntimeMethod* method) ;
  709. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m9FD3C28AEFDC7247A9E6CE3E84E5489C5B13C1DA_gshared (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_item, const RuntimeMethod* method) ;
  710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_faceIndex_m3C9FB6429035CD34ACD201FB5951AF06E9C2A641 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FaceInfo_get_familyName_m62DAF5DE45EA9F3B300B927603D101D350D27241 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_familyName_m49CB07A51AC9008B4F399A3064EC4FF6EA8E839D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FaceInfo_get_styleName_mACBAA6529BCE3BC14987645691350A4FB1CB0FC6 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  714. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_styleName_m3BEBF7E576032A668BCC83D88D2F6902F561B5E6 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  715. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_pointSize_m17D0B03C4A762F657A4ABD15327B08D6B55EF492 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_scale_mC475A572AD4956B47D8B9F8D90DC69BBBB102FCD (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_scale_m379253929403DA08480CAD127C908A0E8329A5D4 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_lineHeight_m528B4A822181FCECF3D4FF1045DF288E5872AB9D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  720. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_lineHeight_m5952A394C6055DD86700448D9E33EBBE852E05AE (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  721. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_ascentLine_m193755D649428EC24A7E433A1728F11DA7547ABD (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  722. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_ascentLine_mDFB32635374875A695D3BB686D2A16C648A20D78 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_capLine_m0D95B5D5CEC5CFB12091F5EB5965DE6E38588C88 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_capLine_m4716D75CE87EC018E5EA3DE87DA703DBE7A9FEEF (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  725. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_meanLine_m5FF396E0E32A046C1D3CBD3AC1FA279984394D96 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_meanLine_mE957CD43CB778B093331CC4B10A5330E8FF1CB99 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  727. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_baseline_m934B597D3E0080FEF98CBDD091C457B497179C3A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  728. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_baseline_m528F6ADAF4F45A31E9D2BA362FB3C02B03DDD741 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  729. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_descentLine_m811A243C9B328B0C546BF9927A010A05DF172BD3 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  730. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_descentLine_m62423E864258229A85FD3684D8385A44C01AF97C (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  731. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptOffset_m8D462DB86414D8507C7D1CC6881DA9EC896FB80A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  732. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptOffset_mC81144590FA80858D489AFC46AAA383E11D3D2B5 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  733. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptSize_mC3ABE7C70559A8214294CDA598B17FD62BDC2EE0 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  734. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptSize_m89F17C1502C07A3846402A5A43369BFB66723515 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  735. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptOffset_mF1D3E68AC3D449CBC73AA0CBF5B8A187C6C5285A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  736. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptOffset_m796EF61DE0677BFB134F6B8C4B6C1869BCF8782A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  737. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptSize_mF6264BFB215FDE6C94A45D2F8FC946ADFCDD2E31 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  738. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptSize_m5759439F9D100591A6FFF1D7377495CEBDCD6B5D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineOffset_mB1CBB29ECFFE69047F35E654E7F90755F95DD251 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  740. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineOffset_m1C0E755772FE8C47D565E6CC7DC4E953B71794AA (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  741. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineThickness_mC032F8C026994AF3FD49E6AB12E113F61EFA98E2 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineThickness_mDD002D08CE97E0C7DA6FA6FFBDD15295D24B303A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_strikethroughOffset_m7997E4A1512FE358331B3A6543C62C92A0AA5CA5 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughOffset_m57B05848BDA21F7AF6563394D29C8AE7107FEFF0 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  745. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughThickness_m8CA3C9897FF3D5D0F653539CCBF5E16E01CACF52 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_tabWidth_mC6D9F42C40EDD767DE22050E4FBE3878AC96B161 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
  747. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_tabWidth_m44234ED657FAB54320C48C34D48532F8232F6E1D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method) ;
  748. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_x_m453EECC6C6F08602B1F74C5E1D8EE1163236A898 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method) ;
  749. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_y_mE31390BB3185EEA82DD16EA41E208F6A0397E3EA (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method) ;
  750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_width_mD291C7644BBF18D6A213427F6C9C28840F233F12 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method) ;
  751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_height_m7F4D04452994E0D18762BB44352608E484DAAC1A (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method) ;
  752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphRect__ctor_m2B11A6C6C70735CB77FE2176E3D55D922D772A95 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, int32_t ___0_x, int32_t ___1_y, int32_t ___2_width, int32_t ___3_height, const RuntimeMethod* method) ;
  753. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueType_GetHashCode_m3B47C72EA1FA846D9B0DFF3C444AB2BFA22CF3CE (RuntimeObject* __this, const RuntimeMethod* method) ;
  754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_GetHashCode_mC012C2627F2A0C7EB7B47522085764441D47014F (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method) ;
  755. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  756. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_mF3BA7FD405AFCEA9E2A6ED2423C27CC023A1289B (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  757. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_m29BCDCCDB99C88355A61EDDA65F6A51762BF9C87 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_other, const RuntimeMethod* method) ;
  758. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_width_m0F9F391E3A98984167E8001D4101BE1CE9354D13 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method) ;
  759. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_height_mE0872B23CE1A20BF78DEACDBD53BAF789D84AD5C (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method) ;
  760. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingX_m9C39B5E6D27FF34B706649AE47EE9390B5D76D6F (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method) ;
  761. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingY_mD316BDD38A32258256994D6A2BCF0FC051D9B223 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method) ;
  762. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalAdvance_m110E66C340A19E672FB1C26DFB875AB6900AFFF1 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method) ;
  763. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphMetrics__ctor_m9CD09465685783A596A7F9112EF7D6A7E1A2792D (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, float ___0_width, float ___1_height, float ___2_bearingX, float ___3_bearingY, float ___4_advance, const RuntimeMethod* method) ;
  764. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphMetrics_GetHashCode_mB1988F3C7DA77518D4DE0F116995F63C99A073E6 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method) ;
  765. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_mB8EE2CF8E9D9D51AF2C7B4F13209AFC66456C970 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  766. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_mA8F8587C1725FA86DD6E87CFDFF0DDB9996112CB (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___0_other, const RuntimeMethod* method) ;
  767. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  768. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_InitializeFontEngine_Internal_m64ABDC3A5AF9D87C995FF6B98979933E7074AB06 (const RuntimeMethod* method) ;
  769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_And_FaceIndex_Internal_mD89D8C9D6A2B8E7D29BAE669C15781DBCC63B8E4 (String_t* ___0_filePath, int32_t ___1_pointSize, int32_t ___2_faceIndex, const RuntimeMethod* method) ;
  770. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_FromFont_Internal_m13A7F3EB357E2D2C67B14D10B96F3C490BF6AC11 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, int32_t ___1_pointSize, const RuntimeMethod* method) ;
  771. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal_m7C4E8F4F88CDDE6B838D890FDC1E0722EBD40497 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, int32_t ___1_pointSize, int32_t ___2_faceIndex, const RuntimeMethod* method) ;
  772. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal_m0856180C0F5FFA09E964986A78153D021F810F30 (String_t* ___0_familyName, String_t* ___1_styleName, int32_t ___2_pointSize, const RuntimeMethod* method) ;
  773. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetSystemFontReference_Internal_m61AAB78124D19B1BC88C22D520287893E7280E1F (String_t* ___0_familyName, String_t* ___1_styleName, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172* ___2_fontRef, const RuntimeMethod* method) ;
  774. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetFaceInfo_Internal_m34E21653DF4724C3FCE289DA20AD5AB1B2F24B90 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* ___0_faceInfo, const RuntimeMethod* method) ;
  775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithUnicodeValue_Internal_mD799CD2B5CEA61ED5ABA16EDAA428385FD906BD8 (uint32_t ___0_unicode, int32_t ___1_loadFlags, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* ___2_glyphStruct, const RuntimeMethod* method) ;
  776. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m2E3C296A46BE48B869634BBE3F97B30F3442CC94 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C ___0_glyphStruct, const RuntimeMethod* method) ;
  777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithIndexValue_Internal_m2C5359B3C62139D20F52C1D232938CFAC9C3459D (uint32_t ___0_glyphIndex, int32_t ___1_loadFlags, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* ___2_glyphStruct, const RuntimeMethod* method) ;
  778. inline int32_t List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, const RuntimeMethod* method)
  779. {
  780. return (( int32_t (*) (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B*, const RuntimeMethod*))List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_gshared_inline)(__this, method);
  781. }
  782. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_NextPowerOfTwo_mA1CE7F3EEF9B0B07AB2D586C030ED236D578F485 (int32_t ___0_value, const RuntimeMethod* method) ;
  783. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
  784. inline GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5 (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, int32_t ___0_index, const RuntimeMethod* method)
  785. {
  786. return (( GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D (*) (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B*, int32_t, const RuntimeMethod*))List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_gshared)(__this, ___0_index, method);
  787. }
  788. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphToTexture_Internal_mD6ED15BDDDC4F874C98D514D8DCE699EADB8C708 (uint32_t ___0_glyphIndex, int32_t ___1_padding, int32_t ___2_packingMode, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___3_freeGlyphRects, int32_t* ___4_freeGlyphRectCount, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___5_usedGlyphRects, int32_t* ___6_usedGlyphRectCount, int32_t ___7_renderMode, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___8_texture, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* ___9_glyph, const RuntimeMethod* method) ;
  789. inline void List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, const RuntimeMethod* method)
  790. {
  791. (( void (*) (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B*, const RuntimeMethod*))List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_gshared_inline)(__this, method);
  792. }
  793. inline void List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_item, const RuntimeMethod* method)
  794. {
  795. (( void (*) (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B*, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D, const RuntimeMethod*))List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_gshared_inline)(__this, ___0_item, method);
  796. }
  797. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_BeginSample_m640E26B682D803CC5DB4EDFDF2F6E83771BF0BE4_inline (String_t* ___0_name, const RuntimeMethod* method) ;
  798. inline int32_t List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_inline (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* __this, const RuntimeMethod* method)
  799. {
  800. return (( int32_t (*) (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A*, const RuntimeMethod*))List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_gshared_inline)(__this, method);
  801. }
  802. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Profiler_EndSample_m3FCA26738A87C0B8E352533AD48E2A16B047A757 (const RuntimeMethod* method) ;
  803. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngineUtilities_MaxValue_m7E0FBF90FE07F65C9895ACD56FD032A53E417F83 (int32_t ___0_a, int32_t ___1_b, int32_t ___2_c, const RuntimeMethod* method) ;
  804. inline uint32_t List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324 (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* __this, int32_t ___0_index, const RuntimeMethod* method)
  805. {
  806. return (( uint32_t (*) (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A*, int32_t, const RuntimeMethod*))List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324_gshared)(__this, ___0_index, method);
  807. }
  808. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphsToTexture_Internal_m43D4D242873C647DF5A20F7579FD90E373999EA8 (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___0_glyphIndex, int32_t ___1_padding, int32_t ___2_packingMode, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___3_freeGlyphRects, int32_t* ___4_freeGlyphRectCount, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___5_usedGlyphRects, int32_t* ___6_usedGlyphRectCount, int32_t ___7_renderMode, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___8_texture, GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* ___9_glyphs, int32_t* ___10_glyphCount, const RuntimeMethod* method) ;
  809. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7 (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___0_glyphIndexes, int32_t* ___1_recordCount, const RuntimeMethod* method) ;
  810. inline void FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123 (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7** ___0_marshallingArray, int32_t ___1_recordCount, const RuntimeMethod* method)
  811. {
  812. (( void (*) (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7**, int32_t, const RuntimeMethod*))FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_gshared)(___0_marshallingArray, ___1_recordCount, method);
  813. }
  814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6 (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* ___0_glyphPairAdjustmentRecords, const RuntimeMethod* method) ;
  815. inline void FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3 (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A** ___0_srcList, UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA** ___1_dstArray, const RuntimeMethod* method)
  816. {
  817. (( void (*) (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A**, UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA**, const RuntimeMethod*))FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3_gshared)(___0_srcList, ___1_dstArray, method);
  818. }
  819. inline void Dictionary_2__ctor_m30C3F5890A20AF5FA64A272E19CFC8750E0F9D16 (Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7* __this, const RuntimeMethod* method)
  820. {
  821. (( void (*) (Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7*, const RuntimeMethod*))Dictionary_2__ctor_m5F2C53FF0072F4015E5D14621F555D29B1EB79E5_gshared)(__this, method);
  822. }
  823. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xPlacement_m5E2B8B05A5DF57B2DC4B3795E71330CDDE1761C8 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method) ;
  824. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphValueRecord_set_xPlacement_m79F92029922BDE50ED63A6A03EBE478869F1CCFC (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, float ___0_value, const RuntimeMethod* method) ;
  825. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yPlacement_mB6303F8800305F6F96ECCD0CD9AA70A1A30A15DA (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method) ;
  826. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphValueRecord_set_yPlacement_m04DA300FAB827A708CB291DA3B2EA3128279CA2B (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, float ___0_value, const RuntimeMethod* method) ;
  827. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xAdvance_m6C392027FA91E0705C1585C5EF40D984AAA0013E (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method) ;
  828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yAdvance_m1379AA10FCCFFABEAF43E767F8BFBF32CA76B5B6 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method) ;
  829. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphValueRecord_GetHashCode_m9A2BFC7780FBD61A4B7E0091F8FE87DA15081B60 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method) ;
  830. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_m5DC74E9C597D8F27754444C057F819ECB24CB8B6 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  831. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_mB5F45CBE745D1C5BAF7944989DF4239FDC78D972 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___0_other, const RuntimeMethod* method) ;
  832. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlyphAdjustmentRecord_get_glyphIndex_mB1C51945CA4FF019A74BC98C01C8883A396CBFA9 (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, const RuntimeMethod* method) ;
  833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E GlyphAdjustmentRecord_get_glyphValueRecord_m83866DCE07A22F903D4BA417476E64114625BDD7 (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, const RuntimeMethod* method) ;
  834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphAdjustmentRecord_GetHashCode_m8E0D84D4458A732085FCCA04AAE0A0B16CB3226C (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, const RuntimeMethod* method) ;
  835. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphAdjustmentRecord_Equals_mEF9EBAA5A7ED2B136EA25A2AD26353406884F47D (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  836. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphAdjustmentRecord_Equals_m2F5908F3B2BB2F6596E40E6A74E5F2120BCDA535 (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___0_other, const RuntimeMethod* method) ;
  837. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m867469548F17B298F893B78EE2F93D34E4A6C39C (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method) ;
  838. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_mFDFECB1F7A38E22BD2388FFE9C71E732F6B44D91 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method) ;
  839. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphPairAdjustmentRecord_get_featureLookupFlags_m08DA76766FDE949068B881DBEA29955C9C43E8A9 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method) ;
  840. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphPairAdjustmentRecord_GetHashCode_mC253F24FFD3BCE5EEB44CA6CDE1BE19336E0A5F5 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method) ;
  841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphPairAdjustmentRecord_Equals_m0F49F5D76C114BB660B7619A93247591AE323CFD (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  842. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphPairAdjustmentRecord_Equals_m2DADFD15A4DFF37570EA51D9EAEBA30DF0007689 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E ___0_other, const RuntimeMethod* method) ;
  843. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphAnchorPoint_get_xCoordinate_mCD33464763911ECB78DEB1965970A916FA27DD1C (GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08* __this, const RuntimeMethod* method) ;
  844. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphAnchorPoint_get_yCoordinate_m2683C19C6A3D750E4D6C536307313E55589909D6 (GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08* __this, const RuntimeMethod* method) ;
  845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float MarkPositionAdjustment_get_xPositionAdjustment_m5ACBB4C515357320C12597CAE5E4D409BA298765 (MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436* __this, const RuntimeMethod* method) ;
  846. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float MarkPositionAdjustment_get_yPositionAdjustment_m1F5F7DBBFEB0B52CCC772F68664D06B11D6A9F2C (MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436* __this, const RuntimeMethod* method) ;
  847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToBaseAdjustmentRecord_get_baseGlyphID_mD6A0DD18DBE69E0E68ACA6AABF47B1EA61B633A5 (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method) ;
  848. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 MarkToBaseAdjustmentRecord_get_baseGlyphAnchorPoint_mCBF57932B7A89C532B0EF750DFD81F8FE389EE08 (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method) ;
  849. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToBaseAdjustmentRecord_get_markGlyphID_mB4BB0291733ECFC2433F5C2837F0B28EB05CAF5C (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method) ;
  850. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 MarkToBaseAdjustmentRecord_get_markPositionAdjustment_m570715D1D0F84361A90564D4A958394453E1F9AB (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method) ;
  851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToMarkAdjustmentRecord_get_baseMarkGlyphID_mA0EAEA751467A8841F9D20D122C4998905A508CC (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method) ;
  852. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 MarkToMarkAdjustmentRecord_get_baseMarkGlyphAnchorPoint_mB87ADA10491B42650BAD4DB7330771061827ACAB (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method) ;
  853. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToMarkAdjustmentRecord_get_combiningMarkGlyphID_m84613A2A27F87AA21CAEDD08759031302C9A8FBF (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method) ;
  854. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 MarkToMarkAdjustmentRecord_get_combiningMarkPositionAdjustment_mC109ECEDB4AD314A25C0EB1F6F6151AE611DE15C (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method) ;
  855. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* LigatureSubstitutionRecord_get_componentGlyphIDs_m3BBDC9421E3A7369B198379F5433FBB13ADCE628 (LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94* __this, const RuntimeMethod* method) ;
  856. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t LigatureSubstitutionRecord_get_ligatureGlyphID_m5FD629E204026FB8B6279498CDE5CAB1D23827EC (LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94* __this, const RuntimeMethod* method) ;
  857. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_ValidateArguments_m631DF788CA8A7DF599A5871AF4D7FA8B9C3B52CC_inline (String_t* ___0_name, const RuntimeMethod* method) ;
  858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Profiler_BeginSampleImpl_m7CA0C092A61229CA7BF617E521F2DE0E2B155CEA (String_t* ___0_name, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_targetObject, const RuntimeMethod* method) ;
  859. inline void List_1_AddWithResize_m9FD3C28AEFDC7247A9E6CE3E84E5489C5B13C1DA (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_item, const RuntimeMethod* method)
  860. {
  861. (( void (*) (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B*, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D, const RuntimeMethod*))List_1_AddWithResize_m9FD3C28AEFDC7247A9E6CE3E84E5489C5B13C1DA_gshared)(__this, ___0_item, method);
  862. }
  863. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
  864. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ;
  865. #ifdef __clang__
  866. #pragma clang diagnostic push
  867. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  868. #pragma clang diagnostic ignored "-Wunused-variable"
  869. #endif
  870. #ifdef __clang__
  871. #pragma clang diagnostic pop
  872. #endif
  873. #ifdef __clang__
  874. #pragma clang diagnostic push
  875. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  876. #pragma clang diagnostic ignored "-Wunused-variable"
  877. #endif
  878. IL2CPP_EXTERN_C void FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshal_pinvoke(const FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756& unmarshaled, FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_pinvoke& marshaled)
  879. {
  880. marshaled.___m_FaceIndex = unmarshaled.___m_FaceIndex;
  881. marshaled.___m_FamilyName = il2cpp_codegen_marshal_string(unmarshaled.___m_FamilyName);
  882. marshaled.___m_StyleName = il2cpp_codegen_marshal_string(unmarshaled.___m_StyleName);
  883. marshaled.___m_PointSize = unmarshaled.___m_PointSize;
  884. marshaled.___m_Scale = unmarshaled.___m_Scale;
  885. marshaled.___m_UnitsPerEM = unmarshaled.___m_UnitsPerEM;
  886. marshaled.___m_LineHeight = unmarshaled.___m_LineHeight;
  887. marshaled.___m_AscentLine = unmarshaled.___m_AscentLine;
  888. marshaled.___m_CapLine = unmarshaled.___m_CapLine;
  889. marshaled.___m_MeanLine = unmarshaled.___m_MeanLine;
  890. marshaled.___m_Baseline = unmarshaled.___m_Baseline;
  891. marshaled.___m_DescentLine = unmarshaled.___m_DescentLine;
  892. marshaled.___m_SuperscriptOffset = unmarshaled.___m_SuperscriptOffset;
  893. marshaled.___m_SuperscriptSize = unmarshaled.___m_SuperscriptSize;
  894. marshaled.___m_SubscriptOffset = unmarshaled.___m_SubscriptOffset;
  895. marshaled.___m_SubscriptSize = unmarshaled.___m_SubscriptSize;
  896. marshaled.___m_UnderlineOffset = unmarshaled.___m_UnderlineOffset;
  897. marshaled.___m_UnderlineThickness = unmarshaled.___m_UnderlineThickness;
  898. marshaled.___m_StrikethroughOffset = unmarshaled.___m_StrikethroughOffset;
  899. marshaled.___m_StrikethroughThickness = unmarshaled.___m_StrikethroughThickness;
  900. marshaled.___m_TabWidth = unmarshaled.___m_TabWidth;
  901. }
  902. IL2CPP_EXTERN_C void FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshal_pinvoke_back(const FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_pinvoke& marshaled, FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756& unmarshaled)
  903. {
  904. int32_t unmarshaledm_FaceIndex_temp_0 = 0;
  905. unmarshaledm_FaceIndex_temp_0 = marshaled.___m_FaceIndex;
  906. unmarshaled.___m_FaceIndex = unmarshaledm_FaceIndex_temp_0;
  907. unmarshaled.___m_FamilyName = il2cpp_codegen_marshal_string_result(marshaled.___m_FamilyName);
  908. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_FamilyName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_FamilyName));
  909. unmarshaled.___m_StyleName = il2cpp_codegen_marshal_string_result(marshaled.___m_StyleName);
  910. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_StyleName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_StyleName));
  911. int32_t unmarshaledm_PointSize_temp_3 = 0;
  912. unmarshaledm_PointSize_temp_3 = marshaled.___m_PointSize;
  913. unmarshaled.___m_PointSize = unmarshaledm_PointSize_temp_3;
  914. float unmarshaledm_Scale_temp_4 = 0.0f;
  915. unmarshaledm_Scale_temp_4 = marshaled.___m_Scale;
  916. unmarshaled.___m_Scale = unmarshaledm_Scale_temp_4;
  917. int32_t unmarshaledm_UnitsPerEM_temp_5 = 0;
  918. unmarshaledm_UnitsPerEM_temp_5 = marshaled.___m_UnitsPerEM;
  919. unmarshaled.___m_UnitsPerEM = unmarshaledm_UnitsPerEM_temp_5;
  920. float unmarshaledm_LineHeight_temp_6 = 0.0f;
  921. unmarshaledm_LineHeight_temp_6 = marshaled.___m_LineHeight;
  922. unmarshaled.___m_LineHeight = unmarshaledm_LineHeight_temp_6;
  923. float unmarshaledm_AscentLine_temp_7 = 0.0f;
  924. unmarshaledm_AscentLine_temp_7 = marshaled.___m_AscentLine;
  925. unmarshaled.___m_AscentLine = unmarshaledm_AscentLine_temp_7;
  926. float unmarshaledm_CapLine_temp_8 = 0.0f;
  927. unmarshaledm_CapLine_temp_8 = marshaled.___m_CapLine;
  928. unmarshaled.___m_CapLine = unmarshaledm_CapLine_temp_8;
  929. float unmarshaledm_MeanLine_temp_9 = 0.0f;
  930. unmarshaledm_MeanLine_temp_9 = marshaled.___m_MeanLine;
  931. unmarshaled.___m_MeanLine = unmarshaledm_MeanLine_temp_9;
  932. float unmarshaledm_Baseline_temp_10 = 0.0f;
  933. unmarshaledm_Baseline_temp_10 = marshaled.___m_Baseline;
  934. unmarshaled.___m_Baseline = unmarshaledm_Baseline_temp_10;
  935. float unmarshaledm_DescentLine_temp_11 = 0.0f;
  936. unmarshaledm_DescentLine_temp_11 = marshaled.___m_DescentLine;
  937. unmarshaled.___m_DescentLine = unmarshaledm_DescentLine_temp_11;
  938. float unmarshaledm_SuperscriptOffset_temp_12 = 0.0f;
  939. unmarshaledm_SuperscriptOffset_temp_12 = marshaled.___m_SuperscriptOffset;
  940. unmarshaled.___m_SuperscriptOffset = unmarshaledm_SuperscriptOffset_temp_12;
  941. float unmarshaledm_SuperscriptSize_temp_13 = 0.0f;
  942. unmarshaledm_SuperscriptSize_temp_13 = marshaled.___m_SuperscriptSize;
  943. unmarshaled.___m_SuperscriptSize = unmarshaledm_SuperscriptSize_temp_13;
  944. float unmarshaledm_SubscriptOffset_temp_14 = 0.0f;
  945. unmarshaledm_SubscriptOffset_temp_14 = marshaled.___m_SubscriptOffset;
  946. unmarshaled.___m_SubscriptOffset = unmarshaledm_SubscriptOffset_temp_14;
  947. float unmarshaledm_SubscriptSize_temp_15 = 0.0f;
  948. unmarshaledm_SubscriptSize_temp_15 = marshaled.___m_SubscriptSize;
  949. unmarshaled.___m_SubscriptSize = unmarshaledm_SubscriptSize_temp_15;
  950. float unmarshaledm_UnderlineOffset_temp_16 = 0.0f;
  951. unmarshaledm_UnderlineOffset_temp_16 = marshaled.___m_UnderlineOffset;
  952. unmarshaled.___m_UnderlineOffset = unmarshaledm_UnderlineOffset_temp_16;
  953. float unmarshaledm_UnderlineThickness_temp_17 = 0.0f;
  954. unmarshaledm_UnderlineThickness_temp_17 = marshaled.___m_UnderlineThickness;
  955. unmarshaled.___m_UnderlineThickness = unmarshaledm_UnderlineThickness_temp_17;
  956. float unmarshaledm_StrikethroughOffset_temp_18 = 0.0f;
  957. unmarshaledm_StrikethroughOffset_temp_18 = marshaled.___m_StrikethroughOffset;
  958. unmarshaled.___m_StrikethroughOffset = unmarshaledm_StrikethroughOffset_temp_18;
  959. float unmarshaledm_StrikethroughThickness_temp_19 = 0.0f;
  960. unmarshaledm_StrikethroughThickness_temp_19 = marshaled.___m_StrikethroughThickness;
  961. unmarshaled.___m_StrikethroughThickness = unmarshaledm_StrikethroughThickness_temp_19;
  962. float unmarshaledm_TabWidth_temp_20 = 0.0f;
  963. unmarshaledm_TabWidth_temp_20 = marshaled.___m_TabWidth;
  964. unmarshaled.___m_TabWidth = unmarshaledm_TabWidth_temp_20;
  965. }
  966. IL2CPP_EXTERN_C void FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshal_pinvoke_cleanup(FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_pinvoke& marshaled)
  967. {
  968. il2cpp_codegen_marshal_free(marshaled.___m_FamilyName);
  969. marshaled.___m_FamilyName = NULL;
  970. il2cpp_codegen_marshal_free(marshaled.___m_StyleName);
  971. marshaled.___m_StyleName = NULL;
  972. }
  973. IL2CPP_EXTERN_C void FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshal_com(const FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756& unmarshaled, FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_com& marshaled)
  974. {
  975. marshaled.___m_FaceIndex = unmarshaled.___m_FaceIndex;
  976. marshaled.___m_FamilyName = il2cpp_codegen_marshal_bstring(unmarshaled.___m_FamilyName);
  977. marshaled.___m_StyleName = il2cpp_codegen_marshal_bstring(unmarshaled.___m_StyleName);
  978. marshaled.___m_PointSize = unmarshaled.___m_PointSize;
  979. marshaled.___m_Scale = unmarshaled.___m_Scale;
  980. marshaled.___m_UnitsPerEM = unmarshaled.___m_UnitsPerEM;
  981. marshaled.___m_LineHeight = unmarshaled.___m_LineHeight;
  982. marshaled.___m_AscentLine = unmarshaled.___m_AscentLine;
  983. marshaled.___m_CapLine = unmarshaled.___m_CapLine;
  984. marshaled.___m_MeanLine = unmarshaled.___m_MeanLine;
  985. marshaled.___m_Baseline = unmarshaled.___m_Baseline;
  986. marshaled.___m_DescentLine = unmarshaled.___m_DescentLine;
  987. marshaled.___m_SuperscriptOffset = unmarshaled.___m_SuperscriptOffset;
  988. marshaled.___m_SuperscriptSize = unmarshaled.___m_SuperscriptSize;
  989. marshaled.___m_SubscriptOffset = unmarshaled.___m_SubscriptOffset;
  990. marshaled.___m_SubscriptSize = unmarshaled.___m_SubscriptSize;
  991. marshaled.___m_UnderlineOffset = unmarshaled.___m_UnderlineOffset;
  992. marshaled.___m_UnderlineThickness = unmarshaled.___m_UnderlineThickness;
  993. marshaled.___m_StrikethroughOffset = unmarshaled.___m_StrikethroughOffset;
  994. marshaled.___m_StrikethroughThickness = unmarshaled.___m_StrikethroughThickness;
  995. marshaled.___m_TabWidth = unmarshaled.___m_TabWidth;
  996. }
  997. IL2CPP_EXTERN_C void FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshal_com_back(const FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_com& marshaled, FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756& unmarshaled)
  998. {
  999. int32_t unmarshaledm_FaceIndex_temp_0 = 0;
  1000. unmarshaledm_FaceIndex_temp_0 = marshaled.___m_FaceIndex;
  1001. unmarshaled.___m_FaceIndex = unmarshaledm_FaceIndex_temp_0;
  1002. unmarshaled.___m_FamilyName = il2cpp_codegen_marshal_bstring_result(marshaled.___m_FamilyName);
  1003. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_FamilyName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_FamilyName));
  1004. unmarshaled.___m_StyleName = il2cpp_codegen_marshal_bstring_result(marshaled.___m_StyleName);
  1005. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_StyleName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_StyleName));
  1006. int32_t unmarshaledm_PointSize_temp_3 = 0;
  1007. unmarshaledm_PointSize_temp_3 = marshaled.___m_PointSize;
  1008. unmarshaled.___m_PointSize = unmarshaledm_PointSize_temp_3;
  1009. float unmarshaledm_Scale_temp_4 = 0.0f;
  1010. unmarshaledm_Scale_temp_4 = marshaled.___m_Scale;
  1011. unmarshaled.___m_Scale = unmarshaledm_Scale_temp_4;
  1012. int32_t unmarshaledm_UnitsPerEM_temp_5 = 0;
  1013. unmarshaledm_UnitsPerEM_temp_5 = marshaled.___m_UnitsPerEM;
  1014. unmarshaled.___m_UnitsPerEM = unmarshaledm_UnitsPerEM_temp_5;
  1015. float unmarshaledm_LineHeight_temp_6 = 0.0f;
  1016. unmarshaledm_LineHeight_temp_6 = marshaled.___m_LineHeight;
  1017. unmarshaled.___m_LineHeight = unmarshaledm_LineHeight_temp_6;
  1018. float unmarshaledm_AscentLine_temp_7 = 0.0f;
  1019. unmarshaledm_AscentLine_temp_7 = marshaled.___m_AscentLine;
  1020. unmarshaled.___m_AscentLine = unmarshaledm_AscentLine_temp_7;
  1021. float unmarshaledm_CapLine_temp_8 = 0.0f;
  1022. unmarshaledm_CapLine_temp_8 = marshaled.___m_CapLine;
  1023. unmarshaled.___m_CapLine = unmarshaledm_CapLine_temp_8;
  1024. float unmarshaledm_MeanLine_temp_9 = 0.0f;
  1025. unmarshaledm_MeanLine_temp_9 = marshaled.___m_MeanLine;
  1026. unmarshaled.___m_MeanLine = unmarshaledm_MeanLine_temp_9;
  1027. float unmarshaledm_Baseline_temp_10 = 0.0f;
  1028. unmarshaledm_Baseline_temp_10 = marshaled.___m_Baseline;
  1029. unmarshaled.___m_Baseline = unmarshaledm_Baseline_temp_10;
  1030. float unmarshaledm_DescentLine_temp_11 = 0.0f;
  1031. unmarshaledm_DescentLine_temp_11 = marshaled.___m_DescentLine;
  1032. unmarshaled.___m_DescentLine = unmarshaledm_DescentLine_temp_11;
  1033. float unmarshaledm_SuperscriptOffset_temp_12 = 0.0f;
  1034. unmarshaledm_SuperscriptOffset_temp_12 = marshaled.___m_SuperscriptOffset;
  1035. unmarshaled.___m_SuperscriptOffset = unmarshaledm_SuperscriptOffset_temp_12;
  1036. float unmarshaledm_SuperscriptSize_temp_13 = 0.0f;
  1037. unmarshaledm_SuperscriptSize_temp_13 = marshaled.___m_SuperscriptSize;
  1038. unmarshaled.___m_SuperscriptSize = unmarshaledm_SuperscriptSize_temp_13;
  1039. float unmarshaledm_SubscriptOffset_temp_14 = 0.0f;
  1040. unmarshaledm_SubscriptOffset_temp_14 = marshaled.___m_SubscriptOffset;
  1041. unmarshaled.___m_SubscriptOffset = unmarshaledm_SubscriptOffset_temp_14;
  1042. float unmarshaledm_SubscriptSize_temp_15 = 0.0f;
  1043. unmarshaledm_SubscriptSize_temp_15 = marshaled.___m_SubscriptSize;
  1044. unmarshaled.___m_SubscriptSize = unmarshaledm_SubscriptSize_temp_15;
  1045. float unmarshaledm_UnderlineOffset_temp_16 = 0.0f;
  1046. unmarshaledm_UnderlineOffset_temp_16 = marshaled.___m_UnderlineOffset;
  1047. unmarshaled.___m_UnderlineOffset = unmarshaledm_UnderlineOffset_temp_16;
  1048. float unmarshaledm_UnderlineThickness_temp_17 = 0.0f;
  1049. unmarshaledm_UnderlineThickness_temp_17 = marshaled.___m_UnderlineThickness;
  1050. unmarshaled.___m_UnderlineThickness = unmarshaledm_UnderlineThickness_temp_17;
  1051. float unmarshaledm_StrikethroughOffset_temp_18 = 0.0f;
  1052. unmarshaledm_StrikethroughOffset_temp_18 = marshaled.___m_StrikethroughOffset;
  1053. unmarshaled.___m_StrikethroughOffset = unmarshaledm_StrikethroughOffset_temp_18;
  1054. float unmarshaledm_StrikethroughThickness_temp_19 = 0.0f;
  1055. unmarshaledm_StrikethroughThickness_temp_19 = marshaled.___m_StrikethroughThickness;
  1056. unmarshaled.___m_StrikethroughThickness = unmarshaledm_StrikethroughThickness_temp_19;
  1057. float unmarshaledm_TabWidth_temp_20 = 0.0f;
  1058. unmarshaledm_TabWidth_temp_20 = marshaled.___m_TabWidth;
  1059. unmarshaled.___m_TabWidth = unmarshaledm_TabWidth_temp_20;
  1060. }
  1061. IL2CPP_EXTERN_C void FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshal_com_cleanup(FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_com& marshaled)
  1062. {
  1063. il2cpp_codegen_marshal_free_bstring(marshaled.___m_FamilyName);
  1064. marshaled.___m_FamilyName = NULL;
  1065. il2cpp_codegen_marshal_free_bstring(marshaled.___m_StyleName);
  1066. marshaled.___m_StyleName = NULL;
  1067. }
  1068. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_faceIndex_m3C9FB6429035CD34ACD201FB5951AF06E9C2A641 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1069. {
  1070. int32_t V_0 = 0;
  1071. {
  1072. int32_t L_0 = __this->___m_FaceIndex;
  1073. V_0 = L_0;
  1074. goto IL_000a;
  1075. }
  1076. IL_000a:
  1077. {
  1078. int32_t L_1 = V_0;
  1079. return L_1;
  1080. }
  1081. }
  1082. IL2CPP_EXTERN_C int32_t FaceInfo_get_faceIndex_m3C9FB6429035CD34ACD201FB5951AF06E9C2A641_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1083. {
  1084. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1085. int32_t _offset = 1;
  1086. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1087. int32_t _returnValue;
  1088. _returnValue = FaceInfo_get_faceIndex_m3C9FB6429035CD34ACD201FB5951AF06E9C2A641(_thisAdjusted, method);
  1089. return _returnValue;
  1090. }
  1091. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FaceInfo_get_familyName_m62DAF5DE45EA9F3B300B927603D101D350D27241 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1092. {
  1093. String_t* V_0 = NULL;
  1094. {
  1095. String_t* L_0 = __this->___m_FamilyName;
  1096. V_0 = L_0;
  1097. goto IL_000a;
  1098. }
  1099. IL_000a:
  1100. {
  1101. String_t* L_1 = V_0;
  1102. return L_1;
  1103. }
  1104. }
  1105. IL2CPP_EXTERN_C String_t* FaceInfo_get_familyName_m62DAF5DE45EA9F3B300B927603D101D350D27241_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1106. {
  1107. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1108. int32_t _offset = 1;
  1109. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1110. String_t* _returnValue;
  1111. _returnValue = FaceInfo_get_familyName_m62DAF5DE45EA9F3B300B927603D101D350D27241(_thisAdjusted, method);
  1112. return _returnValue;
  1113. }
  1114. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_familyName_m49CB07A51AC9008B4F399A3064EC4FF6EA8E839D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, String_t* ___0_value, const RuntimeMethod* method)
  1115. {
  1116. {
  1117. String_t* L_0 = ___0_value;
  1118. __this->___m_FamilyName = L_0;
  1119. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FamilyName), (void*)L_0);
  1120. return;
  1121. }
  1122. }
  1123. IL2CPP_EXTERN_C void FaceInfo_set_familyName_m49CB07A51AC9008B4F399A3064EC4FF6EA8E839D_AdjustorThunk (RuntimeObject* __this, String_t* ___0_value, const RuntimeMethod* method)
  1124. {
  1125. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1126. int32_t _offset = 1;
  1127. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1128. FaceInfo_set_familyName_m49CB07A51AC9008B4F399A3064EC4FF6EA8E839D(_thisAdjusted, ___0_value, method);
  1129. }
  1130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FaceInfo_get_styleName_mACBAA6529BCE3BC14987645691350A4FB1CB0FC6 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1131. {
  1132. String_t* V_0 = NULL;
  1133. {
  1134. String_t* L_0 = __this->___m_StyleName;
  1135. V_0 = L_0;
  1136. goto IL_000a;
  1137. }
  1138. IL_000a:
  1139. {
  1140. String_t* L_1 = V_0;
  1141. return L_1;
  1142. }
  1143. }
  1144. IL2CPP_EXTERN_C String_t* FaceInfo_get_styleName_mACBAA6529BCE3BC14987645691350A4FB1CB0FC6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1145. {
  1146. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1147. int32_t _offset = 1;
  1148. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1149. String_t* _returnValue;
  1150. _returnValue = FaceInfo_get_styleName_mACBAA6529BCE3BC14987645691350A4FB1CB0FC6(_thisAdjusted, method);
  1151. return _returnValue;
  1152. }
  1153. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_styleName_m3BEBF7E576032A668BCC83D88D2F6902F561B5E6 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, String_t* ___0_value, const RuntimeMethod* method)
  1154. {
  1155. {
  1156. String_t* L_0 = ___0_value;
  1157. __this->___m_StyleName = L_0;
  1158. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StyleName), (void*)L_0);
  1159. return;
  1160. }
  1161. }
  1162. IL2CPP_EXTERN_C void FaceInfo_set_styleName_m3BEBF7E576032A668BCC83D88D2F6902F561B5E6_AdjustorThunk (RuntimeObject* __this, String_t* ___0_value, const RuntimeMethod* method)
  1163. {
  1164. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1165. int32_t _offset = 1;
  1166. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1167. FaceInfo_set_styleName_m3BEBF7E576032A668BCC83D88D2F6902F561B5E6(_thisAdjusted, ___0_value, method);
  1168. }
  1169. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1170. {
  1171. int32_t V_0 = 0;
  1172. {
  1173. int32_t L_0 = __this->___m_PointSize;
  1174. V_0 = L_0;
  1175. goto IL_000a;
  1176. }
  1177. IL_000a:
  1178. {
  1179. int32_t L_1 = V_0;
  1180. return L_1;
  1181. }
  1182. }
  1183. IL2CPP_EXTERN_C int32_t FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1184. {
  1185. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1186. int32_t _offset = 1;
  1187. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1188. int32_t _returnValue;
  1189. _returnValue = FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB(_thisAdjusted, method);
  1190. return _returnValue;
  1191. }
  1192. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_pointSize_m17D0B03C4A762F657A4ABD15327B08D6B55EF492 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, int32_t ___0_value, const RuntimeMethod* method)
  1193. {
  1194. {
  1195. int32_t L_0 = ___0_value;
  1196. __this->___m_PointSize = L_0;
  1197. return;
  1198. }
  1199. }
  1200. IL2CPP_EXTERN_C void FaceInfo_set_pointSize_m17D0B03C4A762F657A4ABD15327B08D6B55EF492_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
  1201. {
  1202. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1203. int32_t _offset = 1;
  1204. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1205. FaceInfo_set_pointSize_m17D0B03C4A762F657A4ABD15327B08D6B55EF492(_thisAdjusted, ___0_value, method);
  1206. }
  1207. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_scale_mC475A572AD4956B47D8B9F8D90DC69BBBB102FCD (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1208. {
  1209. float V_0 = 0.0f;
  1210. {
  1211. float L_0 = __this->___m_Scale;
  1212. V_0 = L_0;
  1213. goto IL_000a;
  1214. }
  1215. IL_000a:
  1216. {
  1217. float L_1 = V_0;
  1218. return L_1;
  1219. }
  1220. }
  1221. IL2CPP_EXTERN_C float FaceInfo_get_scale_mC475A572AD4956B47D8B9F8D90DC69BBBB102FCD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1222. {
  1223. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1224. int32_t _offset = 1;
  1225. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1226. float _returnValue;
  1227. _returnValue = FaceInfo_get_scale_mC475A572AD4956B47D8B9F8D90DC69BBBB102FCD(_thisAdjusted, method);
  1228. return _returnValue;
  1229. }
  1230. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_scale_m379253929403DA08480CAD127C908A0E8329A5D4 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1231. {
  1232. {
  1233. float L_0 = ___0_value;
  1234. __this->___m_Scale = L_0;
  1235. return;
  1236. }
  1237. }
  1238. IL2CPP_EXTERN_C void FaceInfo_set_scale_m379253929403DA08480CAD127C908A0E8329A5D4_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1239. {
  1240. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1241. int32_t _offset = 1;
  1242. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1243. FaceInfo_set_scale_m379253929403DA08480CAD127C908A0E8329A5D4(_thisAdjusted, ___0_value, method);
  1244. }
  1245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_lineHeight_m528B4A822181FCECF3D4FF1045DF288E5872AB9D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1246. {
  1247. float V_0 = 0.0f;
  1248. {
  1249. float L_0 = __this->___m_LineHeight;
  1250. V_0 = L_0;
  1251. goto IL_000a;
  1252. }
  1253. IL_000a:
  1254. {
  1255. float L_1 = V_0;
  1256. return L_1;
  1257. }
  1258. }
  1259. IL2CPP_EXTERN_C float FaceInfo_get_lineHeight_m528B4A822181FCECF3D4FF1045DF288E5872AB9D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1260. {
  1261. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1262. int32_t _offset = 1;
  1263. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1264. float _returnValue;
  1265. _returnValue = FaceInfo_get_lineHeight_m528B4A822181FCECF3D4FF1045DF288E5872AB9D(_thisAdjusted, method);
  1266. return _returnValue;
  1267. }
  1268. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_lineHeight_m5952A394C6055DD86700448D9E33EBBE852E05AE (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1269. {
  1270. {
  1271. float L_0 = ___0_value;
  1272. __this->___m_LineHeight = L_0;
  1273. return;
  1274. }
  1275. }
  1276. IL2CPP_EXTERN_C void FaceInfo_set_lineHeight_m5952A394C6055DD86700448D9E33EBBE852E05AE_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1277. {
  1278. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1279. int32_t _offset = 1;
  1280. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1281. FaceInfo_set_lineHeight_m5952A394C6055DD86700448D9E33EBBE852E05AE(_thisAdjusted, ___0_value, method);
  1282. }
  1283. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_ascentLine_m193755D649428EC24A7E433A1728F11DA7547ABD (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1284. {
  1285. float V_0 = 0.0f;
  1286. {
  1287. float L_0 = __this->___m_AscentLine;
  1288. V_0 = L_0;
  1289. goto IL_000a;
  1290. }
  1291. IL_000a:
  1292. {
  1293. float L_1 = V_0;
  1294. return L_1;
  1295. }
  1296. }
  1297. IL2CPP_EXTERN_C float FaceInfo_get_ascentLine_m193755D649428EC24A7E433A1728F11DA7547ABD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1298. {
  1299. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1300. int32_t _offset = 1;
  1301. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1302. float _returnValue;
  1303. _returnValue = FaceInfo_get_ascentLine_m193755D649428EC24A7E433A1728F11DA7547ABD(_thisAdjusted, method);
  1304. return _returnValue;
  1305. }
  1306. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_ascentLine_mDFB32635374875A695D3BB686D2A16C648A20D78 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1307. {
  1308. {
  1309. float L_0 = ___0_value;
  1310. __this->___m_AscentLine = L_0;
  1311. return;
  1312. }
  1313. }
  1314. IL2CPP_EXTERN_C void FaceInfo_set_ascentLine_mDFB32635374875A695D3BB686D2A16C648A20D78_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1315. {
  1316. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1317. int32_t _offset = 1;
  1318. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1319. FaceInfo_set_ascentLine_mDFB32635374875A695D3BB686D2A16C648A20D78(_thisAdjusted, ___0_value, method);
  1320. }
  1321. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_capLine_m0D95B5D5CEC5CFB12091F5EB5965DE6E38588C88 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1322. {
  1323. float V_0 = 0.0f;
  1324. {
  1325. float L_0 = __this->___m_CapLine;
  1326. V_0 = L_0;
  1327. goto IL_000a;
  1328. }
  1329. IL_000a:
  1330. {
  1331. float L_1 = V_0;
  1332. return L_1;
  1333. }
  1334. }
  1335. IL2CPP_EXTERN_C float FaceInfo_get_capLine_m0D95B5D5CEC5CFB12091F5EB5965DE6E38588C88_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1336. {
  1337. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1338. int32_t _offset = 1;
  1339. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1340. float _returnValue;
  1341. _returnValue = FaceInfo_get_capLine_m0D95B5D5CEC5CFB12091F5EB5965DE6E38588C88(_thisAdjusted, method);
  1342. return _returnValue;
  1343. }
  1344. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_capLine_m4716D75CE87EC018E5EA3DE87DA703DBE7A9FEEF (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1345. {
  1346. {
  1347. float L_0 = ___0_value;
  1348. __this->___m_CapLine = L_0;
  1349. return;
  1350. }
  1351. }
  1352. IL2CPP_EXTERN_C void FaceInfo_set_capLine_m4716D75CE87EC018E5EA3DE87DA703DBE7A9FEEF_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1353. {
  1354. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1355. int32_t _offset = 1;
  1356. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1357. FaceInfo_set_capLine_m4716D75CE87EC018E5EA3DE87DA703DBE7A9FEEF(_thisAdjusted, ___0_value, method);
  1358. }
  1359. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_meanLine_m5FF396E0E32A046C1D3CBD3AC1FA279984394D96 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1360. {
  1361. float V_0 = 0.0f;
  1362. {
  1363. float L_0 = __this->___m_MeanLine;
  1364. V_0 = L_0;
  1365. goto IL_000a;
  1366. }
  1367. IL_000a:
  1368. {
  1369. float L_1 = V_0;
  1370. return L_1;
  1371. }
  1372. }
  1373. IL2CPP_EXTERN_C float FaceInfo_get_meanLine_m5FF396E0E32A046C1D3CBD3AC1FA279984394D96_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1374. {
  1375. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1376. int32_t _offset = 1;
  1377. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1378. float _returnValue;
  1379. _returnValue = FaceInfo_get_meanLine_m5FF396E0E32A046C1D3CBD3AC1FA279984394D96(_thisAdjusted, method);
  1380. return _returnValue;
  1381. }
  1382. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_meanLine_mE957CD43CB778B093331CC4B10A5330E8FF1CB99 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1383. {
  1384. {
  1385. float L_0 = ___0_value;
  1386. __this->___m_MeanLine = L_0;
  1387. return;
  1388. }
  1389. }
  1390. IL2CPP_EXTERN_C void FaceInfo_set_meanLine_mE957CD43CB778B093331CC4B10A5330E8FF1CB99_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1391. {
  1392. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1393. int32_t _offset = 1;
  1394. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1395. FaceInfo_set_meanLine_mE957CD43CB778B093331CC4B10A5330E8FF1CB99(_thisAdjusted, ___0_value, method);
  1396. }
  1397. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_baseline_m934B597D3E0080FEF98CBDD091C457B497179C3A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1398. {
  1399. float V_0 = 0.0f;
  1400. {
  1401. float L_0 = __this->___m_Baseline;
  1402. V_0 = L_0;
  1403. goto IL_000a;
  1404. }
  1405. IL_000a:
  1406. {
  1407. float L_1 = V_0;
  1408. return L_1;
  1409. }
  1410. }
  1411. IL2CPP_EXTERN_C float FaceInfo_get_baseline_m934B597D3E0080FEF98CBDD091C457B497179C3A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1412. {
  1413. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1414. int32_t _offset = 1;
  1415. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1416. float _returnValue;
  1417. _returnValue = FaceInfo_get_baseline_m934B597D3E0080FEF98CBDD091C457B497179C3A(_thisAdjusted, method);
  1418. return _returnValue;
  1419. }
  1420. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_baseline_m528F6ADAF4F45A31E9D2BA362FB3C02B03DDD741 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1421. {
  1422. {
  1423. float L_0 = ___0_value;
  1424. __this->___m_Baseline = L_0;
  1425. return;
  1426. }
  1427. }
  1428. IL2CPP_EXTERN_C void FaceInfo_set_baseline_m528F6ADAF4F45A31E9D2BA362FB3C02B03DDD741_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1429. {
  1430. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1431. int32_t _offset = 1;
  1432. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1433. FaceInfo_set_baseline_m528F6ADAF4F45A31E9D2BA362FB3C02B03DDD741(_thisAdjusted, ___0_value, method);
  1434. }
  1435. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_descentLine_m811A243C9B328B0C546BF9927A010A05DF172BD3 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1436. {
  1437. float V_0 = 0.0f;
  1438. {
  1439. float L_0 = __this->___m_DescentLine;
  1440. V_0 = L_0;
  1441. goto IL_000a;
  1442. }
  1443. IL_000a:
  1444. {
  1445. float L_1 = V_0;
  1446. return L_1;
  1447. }
  1448. }
  1449. IL2CPP_EXTERN_C float FaceInfo_get_descentLine_m811A243C9B328B0C546BF9927A010A05DF172BD3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1450. {
  1451. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1452. int32_t _offset = 1;
  1453. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1454. float _returnValue;
  1455. _returnValue = FaceInfo_get_descentLine_m811A243C9B328B0C546BF9927A010A05DF172BD3(_thisAdjusted, method);
  1456. return _returnValue;
  1457. }
  1458. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_descentLine_m62423E864258229A85FD3684D8385A44C01AF97C (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1459. {
  1460. {
  1461. float L_0 = ___0_value;
  1462. __this->___m_DescentLine = L_0;
  1463. return;
  1464. }
  1465. }
  1466. IL2CPP_EXTERN_C void FaceInfo_set_descentLine_m62423E864258229A85FD3684D8385A44C01AF97C_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1467. {
  1468. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1469. int32_t _offset = 1;
  1470. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1471. FaceInfo_set_descentLine_m62423E864258229A85FD3684D8385A44C01AF97C(_thisAdjusted, ___0_value, method);
  1472. }
  1473. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptOffset_m8D462DB86414D8507C7D1CC6881DA9EC896FB80A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1474. {
  1475. float V_0 = 0.0f;
  1476. {
  1477. float L_0 = __this->___m_SuperscriptOffset;
  1478. V_0 = L_0;
  1479. goto IL_000a;
  1480. }
  1481. IL_000a:
  1482. {
  1483. float L_1 = V_0;
  1484. return L_1;
  1485. }
  1486. }
  1487. IL2CPP_EXTERN_C float FaceInfo_get_superscriptOffset_m8D462DB86414D8507C7D1CC6881DA9EC896FB80A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1488. {
  1489. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1490. int32_t _offset = 1;
  1491. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1492. float _returnValue;
  1493. _returnValue = FaceInfo_get_superscriptOffset_m8D462DB86414D8507C7D1CC6881DA9EC896FB80A(_thisAdjusted, method);
  1494. return _returnValue;
  1495. }
  1496. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptOffset_mC81144590FA80858D489AFC46AAA383E11D3D2B5 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1497. {
  1498. {
  1499. float L_0 = ___0_value;
  1500. __this->___m_SuperscriptOffset = L_0;
  1501. return;
  1502. }
  1503. }
  1504. IL2CPP_EXTERN_C void FaceInfo_set_superscriptOffset_mC81144590FA80858D489AFC46AAA383E11D3D2B5_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1505. {
  1506. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1507. int32_t _offset = 1;
  1508. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1509. FaceInfo_set_superscriptOffset_mC81144590FA80858D489AFC46AAA383E11D3D2B5(_thisAdjusted, ___0_value, method);
  1510. }
  1511. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptSize_mC3ABE7C70559A8214294CDA598B17FD62BDC2EE0 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1512. {
  1513. float V_0 = 0.0f;
  1514. {
  1515. float L_0 = __this->___m_SuperscriptSize;
  1516. V_0 = L_0;
  1517. goto IL_000a;
  1518. }
  1519. IL_000a:
  1520. {
  1521. float L_1 = V_0;
  1522. return L_1;
  1523. }
  1524. }
  1525. IL2CPP_EXTERN_C float FaceInfo_get_superscriptSize_mC3ABE7C70559A8214294CDA598B17FD62BDC2EE0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1526. {
  1527. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1528. int32_t _offset = 1;
  1529. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1530. float _returnValue;
  1531. _returnValue = FaceInfo_get_superscriptSize_mC3ABE7C70559A8214294CDA598B17FD62BDC2EE0(_thisAdjusted, method);
  1532. return _returnValue;
  1533. }
  1534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptSize_m89F17C1502C07A3846402A5A43369BFB66723515 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1535. {
  1536. {
  1537. float L_0 = ___0_value;
  1538. __this->___m_SuperscriptSize = L_0;
  1539. return;
  1540. }
  1541. }
  1542. IL2CPP_EXTERN_C void FaceInfo_set_superscriptSize_m89F17C1502C07A3846402A5A43369BFB66723515_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1543. {
  1544. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1545. int32_t _offset = 1;
  1546. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1547. FaceInfo_set_superscriptSize_m89F17C1502C07A3846402A5A43369BFB66723515(_thisAdjusted, ___0_value, method);
  1548. }
  1549. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptOffset_mF1D3E68AC3D449CBC73AA0CBF5B8A187C6C5285A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1550. {
  1551. float V_0 = 0.0f;
  1552. {
  1553. float L_0 = __this->___m_SubscriptOffset;
  1554. V_0 = L_0;
  1555. goto IL_000a;
  1556. }
  1557. IL_000a:
  1558. {
  1559. float L_1 = V_0;
  1560. return L_1;
  1561. }
  1562. }
  1563. IL2CPP_EXTERN_C float FaceInfo_get_subscriptOffset_mF1D3E68AC3D449CBC73AA0CBF5B8A187C6C5285A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1564. {
  1565. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1566. int32_t _offset = 1;
  1567. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1568. float _returnValue;
  1569. _returnValue = FaceInfo_get_subscriptOffset_mF1D3E68AC3D449CBC73AA0CBF5B8A187C6C5285A(_thisAdjusted, method);
  1570. return _returnValue;
  1571. }
  1572. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptOffset_m796EF61DE0677BFB134F6B8C4B6C1869BCF8782A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1573. {
  1574. {
  1575. float L_0 = ___0_value;
  1576. __this->___m_SubscriptOffset = L_0;
  1577. return;
  1578. }
  1579. }
  1580. IL2CPP_EXTERN_C void FaceInfo_set_subscriptOffset_m796EF61DE0677BFB134F6B8C4B6C1869BCF8782A_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1581. {
  1582. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1583. int32_t _offset = 1;
  1584. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1585. FaceInfo_set_subscriptOffset_m796EF61DE0677BFB134F6B8C4B6C1869BCF8782A(_thisAdjusted, ___0_value, method);
  1586. }
  1587. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptSize_mF6264BFB215FDE6C94A45D2F8FC946ADFCDD2E31 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1588. {
  1589. float V_0 = 0.0f;
  1590. {
  1591. float L_0 = __this->___m_SubscriptSize;
  1592. V_0 = L_0;
  1593. goto IL_000a;
  1594. }
  1595. IL_000a:
  1596. {
  1597. float L_1 = V_0;
  1598. return L_1;
  1599. }
  1600. }
  1601. IL2CPP_EXTERN_C float FaceInfo_get_subscriptSize_mF6264BFB215FDE6C94A45D2F8FC946ADFCDD2E31_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1602. {
  1603. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1604. int32_t _offset = 1;
  1605. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1606. float _returnValue;
  1607. _returnValue = FaceInfo_get_subscriptSize_mF6264BFB215FDE6C94A45D2F8FC946ADFCDD2E31(_thisAdjusted, method);
  1608. return _returnValue;
  1609. }
  1610. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptSize_m5759439F9D100591A6FFF1D7377495CEBDCD6B5D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1611. {
  1612. {
  1613. float L_0 = ___0_value;
  1614. __this->___m_SubscriptSize = L_0;
  1615. return;
  1616. }
  1617. }
  1618. IL2CPP_EXTERN_C void FaceInfo_set_subscriptSize_m5759439F9D100591A6FFF1D7377495CEBDCD6B5D_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1619. {
  1620. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1621. int32_t _offset = 1;
  1622. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1623. FaceInfo_set_subscriptSize_m5759439F9D100591A6FFF1D7377495CEBDCD6B5D(_thisAdjusted, ___0_value, method);
  1624. }
  1625. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineOffset_mB1CBB29ECFFE69047F35E654E7F90755F95DD251 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1626. {
  1627. float V_0 = 0.0f;
  1628. {
  1629. float L_0 = __this->___m_UnderlineOffset;
  1630. V_0 = L_0;
  1631. goto IL_000a;
  1632. }
  1633. IL_000a:
  1634. {
  1635. float L_1 = V_0;
  1636. return L_1;
  1637. }
  1638. }
  1639. IL2CPP_EXTERN_C float FaceInfo_get_underlineOffset_mB1CBB29ECFFE69047F35E654E7F90755F95DD251_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1640. {
  1641. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1642. int32_t _offset = 1;
  1643. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1644. float _returnValue;
  1645. _returnValue = FaceInfo_get_underlineOffset_mB1CBB29ECFFE69047F35E654E7F90755F95DD251(_thisAdjusted, method);
  1646. return _returnValue;
  1647. }
  1648. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineOffset_m1C0E755772FE8C47D565E6CC7DC4E953B71794AA (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1649. {
  1650. {
  1651. float L_0 = ___0_value;
  1652. __this->___m_UnderlineOffset = L_0;
  1653. return;
  1654. }
  1655. }
  1656. IL2CPP_EXTERN_C void FaceInfo_set_underlineOffset_m1C0E755772FE8C47D565E6CC7DC4E953B71794AA_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1657. {
  1658. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1659. int32_t _offset = 1;
  1660. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1661. FaceInfo_set_underlineOffset_m1C0E755772FE8C47D565E6CC7DC4E953B71794AA(_thisAdjusted, ___0_value, method);
  1662. }
  1663. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineThickness_mC032F8C026994AF3FD49E6AB12E113F61EFA98E2 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1664. {
  1665. float V_0 = 0.0f;
  1666. {
  1667. float L_0 = __this->___m_UnderlineThickness;
  1668. V_0 = L_0;
  1669. goto IL_000a;
  1670. }
  1671. IL_000a:
  1672. {
  1673. float L_1 = V_0;
  1674. return L_1;
  1675. }
  1676. }
  1677. IL2CPP_EXTERN_C float FaceInfo_get_underlineThickness_mC032F8C026994AF3FD49E6AB12E113F61EFA98E2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1678. {
  1679. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1680. int32_t _offset = 1;
  1681. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1682. float _returnValue;
  1683. _returnValue = FaceInfo_get_underlineThickness_mC032F8C026994AF3FD49E6AB12E113F61EFA98E2(_thisAdjusted, method);
  1684. return _returnValue;
  1685. }
  1686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineThickness_mDD002D08CE97E0C7DA6FA6FFBDD15295D24B303A (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1687. {
  1688. {
  1689. float L_0 = ___0_value;
  1690. __this->___m_UnderlineThickness = L_0;
  1691. return;
  1692. }
  1693. }
  1694. IL2CPP_EXTERN_C void FaceInfo_set_underlineThickness_mDD002D08CE97E0C7DA6FA6FFBDD15295D24B303A_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1695. {
  1696. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1697. int32_t _offset = 1;
  1698. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1699. FaceInfo_set_underlineThickness_mDD002D08CE97E0C7DA6FA6FFBDD15295D24B303A(_thisAdjusted, ___0_value, method);
  1700. }
  1701. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_strikethroughOffset_m7997E4A1512FE358331B3A6543C62C92A0AA5CA5 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1702. {
  1703. float V_0 = 0.0f;
  1704. {
  1705. float L_0 = __this->___m_StrikethroughOffset;
  1706. V_0 = L_0;
  1707. goto IL_000a;
  1708. }
  1709. IL_000a:
  1710. {
  1711. float L_1 = V_0;
  1712. return L_1;
  1713. }
  1714. }
  1715. IL2CPP_EXTERN_C float FaceInfo_get_strikethroughOffset_m7997E4A1512FE358331B3A6543C62C92A0AA5CA5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1716. {
  1717. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1718. int32_t _offset = 1;
  1719. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1720. float _returnValue;
  1721. _returnValue = FaceInfo_get_strikethroughOffset_m7997E4A1512FE358331B3A6543C62C92A0AA5CA5(_thisAdjusted, method);
  1722. return _returnValue;
  1723. }
  1724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughOffset_m57B05848BDA21F7AF6563394D29C8AE7107FEFF0 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1725. {
  1726. {
  1727. float L_0 = ___0_value;
  1728. __this->___m_StrikethroughOffset = L_0;
  1729. return;
  1730. }
  1731. }
  1732. IL2CPP_EXTERN_C void FaceInfo_set_strikethroughOffset_m57B05848BDA21F7AF6563394D29C8AE7107FEFF0_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1733. {
  1734. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1735. int32_t _offset = 1;
  1736. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1737. FaceInfo_set_strikethroughOffset_m57B05848BDA21F7AF6563394D29C8AE7107FEFF0(_thisAdjusted, ___0_value, method);
  1738. }
  1739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughThickness_m8CA3C9897FF3D5D0F653539CCBF5E16E01CACF52 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1740. {
  1741. {
  1742. float L_0 = ___0_value;
  1743. __this->___m_StrikethroughThickness = L_0;
  1744. return;
  1745. }
  1746. }
  1747. IL2CPP_EXTERN_C void FaceInfo_set_strikethroughThickness_m8CA3C9897FF3D5D0F653539CCBF5E16E01CACF52_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1748. {
  1749. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1750. int32_t _offset = 1;
  1751. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1752. FaceInfo_set_strikethroughThickness_m8CA3C9897FF3D5D0F653539CCBF5E16E01CACF52(_thisAdjusted, ___0_value, method);
  1753. }
  1754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_tabWidth_mC6D9F42C40EDD767DE22050E4FBE3878AC96B161 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method)
  1755. {
  1756. float V_0 = 0.0f;
  1757. {
  1758. float L_0 = __this->___m_TabWidth;
  1759. V_0 = L_0;
  1760. goto IL_000a;
  1761. }
  1762. IL_000a:
  1763. {
  1764. float L_1 = V_0;
  1765. return L_1;
  1766. }
  1767. }
  1768. IL2CPP_EXTERN_C float FaceInfo_get_tabWidth_mC6D9F42C40EDD767DE22050E4FBE3878AC96B161_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1769. {
  1770. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1771. int32_t _offset = 1;
  1772. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1773. float _returnValue;
  1774. _returnValue = FaceInfo_get_tabWidth_mC6D9F42C40EDD767DE22050E4FBE3878AC96B161(_thisAdjusted, method);
  1775. return _returnValue;
  1776. }
  1777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_tabWidth_m44234ED657FAB54320C48C34D48532F8232F6E1D (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, float ___0_value, const RuntimeMethod* method)
  1778. {
  1779. {
  1780. float L_0 = ___0_value;
  1781. __this->___m_TabWidth = L_0;
  1782. return;
  1783. }
  1784. }
  1785. IL2CPP_EXTERN_C void FaceInfo_set_tabWidth_m44234ED657FAB54320C48C34D48532F8232F6E1D_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  1786. {
  1787. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* _thisAdjusted;
  1788. int32_t _offset = 1;
  1789. _thisAdjusted = reinterpret_cast<FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*>(__this + _offset);
  1790. FaceInfo_set_tabWidth_m44234ED657FAB54320C48C34D48532F8232F6E1D(_thisAdjusted, ___0_value, method);
  1791. }
  1792. #ifdef __clang__
  1793. #pragma clang diagnostic pop
  1794. #endif
  1795. #ifdef __clang__
  1796. #pragma clang diagnostic push
  1797. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1798. #pragma clang diagnostic ignored "-Wunused-variable"
  1799. #endif
  1800. #ifdef __clang__
  1801. #pragma clang diagnostic pop
  1802. #endif
  1803. #ifdef __clang__
  1804. #pragma clang diagnostic push
  1805. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1806. #pragma clang diagnostic ignored "-Wunused-variable"
  1807. #endif
  1808. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_x_m453EECC6C6F08602B1F74C5E1D8EE1163236A898 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method)
  1809. {
  1810. int32_t V_0 = 0;
  1811. {
  1812. int32_t L_0 = __this->___m_X;
  1813. V_0 = L_0;
  1814. goto IL_000a;
  1815. }
  1816. IL_000a:
  1817. {
  1818. int32_t L_1 = V_0;
  1819. return L_1;
  1820. }
  1821. }
  1822. IL2CPP_EXTERN_C int32_t GlyphRect_get_x_m453EECC6C6F08602B1F74C5E1D8EE1163236A898_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1823. {
  1824. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  1825. int32_t _offset = 1;
  1826. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  1827. int32_t _returnValue;
  1828. _returnValue = GlyphRect_get_x_m453EECC6C6F08602B1F74C5E1D8EE1163236A898(_thisAdjusted, method);
  1829. return _returnValue;
  1830. }
  1831. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_y_mE31390BB3185EEA82DD16EA41E208F6A0397E3EA (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method)
  1832. {
  1833. int32_t V_0 = 0;
  1834. {
  1835. int32_t L_0 = __this->___m_Y;
  1836. V_0 = L_0;
  1837. goto IL_000a;
  1838. }
  1839. IL_000a:
  1840. {
  1841. int32_t L_1 = V_0;
  1842. return L_1;
  1843. }
  1844. }
  1845. IL2CPP_EXTERN_C int32_t GlyphRect_get_y_mE31390BB3185EEA82DD16EA41E208F6A0397E3EA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1846. {
  1847. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  1848. int32_t _offset = 1;
  1849. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  1850. int32_t _returnValue;
  1851. _returnValue = GlyphRect_get_y_mE31390BB3185EEA82DD16EA41E208F6A0397E3EA(_thisAdjusted, method);
  1852. return _returnValue;
  1853. }
  1854. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_width_mD291C7644BBF18D6A213427F6C9C28840F233F12 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method)
  1855. {
  1856. int32_t V_0 = 0;
  1857. {
  1858. int32_t L_0 = __this->___m_Width;
  1859. V_0 = L_0;
  1860. goto IL_000a;
  1861. }
  1862. IL_000a:
  1863. {
  1864. int32_t L_1 = V_0;
  1865. return L_1;
  1866. }
  1867. }
  1868. IL2CPP_EXTERN_C int32_t GlyphRect_get_width_mD291C7644BBF18D6A213427F6C9C28840F233F12_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1869. {
  1870. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  1871. int32_t _offset = 1;
  1872. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  1873. int32_t _returnValue;
  1874. _returnValue = GlyphRect_get_width_mD291C7644BBF18D6A213427F6C9C28840F233F12(_thisAdjusted, method);
  1875. return _returnValue;
  1876. }
  1877. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_height_m7F4D04452994E0D18762BB44352608E484DAAC1A (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method)
  1878. {
  1879. int32_t V_0 = 0;
  1880. {
  1881. int32_t L_0 = __this->___m_Height;
  1882. V_0 = L_0;
  1883. goto IL_000a;
  1884. }
  1885. IL_000a:
  1886. {
  1887. int32_t L_1 = V_0;
  1888. return L_1;
  1889. }
  1890. }
  1891. IL2CPP_EXTERN_C int32_t GlyphRect_get_height_m7F4D04452994E0D18762BB44352608E484DAAC1A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1892. {
  1893. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  1894. int32_t _offset = 1;
  1895. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  1896. int32_t _returnValue;
  1897. _returnValue = GlyphRect_get_height_m7F4D04452994E0D18762BB44352608E484DAAC1A(_thisAdjusted, method);
  1898. return _returnValue;
  1899. }
  1900. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D GlyphRect_get_zero_m359121752EE1A46C51118D84F03204F3285FF3FA (const RuntimeMethod* method)
  1901. {
  1902. static bool s_Il2CppMethodInitialized;
  1903. if (!s_Il2CppMethodInitialized)
  1904. {
  1905. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var);
  1906. s_Il2CppMethodInitialized = true;
  1907. }
  1908. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D V_0;
  1909. memset((&V_0), 0, sizeof(V_0));
  1910. {
  1911. il2cpp_codegen_runtime_class_init_inline(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var);
  1912. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0 = ((GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_StaticFields*)il2cpp_codegen_static_fields_for(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var))->___s_ZeroGlyphRect;
  1913. V_0 = L_0;
  1914. goto IL_0009;
  1915. }
  1916. IL_0009:
  1917. {
  1918. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_1 = V_0;
  1919. return L_1;
  1920. }
  1921. }
  1922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphRect__ctor_m2B11A6C6C70735CB77FE2176E3D55D922D772A95 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, int32_t ___0_x, int32_t ___1_y, int32_t ___2_width, int32_t ___3_height, const RuntimeMethod* method)
  1923. {
  1924. {
  1925. int32_t L_0 = ___0_x;
  1926. __this->___m_X = L_0;
  1927. int32_t L_1 = ___1_y;
  1928. __this->___m_Y = L_1;
  1929. int32_t L_2 = ___2_width;
  1930. __this->___m_Width = L_2;
  1931. int32_t L_3 = ___3_height;
  1932. __this->___m_Height = L_3;
  1933. return;
  1934. }
  1935. }
  1936. IL2CPP_EXTERN_C void GlyphRect__ctor_m2B11A6C6C70735CB77FE2176E3D55D922D772A95_AdjustorThunk (RuntimeObject* __this, int32_t ___0_x, int32_t ___1_y, int32_t ___2_width, int32_t ___3_height, const RuntimeMethod* method)
  1937. {
  1938. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  1939. int32_t _offset = 1;
  1940. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  1941. GlyphRect__ctor_m2B11A6C6C70735CB77FE2176E3D55D922D772A95(_thisAdjusted, ___0_x, ___1_y, ___2_width, ___3_height, method);
  1942. }
  1943. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_GetHashCode_mC012C2627F2A0C7EB7B47522085764441D47014F (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, const RuntimeMethod* method)
  1944. {
  1945. static bool s_Il2CppMethodInitialized;
  1946. if (!s_Il2CppMethodInitialized)
  1947. {
  1948. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var);
  1949. s_Il2CppMethodInitialized = true;
  1950. }
  1951. int32_t V_0 = 0;
  1952. {
  1953. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0 = (*(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*)__this);
  1954. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_1 = L_0;
  1955. RuntimeObject* L_2 = Box(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var, &L_1);
  1956. int32_t L_3;
  1957. L_3 = ValueType_GetHashCode_m3B47C72EA1FA846D9B0DFF3C444AB2BFA22CF3CE((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, NULL);
  1958. V_0 = L_3;
  1959. goto IL_0014;
  1960. }
  1961. IL_0014:
  1962. {
  1963. int32_t L_4 = V_0;
  1964. return L_4;
  1965. }
  1966. }
  1967. IL2CPP_EXTERN_C int32_t GlyphRect_GetHashCode_mC012C2627F2A0C7EB7B47522085764441D47014F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1968. {
  1969. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  1970. int32_t _offset = 1;
  1971. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  1972. int32_t _returnValue;
  1973. _returnValue = GlyphRect_GetHashCode_mC012C2627F2A0C7EB7B47522085764441D47014F(_thisAdjusted, method);
  1974. return _returnValue;
  1975. }
  1976. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_mF3BA7FD405AFCEA9E2A6ED2423C27CC023A1289B (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  1977. {
  1978. static bool s_Il2CppMethodInitialized;
  1979. if (!s_Il2CppMethodInitialized)
  1980. {
  1981. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var);
  1982. s_Il2CppMethodInitialized = true;
  1983. }
  1984. bool V_0 = false;
  1985. {
  1986. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0 = (*(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*)__this);
  1987. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_1 = L_0;
  1988. RuntimeObject* L_2 = Box(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var, &L_1);
  1989. RuntimeObject* L_3 = ___0_obj;
  1990. bool L_4;
  1991. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_3, NULL);
  1992. V_0 = L_4;
  1993. goto IL_0015;
  1994. }
  1995. IL_0015:
  1996. {
  1997. bool L_5 = V_0;
  1998. return L_5;
  1999. }
  2000. }
  2001. IL2CPP_EXTERN_C bool GlyphRect_Equals_mF3BA7FD405AFCEA9E2A6ED2423C27CC023A1289B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2002. {
  2003. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  2004. int32_t _offset = 1;
  2005. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  2006. bool _returnValue;
  2007. _returnValue = GlyphRect_Equals_mF3BA7FD405AFCEA9E2A6ED2423C27CC023A1289B(_thisAdjusted, ___0_obj, method);
  2008. return _returnValue;
  2009. }
  2010. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_m29BCDCCDB99C88355A61EDDA65F6A51762BF9C87 (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_other, const RuntimeMethod* method)
  2011. {
  2012. static bool s_Il2CppMethodInitialized;
  2013. if (!s_Il2CppMethodInitialized)
  2014. {
  2015. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var);
  2016. s_Il2CppMethodInitialized = true;
  2017. }
  2018. bool V_0 = false;
  2019. {
  2020. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0 = (*(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*)__this);
  2021. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_1 = L_0;
  2022. RuntimeObject* L_2 = Box(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var, &L_1);
  2023. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_3 = ___0_other;
  2024. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_4 = L_3;
  2025. RuntimeObject* L_5 = Box(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var, &L_4);
  2026. bool L_6;
  2027. L_6 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_5, NULL);
  2028. V_0 = L_6;
  2029. goto IL_001a;
  2030. }
  2031. IL_001a:
  2032. {
  2033. bool L_7 = V_0;
  2034. return L_7;
  2035. }
  2036. }
  2037. IL2CPP_EXTERN_C bool GlyphRect_Equals_m29BCDCCDB99C88355A61EDDA65F6A51762BF9C87_AdjustorThunk (RuntimeObject* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_other, const RuntimeMethod* method)
  2038. {
  2039. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* _thisAdjusted;
  2040. int32_t _offset = 1;
  2041. _thisAdjusted = reinterpret_cast<GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*>(__this + _offset);
  2042. bool _returnValue;
  2043. _returnValue = GlyphRect_Equals_m29BCDCCDB99C88355A61EDDA65F6A51762BF9C87(_thisAdjusted, ___0_other, method);
  2044. return _returnValue;
  2045. }
  2046. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphRect__cctor_m74BDAD5150F67B623F7D02238DD25D30C133BBDA (const RuntimeMethod* method)
  2047. {
  2048. static bool s_Il2CppMethodInitialized;
  2049. if (!s_Il2CppMethodInitialized)
  2050. {
  2051. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var);
  2052. s_Il2CppMethodInitialized = true;
  2053. }
  2054. {
  2055. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0;
  2056. memset((&L_0), 0, sizeof(L_0));
  2057. GlyphRect__ctor_m2B11A6C6C70735CB77FE2176E3D55D922D772A95((&L_0), 0, 0, 0, 0, NULL);
  2058. ((GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_StaticFields*)il2cpp_codegen_static_fields_for(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D_il2cpp_TypeInfo_var))->___s_ZeroGlyphRect = L_0;
  2059. return;
  2060. }
  2061. }
  2062. #ifdef __clang__
  2063. #pragma clang diagnostic pop
  2064. #endif
  2065. #ifdef __clang__
  2066. #pragma clang diagnostic push
  2067. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2068. #pragma clang diagnostic ignored "-Wunused-variable"
  2069. #endif
  2070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_width_m0F9F391E3A98984167E8001D4101BE1CE9354D13 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method)
  2071. {
  2072. float V_0 = 0.0f;
  2073. {
  2074. float L_0 = __this->___m_Width;
  2075. V_0 = L_0;
  2076. goto IL_000a;
  2077. }
  2078. IL_000a:
  2079. {
  2080. float L_1 = V_0;
  2081. return L_1;
  2082. }
  2083. }
  2084. IL2CPP_EXTERN_C float GlyphMetrics_get_width_m0F9F391E3A98984167E8001D4101BE1CE9354D13_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2085. {
  2086. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2087. int32_t _offset = 1;
  2088. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2089. float _returnValue;
  2090. _returnValue = GlyphMetrics_get_width_m0F9F391E3A98984167E8001D4101BE1CE9354D13(_thisAdjusted, method);
  2091. return _returnValue;
  2092. }
  2093. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_height_mE0872B23CE1A20BF78DEACDBD53BAF789D84AD5C (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method)
  2094. {
  2095. float V_0 = 0.0f;
  2096. {
  2097. float L_0 = __this->___m_Height;
  2098. V_0 = L_0;
  2099. goto IL_000a;
  2100. }
  2101. IL_000a:
  2102. {
  2103. float L_1 = V_0;
  2104. return L_1;
  2105. }
  2106. }
  2107. IL2CPP_EXTERN_C float GlyphMetrics_get_height_mE0872B23CE1A20BF78DEACDBD53BAF789D84AD5C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2108. {
  2109. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2110. int32_t _offset = 1;
  2111. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2112. float _returnValue;
  2113. _returnValue = GlyphMetrics_get_height_mE0872B23CE1A20BF78DEACDBD53BAF789D84AD5C(_thisAdjusted, method);
  2114. return _returnValue;
  2115. }
  2116. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingX_m9C39B5E6D27FF34B706649AE47EE9390B5D76D6F (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method)
  2117. {
  2118. float V_0 = 0.0f;
  2119. {
  2120. float L_0 = __this->___m_HorizontalBearingX;
  2121. V_0 = L_0;
  2122. goto IL_000a;
  2123. }
  2124. IL_000a:
  2125. {
  2126. float L_1 = V_0;
  2127. return L_1;
  2128. }
  2129. }
  2130. IL2CPP_EXTERN_C float GlyphMetrics_get_horizontalBearingX_m9C39B5E6D27FF34B706649AE47EE9390B5D76D6F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2131. {
  2132. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2133. int32_t _offset = 1;
  2134. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2135. float _returnValue;
  2136. _returnValue = GlyphMetrics_get_horizontalBearingX_m9C39B5E6D27FF34B706649AE47EE9390B5D76D6F(_thisAdjusted, method);
  2137. return _returnValue;
  2138. }
  2139. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingY_mD316BDD38A32258256994D6A2BCF0FC051D9B223 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method)
  2140. {
  2141. float V_0 = 0.0f;
  2142. {
  2143. float L_0 = __this->___m_HorizontalBearingY;
  2144. V_0 = L_0;
  2145. goto IL_000a;
  2146. }
  2147. IL_000a:
  2148. {
  2149. float L_1 = V_0;
  2150. return L_1;
  2151. }
  2152. }
  2153. IL2CPP_EXTERN_C float GlyphMetrics_get_horizontalBearingY_mD316BDD38A32258256994D6A2BCF0FC051D9B223_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2154. {
  2155. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2156. int32_t _offset = 1;
  2157. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2158. float _returnValue;
  2159. _returnValue = GlyphMetrics_get_horizontalBearingY_mD316BDD38A32258256994D6A2BCF0FC051D9B223(_thisAdjusted, method);
  2160. return _returnValue;
  2161. }
  2162. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalAdvance_m110E66C340A19E672FB1C26DFB875AB6900AFFF1 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method)
  2163. {
  2164. float V_0 = 0.0f;
  2165. {
  2166. float L_0 = __this->___m_HorizontalAdvance;
  2167. V_0 = L_0;
  2168. goto IL_000a;
  2169. }
  2170. IL_000a:
  2171. {
  2172. float L_1 = V_0;
  2173. return L_1;
  2174. }
  2175. }
  2176. IL2CPP_EXTERN_C float GlyphMetrics_get_horizontalAdvance_m110E66C340A19E672FB1C26DFB875AB6900AFFF1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2177. {
  2178. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2179. int32_t _offset = 1;
  2180. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2181. float _returnValue;
  2182. _returnValue = GlyphMetrics_get_horizontalAdvance_m110E66C340A19E672FB1C26DFB875AB6900AFFF1(_thisAdjusted, method);
  2183. return _returnValue;
  2184. }
  2185. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphMetrics__ctor_m9CD09465685783A596A7F9112EF7D6A7E1A2792D (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, float ___0_width, float ___1_height, float ___2_bearingX, float ___3_bearingY, float ___4_advance, const RuntimeMethod* method)
  2186. {
  2187. {
  2188. float L_0 = ___0_width;
  2189. __this->___m_Width = L_0;
  2190. float L_1 = ___1_height;
  2191. __this->___m_Height = L_1;
  2192. float L_2 = ___2_bearingX;
  2193. __this->___m_HorizontalBearingX = L_2;
  2194. float L_3 = ___3_bearingY;
  2195. __this->___m_HorizontalBearingY = L_3;
  2196. float L_4 = ___4_advance;
  2197. __this->___m_HorizontalAdvance = L_4;
  2198. return;
  2199. }
  2200. }
  2201. IL2CPP_EXTERN_C void GlyphMetrics__ctor_m9CD09465685783A596A7F9112EF7D6A7E1A2792D_AdjustorThunk (RuntimeObject* __this, float ___0_width, float ___1_height, float ___2_bearingX, float ___3_bearingY, float ___4_advance, const RuntimeMethod* method)
  2202. {
  2203. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2204. int32_t _offset = 1;
  2205. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2206. GlyphMetrics__ctor_m9CD09465685783A596A7F9112EF7D6A7E1A2792D(_thisAdjusted, ___0_width, ___1_height, ___2_bearingX, ___3_bearingY, ___4_advance, method);
  2207. }
  2208. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphMetrics_GetHashCode_mB1988F3C7DA77518D4DE0F116995F63C99A073E6 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, const RuntimeMethod* method)
  2209. {
  2210. static bool s_Il2CppMethodInitialized;
  2211. if (!s_Il2CppMethodInitialized)
  2212. {
  2213. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var);
  2214. s_Il2CppMethodInitialized = true;
  2215. }
  2216. int32_t V_0 = 0;
  2217. {
  2218. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_0 = (*(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*)__this);
  2219. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_1 = L_0;
  2220. RuntimeObject* L_2 = Box(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var, &L_1);
  2221. int32_t L_3;
  2222. L_3 = ValueType_GetHashCode_m3B47C72EA1FA846D9B0DFF3C444AB2BFA22CF3CE((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, NULL);
  2223. V_0 = L_3;
  2224. goto IL_0014;
  2225. }
  2226. IL_0014:
  2227. {
  2228. int32_t L_4 = V_0;
  2229. return L_4;
  2230. }
  2231. }
  2232. IL2CPP_EXTERN_C int32_t GlyphMetrics_GetHashCode_mB1988F3C7DA77518D4DE0F116995F63C99A073E6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2233. {
  2234. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2235. int32_t _offset = 1;
  2236. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2237. int32_t _returnValue;
  2238. _returnValue = GlyphMetrics_GetHashCode_mB1988F3C7DA77518D4DE0F116995F63C99A073E6(_thisAdjusted, method);
  2239. return _returnValue;
  2240. }
  2241. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_mB8EE2CF8E9D9D51AF2C7B4F13209AFC66456C970 (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2242. {
  2243. static bool s_Il2CppMethodInitialized;
  2244. if (!s_Il2CppMethodInitialized)
  2245. {
  2246. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var);
  2247. s_Il2CppMethodInitialized = true;
  2248. }
  2249. bool V_0 = false;
  2250. {
  2251. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_0 = (*(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*)__this);
  2252. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_1 = L_0;
  2253. RuntimeObject* L_2 = Box(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var, &L_1);
  2254. RuntimeObject* L_3 = ___0_obj;
  2255. bool L_4;
  2256. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_3, NULL);
  2257. V_0 = L_4;
  2258. goto IL_0015;
  2259. }
  2260. IL_0015:
  2261. {
  2262. bool L_5 = V_0;
  2263. return L_5;
  2264. }
  2265. }
  2266. IL2CPP_EXTERN_C bool GlyphMetrics_Equals_mB8EE2CF8E9D9D51AF2C7B4F13209AFC66456C970_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2267. {
  2268. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2269. int32_t _offset = 1;
  2270. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2271. bool _returnValue;
  2272. _returnValue = GlyphMetrics_Equals_mB8EE2CF8E9D9D51AF2C7B4F13209AFC66456C970(_thisAdjusted, ___0_obj, method);
  2273. return _returnValue;
  2274. }
  2275. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_mA8F8587C1725FA86DD6E87CFDFF0DDB9996112CB (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* __this, GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___0_other, const RuntimeMethod* method)
  2276. {
  2277. static bool s_Il2CppMethodInitialized;
  2278. if (!s_Il2CppMethodInitialized)
  2279. {
  2280. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var);
  2281. s_Il2CppMethodInitialized = true;
  2282. }
  2283. bool V_0 = false;
  2284. {
  2285. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_0 = (*(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*)__this);
  2286. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_1 = L_0;
  2287. RuntimeObject* L_2 = Box(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var, &L_1);
  2288. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_3 = ___0_other;
  2289. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_4 = L_3;
  2290. RuntimeObject* L_5 = Box(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A_il2cpp_TypeInfo_var, &L_4);
  2291. bool L_6;
  2292. L_6 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_5, NULL);
  2293. V_0 = L_6;
  2294. goto IL_001a;
  2295. }
  2296. IL_001a:
  2297. {
  2298. bool L_7 = V_0;
  2299. return L_7;
  2300. }
  2301. }
  2302. IL2CPP_EXTERN_C bool GlyphMetrics_Equals_mA8F8587C1725FA86DD6E87CFDFF0DDB9996112CB_AdjustorThunk (RuntimeObject* __this, GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___0_other, const RuntimeMethod* method)
  2303. {
  2304. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* _thisAdjusted;
  2305. int32_t _offset = 1;
  2306. _thisAdjusted = reinterpret_cast<GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*>(__this + _offset);
  2307. bool _returnValue;
  2308. _returnValue = GlyphMetrics_Equals_mA8F8587C1725FA86DD6E87CFDFF0DDB9996112CB(_thisAdjusted, ___0_other, method);
  2309. return _returnValue;
  2310. }
  2311. #ifdef __clang__
  2312. #pragma clang diagnostic pop
  2313. #endif
  2314. #ifdef __clang__
  2315. #pragma clang diagnostic push
  2316. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2317. #pragma clang diagnostic ignored "-Wunused-variable"
  2318. #endif
  2319. IL2CPP_EXTERN_C void Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshal_pinvoke(const Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F& unmarshaled, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_pinvoke& marshaled)
  2320. {
  2321. marshaled.___m_Index = unmarshaled.___m_Index;
  2322. marshaled.___m_Metrics = unmarshaled.___m_Metrics;
  2323. marshaled.___m_GlyphRect = unmarshaled.___m_GlyphRect;
  2324. marshaled.___m_Scale = unmarshaled.___m_Scale;
  2325. marshaled.___m_AtlasIndex = unmarshaled.___m_AtlasIndex;
  2326. marshaled.___m_ClassDefinitionType = unmarshaled.___m_ClassDefinitionType;
  2327. }
  2328. IL2CPP_EXTERN_C void Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshal_pinvoke_back(const Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_pinvoke& marshaled, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F& unmarshaled)
  2329. {
  2330. uint32_t unmarshaledm_Index_temp_0 = 0;
  2331. unmarshaledm_Index_temp_0 = marshaled.___m_Index;
  2332. unmarshaled.___m_Index = unmarshaledm_Index_temp_0;
  2333. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A unmarshaledm_Metrics_temp_1;
  2334. memset((&unmarshaledm_Metrics_temp_1), 0, sizeof(unmarshaledm_Metrics_temp_1));
  2335. unmarshaledm_Metrics_temp_1 = marshaled.___m_Metrics;
  2336. unmarshaled.___m_Metrics = unmarshaledm_Metrics_temp_1;
  2337. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D unmarshaledm_GlyphRect_temp_2;
  2338. memset((&unmarshaledm_GlyphRect_temp_2), 0, sizeof(unmarshaledm_GlyphRect_temp_2));
  2339. unmarshaledm_GlyphRect_temp_2 = marshaled.___m_GlyphRect;
  2340. unmarshaled.___m_GlyphRect = unmarshaledm_GlyphRect_temp_2;
  2341. float unmarshaledm_Scale_temp_3 = 0.0f;
  2342. unmarshaledm_Scale_temp_3 = marshaled.___m_Scale;
  2343. unmarshaled.___m_Scale = unmarshaledm_Scale_temp_3;
  2344. int32_t unmarshaledm_AtlasIndex_temp_4 = 0;
  2345. unmarshaledm_AtlasIndex_temp_4 = marshaled.___m_AtlasIndex;
  2346. unmarshaled.___m_AtlasIndex = unmarshaledm_AtlasIndex_temp_4;
  2347. int32_t unmarshaledm_ClassDefinitionType_temp_5 = 0;
  2348. unmarshaledm_ClassDefinitionType_temp_5 = marshaled.___m_ClassDefinitionType;
  2349. unmarshaled.___m_ClassDefinitionType = unmarshaledm_ClassDefinitionType_temp_5;
  2350. }
  2351. IL2CPP_EXTERN_C void Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshal_pinvoke_cleanup(Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_pinvoke& marshaled)
  2352. {
  2353. }
  2354. IL2CPP_EXTERN_C void Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshal_com(const Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F& unmarshaled, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_com& marshaled)
  2355. {
  2356. marshaled.___m_Index = unmarshaled.___m_Index;
  2357. marshaled.___m_Metrics = unmarshaled.___m_Metrics;
  2358. marshaled.___m_GlyphRect = unmarshaled.___m_GlyphRect;
  2359. marshaled.___m_Scale = unmarshaled.___m_Scale;
  2360. marshaled.___m_AtlasIndex = unmarshaled.___m_AtlasIndex;
  2361. marshaled.___m_ClassDefinitionType = unmarshaled.___m_ClassDefinitionType;
  2362. }
  2363. IL2CPP_EXTERN_C void Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshal_com_back(const Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_com& marshaled, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F& unmarshaled)
  2364. {
  2365. uint32_t unmarshaledm_Index_temp_0 = 0;
  2366. unmarshaledm_Index_temp_0 = marshaled.___m_Index;
  2367. unmarshaled.___m_Index = unmarshaledm_Index_temp_0;
  2368. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A unmarshaledm_Metrics_temp_1;
  2369. memset((&unmarshaledm_Metrics_temp_1), 0, sizeof(unmarshaledm_Metrics_temp_1));
  2370. unmarshaledm_Metrics_temp_1 = marshaled.___m_Metrics;
  2371. unmarshaled.___m_Metrics = unmarshaledm_Metrics_temp_1;
  2372. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D unmarshaledm_GlyphRect_temp_2;
  2373. memset((&unmarshaledm_GlyphRect_temp_2), 0, sizeof(unmarshaledm_GlyphRect_temp_2));
  2374. unmarshaledm_GlyphRect_temp_2 = marshaled.___m_GlyphRect;
  2375. unmarshaled.___m_GlyphRect = unmarshaledm_GlyphRect_temp_2;
  2376. float unmarshaledm_Scale_temp_3 = 0.0f;
  2377. unmarshaledm_Scale_temp_3 = marshaled.___m_Scale;
  2378. unmarshaled.___m_Scale = unmarshaledm_Scale_temp_3;
  2379. int32_t unmarshaledm_AtlasIndex_temp_4 = 0;
  2380. unmarshaledm_AtlasIndex_temp_4 = marshaled.___m_AtlasIndex;
  2381. unmarshaled.___m_AtlasIndex = unmarshaledm_AtlasIndex_temp_4;
  2382. int32_t unmarshaledm_ClassDefinitionType_temp_5 = 0;
  2383. unmarshaledm_ClassDefinitionType_temp_5 = marshaled.___m_ClassDefinitionType;
  2384. unmarshaled.___m_ClassDefinitionType = unmarshaledm_ClassDefinitionType_temp_5;
  2385. }
  2386. IL2CPP_EXTERN_C void Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshal_com_cleanup(Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_marshaled_com& marshaled)
  2387. {
  2388. }
  2389. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Glyph_get_index_mCFBBCF85E7F3434B7A595EEE3411EFFB78E5675B (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, const RuntimeMethod* method)
  2390. {
  2391. uint32_t V_0 = 0;
  2392. {
  2393. uint32_t L_0 = __this->___m_Index;
  2394. V_0 = L_0;
  2395. goto IL_000a;
  2396. }
  2397. IL_000a:
  2398. {
  2399. uint32_t L_1 = V_0;
  2400. return L_1;
  2401. }
  2402. }
  2403. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_index_mD033C966D79B910424B985F9D81C01D4E056B72C (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, uint32_t ___0_value, const RuntimeMethod* method)
  2404. {
  2405. {
  2406. uint32_t L_0 = ___0_value;
  2407. __this->___m_Index = L_0;
  2408. return;
  2409. }
  2410. }
  2411. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A Glyph_get_metrics_mB6E9D3D1899E35BA257638F6F58B7D260170B6FA (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, const RuntimeMethod* method)
  2412. {
  2413. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A V_0;
  2414. memset((&V_0), 0, sizeof(V_0));
  2415. {
  2416. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_0 = __this->___m_Metrics;
  2417. V_0 = L_0;
  2418. goto IL_000a;
  2419. }
  2420. IL_000a:
  2421. {
  2422. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_1 = V_0;
  2423. return L_1;
  2424. }
  2425. }
  2426. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_metrics_m3350984977FC50061481B1EC563DE59147428BC2 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___0_value, const RuntimeMethod* method)
  2427. {
  2428. {
  2429. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_0 = ___0_value;
  2430. __this->___m_Metrics = L_0;
  2431. return;
  2432. }
  2433. }
  2434. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D Glyph_get_glyphRect_m94E7C5FE682695CDC096248EF027079F33768EE5 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, const RuntimeMethod* method)
  2435. {
  2436. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D V_0;
  2437. memset((&V_0), 0, sizeof(V_0));
  2438. {
  2439. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0 = __this->___m_GlyphRect;
  2440. V_0 = L_0;
  2441. goto IL_000a;
  2442. }
  2443. IL_000a:
  2444. {
  2445. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_1 = V_0;
  2446. return L_1;
  2447. }
  2448. }
  2449. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_glyphRect_mC21EB362D6EC56E0D110B0A08505CAD2DF26A6A8 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_value, const RuntimeMethod* method)
  2450. {
  2451. {
  2452. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_0 = ___0_value;
  2453. __this->___m_GlyphRect = L_0;
  2454. return;
  2455. }
  2456. }
  2457. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Glyph_get_scale_m3ED738CBB032247526DB38161E180759B2D06F29 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, const RuntimeMethod* method)
  2458. {
  2459. float V_0 = 0.0f;
  2460. {
  2461. float L_0 = __this->___m_Scale;
  2462. V_0 = L_0;
  2463. goto IL_000a;
  2464. }
  2465. IL_000a:
  2466. {
  2467. float L_1 = V_0;
  2468. return L_1;
  2469. }
  2470. }
  2471. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_scale_m44247C5948E32562931FA8C44799A3E1E4F0562A (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, float ___0_value, const RuntimeMethod* method)
  2472. {
  2473. {
  2474. float L_0 = ___0_value;
  2475. __this->___m_Scale = L_0;
  2476. return;
  2477. }
  2478. }
  2479. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Glyph_get_atlasIndex_m575332307F2C182655EE9AD352E92F1B5F4D26DF (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, const RuntimeMethod* method)
  2480. {
  2481. int32_t V_0 = 0;
  2482. {
  2483. int32_t L_0 = __this->___m_AtlasIndex;
  2484. V_0 = L_0;
  2485. goto IL_000a;
  2486. }
  2487. IL_000a:
  2488. {
  2489. int32_t L_1 = V_0;
  2490. return L_1;
  2491. }
  2492. }
  2493. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_atlasIndex_m622CB24F3110B65CADB0C9F0223133B0DA926ABE (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, int32_t ___0_value, const RuntimeMethod* method)
  2494. {
  2495. {
  2496. int32_t L_0 = ___0_value;
  2497. __this->___m_AtlasIndex = L_0;
  2498. return;
  2499. }
  2500. }
  2501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m9FB83C6B166AC59E03B585F76C09C5FC1720281F (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, const RuntimeMethod* method)
  2502. {
  2503. {
  2504. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  2505. __this->___m_Index = 0;
  2506. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A* L_0 = (GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A*)(&__this->___m_Metrics);
  2507. il2cpp_codegen_initobj(L_0, sizeof(GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A));
  2508. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D* L_1 = (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D*)(&__this->___m_GlyphRect);
  2509. il2cpp_codegen_initobj(L_1, sizeof(GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D));
  2510. __this->___m_Scale = (1.0f);
  2511. __this->___m_AtlasIndex = 0;
  2512. return;
  2513. }
  2514. }
  2515. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m2E3C296A46BE48B869634BBE3F97B30F3442CC94 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C ___0_glyphStruct, const RuntimeMethod* method)
  2516. {
  2517. {
  2518. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  2519. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_0 = ___0_glyphStruct;
  2520. uint32_t L_1 = L_0.___index;
  2521. __this->___m_Index = L_1;
  2522. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_2 = ___0_glyphStruct;
  2523. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_3 = L_2.___metrics;
  2524. __this->___m_Metrics = L_3;
  2525. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_4 = ___0_glyphStruct;
  2526. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_5 = L_4.___glyphRect;
  2527. __this->___m_GlyphRect = L_5;
  2528. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_6 = ___0_glyphStruct;
  2529. float L_7 = L_6.___scale;
  2530. __this->___m_Scale = L_7;
  2531. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_8 = ___0_glyphStruct;
  2532. int32_t L_9 = L_8.___atlasIndex;
  2533. __this->___m_AtlasIndex = L_9;
  2534. return;
  2535. }
  2536. }
  2537. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m71D55A8FBEA48ECCD78D65CAC9D008905E56FBF1 (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* __this, uint32_t ___0_index, GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A ___1_metrics, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___2_glyphRect, float ___3_scale, int32_t ___4_atlasIndex, const RuntimeMethod* method)
  2538. {
  2539. {
  2540. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  2541. uint32_t L_0 = ___0_index;
  2542. __this->___m_Index = L_0;
  2543. GlyphMetrics_t6C1C65A891A6279A0EE807C436436B1E44F7AF1A L_1 = ___1_metrics;
  2544. __this->___m_Metrics = L_1;
  2545. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_2 = ___2_glyphRect;
  2546. __this->___m_GlyphRect = L_2;
  2547. float L_3 = ___3_scale;
  2548. __this->___m_Scale = L_3;
  2549. int32_t L_4 = ___4_atlasIndex;
  2550. __this->___m_AtlasIndex = L_4;
  2551. return;
  2552. }
  2553. }
  2554. #ifdef __clang__
  2555. #pragma clang diagnostic pop
  2556. #endif
  2557. #ifdef __clang__
  2558. #pragma clang diagnostic push
  2559. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2560. #pragma clang diagnostic ignored "-Wunused-variable"
  2561. #endif
  2562. #ifdef __clang__
  2563. #pragma clang diagnostic pop
  2564. #endif
  2565. #ifdef __clang__
  2566. #pragma clang diagnostic push
  2567. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2568. #pragma clang diagnostic ignored "-Wunused-variable"
  2569. #endif
  2570. #ifdef __clang__
  2571. #pragma clang diagnostic pop
  2572. #endif
  2573. #ifdef __clang__
  2574. #pragma clang diagnostic push
  2575. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2576. #pragma clang diagnostic ignored "-Wunused-variable"
  2577. #endif
  2578. #ifdef __clang__
  2579. #pragma clang diagnostic pop
  2580. #endif
  2581. #ifdef __clang__
  2582. #pragma clang diagnostic push
  2583. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2584. #pragma clang diagnostic ignored "-Wunused-variable"
  2585. #endif
  2586. #ifdef __clang__
  2587. #pragma clang diagnostic pop
  2588. #endif
  2589. #ifdef __clang__
  2590. #pragma clang diagnostic push
  2591. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2592. #pragma clang diagnostic ignored "-Wunused-variable"
  2593. #endif
  2594. IL2CPP_EXTERN_C void FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshal_pinvoke(const FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172& unmarshaled, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_pinvoke& marshaled)
  2595. {
  2596. marshaled.___familyName = il2cpp_codegen_marshal_string(unmarshaled.___familyName);
  2597. marshaled.___styleName = il2cpp_codegen_marshal_string(unmarshaled.___styleName);
  2598. marshaled.___faceIndex = unmarshaled.___faceIndex;
  2599. marshaled.___filePath = il2cpp_codegen_marshal_string(unmarshaled.___filePath);
  2600. }
  2601. IL2CPP_EXTERN_C void FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshal_pinvoke_back(const FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_pinvoke& marshaled, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172& unmarshaled)
  2602. {
  2603. unmarshaled.___familyName = il2cpp_codegen_marshal_string_result(marshaled.___familyName);
  2604. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___familyName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___familyName));
  2605. unmarshaled.___styleName = il2cpp_codegen_marshal_string_result(marshaled.___styleName);
  2606. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___styleName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___styleName));
  2607. int32_t unmarshaledfaceIndex_temp_2 = 0;
  2608. unmarshaledfaceIndex_temp_2 = marshaled.___faceIndex;
  2609. unmarshaled.___faceIndex = unmarshaledfaceIndex_temp_2;
  2610. unmarshaled.___filePath = il2cpp_codegen_marshal_string_result(marshaled.___filePath);
  2611. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___filePath), (void*)il2cpp_codegen_marshal_string_result(marshaled.___filePath));
  2612. }
  2613. IL2CPP_EXTERN_C void FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshal_pinvoke_cleanup(FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_pinvoke& marshaled)
  2614. {
  2615. il2cpp_codegen_marshal_free(marshaled.___familyName);
  2616. marshaled.___familyName = NULL;
  2617. il2cpp_codegen_marshal_free(marshaled.___styleName);
  2618. marshaled.___styleName = NULL;
  2619. il2cpp_codegen_marshal_free(marshaled.___filePath);
  2620. marshaled.___filePath = NULL;
  2621. }
  2622. IL2CPP_EXTERN_C void FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshal_com(const FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172& unmarshaled, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_com& marshaled)
  2623. {
  2624. marshaled.___familyName = il2cpp_codegen_marshal_bstring(unmarshaled.___familyName);
  2625. marshaled.___styleName = il2cpp_codegen_marshal_bstring(unmarshaled.___styleName);
  2626. marshaled.___faceIndex = unmarshaled.___faceIndex;
  2627. marshaled.___filePath = il2cpp_codegen_marshal_bstring(unmarshaled.___filePath);
  2628. }
  2629. IL2CPP_EXTERN_C void FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshal_com_back(const FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_com& marshaled, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172& unmarshaled)
  2630. {
  2631. unmarshaled.___familyName = il2cpp_codegen_marshal_bstring_result(marshaled.___familyName);
  2632. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___familyName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___familyName));
  2633. unmarshaled.___styleName = il2cpp_codegen_marshal_bstring_result(marshaled.___styleName);
  2634. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___styleName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___styleName));
  2635. int32_t unmarshaledfaceIndex_temp_2 = 0;
  2636. unmarshaledfaceIndex_temp_2 = marshaled.___faceIndex;
  2637. unmarshaled.___faceIndex = unmarshaledfaceIndex_temp_2;
  2638. unmarshaled.___filePath = il2cpp_codegen_marshal_bstring_result(marshaled.___filePath);
  2639. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___filePath), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___filePath));
  2640. }
  2641. IL2CPP_EXTERN_C void FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshal_com_cleanup(FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172_marshaled_com& marshaled)
  2642. {
  2643. il2cpp_codegen_marshal_free_bstring(marshaled.___familyName);
  2644. marshaled.___familyName = NULL;
  2645. il2cpp_codegen_marshal_free_bstring(marshaled.___styleName);
  2646. marshaled.___styleName = NULL;
  2647. il2cpp_codegen_marshal_free_bstring(marshaled.___filePath);
  2648. marshaled.___filePath = NULL;
  2649. }
  2650. #ifdef __clang__
  2651. #pragma clang diagnostic pop
  2652. #endif
  2653. #ifdef __clang__
  2654. #pragma clang diagnostic push
  2655. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2656. #pragma clang diagnostic ignored "-Wunused-variable"
  2657. #endif
  2658. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_InitializeFontEngine_mCA2F9C3294A61C0294B4B9849082C0344169F322 (const RuntimeMethod* method)
  2659. {
  2660. static bool s_Il2CppMethodInitialized;
  2661. if (!s_Il2CppMethodInitialized)
  2662. {
  2663. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2664. s_Il2CppMethodInitialized = true;
  2665. }
  2666. int32_t V_0 = 0;
  2667. {
  2668. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2669. int32_t L_0;
  2670. L_0 = FontEngine_InitializeFontEngine_Internal_m64ABDC3A5AF9D87C995FF6B98979933E7074AB06(NULL);
  2671. V_0 = L_0;
  2672. goto IL_0009;
  2673. }
  2674. IL_0009:
  2675. {
  2676. int32_t L_1 = V_0;
  2677. return L_1;
  2678. }
  2679. }
  2680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_InitializeFontEngine_Internal_m64ABDC3A5AF9D87C995FF6B98979933E7074AB06 (const RuntimeMethod* method)
  2681. {
  2682. typedef int32_t (*FontEngine_InitializeFontEngine_Internal_m64ABDC3A5AF9D87C995FF6B98979933E7074AB06_ftn) ();
  2683. static FontEngine_InitializeFontEngine_Internal_m64ABDC3A5AF9D87C995FF6B98979933E7074AB06_ftn _il2cpp_icall_func;
  2684. if (!_il2cpp_icall_func)
  2685. _il2cpp_icall_func = (FontEngine_InitializeFontEngine_Internal_m64ABDC3A5AF9D87C995FF6B98979933E7074AB06_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::InitializeFontEngine_Internal()");
  2686. int32_t icallRetVal = _il2cpp_icall_func();
  2687. return icallRetVal;
  2688. }
  2689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_m6DCF863A84AF3E2EEB6AC69C7C19D937909698C1 (String_t* ___0_filePath, int32_t ___1_pointSize, int32_t ___2_faceIndex, const RuntimeMethod* method)
  2690. {
  2691. static bool s_Il2CppMethodInitialized;
  2692. if (!s_Il2CppMethodInitialized)
  2693. {
  2694. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2695. s_Il2CppMethodInitialized = true;
  2696. }
  2697. int32_t V_0 = 0;
  2698. {
  2699. String_t* L_0 = ___0_filePath;
  2700. int32_t L_1 = ___1_pointSize;
  2701. int32_t L_2 = ___2_faceIndex;
  2702. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2703. int32_t L_3;
  2704. L_3 = FontEngine_LoadFontFace_With_Size_And_FaceIndex_Internal_mD89D8C9D6A2B8E7D29BAE669C15781DBCC63B8E4(L_0, L_1, L_2, NULL);
  2705. V_0 = L_3;
  2706. goto IL_000c;
  2707. }
  2708. IL_000c:
  2709. {
  2710. int32_t L_4 = V_0;
  2711. return L_4;
  2712. }
  2713. }
  2714. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_And_FaceIndex_Internal_mD89D8C9D6A2B8E7D29BAE669C15781DBCC63B8E4 (String_t* ___0_filePath, int32_t ___1_pointSize, int32_t ___2_faceIndex, const RuntimeMethod* method)
  2715. {
  2716. typedef int32_t (*FontEngine_LoadFontFace_With_Size_And_FaceIndex_Internal_mD89D8C9D6A2B8E7D29BAE669C15781DBCC63B8E4_ftn) (String_t*, int32_t, int32_t);
  2717. static FontEngine_LoadFontFace_With_Size_And_FaceIndex_Internal_mD89D8C9D6A2B8E7D29BAE669C15781DBCC63B8E4_ftn _il2cpp_icall_func;
  2718. if (!_il2cpp_icall_func)
  2719. _il2cpp_icall_func = (FontEngine_LoadFontFace_With_Size_And_FaceIndex_Internal_mD89D8C9D6A2B8E7D29BAE669C15781DBCC63B8E4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_And_FaceIndex_Internal(System.String,System.Int32,System.Int32)");
  2720. int32_t icallRetVal = _il2cpp_icall_func(___0_filePath, ___1_pointSize, ___2_faceIndex);
  2721. return icallRetVal;
  2722. }
  2723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_m63A9171030B36C960896CEF55E7ECF55AF990548 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, int32_t ___1_pointSize, const RuntimeMethod* method)
  2724. {
  2725. static bool s_Il2CppMethodInitialized;
  2726. if (!s_Il2CppMethodInitialized)
  2727. {
  2728. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2729. s_Il2CppMethodInitialized = true;
  2730. }
  2731. int32_t V_0 = 0;
  2732. {
  2733. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_0 = ___0_font;
  2734. int32_t L_1 = ___1_pointSize;
  2735. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2736. int32_t L_2;
  2737. L_2 = FontEngine_LoadFontFace_With_Size_FromFont_Internal_m13A7F3EB357E2D2C67B14D10B96F3C490BF6AC11(L_0, L_1, NULL);
  2738. V_0 = L_2;
  2739. goto IL_000b;
  2740. }
  2741. IL_000b:
  2742. {
  2743. int32_t L_3 = V_0;
  2744. return L_3;
  2745. }
  2746. }
  2747. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_FromFont_Internal_m13A7F3EB357E2D2C67B14D10B96F3C490BF6AC11 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, int32_t ___1_pointSize, const RuntimeMethod* method)
  2748. {
  2749. typedef int32_t (*FontEngine_LoadFontFace_With_Size_FromFont_Internal_m13A7F3EB357E2D2C67B14D10B96F3C490BF6AC11_ftn) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*, int32_t);
  2750. static FontEngine_LoadFontFace_With_Size_FromFont_Internal_m13A7F3EB357E2D2C67B14D10B96F3C490BF6AC11_ftn _il2cpp_icall_func;
  2751. if (!_il2cpp_icall_func)
  2752. _il2cpp_icall_func = (FontEngine_LoadFontFace_With_Size_FromFont_Internal_m13A7F3EB357E2D2C67B14D10B96F3C490BF6AC11_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_FromFont_Internal(UnityEngine.Font,System.Int32)");
  2753. int32_t icallRetVal = _il2cpp_icall_func(___0_font, ___1_pointSize);
  2754. return icallRetVal;
  2755. }
  2756. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_m15ECA69542615468DB27EE5DCA11EE855BDAA356 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, int32_t ___1_pointSize, int32_t ___2_faceIndex, const RuntimeMethod* method)
  2757. {
  2758. static bool s_Il2CppMethodInitialized;
  2759. if (!s_Il2CppMethodInitialized)
  2760. {
  2761. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2762. s_Il2CppMethodInitialized = true;
  2763. }
  2764. int32_t V_0 = 0;
  2765. {
  2766. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_0 = ___0_font;
  2767. int32_t L_1 = ___1_pointSize;
  2768. int32_t L_2 = ___2_faceIndex;
  2769. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2770. int32_t L_3;
  2771. L_3 = FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal_m7C4E8F4F88CDDE6B838D890FDC1E0722EBD40497(L_0, L_1, L_2, NULL);
  2772. V_0 = L_3;
  2773. goto IL_000c;
  2774. }
  2775. IL_000c:
  2776. {
  2777. int32_t L_4 = V_0;
  2778. return L_4;
  2779. }
  2780. }
  2781. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal_m7C4E8F4F88CDDE6B838D890FDC1E0722EBD40497 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, int32_t ___1_pointSize, int32_t ___2_faceIndex, const RuntimeMethod* method)
  2782. {
  2783. typedef int32_t (*FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal_m7C4E8F4F88CDDE6B838D890FDC1E0722EBD40497_ftn) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*, int32_t, int32_t);
  2784. static FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal_m7C4E8F4F88CDDE6B838D890FDC1E0722EBD40497_ftn _il2cpp_icall_func;
  2785. if (!_il2cpp_icall_func)
  2786. _il2cpp_icall_func = (FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal_m7C4E8F4F88CDDE6B838D890FDC1E0722EBD40497_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal(UnityEngine.Font,System.Int32,System.Int32)");
  2787. int32_t icallRetVal = _il2cpp_icall_func(___0_font, ___1_pointSize, ___2_faceIndex);
  2788. return icallRetVal;
  2789. }
  2790. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_m793FE6557D378E25CDF12DDA5EFAA1F0F9A51C26 (String_t* ___0_familyName, String_t* ___1_styleName, int32_t ___2_pointSize, const RuntimeMethod* method)
  2791. {
  2792. static bool s_Il2CppMethodInitialized;
  2793. if (!s_Il2CppMethodInitialized)
  2794. {
  2795. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2796. s_Il2CppMethodInitialized = true;
  2797. }
  2798. int32_t V_0 = 0;
  2799. {
  2800. String_t* L_0 = ___0_familyName;
  2801. String_t* L_1 = ___1_styleName;
  2802. int32_t L_2 = ___2_pointSize;
  2803. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2804. int32_t L_3;
  2805. L_3 = FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal_m0856180C0F5FFA09E964986A78153D021F810F30(L_0, L_1, L_2, NULL);
  2806. V_0 = L_3;
  2807. goto IL_000c;
  2808. }
  2809. IL_000c:
  2810. {
  2811. int32_t L_4 = V_0;
  2812. return L_4;
  2813. }
  2814. }
  2815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal_m0856180C0F5FFA09E964986A78153D021F810F30 (String_t* ___0_familyName, String_t* ___1_styleName, int32_t ___2_pointSize, const RuntimeMethod* method)
  2816. {
  2817. typedef int32_t (*FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal_m0856180C0F5FFA09E964986A78153D021F810F30_ftn) (String_t*, String_t*, int32_t);
  2818. static FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal_m0856180C0F5FFA09E964986A78153D021F810F30_ftn _il2cpp_icall_func;
  2819. if (!_il2cpp_icall_func)
  2820. _il2cpp_icall_func = (FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal_m0856180C0F5FFA09E964986A78153D021F810F30_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal(System.String,System.String,System.Int32)");
  2821. int32_t icallRetVal = _il2cpp_icall_func(___0_familyName, ___1_styleName, ___2_pointSize);
  2822. return icallRetVal;
  2823. }
  2824. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetSystemFontReference_mA32D1513035E9B58417092500DDC3A7C939367A1 (String_t* ___0_familyName, String_t* ___1_styleName, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172* ___2_fontRef, const RuntimeMethod* method)
  2825. {
  2826. static bool s_Il2CppMethodInitialized;
  2827. if (!s_Il2CppMethodInitialized)
  2828. {
  2829. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2830. s_Il2CppMethodInitialized = true;
  2831. }
  2832. bool V_0 = false;
  2833. {
  2834. String_t* L_0 = ___0_familyName;
  2835. String_t* L_1 = ___1_styleName;
  2836. FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172* L_2 = ___2_fontRef;
  2837. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2838. bool L_3;
  2839. L_3 = FontEngine_TryGetSystemFontReference_Internal_m61AAB78124D19B1BC88C22D520287893E7280E1F(L_0, L_1, L_2, NULL);
  2840. V_0 = L_3;
  2841. goto IL_000c;
  2842. }
  2843. IL_000c:
  2844. {
  2845. bool L_4 = V_0;
  2846. return L_4;
  2847. }
  2848. }
  2849. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetSystemFontReference_Internal_m61AAB78124D19B1BC88C22D520287893E7280E1F (String_t* ___0_familyName, String_t* ___1_styleName, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172* ___2_fontRef, const RuntimeMethod* method)
  2850. {
  2851. typedef bool (*FontEngine_TryGetSystemFontReference_Internal_m61AAB78124D19B1BC88C22D520287893E7280E1F_ftn) (String_t*, String_t*, FontReference_t550791D5AA7787156C3A229C65D7E1AC4BF76172*);
  2852. static FontEngine_TryGetSystemFontReference_Internal_m61AAB78124D19B1BC88C22D520287893E7280E1F_ftn _il2cpp_icall_func;
  2853. if (!_il2cpp_icall_func)
  2854. _il2cpp_icall_func = (FontEngine_TryGetSystemFontReference_Internal_m61AAB78124D19B1BC88C22D520287893E7280E1F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryGetSystemFontReference_Internal(System.String,System.String,UnityEngine.TextCore.LowLevel.FontReference&)");
  2855. bool icallRetVal = _il2cpp_icall_func(___0_familyName, ___1_styleName, ___2_fontRef);
  2856. return icallRetVal;
  2857. }
  2858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 FontEngine_GetFaceInfo_mF371B75CDEEDA91FF910BED8DEE8FEB2A493BE37 (const RuntimeMethod* method)
  2859. {
  2860. static bool s_Il2CppMethodInitialized;
  2861. if (!s_Il2CppMethodInitialized)
  2862. {
  2863. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2864. s_Il2CppMethodInitialized = true;
  2865. }
  2866. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 V_0;
  2867. memset((&V_0), 0, sizeof(V_0));
  2868. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 V_1;
  2869. memset((&V_1), 0, sizeof(V_1));
  2870. {
  2871. il2cpp_codegen_initobj((&V_0), sizeof(FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756));
  2872. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2873. int32_t L_0;
  2874. L_0 = FontEngine_GetFaceInfo_Internal_m34E21653DF4724C3FCE289DA20AD5AB1B2F24B90((&V_0), NULL);
  2875. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 L_1 = V_0;
  2876. V_1 = L_1;
  2877. goto IL_0015;
  2878. }
  2879. IL_0015:
  2880. {
  2881. FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 L_2 = V_1;
  2882. return L_2;
  2883. }
  2884. }
  2885. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetFaceInfo_Internal_m34E21653DF4724C3FCE289DA20AD5AB1B2F24B90 (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* ___0_faceInfo, const RuntimeMethod* method)
  2886. {
  2887. typedef int32_t (*FontEngine_GetFaceInfo_Internal_m34E21653DF4724C3FCE289DA20AD5AB1B2F24B90_ftn) (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756*);
  2888. static FontEngine_GetFaceInfo_Internal_m34E21653DF4724C3FCE289DA20AD5AB1B2F24B90_ftn _il2cpp_icall_func;
  2889. if (!_il2cpp_icall_func)
  2890. _il2cpp_icall_func = (FontEngine_GetFaceInfo_Internal_m34E21653DF4724C3FCE289DA20AD5AB1B2F24B90_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::GetFaceInfo_Internal(UnityEngine.TextCore.FaceInfo&)");
  2891. int32_t icallRetVal = _il2cpp_icall_func(___0_faceInfo);
  2892. return icallRetVal;
  2893. }
  2894. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t FontEngine_GetGlyphIndex_mEAE36421D92783413286344213D6EFD52E90CC00 (uint32_t ___0_unicode, const RuntimeMethod* method)
  2895. {
  2896. typedef uint32_t (*FontEngine_GetGlyphIndex_mEAE36421D92783413286344213D6EFD52E90CC00_ftn) (uint32_t);
  2897. static FontEngine_GetGlyphIndex_mEAE36421D92783413286344213D6EFD52E90CC00_ftn _il2cpp_icall_func;
  2898. if (!_il2cpp_icall_func)
  2899. _il2cpp_icall_func = (FontEngine_GetGlyphIndex_mEAE36421D92783413286344213D6EFD52E90CC00_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphIndex(System.UInt32)");
  2900. uint32_t icallRetVal = _il2cpp_icall_func(___0_unicode);
  2901. return icallRetVal;
  2902. }
  2903. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithUnicodeValue_m58889809E3D65A0F1C5AEFF4DF6D319EBD139159 (uint32_t ___0_unicode, int32_t ___1_flags, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** ___2_glyph, const RuntimeMethod* method)
  2904. {
  2905. static bool s_Il2CppMethodInitialized;
  2906. if (!s_Il2CppMethodInitialized)
  2907. {
  2908. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2909. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  2910. s_Il2CppMethodInitialized = true;
  2911. }
  2912. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C V_0;
  2913. memset((&V_0), 0, sizeof(V_0));
  2914. bool V_1 = false;
  2915. bool V_2 = false;
  2916. {
  2917. il2cpp_codegen_initobj((&V_0), sizeof(GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C));
  2918. uint32_t L_0 = ___0_unicode;
  2919. int32_t L_1 = ___1_flags;
  2920. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2921. bool L_2;
  2922. L_2 = FontEngine_TryGetGlyphWithUnicodeValue_Internal_mD799CD2B5CEA61ED5ABA16EDAA428385FD906BD8(L_0, L_1, (&V_0), NULL);
  2923. V_1 = L_2;
  2924. bool L_3 = V_1;
  2925. if (!L_3)
  2926. {
  2927. goto IL_0023;
  2928. }
  2929. }
  2930. {
  2931. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** L_4 = ___2_glyph;
  2932. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_5 = V_0;
  2933. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* L_6 = (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F*)il2cpp_codegen_object_new(Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  2934. Glyph__ctor_m2E3C296A46BE48B869634BBE3F97B30F3442CC94(L_6, L_5, NULL);
  2935. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  2936. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  2937. V_2 = (bool)1;
  2938. goto IL_002a;
  2939. }
  2940. IL_0023:
  2941. {
  2942. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** L_7 = ___2_glyph;
  2943. *((RuntimeObject**)L_7) = (RuntimeObject*)NULL;
  2944. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL);
  2945. V_2 = (bool)0;
  2946. goto IL_002a;
  2947. }
  2948. IL_002a:
  2949. {
  2950. bool L_8 = V_2;
  2951. return L_8;
  2952. }
  2953. }
  2954. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithUnicodeValue_Internal_mD799CD2B5CEA61ED5ABA16EDAA428385FD906BD8 (uint32_t ___0_unicode, int32_t ___1_loadFlags, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* ___2_glyphStruct, const RuntimeMethod* method)
  2955. {
  2956. typedef bool (*FontEngine_TryGetGlyphWithUnicodeValue_Internal_mD799CD2B5CEA61ED5ABA16EDAA428385FD906BD8_ftn) (uint32_t, int32_t, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C*);
  2957. static FontEngine_TryGetGlyphWithUnicodeValue_Internal_mD799CD2B5CEA61ED5ABA16EDAA428385FD906BD8_ftn _il2cpp_icall_func;
  2958. if (!_il2cpp_icall_func)
  2959. _il2cpp_icall_func = (FontEngine_TryGetGlyphWithUnicodeValue_Internal_mD799CD2B5CEA61ED5ABA16EDAA428385FD906BD8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithUnicodeValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)");
  2960. bool icallRetVal = _il2cpp_icall_func(___0_unicode, ___1_loadFlags, ___2_glyphStruct);
  2961. return icallRetVal;
  2962. }
  2963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithIndexValue_mD922A7EB95949E95D96C222D2CA1ED56BA2E81C3 (uint32_t ___0_glyphIndex, int32_t ___1_flags, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** ___2_glyph, const RuntimeMethod* method)
  2964. {
  2965. static bool s_Il2CppMethodInitialized;
  2966. if (!s_Il2CppMethodInitialized)
  2967. {
  2968. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2969. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  2970. s_Il2CppMethodInitialized = true;
  2971. }
  2972. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C V_0;
  2973. memset((&V_0), 0, sizeof(V_0));
  2974. bool V_1 = false;
  2975. bool V_2 = false;
  2976. {
  2977. il2cpp_codegen_initobj((&V_0), sizeof(GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C));
  2978. uint32_t L_0 = ___0_glyphIndex;
  2979. int32_t L_1 = ___1_flags;
  2980. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  2981. bool L_2;
  2982. L_2 = FontEngine_TryGetGlyphWithIndexValue_Internal_m2C5359B3C62139D20F52C1D232938CFAC9C3459D(L_0, L_1, (&V_0), NULL);
  2983. V_1 = L_2;
  2984. bool L_3 = V_1;
  2985. if (!L_3)
  2986. {
  2987. goto IL_0023;
  2988. }
  2989. }
  2990. {
  2991. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** L_4 = ___2_glyph;
  2992. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_5 = V_0;
  2993. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* L_6 = (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F*)il2cpp_codegen_object_new(Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  2994. Glyph__ctor_m2E3C296A46BE48B869634BBE3F97B30F3442CC94(L_6, L_5, NULL);
  2995. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  2996. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  2997. V_2 = (bool)1;
  2998. goto IL_002a;
  2999. }
  3000. IL_0023:
  3001. {
  3002. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** L_7 = ___2_glyph;
  3003. *((RuntimeObject**)L_7) = (RuntimeObject*)NULL;
  3004. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL);
  3005. V_2 = (bool)0;
  3006. goto IL_002a;
  3007. }
  3008. IL_002a:
  3009. {
  3010. bool L_8 = V_2;
  3011. return L_8;
  3012. }
  3013. }
  3014. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithIndexValue_Internal_m2C5359B3C62139D20F52C1D232938CFAC9C3459D (uint32_t ___0_glyphIndex, int32_t ___1_loadFlags, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* ___2_glyphStruct, const RuntimeMethod* method)
  3015. {
  3016. typedef bool (*FontEngine_TryGetGlyphWithIndexValue_Internal_m2C5359B3C62139D20F52C1D232938CFAC9C3459D_ftn) (uint32_t, int32_t, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C*);
  3017. static FontEngine_TryGetGlyphWithIndexValue_Internal_m2C5359B3C62139D20F52C1D232938CFAC9C3459D_ftn _il2cpp_icall_func;
  3018. if (!_il2cpp_icall_func)
  3019. _il2cpp_icall_func = (FontEngine_TryGetGlyphWithIndexValue_Internal_m2C5359B3C62139D20F52C1D232938CFAC9C3459D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithIndexValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)");
  3020. bool icallRetVal = _il2cpp_icall_func(___0_glyphIndex, ___1_loadFlags, ___2_glyphStruct);
  3021. return icallRetVal;
  3022. }
  3023. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine_SetTextureUploadMode_m04D13DFE627B79D5EB574EC74556E31DF42A83F3 (bool ___0_shouldUploadImmediately, const RuntimeMethod* method)
  3024. {
  3025. typedef void (*FontEngine_SetTextureUploadMode_m04D13DFE627B79D5EB574EC74556E31DF42A83F3_ftn) (bool);
  3026. static FontEngine_SetTextureUploadMode_m04D13DFE627B79D5EB574EC74556E31DF42A83F3_ftn _il2cpp_icall_func;
  3027. if (!_il2cpp_icall_func)
  3028. _il2cpp_icall_func = (FontEngine_SetTextureUploadMode_m04D13DFE627B79D5EB574EC74556E31DF42A83F3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::SetTextureUploadMode(System.Boolean)");
  3029. _il2cpp_icall_func(___0_shouldUploadImmediately);
  3030. }
  3031. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphToTexture_m45A94FA06ADDCE2FA6B139B29E942496B760A090 (uint32_t ___0_glyphIndex, int32_t ___1_padding, int32_t ___2_packingMode, List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* ___3_freeGlyphRects, List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* ___4_usedGlyphRects, int32_t ___5_renderMode, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___6_texture, Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** ___7_glyph, const RuntimeMethod* method)
  3032. {
  3033. static bool s_Il2CppMethodInitialized;
  3034. if (!s_Il2CppMethodInitialized)
  3035. {
  3036. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3037. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var);
  3038. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  3039. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var);
  3040. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var);
  3041. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var);
  3042. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var);
  3043. s_Il2CppMethodInitialized = true;
  3044. }
  3045. int32_t V_0 = 0;
  3046. int32_t V_1 = 0;
  3047. int32_t V_2 = 0;
  3048. int32_t V_3 = 0;
  3049. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C V_4;
  3050. memset((&V_4), 0, sizeof(V_4));
  3051. bool V_5 = false;
  3052. int32_t V_6 = 0;
  3053. int32_t V_7 = 0;
  3054. bool V_8 = false;
  3055. bool V_9 = false;
  3056. bool V_10 = false;
  3057. bool V_11 = false;
  3058. int32_t V_12 = 0;
  3059. bool V_13 = false;
  3060. bool V_14 = false;
  3061. bool V_15 = false;
  3062. bool V_16 = false;
  3063. int32_t G_B3_0 = 0;
  3064. {
  3065. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_0 = ___3_freeGlyphRects;
  3066. NullCheck(L_0);
  3067. int32_t L_1;
  3068. L_1 = List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_inline(L_0, List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var);
  3069. V_0 = L_1;
  3070. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_2 = ___4_usedGlyphRects;
  3071. NullCheck(L_2);
  3072. int32_t L_3;
  3073. L_3 = List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_inline(L_2, List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var);
  3074. V_1 = L_3;
  3075. int32_t L_4 = V_0;
  3076. int32_t L_5 = V_1;
  3077. V_2 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
  3078. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3079. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_6 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3080. NullCheck(L_6);
  3081. int32_t L_7 = V_2;
  3082. if ((((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))) < ((int32_t)L_7)))
  3083. {
  3084. goto IL_002a;
  3085. }
  3086. }
  3087. {
  3088. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3089. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_8 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3090. NullCheck(L_8);
  3091. int32_t L_9 = V_2;
  3092. G_B3_0 = ((((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))) < ((int32_t)L_9))? 1 : 0);
  3093. goto IL_002b;
  3094. }
  3095. IL_002a:
  3096. {
  3097. G_B3_0 = 1;
  3098. }
  3099. IL_002b:
  3100. {
  3101. V_5 = (bool)G_B3_0;
  3102. bool L_10 = V_5;
  3103. if (!L_10)
  3104. {
  3105. goto IL_0055;
  3106. }
  3107. }
  3108. {
  3109. int32_t L_11 = V_2;
  3110. int32_t L_12;
  3111. L_12 = Mathf_NextPowerOfTwo_mA1CE7F3EEF9B0B07AB2D586C030ED236D578F485(((int32_t)il2cpp_codegen_add(L_11, 1)), NULL);
  3112. V_6 = L_12;
  3113. int32_t L_13 = V_6;
  3114. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_14 = (GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)SZArrayNew(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var, (uint32_t)L_13);
  3115. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3116. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects = L_14;
  3117. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects), (void*)L_14);
  3118. int32_t L_15 = V_6;
  3119. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_16 = (GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)SZArrayNew(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var, (uint32_t)L_15);
  3120. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects = L_16;
  3121. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects), (void*)L_16);
  3122. }
  3123. IL_0055:
  3124. {
  3125. int32_t L_17 = V_0;
  3126. int32_t L_18 = V_1;
  3127. int32_t L_19;
  3128. L_19 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(L_17, L_18, NULL);
  3129. V_3 = L_19;
  3130. V_7 = 0;
  3131. goto IL_00a9;
  3132. }
  3133. IL_0062:
  3134. {
  3135. int32_t L_20 = V_7;
  3136. int32_t L_21 = V_0;
  3137. V_8 = (bool)((((int32_t)L_20) < ((int32_t)L_21))? 1 : 0);
  3138. bool L_22 = V_8;
  3139. if (!L_22)
  3140. {
  3141. goto IL_0082;
  3142. }
  3143. }
  3144. {
  3145. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3146. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_23 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3147. int32_t L_24 = V_7;
  3148. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_25 = ___3_freeGlyphRects;
  3149. int32_t L_26 = V_7;
  3150. NullCheck(L_25);
  3151. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_27;
  3152. L_27 = List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5(L_25, L_26, List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var);
  3153. NullCheck(L_23);
  3154. (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D)L_27);
  3155. }
  3156. IL_0082:
  3157. {
  3158. int32_t L_28 = V_7;
  3159. int32_t L_29 = V_1;
  3160. V_9 = (bool)((((int32_t)L_28) < ((int32_t)L_29))? 1 : 0);
  3161. bool L_30 = V_9;
  3162. if (!L_30)
  3163. {
  3164. goto IL_00a2;
  3165. }
  3166. }
  3167. {
  3168. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3169. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_31 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3170. int32_t L_32 = V_7;
  3171. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_33 = ___4_usedGlyphRects;
  3172. int32_t L_34 = V_7;
  3173. NullCheck(L_33);
  3174. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_35;
  3175. L_35 = List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5(L_33, L_34, List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var);
  3176. NullCheck(L_31);
  3177. (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D)L_35);
  3178. }
  3179. IL_00a2:
  3180. {
  3181. int32_t L_36 = V_7;
  3182. V_7 = ((int32_t)il2cpp_codegen_add(L_36, 1));
  3183. }
  3184. IL_00a9:
  3185. {
  3186. int32_t L_37 = V_7;
  3187. int32_t L_38 = V_3;
  3188. V_10 = (bool)((((int32_t)L_37) < ((int32_t)L_38))? 1 : 0);
  3189. bool L_39 = V_10;
  3190. if (L_39)
  3191. {
  3192. goto IL_0062;
  3193. }
  3194. }
  3195. {
  3196. uint32_t L_40 = ___0_glyphIndex;
  3197. int32_t L_41 = ___1_padding;
  3198. int32_t L_42 = ___2_packingMode;
  3199. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3200. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_43 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3201. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_44 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3202. int32_t L_45 = ___5_renderMode;
  3203. Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_46 = ___6_texture;
  3204. bool L_47;
  3205. L_47 = FontEngine_TryAddGlyphToTexture_Internal_mD6ED15BDDDC4F874C98D514D8DCE699EADB8C708(L_40, L_41, L_42, L_43, (&V_0), L_44, (&V_1), L_45, L_46, (&V_4), NULL);
  3206. V_11 = L_47;
  3207. bool L_48 = V_11;
  3208. if (!L_48)
  3209. {
  3210. goto IL_0152;
  3211. }
  3212. }
  3213. {
  3214. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** L_49 = ___7_glyph;
  3215. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_50 = V_4;
  3216. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* L_51 = (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F*)il2cpp_codegen_object_new(Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  3217. Glyph__ctor_m2E3C296A46BE48B869634BBE3F97B30F3442CC94(L_51, L_50, NULL);
  3218. *((RuntimeObject**)L_49) = (RuntimeObject*)L_51;
  3219. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_49, (void*)(RuntimeObject*)L_51);
  3220. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_52 = ___3_freeGlyphRects;
  3221. NullCheck(L_52);
  3222. List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_inline(L_52, List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var);
  3223. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_53 = ___4_usedGlyphRects;
  3224. NullCheck(L_53);
  3225. List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_inline(L_53, List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var);
  3226. int32_t L_54 = V_0;
  3227. int32_t L_55 = V_1;
  3228. int32_t L_56;
  3229. L_56 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(L_54, L_55, NULL);
  3230. V_3 = L_56;
  3231. V_12 = 0;
  3232. goto IL_0142;
  3233. }
  3234. IL_00fd:
  3235. {
  3236. int32_t L_57 = V_12;
  3237. int32_t L_58 = V_0;
  3238. V_13 = (bool)((((int32_t)L_57) < ((int32_t)L_58))? 1 : 0);
  3239. bool L_59 = V_13;
  3240. if (!L_59)
  3241. {
  3242. goto IL_011c;
  3243. }
  3244. }
  3245. {
  3246. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_60 = ___3_freeGlyphRects;
  3247. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3248. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_61 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3249. int32_t L_62 = V_12;
  3250. NullCheck(L_61);
  3251. int32_t L_63 = L_62;
  3252. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
  3253. NullCheck(L_60);
  3254. List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_inline(L_60, L_64, List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var);
  3255. }
  3256. IL_011c:
  3257. {
  3258. int32_t L_65 = V_12;
  3259. int32_t L_66 = V_1;
  3260. V_14 = (bool)((((int32_t)L_65) < ((int32_t)L_66))? 1 : 0);
  3261. bool L_67 = V_14;
  3262. if (!L_67)
  3263. {
  3264. goto IL_013b;
  3265. }
  3266. }
  3267. {
  3268. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_68 = ___4_usedGlyphRects;
  3269. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3270. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_69 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3271. int32_t L_70 = V_12;
  3272. NullCheck(L_69);
  3273. int32_t L_71 = L_70;
  3274. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_72 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71));
  3275. NullCheck(L_68);
  3276. List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_inline(L_68, L_72, List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var);
  3277. }
  3278. IL_013b:
  3279. {
  3280. int32_t L_73 = V_12;
  3281. V_12 = ((int32_t)il2cpp_codegen_add(L_73, 1));
  3282. }
  3283. IL_0142:
  3284. {
  3285. int32_t L_74 = V_12;
  3286. int32_t L_75 = V_3;
  3287. V_15 = (bool)((((int32_t)L_74) < ((int32_t)L_75))? 1 : 0);
  3288. bool L_76 = V_15;
  3289. if (L_76)
  3290. {
  3291. goto IL_00fd;
  3292. }
  3293. }
  3294. {
  3295. V_16 = (bool)1;
  3296. goto IL_015b;
  3297. }
  3298. IL_0152:
  3299. {
  3300. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F** L_77 = ___7_glyph;
  3301. *((RuntimeObject**)L_77) = (RuntimeObject*)NULL;
  3302. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_77, (void*)(RuntimeObject*)NULL);
  3303. V_16 = (bool)0;
  3304. goto IL_015b;
  3305. }
  3306. IL_015b:
  3307. {
  3308. bool L_78 = V_16;
  3309. return L_78;
  3310. }
  3311. }
  3312. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphToTexture_Internal_mD6ED15BDDDC4F874C98D514D8DCE699EADB8C708 (uint32_t ___0_glyphIndex, int32_t ___1_padding, int32_t ___2_packingMode, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___3_freeGlyphRects, int32_t* ___4_freeGlyphRectCount, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___5_usedGlyphRects, int32_t* ___6_usedGlyphRectCount, int32_t ___7_renderMode, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___8_texture, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C* ___9_glyph, const RuntimeMethod* method)
  3313. {
  3314. typedef bool (*FontEngine_TryAddGlyphToTexture_Internal_mD6ED15BDDDC4F874C98D514D8DCE699EADB8C708_ftn) (uint32_t, int32_t, int32_t, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*, int32_t*, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*, int32_t*, int32_t, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4*, GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C*);
  3315. static FontEngine_TryAddGlyphToTexture_Internal_mD6ED15BDDDC4F874C98D514D8DCE699EADB8C708_ftn _il2cpp_icall_func;
  3316. if (!_il2cpp_icall_func)
  3317. _il2cpp_icall_func = (FontEngine_TryAddGlyphToTexture_Internal_mD6ED15BDDDC4F874C98D514D8DCE699EADB8C708_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphToTexture_Internal(System.UInt32,System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)");
  3318. bool icallRetVal = _il2cpp_icall_func(___0_glyphIndex, ___1_padding, ___2_packingMode, ___3_freeGlyphRects, ___4_freeGlyphRectCount, ___5_usedGlyphRects, ___6_usedGlyphRectCount, ___7_renderMode, ___8_texture, ___9_glyph);
  3319. return icallRetVal;
  3320. }
  3321. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphsToTexture_m18740AD9F7264F54C397916268C0AB0738879801 (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___0_glyphIndexes, int32_t ___1_padding, int32_t ___2_packingMode, List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* ___3_freeGlyphRects, List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* ___4_usedGlyphRects, int32_t ___5_renderMode, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___6_texture, GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5** ___7_glyphs, const RuntimeMethod* method)
  3322. {
  3323. static bool s_Il2CppMethodInitialized;
  3324. if (!s_Il2CppMethodInitialized)
  3325. {
  3326. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3327. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E_il2cpp_TypeInfo_var);
  3328. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var);
  3329. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5_il2cpp_TypeInfo_var);
  3330. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  3331. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var);
  3332. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var);
  3333. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_RuntimeMethod_var);
  3334. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var);
  3335. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var);
  3336. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324_RuntimeMethod_var);
  3337. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var);
  3338. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0EDAB22225C2411ABFD38819044326FB5BDC916);
  3339. s_Il2CppMethodInitialized = true;
  3340. }
  3341. int32_t V_0 = 0;
  3342. int32_t V_1 = 0;
  3343. int32_t V_2 = 0;
  3344. int32_t V_3 = 0;
  3345. int32_t V_4 = 0;
  3346. bool V_5 = false;
  3347. bool V_6 = false;
  3348. bool V_7 = false;
  3349. bool V_8 = false;
  3350. bool V_9 = false;
  3351. int32_t V_10 = 0;
  3352. bool V_11 = false;
  3353. int32_t V_12 = 0;
  3354. int32_t V_13 = 0;
  3355. bool V_14 = false;
  3356. bool V_15 = false;
  3357. bool V_16 = false;
  3358. bool V_17 = false;
  3359. bool V_18 = false;
  3360. int32_t V_19 = 0;
  3361. bool V_20 = false;
  3362. bool V_21 = false;
  3363. bool V_22 = false;
  3364. bool V_23 = false;
  3365. int32_t G_B3_0 = 0;
  3366. int32_t G_B8_0 = 0;
  3367. int32_t G_B13_0 = 0;
  3368. int32_t G_B29_0 = 0;
  3369. {
  3370. Profiler_BeginSample_m640E26B682D803CC5DB4EDFDF2F6E83771BF0BE4_inline(_stringLiteralF0EDAB22225C2411ABFD38819044326FB5BDC916, NULL);
  3371. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5** L_0 = ___7_glyphs;
  3372. *((RuntimeObject**)L_0) = (RuntimeObject*)NULL;
  3373. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL);
  3374. List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* L_1 = ___0_glyphIndexes;
  3375. if (!L_1)
  3376. {
  3377. goto IL_001e;
  3378. }
  3379. }
  3380. {
  3381. List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* L_2 = ___0_glyphIndexes;
  3382. NullCheck(L_2);
  3383. int32_t L_3;
  3384. L_3 = List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_inline(L_2, List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_RuntimeMethod_var);
  3385. G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
  3386. goto IL_001f;
  3387. }
  3388. IL_001e:
  3389. {
  3390. G_B3_0 = 1;
  3391. }
  3392. IL_001f:
  3393. {
  3394. V_6 = (bool)G_B3_0;
  3395. bool L_4 = V_6;
  3396. if (!L_4)
  3397. {
  3398. goto IL_0034;
  3399. }
  3400. }
  3401. {
  3402. Profiler_EndSample_m3FCA26738A87C0B8E352533AD48E2A16B047A757(NULL);
  3403. V_7 = (bool)0;
  3404. goto IL_0267;
  3405. }
  3406. IL_0034:
  3407. {
  3408. List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* L_5 = ___0_glyphIndexes;
  3409. NullCheck(L_5);
  3410. int32_t L_6;
  3411. L_6 = List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_inline(L_5, List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_RuntimeMethod_var);
  3412. V_0 = L_6;
  3413. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3414. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_7 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A;
  3415. if (!L_7)
  3416. {
  3417. goto IL_004e;
  3418. }
  3419. }
  3420. {
  3421. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3422. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_8 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A;
  3423. NullCheck(L_8);
  3424. int32_t L_9 = V_0;
  3425. G_B8_0 = ((((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))) < ((int32_t)L_9))? 1 : 0);
  3426. goto IL_004f;
  3427. }
  3428. IL_004e:
  3429. {
  3430. G_B8_0 = 1;
  3431. }
  3432. IL_004f:
  3433. {
  3434. V_8 = (bool)G_B8_0;
  3435. bool L_10 = V_8;
  3436. if (!L_10)
  3437. {
  3438. goto IL_0067;
  3439. }
  3440. }
  3441. {
  3442. int32_t L_11 = V_0;
  3443. int32_t L_12;
  3444. L_12 = Mathf_NextPowerOfTwo_mA1CE7F3EEF9B0B07AB2D586C030ED236D578F485(((int32_t)il2cpp_codegen_add(L_11, 1)), NULL);
  3445. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_13 = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)SZArrayNew(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var, (uint32_t)L_12);
  3446. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3447. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A = L_13;
  3448. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A), (void*)L_13);
  3449. }
  3450. IL_0067:
  3451. {
  3452. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_14 = ___3_freeGlyphRects;
  3453. NullCheck(L_14);
  3454. int32_t L_15;
  3455. L_15 = List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_inline(L_14, List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var);
  3456. V_1 = L_15;
  3457. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_16 = ___4_usedGlyphRects;
  3458. NullCheck(L_16);
  3459. int32_t L_17;
  3460. L_17 = List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_inline(L_16, List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_RuntimeMethod_var);
  3461. V_2 = L_17;
  3462. int32_t L_18 = V_1;
  3463. int32_t L_19 = V_2;
  3464. int32_t L_20 = V_0;
  3465. V_3 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_18, L_19)), L_20));
  3466. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3467. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_21 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3468. NullCheck(L_21);
  3469. int32_t L_22 = V_3;
  3470. if ((((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))) < ((int32_t)L_22)))
  3471. {
  3472. goto IL_0092;
  3473. }
  3474. }
  3475. {
  3476. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3477. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_23 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3478. NullCheck(L_23);
  3479. int32_t L_24 = V_3;
  3480. G_B13_0 = ((((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))) < ((int32_t)L_24))? 1 : 0);
  3481. goto IL_0093;
  3482. }
  3483. IL_0092:
  3484. {
  3485. G_B13_0 = 1;
  3486. }
  3487. IL_0093:
  3488. {
  3489. V_9 = (bool)G_B13_0;
  3490. bool L_25 = V_9;
  3491. if (!L_25)
  3492. {
  3493. goto IL_00bd;
  3494. }
  3495. }
  3496. {
  3497. int32_t L_26 = V_3;
  3498. int32_t L_27;
  3499. L_27 = Mathf_NextPowerOfTwo_mA1CE7F3EEF9B0B07AB2D586C030ED236D578F485(((int32_t)il2cpp_codegen_add(L_26, 1)), NULL);
  3500. V_10 = L_27;
  3501. int32_t L_28 = V_10;
  3502. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_29 = (GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)SZArrayNew(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var, (uint32_t)L_28);
  3503. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3504. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects = L_29;
  3505. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects), (void*)L_29);
  3506. int32_t L_30 = V_10;
  3507. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_31 = (GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)SZArrayNew(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var, (uint32_t)L_30);
  3508. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects = L_31;
  3509. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects), (void*)L_31);
  3510. }
  3511. IL_00bd:
  3512. {
  3513. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3514. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* L_32 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT;
  3515. NullCheck(L_32);
  3516. int32_t L_33 = V_0;
  3517. V_11 = (bool)((((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))) < ((int32_t)L_33))? 1 : 0);
  3518. bool L_34 = V_11;
  3519. if (!L_34)
  3520. {
  3521. goto IL_00e5;
  3522. }
  3523. }
  3524. {
  3525. int32_t L_35 = V_0;
  3526. int32_t L_36;
  3527. L_36 = Mathf_NextPowerOfTwo_mA1CE7F3EEF9B0B07AB2D586C030ED236D578F485(((int32_t)il2cpp_codegen_add(L_35, 1)), NULL);
  3528. V_12 = L_36;
  3529. int32_t L_37 = V_12;
  3530. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* L_38 = (GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*)(GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*)SZArrayNew(GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E_il2cpp_TypeInfo_var, (uint32_t)L_37);
  3531. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3532. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT = L_38;
  3533. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT), (void*)L_38);
  3534. }
  3535. IL_00e5:
  3536. {
  3537. int32_t L_39 = V_1;
  3538. int32_t L_40 = V_2;
  3539. int32_t L_41 = V_0;
  3540. int32_t L_42;
  3541. L_42 = FontEngineUtilities_MaxValue_m7E0FBF90FE07F65C9895ACD56FD032A53E417F83(L_39, L_40, L_41, NULL);
  3542. V_4 = L_42;
  3543. V_13 = 0;
  3544. goto IL_0156;
  3545. }
  3546. IL_00f4:
  3547. {
  3548. int32_t L_43 = V_13;
  3549. int32_t L_44 = V_0;
  3550. V_14 = (bool)((((int32_t)L_43) < ((int32_t)L_44))? 1 : 0);
  3551. bool L_45 = V_14;
  3552. if (!L_45)
  3553. {
  3554. goto IL_0110;
  3555. }
  3556. }
  3557. {
  3558. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3559. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_46 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A;
  3560. int32_t L_47 = V_13;
  3561. List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* L_48 = ___0_glyphIndexes;
  3562. int32_t L_49 = V_13;
  3563. NullCheck(L_48);
  3564. uint32_t L_50;
  3565. L_50 = List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324(L_48, L_49, List_1_get_Item_m934DB856B4560B22F57FDEEF351E373E5F1B6324_RuntimeMethod_var);
  3566. NullCheck(L_46);
  3567. (L_46)->SetAt(static_cast<il2cpp_array_size_t>(L_47), (uint32_t)L_50);
  3568. }
  3569. IL_0110:
  3570. {
  3571. int32_t L_51 = V_13;
  3572. int32_t L_52 = V_1;
  3573. V_15 = (bool)((((int32_t)L_51) < ((int32_t)L_52))? 1 : 0);
  3574. bool L_53 = V_15;
  3575. if (!L_53)
  3576. {
  3577. goto IL_012f;
  3578. }
  3579. }
  3580. {
  3581. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3582. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_54 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3583. int32_t L_55 = V_13;
  3584. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_56 = ___3_freeGlyphRects;
  3585. int32_t L_57 = V_13;
  3586. NullCheck(L_56);
  3587. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_58;
  3588. L_58 = List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5(L_56, L_57, List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var);
  3589. NullCheck(L_54);
  3590. (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_55), (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D)L_58);
  3591. }
  3592. IL_012f:
  3593. {
  3594. int32_t L_59 = V_13;
  3595. int32_t L_60 = V_2;
  3596. V_16 = (bool)((((int32_t)L_59) < ((int32_t)L_60))? 1 : 0);
  3597. bool L_61 = V_16;
  3598. if (!L_61)
  3599. {
  3600. goto IL_014f;
  3601. }
  3602. }
  3603. {
  3604. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3605. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_62 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3606. int32_t L_63 = V_13;
  3607. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_64 = ___4_usedGlyphRects;
  3608. int32_t L_65 = V_13;
  3609. NullCheck(L_64);
  3610. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_66;
  3611. L_66 = List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5(L_64, L_65, List_1_get_Item_m8FDBE76BF6126F73C0BAF2E071538F40CA9D37E5_RuntimeMethod_var);
  3612. NullCheck(L_62);
  3613. (L_62)->SetAt(static_cast<il2cpp_array_size_t>(L_63), (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D)L_66);
  3614. }
  3615. IL_014f:
  3616. {
  3617. int32_t L_67 = V_13;
  3618. V_13 = ((int32_t)il2cpp_codegen_add(L_67, 1));
  3619. }
  3620. IL_0156:
  3621. {
  3622. int32_t L_68 = V_13;
  3623. int32_t L_69 = V_4;
  3624. V_17 = (bool)((((int32_t)L_68) < ((int32_t)L_69))? 1 : 0);
  3625. bool L_70 = V_17;
  3626. if (L_70)
  3627. {
  3628. goto IL_00f4;
  3629. }
  3630. }
  3631. {
  3632. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3633. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_71 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A;
  3634. int32_t L_72 = ___1_padding;
  3635. int32_t L_73 = ___2_packingMode;
  3636. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_74 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3637. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_75 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3638. int32_t L_76 = ___5_renderMode;
  3639. Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_77 = ___6_texture;
  3640. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* L_78 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT;
  3641. bool L_79;
  3642. L_79 = FontEngine_TryAddGlyphsToTexture_Internal_m43D4D242873C647DF5A20F7579FD90E373999EA8(L_71, L_72, L_73, L_74, (&V_1), L_75, (&V_2), L_76, L_77, L_78, (&V_0), NULL);
  3643. V_5 = L_79;
  3644. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_80 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs;
  3645. if (!L_80)
  3646. {
  3647. goto IL_019f;
  3648. }
  3649. }
  3650. {
  3651. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3652. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_81 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs;
  3653. NullCheck(L_81);
  3654. int32_t L_82 = V_0;
  3655. G_B29_0 = ((((int32_t)((((int32_t)((int32_t)(((RuntimeArray*)L_81)->max_length))) > ((int32_t)L_82))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3656. goto IL_01a0;
  3657. }
  3658. IL_019f:
  3659. {
  3660. G_B29_0 = 1;
  3661. }
  3662. IL_01a0:
  3663. {
  3664. V_18 = (bool)G_B29_0;
  3665. bool L_83 = V_18;
  3666. if (!L_83)
  3667. {
  3668. goto IL_01b8;
  3669. }
  3670. }
  3671. {
  3672. int32_t L_84 = V_0;
  3673. int32_t L_85;
  3674. L_85 = Mathf_NextPowerOfTwo_mA1CE7F3EEF9B0B07AB2D586C030ED236D578F485(((int32_t)il2cpp_codegen_add(L_84, 1)), NULL);
  3675. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_86 = (GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5*)(GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5*)SZArrayNew(GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5_il2cpp_TypeInfo_var, (uint32_t)L_85);
  3676. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3677. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs = L_86;
  3678. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs), (void*)L_86);
  3679. }
  3680. IL_01b8:
  3681. {
  3682. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3683. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_87 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs;
  3684. int32_t L_88 = V_0;
  3685. NullCheck(L_87);
  3686. ArrayElementTypeCheck (L_87, NULL);
  3687. (L_87)->SetAt(static_cast<il2cpp_array_size_t>(L_88), (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F*)NULL);
  3688. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_89 = ___3_freeGlyphRects;
  3689. NullCheck(L_89);
  3690. List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_inline(L_89, List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var);
  3691. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_90 = ___4_usedGlyphRects;
  3692. NullCheck(L_90);
  3693. List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_inline(L_90, List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_RuntimeMethod_var);
  3694. int32_t L_91 = V_1;
  3695. int32_t L_92 = V_2;
  3696. int32_t L_93 = V_0;
  3697. int32_t L_94;
  3698. L_94 = FontEngineUtilities_MaxValue_m7E0FBF90FE07F65C9895ACD56FD032A53E417F83(L_91, L_92, L_93, NULL);
  3699. V_4 = L_94;
  3700. V_19 = 0;
  3701. goto IL_0247;
  3702. }
  3703. IL_01de:
  3704. {
  3705. int32_t L_95 = V_19;
  3706. int32_t L_96 = V_0;
  3707. V_20 = (bool)((((int32_t)L_95) < ((int32_t)L_96))? 1 : 0);
  3708. bool L_97 = V_20;
  3709. if (!L_97)
  3710. {
  3711. goto IL_0203;
  3712. }
  3713. }
  3714. {
  3715. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3716. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_98 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs;
  3717. int32_t L_99 = V_19;
  3718. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* L_100 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT;
  3719. int32_t L_101 = V_19;
  3720. NullCheck(L_100);
  3721. int32_t L_102 = L_101;
  3722. GlyphMarshallingStruct_tB45F92185E1A4A7880004B36591D7C73E4A2B87C L_103 = (L_100)->GetAt(static_cast<il2cpp_array_size_t>(L_102));
  3723. Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F* L_104 = (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F*)il2cpp_codegen_object_new(Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F_il2cpp_TypeInfo_var);
  3724. Glyph__ctor_m2E3C296A46BE48B869634BBE3F97B30F3442CC94(L_104, L_103, NULL);
  3725. NullCheck(L_98);
  3726. ArrayElementTypeCheck (L_98, L_104);
  3727. (L_98)->SetAt(static_cast<il2cpp_array_size_t>(L_99), (Glyph_t700CF8EBE04ED4AEAB520885AAA1B309E02A103F*)L_104);
  3728. }
  3729. IL_0203:
  3730. {
  3731. int32_t L_105 = V_19;
  3732. int32_t L_106 = V_1;
  3733. V_21 = (bool)((((int32_t)L_105) < ((int32_t)L_106))? 1 : 0);
  3734. bool L_107 = V_21;
  3735. if (!L_107)
  3736. {
  3737. goto IL_0221;
  3738. }
  3739. }
  3740. {
  3741. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_108 = ___3_freeGlyphRects;
  3742. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3743. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_109 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects;
  3744. int32_t L_110 = V_19;
  3745. NullCheck(L_109);
  3746. int32_t L_111 = L_110;
  3747. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_112 = (L_109)->GetAt(static_cast<il2cpp_array_size_t>(L_111));
  3748. NullCheck(L_108);
  3749. List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_inline(L_108, L_112, List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var);
  3750. }
  3751. IL_0221:
  3752. {
  3753. int32_t L_113 = V_19;
  3754. int32_t L_114 = V_2;
  3755. V_22 = (bool)((((int32_t)L_113) < ((int32_t)L_114))? 1 : 0);
  3756. bool L_115 = V_22;
  3757. if (!L_115)
  3758. {
  3759. goto IL_0240;
  3760. }
  3761. }
  3762. {
  3763. List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* L_116 = ___4_usedGlyphRects;
  3764. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3765. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_117 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects;
  3766. int32_t L_118 = V_19;
  3767. NullCheck(L_117);
  3768. int32_t L_119 = L_118;
  3769. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_120 = (L_117)->GetAt(static_cast<il2cpp_array_size_t>(L_119));
  3770. NullCheck(L_116);
  3771. List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_inline(L_116, L_120, List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_RuntimeMethod_var);
  3772. }
  3773. IL_0240:
  3774. {
  3775. int32_t L_121 = V_19;
  3776. V_19 = ((int32_t)il2cpp_codegen_add(L_121, 1));
  3777. }
  3778. IL_0247:
  3779. {
  3780. int32_t L_122 = V_19;
  3781. int32_t L_123 = V_4;
  3782. V_23 = (bool)((((int32_t)L_122) < ((int32_t)L_123))? 1 : 0);
  3783. bool L_124 = V_23;
  3784. if (L_124)
  3785. {
  3786. goto IL_01de;
  3787. }
  3788. }
  3789. {
  3790. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5** L_125 = ___7_glyphs;
  3791. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3792. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_126 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs;
  3793. *((RuntimeObject**)L_125) = (RuntimeObject*)L_126;
  3794. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_125, (void*)(RuntimeObject*)L_126);
  3795. Profiler_EndSample_m3FCA26738A87C0B8E352533AD48E2A16B047A757(NULL);
  3796. bool L_127 = V_5;
  3797. V_7 = L_127;
  3798. goto IL_0267;
  3799. }
  3800. IL_0267:
  3801. {
  3802. bool L_128 = V_7;
  3803. return L_128;
  3804. }
  3805. }
  3806. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphsToTexture_Internal_m43D4D242873C647DF5A20F7579FD90E373999EA8 (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___0_glyphIndex, int32_t ___1_padding, int32_t ___2_packingMode, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___3_freeGlyphRects, int32_t* ___4_freeGlyphRectCount, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* ___5_usedGlyphRects, int32_t* ___6_usedGlyphRectCount, int32_t ___7_renderMode, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___8_texture, GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* ___9_glyphs, int32_t* ___10_glyphCount, const RuntimeMethod* method)
  3807. {
  3808. typedef bool (*FontEngine_TryAddGlyphsToTexture_Internal_m43D4D242873C647DF5A20F7579FD90E373999EA8_ftn) (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*, int32_t, int32_t, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*, int32_t*, GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*, int32_t*, int32_t, Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4*, GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*, int32_t*);
  3809. static FontEngine_TryAddGlyphsToTexture_Internal_m43D4D242873C647DF5A20F7579FD90E373999EA8_ftn _il2cpp_icall_func;
  3810. if (!_il2cpp_icall_func)
  3811. _il2cpp_icall_func = (FontEngine_TryAddGlyphsToTexture_Internal_m43D4D242873C647DF5A20F7579FD90E373999EA8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphsToTexture_Internal(System.UInt32[],System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[],System.Int32&)");
  3812. bool icallRetVal = _il2cpp_icall_func(___0_glyphIndex, ___1_padding, ___2_packingMode, ___3_freeGlyphRects, ___4_freeGlyphRectCount, ___5_usedGlyphRects, ___6_usedGlyphRectCount, ___7_renderMode, ___8_texture, ___9_glyphs, ___10_glyphCount);
  3813. return icallRetVal;
  3814. }
  3815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* FontEngine_GetGlyphPairAdjustmentTable_m67DAC7C0029384FC814621F85F8B35D0D3327BC5 (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___0_glyphIndexes, const RuntimeMethod* method)
  3816. {
  3817. static bool s_Il2CppMethodInitialized;
  3818. if (!s_Il2CppMethodInitialized)
  3819. {
  3820. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_RuntimeMethod_var);
  3821. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3822. s_Il2CppMethodInitialized = true;
  3823. }
  3824. int32_t V_0 = 0;
  3825. bool V_1 = false;
  3826. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* V_2 = NULL;
  3827. {
  3828. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_0 = ___0_glyphIndexes;
  3829. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3830. int32_t L_1;
  3831. L_1 = FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7(L_0, (&V_0), NULL);
  3832. int32_t L_2 = V_0;
  3833. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  3834. bool L_3 = V_1;
  3835. if (!L_3)
  3836. {
  3837. goto IL_0016;
  3838. }
  3839. }
  3840. {
  3841. V_2 = (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7*)NULL;
  3842. goto IL_0046;
  3843. }
  3844. IL_0016:
  3845. {
  3846. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3847. int32_t L_4 = V_0;
  3848. FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123((&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray), L_4, FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_RuntimeMethod_var);
  3849. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_5 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray;
  3850. int32_t L_6;
  3851. L_6 = FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6(L_5, NULL);
  3852. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_7 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray;
  3853. int32_t L_8 = V_0;
  3854. NullCheck(L_7);
  3855. il2cpp_codegen_initobj(((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), sizeof(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E));
  3856. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_9 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray;
  3857. V_2 = L_9;
  3858. goto IL_0046;
  3859. }
  3860. IL_0046:
  3861. {
  3862. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_10 = V_2;
  3863. return L_10;
  3864. }
  3865. }
  3866. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* FontEngine_GetGlyphPairAdjustmentRecords_m23D346BEC5BA63185A01DF33576E98650947ABA8 (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___0_glyphIndexes, int32_t* ___1_recordCount, const RuntimeMethod* method)
  3867. {
  3868. static bool s_Il2CppMethodInitialized;
  3869. if (!s_Il2CppMethodInitialized)
  3870. {
  3871. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3_RuntimeMethod_var);
  3872. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_RuntimeMethod_var);
  3873. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3874. s_Il2CppMethodInitialized = true;
  3875. }
  3876. bool V_0 = false;
  3877. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* V_1 = NULL;
  3878. {
  3879. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3880. FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3((&___0_glyphIndexes), (&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A), FontEngine_GenericListToMarshallingArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m9D73A631FE45ED043F5F452D50CE5C38802434D3_RuntimeMethod_var);
  3881. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_0 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphIndexes_MarshallingArray_A;
  3882. int32_t* L_1 = ___1_recordCount;
  3883. int32_t L_2;
  3884. L_2 = FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7(L_0, L_1, NULL);
  3885. int32_t* L_3 = ___1_recordCount;
  3886. int32_t L_4 = *((int32_t*)L_3);
  3887. V_0 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  3888. bool L_5 = V_0;
  3889. if (!L_5)
  3890. {
  3891. goto IL_0027;
  3892. }
  3893. }
  3894. {
  3895. V_1 = (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7*)NULL;
  3896. goto IL_0059;
  3897. }
  3898. IL_0027:
  3899. {
  3900. il2cpp_codegen_runtime_class_init_inline(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3901. int32_t* L_6 = ___1_recordCount;
  3902. int32_t L_7 = *((int32_t*)L_6);
  3903. FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123((&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray), L_7, FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_m4F12F106E68B6115D47C936ADDBB1A843B670123_RuntimeMethod_var);
  3904. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_8 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray;
  3905. int32_t L_9;
  3906. L_9 = FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6(L_8, NULL);
  3907. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_10 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray;
  3908. int32_t* L_11 = ___1_recordCount;
  3909. int32_t L_12 = *((int32_t*)L_11);
  3910. NullCheck(L_10);
  3911. il2cpp_codegen_initobj(((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))), sizeof(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E));
  3912. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_13 = ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_PairAdjustmentRecords_MarshallingArray;
  3913. V_1 = L_13;
  3914. goto IL_0059;
  3915. }
  3916. IL_0059:
  3917. {
  3918. GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* L_14 = V_1;
  3919. return L_14;
  3920. }
  3921. }
  3922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7 (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___0_glyphIndexes, int32_t* ___1_recordCount, const RuntimeMethod* method)
  3923. {
  3924. typedef int32_t (*FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7_ftn) (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*, int32_t*);
  3925. static FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7_ftn _il2cpp_icall_func;
  3926. if (!_il2cpp_icall_func)
  3927. _il2cpp_icall_func = (FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable_mE3B5D21C5D72CEADB2BEA5AA8022E466356386E7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::PopulatePairAdjustmentRecordMarshallingArray_from_KernTable(System.UInt32[],System.Int32&)");
  3928. int32_t icallRetVal = _il2cpp_icall_func(___0_glyphIndexes, ___1_recordCount);
  3929. return icallRetVal;
  3930. }
  3931. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6 (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* ___0_glyphPairAdjustmentRecords, const RuntimeMethod* method)
  3932. {
  3933. typedef int32_t (*FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6_ftn) (GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7*);
  3934. static FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6_ftn _il2cpp_icall_func;
  3935. if (!_il2cpp_icall_func)
  3936. _il2cpp_icall_func = (FontEngine_GetPairAdjustmentRecordsFromMarshallingArray_m81121A95D2196747D3597C8BEFF53842577599F6_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::GetPairAdjustmentRecordsFromMarshallingArray(UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[])");
  3937. int32_t icallRetVal = _il2cpp_icall_func(___0_glyphPairAdjustmentRecords);
  3938. return icallRetVal;
  3939. }
  3940. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine_ResetAtlasTexture_m15BBE67DFDD8A1E740BC0C4B29612A8C866860DC (Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___0_texture, const RuntimeMethod* method)
  3941. {
  3942. typedef void (*FontEngine_ResetAtlasTexture_m15BBE67DFDD8A1E740BC0C4B29612A8C866860DC_ftn) (Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4*);
  3943. static FontEngine_ResetAtlasTexture_m15BBE67DFDD8A1E740BC0C4B29612A8C866860DC_ftn _il2cpp_icall_func;
  3944. if (!_il2cpp_icall_func)
  3945. _il2cpp_icall_func = (FontEngine_ResetAtlasTexture_m15BBE67DFDD8A1E740BC0C4B29612A8C866860DC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::ResetAtlasTexture(UnityEngine.Texture2D)");
  3946. _il2cpp_icall_func(___0_texture);
  3947. }
  3948. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine__cctor_mD8EC115E258FD225726CBC71B249C1F411447D79 (const RuntimeMethod* method)
  3949. {
  3950. static bool s_Il2CppMethodInitialized;
  3951. if (!s_Il2CppMethodInitialized)
  3952. {
  3953. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m30C3F5890A20AF5FA64A272E19CFC8750E0F9D16_RuntimeMethod_var);
  3954. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7_il2cpp_TypeInfo_var);
  3955. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var);
  3956. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E_il2cpp_TypeInfo_var);
  3957. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var);
  3958. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5_il2cpp_TypeInfo_var);
  3959. s_Il2CppMethodInitialized = true;
  3960. }
  3961. {
  3962. GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5* L_0 = (GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5*)(GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5*)SZArrayNew(GlyphU5BU5D_t345CEC8703A6C650639C40DB7D35269A2D467FC5_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
  3963. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs = L_0;
  3964. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_Glyphs), (void*)L_0);
  3965. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* L_1 = (GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*)(GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*)SZArrayNew(GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
  3966. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_IN = L_1;
  3967. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_IN), (void*)L_1);
  3968. GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E* L_2 = (GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*)(GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E*)SZArrayNew(GlyphMarshallingStructU5BU5D_t9424A4B1FAAD615472A9346208026B1B9E22069E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
  3969. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT = L_2;
  3970. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphMarshallingStruct_OUT), (void*)L_2);
  3971. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_3 = (GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)SZArrayNew(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
  3972. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects = L_3;
  3973. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_FreeGlyphRects), (void*)L_3);
  3974. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_4 = (GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70*)SZArrayNew(GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
  3975. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects = L_4;
  3976. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_UsedGlyphRects), (void*)L_4);
  3977. Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7* L_5 = (Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7*)il2cpp_codegen_object_new(Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7_il2cpp_TypeInfo_var);
  3978. Dictionary_2__ctor_m30C3F5890A20AF5FA64A272E19CFC8750E0F9D16(L_5, Dictionary_2__ctor_m30C3F5890A20AF5FA64A272E19CFC8750E0F9D16_RuntimeMethod_var);
  3979. ((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphLookupDictionary = L_5;
  3980. Il2CppCodeGenWriteBarrier((void**)(&((FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_t4B8F87CAA77860B55B0C7FDF85FBBE178E2D5B7A_il2cpp_TypeInfo_var))->___s_GlyphLookupDictionary), (void*)L_5);
  3981. return;
  3982. }
  3983. }
  3984. #ifdef __clang__
  3985. #pragma clang diagnostic pop
  3986. #endif
  3987. #ifdef __clang__
  3988. #pragma clang diagnostic push
  3989. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3990. #pragma clang diagnostic ignored "-Wunused-variable"
  3991. #endif
  3992. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngineUtilities_MaxValue_m7E0FBF90FE07F65C9895ACD56FD032A53E417F83 (int32_t ___0_a, int32_t ___1_b, int32_t ___2_c, const RuntimeMethod* method)
  3993. {
  3994. int32_t V_0 = 0;
  3995. int32_t G_B4_0 = 0;
  3996. int32_t G_B8_0 = 0;
  3997. {
  3998. int32_t L_0 = ___0_a;
  3999. int32_t L_1 = ___1_b;
  4000. if ((((int32_t)L_0) < ((int32_t)L_1)))
  4001. {
  4002. goto IL_000f;
  4003. }
  4004. }
  4005. {
  4006. int32_t L_2 = ___0_a;
  4007. int32_t L_3 = ___2_c;
  4008. if ((((int32_t)L_2) < ((int32_t)L_3)))
  4009. {
  4010. goto IL_000c;
  4011. }
  4012. }
  4013. {
  4014. int32_t L_4 = ___0_a;
  4015. G_B4_0 = L_4;
  4016. goto IL_000d;
  4017. }
  4018. IL_000c:
  4019. {
  4020. int32_t L_5 = ___2_c;
  4021. G_B4_0 = L_5;
  4022. }
  4023. IL_000d:
  4024. {
  4025. G_B8_0 = G_B4_0;
  4026. goto IL_0017;
  4027. }
  4028. IL_000f:
  4029. {
  4030. int32_t L_6 = ___1_b;
  4031. int32_t L_7 = ___2_c;
  4032. if ((((int32_t)L_6) < ((int32_t)L_7)))
  4033. {
  4034. goto IL_0016;
  4035. }
  4036. }
  4037. {
  4038. int32_t L_8 = ___1_b;
  4039. G_B8_0 = L_8;
  4040. goto IL_0017;
  4041. }
  4042. IL_0016:
  4043. {
  4044. int32_t L_9 = ___2_c;
  4045. G_B8_0 = L_9;
  4046. }
  4047. IL_0017:
  4048. {
  4049. V_0 = G_B8_0;
  4050. goto IL_001a;
  4051. }
  4052. IL_001a:
  4053. {
  4054. int32_t L_10 = V_0;
  4055. return L_10;
  4056. }
  4057. }
  4058. #ifdef __clang__
  4059. #pragma clang diagnostic pop
  4060. #endif
  4061. #ifdef __clang__
  4062. #pragma clang diagnostic push
  4063. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4064. #pragma clang diagnostic ignored "-Wunused-variable"
  4065. #endif
  4066. #ifdef __clang__
  4067. #pragma clang diagnostic pop
  4068. #endif
  4069. #ifdef __clang__
  4070. #pragma clang diagnostic push
  4071. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4072. #pragma clang diagnostic ignored "-Wunused-variable"
  4073. #endif
  4074. #ifdef __clang__
  4075. #pragma clang diagnostic pop
  4076. #endif
  4077. #ifdef __clang__
  4078. #pragma clang diagnostic push
  4079. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4080. #pragma clang diagnostic ignored "-Wunused-variable"
  4081. #endif
  4082. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xPlacement_m5E2B8B05A5DF57B2DC4B3795E71330CDDE1761C8 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method)
  4083. {
  4084. float V_0 = 0.0f;
  4085. {
  4086. float L_0 = __this->___m_XPlacement;
  4087. V_0 = L_0;
  4088. goto IL_000a;
  4089. }
  4090. IL_000a:
  4091. {
  4092. float L_1 = V_0;
  4093. return L_1;
  4094. }
  4095. }
  4096. IL2CPP_EXTERN_C float GlyphValueRecord_get_xPlacement_m5E2B8B05A5DF57B2DC4B3795E71330CDDE1761C8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4097. {
  4098. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4099. int32_t _offset = 1;
  4100. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4101. float _returnValue;
  4102. _returnValue = GlyphValueRecord_get_xPlacement_m5E2B8B05A5DF57B2DC4B3795E71330CDDE1761C8(_thisAdjusted, method);
  4103. return _returnValue;
  4104. }
  4105. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphValueRecord_set_xPlacement_m79F92029922BDE50ED63A6A03EBE478869F1CCFC (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, float ___0_value, const RuntimeMethod* method)
  4106. {
  4107. {
  4108. float L_0 = ___0_value;
  4109. __this->___m_XPlacement = L_0;
  4110. return;
  4111. }
  4112. }
  4113. IL2CPP_EXTERN_C void GlyphValueRecord_set_xPlacement_m79F92029922BDE50ED63A6A03EBE478869F1CCFC_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  4114. {
  4115. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4116. int32_t _offset = 1;
  4117. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4118. GlyphValueRecord_set_xPlacement_m79F92029922BDE50ED63A6A03EBE478869F1CCFC(_thisAdjusted, ___0_value, method);
  4119. }
  4120. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yPlacement_mB6303F8800305F6F96ECCD0CD9AA70A1A30A15DA (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method)
  4121. {
  4122. float V_0 = 0.0f;
  4123. {
  4124. float L_0 = __this->___m_YPlacement;
  4125. V_0 = L_0;
  4126. goto IL_000a;
  4127. }
  4128. IL_000a:
  4129. {
  4130. float L_1 = V_0;
  4131. return L_1;
  4132. }
  4133. }
  4134. IL2CPP_EXTERN_C float GlyphValueRecord_get_yPlacement_mB6303F8800305F6F96ECCD0CD9AA70A1A30A15DA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4135. {
  4136. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4137. int32_t _offset = 1;
  4138. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4139. float _returnValue;
  4140. _returnValue = GlyphValueRecord_get_yPlacement_mB6303F8800305F6F96ECCD0CD9AA70A1A30A15DA(_thisAdjusted, method);
  4141. return _returnValue;
  4142. }
  4143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphValueRecord_set_yPlacement_m04DA300FAB827A708CB291DA3B2EA3128279CA2B (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, float ___0_value, const RuntimeMethod* method)
  4144. {
  4145. {
  4146. float L_0 = ___0_value;
  4147. __this->___m_YPlacement = L_0;
  4148. return;
  4149. }
  4150. }
  4151. IL2CPP_EXTERN_C void GlyphValueRecord_set_yPlacement_m04DA300FAB827A708CB291DA3B2EA3128279CA2B_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
  4152. {
  4153. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4154. int32_t _offset = 1;
  4155. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4156. GlyphValueRecord_set_yPlacement_m04DA300FAB827A708CB291DA3B2EA3128279CA2B(_thisAdjusted, ___0_value, method);
  4157. }
  4158. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xAdvance_m6C392027FA91E0705C1585C5EF40D984AAA0013E (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method)
  4159. {
  4160. float V_0 = 0.0f;
  4161. {
  4162. float L_0 = __this->___m_XAdvance;
  4163. V_0 = L_0;
  4164. goto IL_000a;
  4165. }
  4166. IL_000a:
  4167. {
  4168. float L_1 = V_0;
  4169. return L_1;
  4170. }
  4171. }
  4172. IL2CPP_EXTERN_C float GlyphValueRecord_get_xAdvance_m6C392027FA91E0705C1585C5EF40D984AAA0013E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4173. {
  4174. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4175. int32_t _offset = 1;
  4176. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4177. float _returnValue;
  4178. _returnValue = GlyphValueRecord_get_xAdvance_m6C392027FA91E0705C1585C5EF40D984AAA0013E(_thisAdjusted, method);
  4179. return _returnValue;
  4180. }
  4181. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yAdvance_m1379AA10FCCFFABEAF43E767F8BFBF32CA76B5B6 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method)
  4182. {
  4183. float V_0 = 0.0f;
  4184. {
  4185. float L_0 = __this->___m_YAdvance;
  4186. V_0 = L_0;
  4187. goto IL_000a;
  4188. }
  4189. IL_000a:
  4190. {
  4191. float L_1 = V_0;
  4192. return L_1;
  4193. }
  4194. }
  4195. IL2CPP_EXTERN_C float GlyphValueRecord_get_yAdvance_m1379AA10FCCFFABEAF43E767F8BFBF32CA76B5B6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4196. {
  4197. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4198. int32_t _offset = 1;
  4199. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4200. float _returnValue;
  4201. _returnValue = GlyphValueRecord_get_yAdvance_m1379AA10FCCFFABEAF43E767F8BFBF32CA76B5B6(_thisAdjusted, method);
  4202. return _returnValue;
  4203. }
  4204. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E GlyphValueRecord_op_Addition_mF26165B4CE61A5409AEFF24B0D1727804E13602B (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___0_a, GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___1_b, const RuntimeMethod* method)
  4205. {
  4206. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E V_0;
  4207. memset((&V_0), 0, sizeof(V_0));
  4208. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E V_1;
  4209. memset((&V_1), 0, sizeof(V_1));
  4210. {
  4211. float L_0;
  4212. L_0 = GlyphValueRecord_get_xPlacement_m5E2B8B05A5DF57B2DC4B3795E71330CDDE1761C8((&___0_a), NULL);
  4213. float L_1;
  4214. L_1 = GlyphValueRecord_get_xPlacement_m5E2B8B05A5DF57B2DC4B3795E71330CDDE1761C8((&___1_b), NULL);
  4215. (&V_0)->___m_XPlacement = ((float)il2cpp_codegen_add(L_0, L_1));
  4216. float L_2;
  4217. L_2 = GlyphValueRecord_get_yPlacement_mB6303F8800305F6F96ECCD0CD9AA70A1A30A15DA((&___0_a), NULL);
  4218. float L_3;
  4219. L_3 = GlyphValueRecord_get_yPlacement_mB6303F8800305F6F96ECCD0CD9AA70A1A30A15DA((&___1_b), NULL);
  4220. (&V_0)->___m_YPlacement = ((float)il2cpp_codegen_add(L_2, L_3));
  4221. float L_4;
  4222. L_4 = GlyphValueRecord_get_xAdvance_m6C392027FA91E0705C1585C5EF40D984AAA0013E((&___0_a), NULL);
  4223. float L_5;
  4224. L_5 = GlyphValueRecord_get_xAdvance_m6C392027FA91E0705C1585C5EF40D984AAA0013E((&___1_b), NULL);
  4225. (&V_0)->___m_XAdvance = ((float)il2cpp_codegen_add(L_4, L_5));
  4226. float L_6;
  4227. L_6 = GlyphValueRecord_get_yAdvance_m1379AA10FCCFFABEAF43E767F8BFBF32CA76B5B6((&___0_a), NULL);
  4228. float L_7;
  4229. L_7 = GlyphValueRecord_get_yAdvance_m1379AA10FCCFFABEAF43E767F8BFBF32CA76B5B6((&___1_b), NULL);
  4230. (&V_0)->___m_YAdvance = ((float)il2cpp_codegen_add(L_6, L_7));
  4231. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_8 = V_0;
  4232. V_1 = L_8;
  4233. goto IL_005d;
  4234. }
  4235. IL_005d:
  4236. {
  4237. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_9 = V_1;
  4238. return L_9;
  4239. }
  4240. }
  4241. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphValueRecord_GetHashCode_m9A2BFC7780FBD61A4B7E0091F8FE87DA15081B60 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, const RuntimeMethod* method)
  4242. {
  4243. static bool s_Il2CppMethodInitialized;
  4244. if (!s_Il2CppMethodInitialized)
  4245. {
  4246. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var);
  4247. s_Il2CppMethodInitialized = true;
  4248. }
  4249. int32_t V_0 = 0;
  4250. {
  4251. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_0 = (*(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*)__this);
  4252. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_1 = L_0;
  4253. RuntimeObject* L_2 = Box(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var, &L_1);
  4254. int32_t L_3;
  4255. L_3 = ValueType_GetHashCode_m3B47C72EA1FA846D9B0DFF3C444AB2BFA22CF3CE((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, NULL);
  4256. V_0 = L_3;
  4257. goto IL_0014;
  4258. }
  4259. IL_0014:
  4260. {
  4261. int32_t L_4 = V_0;
  4262. return L_4;
  4263. }
  4264. }
  4265. IL2CPP_EXTERN_C int32_t GlyphValueRecord_GetHashCode_m9A2BFC7780FBD61A4B7E0091F8FE87DA15081B60_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4266. {
  4267. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4268. int32_t _offset = 1;
  4269. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4270. int32_t _returnValue;
  4271. _returnValue = GlyphValueRecord_GetHashCode_m9A2BFC7780FBD61A4B7E0091F8FE87DA15081B60(_thisAdjusted, method);
  4272. return _returnValue;
  4273. }
  4274. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_m5DC74E9C597D8F27754444C057F819ECB24CB8B6 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4275. {
  4276. static bool s_Il2CppMethodInitialized;
  4277. if (!s_Il2CppMethodInitialized)
  4278. {
  4279. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var);
  4280. s_Il2CppMethodInitialized = true;
  4281. }
  4282. bool V_0 = false;
  4283. {
  4284. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_0 = (*(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*)__this);
  4285. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_1 = L_0;
  4286. RuntimeObject* L_2 = Box(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var, &L_1);
  4287. RuntimeObject* L_3 = ___0_obj;
  4288. bool L_4;
  4289. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_3, NULL);
  4290. V_0 = L_4;
  4291. goto IL_0015;
  4292. }
  4293. IL_0015:
  4294. {
  4295. bool L_5 = V_0;
  4296. return L_5;
  4297. }
  4298. }
  4299. IL2CPP_EXTERN_C bool GlyphValueRecord_Equals_m5DC74E9C597D8F27754444C057F819ECB24CB8B6_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4300. {
  4301. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4302. int32_t _offset = 1;
  4303. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4304. bool _returnValue;
  4305. _returnValue = GlyphValueRecord_Equals_m5DC74E9C597D8F27754444C057F819ECB24CB8B6(_thisAdjusted, ___0_obj, method);
  4306. return _returnValue;
  4307. }
  4308. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_mB5F45CBE745D1C5BAF7944989DF4239FDC78D972 (GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* __this, GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___0_other, const RuntimeMethod* method)
  4309. {
  4310. static bool s_Il2CppMethodInitialized;
  4311. if (!s_Il2CppMethodInitialized)
  4312. {
  4313. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var);
  4314. s_Il2CppMethodInitialized = true;
  4315. }
  4316. bool V_0 = false;
  4317. {
  4318. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_0 = (*(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*)__this);
  4319. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_1 = L_0;
  4320. RuntimeObject* L_2 = Box(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var, &L_1);
  4321. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_3 = ___0_other;
  4322. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_4 = L_3;
  4323. RuntimeObject* L_5 = Box(GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E_il2cpp_TypeInfo_var, &L_4);
  4324. bool L_6;
  4325. L_6 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_5, NULL);
  4326. V_0 = L_6;
  4327. goto IL_001a;
  4328. }
  4329. IL_001a:
  4330. {
  4331. bool L_7 = V_0;
  4332. return L_7;
  4333. }
  4334. }
  4335. IL2CPP_EXTERN_C bool GlyphValueRecord_Equals_mB5F45CBE745D1C5BAF7944989DF4239FDC78D972_AdjustorThunk (RuntimeObject* __this, GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E ___0_other, const RuntimeMethod* method)
  4336. {
  4337. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E* _thisAdjusted;
  4338. int32_t _offset = 1;
  4339. _thisAdjusted = reinterpret_cast<GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E*>(__this + _offset);
  4340. bool _returnValue;
  4341. _returnValue = GlyphValueRecord_Equals_mB5F45CBE745D1C5BAF7944989DF4239FDC78D972(_thisAdjusted, ___0_other, method);
  4342. return _returnValue;
  4343. }
  4344. #ifdef __clang__
  4345. #pragma clang diagnostic pop
  4346. #endif
  4347. #ifdef __clang__
  4348. #pragma clang diagnostic push
  4349. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4350. #pragma clang diagnostic ignored "-Wunused-variable"
  4351. #endif
  4352. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlyphAdjustmentRecord_get_glyphIndex_mB1C51945CA4FF019A74BC98C01C8883A396CBFA9 (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, const RuntimeMethod* method)
  4353. {
  4354. uint32_t V_0 = 0;
  4355. {
  4356. uint32_t L_0 = __this->___m_GlyphIndex;
  4357. V_0 = L_0;
  4358. goto IL_000a;
  4359. }
  4360. IL_000a:
  4361. {
  4362. uint32_t L_1 = V_0;
  4363. return L_1;
  4364. }
  4365. }
  4366. IL2CPP_EXTERN_C uint32_t GlyphAdjustmentRecord_get_glyphIndex_mB1C51945CA4FF019A74BC98C01C8883A396CBFA9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4367. {
  4368. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* _thisAdjusted;
  4369. int32_t _offset = 1;
  4370. _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*>(__this + _offset);
  4371. uint32_t _returnValue;
  4372. _returnValue = GlyphAdjustmentRecord_get_glyphIndex_mB1C51945CA4FF019A74BC98C01C8883A396CBFA9(_thisAdjusted, method);
  4373. return _returnValue;
  4374. }
  4375. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E GlyphAdjustmentRecord_get_glyphValueRecord_m83866DCE07A22F903D4BA417476E64114625BDD7 (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, const RuntimeMethod* method)
  4376. {
  4377. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E V_0;
  4378. memset((&V_0), 0, sizeof(V_0));
  4379. {
  4380. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_0 = __this->___m_GlyphValueRecord;
  4381. V_0 = L_0;
  4382. goto IL_000a;
  4383. }
  4384. IL_000a:
  4385. {
  4386. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E L_1 = V_0;
  4387. return L_1;
  4388. }
  4389. }
  4390. IL2CPP_EXTERN_C GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E GlyphAdjustmentRecord_get_glyphValueRecord_m83866DCE07A22F903D4BA417476E64114625BDD7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4391. {
  4392. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* _thisAdjusted;
  4393. int32_t _offset = 1;
  4394. _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*>(__this + _offset);
  4395. GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E _returnValue;
  4396. _returnValue = GlyphAdjustmentRecord_get_glyphValueRecord_m83866DCE07A22F903D4BA417476E64114625BDD7(_thisAdjusted, method);
  4397. return _returnValue;
  4398. }
  4399. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphAdjustmentRecord_GetHashCode_m8E0D84D4458A732085FCCA04AAE0A0B16CB3226C (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, const RuntimeMethod* method)
  4400. {
  4401. static bool s_Il2CppMethodInitialized;
  4402. if (!s_Il2CppMethodInitialized)
  4403. {
  4404. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var);
  4405. s_Il2CppMethodInitialized = true;
  4406. }
  4407. int32_t V_0 = 0;
  4408. {
  4409. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_0 = (*(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*)__this);
  4410. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_1 = L_0;
  4411. RuntimeObject* L_2 = Box(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var, &L_1);
  4412. int32_t L_3;
  4413. L_3 = ValueType_GetHashCode_m3B47C72EA1FA846D9B0DFF3C444AB2BFA22CF3CE((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, NULL);
  4414. V_0 = L_3;
  4415. goto IL_0014;
  4416. }
  4417. IL_0014:
  4418. {
  4419. int32_t L_4 = V_0;
  4420. return L_4;
  4421. }
  4422. }
  4423. IL2CPP_EXTERN_C int32_t GlyphAdjustmentRecord_GetHashCode_m8E0D84D4458A732085FCCA04AAE0A0B16CB3226C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4424. {
  4425. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* _thisAdjusted;
  4426. int32_t _offset = 1;
  4427. _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*>(__this + _offset);
  4428. int32_t _returnValue;
  4429. _returnValue = GlyphAdjustmentRecord_GetHashCode_m8E0D84D4458A732085FCCA04AAE0A0B16CB3226C(_thisAdjusted, method);
  4430. return _returnValue;
  4431. }
  4432. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphAdjustmentRecord_Equals_mEF9EBAA5A7ED2B136EA25A2AD26353406884F47D (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4433. {
  4434. static bool s_Il2CppMethodInitialized;
  4435. if (!s_Il2CppMethodInitialized)
  4436. {
  4437. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var);
  4438. s_Il2CppMethodInitialized = true;
  4439. }
  4440. bool V_0 = false;
  4441. {
  4442. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_0 = (*(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*)__this);
  4443. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_1 = L_0;
  4444. RuntimeObject* L_2 = Box(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var, &L_1);
  4445. RuntimeObject* L_3 = ___0_obj;
  4446. bool L_4;
  4447. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_3, NULL);
  4448. V_0 = L_4;
  4449. goto IL_0015;
  4450. }
  4451. IL_0015:
  4452. {
  4453. bool L_5 = V_0;
  4454. return L_5;
  4455. }
  4456. }
  4457. IL2CPP_EXTERN_C bool GlyphAdjustmentRecord_Equals_mEF9EBAA5A7ED2B136EA25A2AD26353406884F47D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4458. {
  4459. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* _thisAdjusted;
  4460. int32_t _offset = 1;
  4461. _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*>(__this + _offset);
  4462. bool _returnValue;
  4463. _returnValue = GlyphAdjustmentRecord_Equals_mEF9EBAA5A7ED2B136EA25A2AD26353406884F47D(_thisAdjusted, ___0_obj, method);
  4464. return _returnValue;
  4465. }
  4466. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphAdjustmentRecord_Equals_m2F5908F3B2BB2F6596E40E6A74E5F2120BCDA535 (GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* __this, GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___0_other, const RuntimeMethod* method)
  4467. {
  4468. static bool s_Il2CppMethodInitialized;
  4469. if (!s_Il2CppMethodInitialized)
  4470. {
  4471. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var);
  4472. s_Il2CppMethodInitialized = true;
  4473. }
  4474. bool V_0 = false;
  4475. {
  4476. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_0 = (*(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*)__this);
  4477. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_1 = L_0;
  4478. RuntimeObject* L_2 = Box(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var, &L_1);
  4479. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_3 = ___0_other;
  4480. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_4 = L_3;
  4481. RuntimeObject* L_5 = Box(GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7_il2cpp_TypeInfo_var, &L_4);
  4482. bool L_6;
  4483. L_6 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_5, NULL);
  4484. V_0 = L_6;
  4485. goto IL_001a;
  4486. }
  4487. IL_001a:
  4488. {
  4489. bool L_7 = V_0;
  4490. return L_7;
  4491. }
  4492. }
  4493. IL2CPP_EXTERN_C bool GlyphAdjustmentRecord_Equals_m2F5908F3B2BB2F6596E40E6A74E5F2120BCDA535_AdjustorThunk (RuntimeObject* __this, GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 ___0_other, const RuntimeMethod* method)
  4494. {
  4495. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7* _thisAdjusted;
  4496. int32_t _offset = 1;
  4497. _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7*>(__this + _offset);
  4498. bool _returnValue;
  4499. _returnValue = GlyphAdjustmentRecord_Equals_m2F5908F3B2BB2F6596E40E6A74E5F2120BCDA535(_thisAdjusted, ___0_other, method);
  4500. return _returnValue;
  4501. }
  4502. #ifdef __clang__
  4503. #pragma clang diagnostic pop
  4504. #endif
  4505. #ifdef __clang__
  4506. #pragma clang diagnostic push
  4507. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4508. #pragma clang diagnostic ignored "-Wunused-variable"
  4509. #endif
  4510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m867469548F17B298F893B78EE2F93D34E4A6C39C (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method)
  4511. {
  4512. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 V_0;
  4513. memset((&V_0), 0, sizeof(V_0));
  4514. {
  4515. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_0 = __this->___m_FirstAdjustmentRecord;
  4516. V_0 = L_0;
  4517. goto IL_000a;
  4518. }
  4519. IL_000a:
  4520. {
  4521. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_1 = V_0;
  4522. return L_1;
  4523. }
  4524. }
  4525. IL2CPP_EXTERN_C GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m867469548F17B298F893B78EE2F93D34E4A6C39C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4526. {
  4527. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* _thisAdjusted;
  4528. int32_t _offset = 1;
  4529. _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*>(__this + _offset);
  4530. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 _returnValue;
  4531. _returnValue = GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m867469548F17B298F893B78EE2F93D34E4A6C39C(_thisAdjusted, method);
  4532. return _returnValue;
  4533. }
  4534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_mFDFECB1F7A38E22BD2388FFE9C71E732F6B44D91 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method)
  4535. {
  4536. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 V_0;
  4537. memset((&V_0), 0, sizeof(V_0));
  4538. {
  4539. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_0 = __this->___m_SecondAdjustmentRecord;
  4540. V_0 = L_0;
  4541. goto IL_000a;
  4542. }
  4543. IL_000a:
  4544. {
  4545. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 L_1 = V_0;
  4546. return L_1;
  4547. }
  4548. }
  4549. IL2CPP_EXTERN_C GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_mFDFECB1F7A38E22BD2388FFE9C71E732F6B44D91_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4550. {
  4551. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* _thisAdjusted;
  4552. int32_t _offset = 1;
  4553. _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*>(__this + _offset);
  4554. GlyphAdjustmentRecord_tC7A1B2E0AC7C4ED9CDB8E95E48790A46B6F315F7 _returnValue;
  4555. _returnValue = GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_mFDFECB1F7A38E22BD2388FFE9C71E732F6B44D91(_thisAdjusted, method);
  4556. return _returnValue;
  4557. }
  4558. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphPairAdjustmentRecord_get_featureLookupFlags_m08DA76766FDE949068B881DBEA29955C9C43E8A9 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method)
  4559. {
  4560. int32_t V_0 = 0;
  4561. {
  4562. int32_t L_0 = __this->___m_FeatureLookupFlags;
  4563. V_0 = L_0;
  4564. goto IL_000a;
  4565. }
  4566. IL_000a:
  4567. {
  4568. int32_t L_1 = V_0;
  4569. return L_1;
  4570. }
  4571. }
  4572. IL2CPP_EXTERN_C int32_t GlyphPairAdjustmentRecord_get_featureLookupFlags_m08DA76766FDE949068B881DBEA29955C9C43E8A9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4573. {
  4574. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* _thisAdjusted;
  4575. int32_t _offset = 1;
  4576. _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*>(__this + _offset);
  4577. int32_t _returnValue;
  4578. _returnValue = GlyphPairAdjustmentRecord_get_featureLookupFlags_m08DA76766FDE949068B881DBEA29955C9C43E8A9(_thisAdjusted, method);
  4579. return _returnValue;
  4580. }
  4581. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphPairAdjustmentRecord_GetHashCode_mC253F24FFD3BCE5EEB44CA6CDE1BE19336E0A5F5 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, const RuntimeMethod* method)
  4582. {
  4583. static bool s_Il2CppMethodInitialized;
  4584. if (!s_Il2CppMethodInitialized)
  4585. {
  4586. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var);
  4587. s_Il2CppMethodInitialized = true;
  4588. }
  4589. int32_t V_0 = 0;
  4590. {
  4591. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_0 = (*(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*)__this);
  4592. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_1 = L_0;
  4593. RuntimeObject* L_2 = Box(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var, &L_1);
  4594. int32_t L_3;
  4595. L_3 = ValueType_GetHashCode_m3B47C72EA1FA846D9B0DFF3C444AB2BFA22CF3CE((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, NULL);
  4596. V_0 = L_3;
  4597. goto IL_0014;
  4598. }
  4599. IL_0014:
  4600. {
  4601. int32_t L_4 = V_0;
  4602. return L_4;
  4603. }
  4604. }
  4605. IL2CPP_EXTERN_C int32_t GlyphPairAdjustmentRecord_GetHashCode_mC253F24FFD3BCE5EEB44CA6CDE1BE19336E0A5F5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4606. {
  4607. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* _thisAdjusted;
  4608. int32_t _offset = 1;
  4609. _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*>(__this + _offset);
  4610. int32_t _returnValue;
  4611. _returnValue = GlyphPairAdjustmentRecord_GetHashCode_mC253F24FFD3BCE5EEB44CA6CDE1BE19336E0A5F5(_thisAdjusted, method);
  4612. return _returnValue;
  4613. }
  4614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphPairAdjustmentRecord_Equals_m0F49F5D76C114BB660B7619A93247591AE323CFD (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4615. {
  4616. static bool s_Il2CppMethodInitialized;
  4617. if (!s_Il2CppMethodInitialized)
  4618. {
  4619. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var);
  4620. s_Il2CppMethodInitialized = true;
  4621. }
  4622. bool V_0 = false;
  4623. {
  4624. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_0 = (*(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*)__this);
  4625. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_1 = L_0;
  4626. RuntimeObject* L_2 = Box(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var, &L_1);
  4627. RuntimeObject* L_3 = ___0_obj;
  4628. bool L_4;
  4629. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_3, NULL);
  4630. V_0 = L_4;
  4631. goto IL_0015;
  4632. }
  4633. IL_0015:
  4634. {
  4635. bool L_5 = V_0;
  4636. return L_5;
  4637. }
  4638. }
  4639. IL2CPP_EXTERN_C bool GlyphPairAdjustmentRecord_Equals_m0F49F5D76C114BB660B7619A93247591AE323CFD_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  4640. {
  4641. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* _thisAdjusted;
  4642. int32_t _offset = 1;
  4643. _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*>(__this + _offset);
  4644. bool _returnValue;
  4645. _returnValue = GlyphPairAdjustmentRecord_Equals_m0F49F5D76C114BB660B7619A93247591AE323CFD(_thisAdjusted, ___0_obj, method);
  4646. return _returnValue;
  4647. }
  4648. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphPairAdjustmentRecord_Equals_m2DADFD15A4DFF37570EA51D9EAEBA30DF0007689 (GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* __this, GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E ___0_other, const RuntimeMethod* method)
  4649. {
  4650. static bool s_Il2CppMethodInitialized;
  4651. if (!s_Il2CppMethodInitialized)
  4652. {
  4653. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var);
  4654. s_Il2CppMethodInitialized = true;
  4655. }
  4656. bool V_0 = false;
  4657. {
  4658. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_0 = (*(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*)__this);
  4659. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_1 = L_0;
  4660. RuntimeObject* L_2 = Box(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var, &L_1);
  4661. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_3 = ___0_other;
  4662. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E L_4 = L_3;
  4663. RuntimeObject* L_5 = Box(GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E_il2cpp_TypeInfo_var, &L_4);
  4664. bool L_6;
  4665. L_6 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)L_2, L_5, NULL);
  4666. V_0 = L_6;
  4667. goto IL_001a;
  4668. }
  4669. IL_001a:
  4670. {
  4671. bool L_7 = V_0;
  4672. return L_7;
  4673. }
  4674. }
  4675. IL2CPP_EXTERN_C bool GlyphPairAdjustmentRecord_Equals_m2DADFD15A4DFF37570EA51D9EAEBA30DF0007689_AdjustorThunk (RuntimeObject* __this, GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E ___0_other, const RuntimeMethod* method)
  4676. {
  4677. GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E* _thisAdjusted;
  4678. int32_t _offset = 1;
  4679. _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_t6E4295094D349DBF22BC59116FBC8F22EA55420E*>(__this + _offset);
  4680. bool _returnValue;
  4681. _returnValue = GlyphPairAdjustmentRecord_Equals_m2DADFD15A4DFF37570EA51D9EAEBA30DF0007689(_thisAdjusted, ___0_other, method);
  4682. return _returnValue;
  4683. }
  4684. #ifdef __clang__
  4685. #pragma clang diagnostic pop
  4686. #endif
  4687. #ifdef __clang__
  4688. #pragma clang diagnostic push
  4689. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4690. #pragma clang diagnostic ignored "-Wunused-variable"
  4691. #endif
  4692. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphAnchorPoint_get_xCoordinate_mCD33464763911ECB78DEB1965970A916FA27DD1C (GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08* __this, const RuntimeMethod* method)
  4693. {
  4694. float V_0 = 0.0f;
  4695. {
  4696. float L_0 = __this->___m_XCoordinate;
  4697. V_0 = L_0;
  4698. goto IL_000a;
  4699. }
  4700. IL_000a:
  4701. {
  4702. float L_1 = V_0;
  4703. return L_1;
  4704. }
  4705. }
  4706. IL2CPP_EXTERN_C float GlyphAnchorPoint_get_xCoordinate_mCD33464763911ECB78DEB1965970A916FA27DD1C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4707. {
  4708. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08* _thisAdjusted;
  4709. int32_t _offset = 1;
  4710. _thisAdjusted = reinterpret_cast<GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08*>(__this + _offset);
  4711. float _returnValue;
  4712. _returnValue = GlyphAnchorPoint_get_xCoordinate_mCD33464763911ECB78DEB1965970A916FA27DD1C(_thisAdjusted, method);
  4713. return _returnValue;
  4714. }
  4715. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphAnchorPoint_get_yCoordinate_m2683C19C6A3D750E4D6C536307313E55589909D6 (GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08* __this, const RuntimeMethod* method)
  4716. {
  4717. float V_0 = 0.0f;
  4718. {
  4719. float L_0 = __this->___m_YCoordinate;
  4720. V_0 = L_0;
  4721. goto IL_000a;
  4722. }
  4723. IL_000a:
  4724. {
  4725. float L_1 = V_0;
  4726. return L_1;
  4727. }
  4728. }
  4729. IL2CPP_EXTERN_C float GlyphAnchorPoint_get_yCoordinate_m2683C19C6A3D750E4D6C536307313E55589909D6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4730. {
  4731. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08* _thisAdjusted;
  4732. int32_t _offset = 1;
  4733. _thisAdjusted = reinterpret_cast<GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08*>(__this + _offset);
  4734. float _returnValue;
  4735. _returnValue = GlyphAnchorPoint_get_yCoordinate_m2683C19C6A3D750E4D6C536307313E55589909D6(_thisAdjusted, method);
  4736. return _returnValue;
  4737. }
  4738. #ifdef __clang__
  4739. #pragma clang diagnostic pop
  4740. #endif
  4741. #ifdef __clang__
  4742. #pragma clang diagnostic push
  4743. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4744. #pragma clang diagnostic ignored "-Wunused-variable"
  4745. #endif
  4746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float MarkPositionAdjustment_get_xPositionAdjustment_m5ACBB4C515357320C12597CAE5E4D409BA298765 (MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436* __this, const RuntimeMethod* method)
  4747. {
  4748. float V_0 = 0.0f;
  4749. {
  4750. float L_0 = __this->___m_XPositionAdjustment;
  4751. V_0 = L_0;
  4752. goto IL_000a;
  4753. }
  4754. IL_000a:
  4755. {
  4756. float L_1 = V_0;
  4757. return L_1;
  4758. }
  4759. }
  4760. IL2CPP_EXTERN_C float MarkPositionAdjustment_get_xPositionAdjustment_m5ACBB4C515357320C12597CAE5E4D409BA298765_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4761. {
  4762. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436* _thisAdjusted;
  4763. int32_t _offset = 1;
  4764. _thisAdjusted = reinterpret_cast<MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436*>(__this + _offset);
  4765. float _returnValue;
  4766. _returnValue = MarkPositionAdjustment_get_xPositionAdjustment_m5ACBB4C515357320C12597CAE5E4D409BA298765(_thisAdjusted, method);
  4767. return _returnValue;
  4768. }
  4769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float MarkPositionAdjustment_get_yPositionAdjustment_m1F5F7DBBFEB0B52CCC772F68664D06B11D6A9F2C (MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436* __this, const RuntimeMethod* method)
  4770. {
  4771. float V_0 = 0.0f;
  4772. {
  4773. float L_0 = __this->___m_YPositionAdjustment;
  4774. V_0 = L_0;
  4775. goto IL_000a;
  4776. }
  4777. IL_000a:
  4778. {
  4779. float L_1 = V_0;
  4780. return L_1;
  4781. }
  4782. }
  4783. IL2CPP_EXTERN_C float MarkPositionAdjustment_get_yPositionAdjustment_m1F5F7DBBFEB0B52CCC772F68664D06B11D6A9F2C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4784. {
  4785. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436* _thisAdjusted;
  4786. int32_t _offset = 1;
  4787. _thisAdjusted = reinterpret_cast<MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436*>(__this + _offset);
  4788. float _returnValue;
  4789. _returnValue = MarkPositionAdjustment_get_yPositionAdjustment_m1F5F7DBBFEB0B52CCC772F68664D06B11D6A9F2C(_thisAdjusted, method);
  4790. return _returnValue;
  4791. }
  4792. #ifdef __clang__
  4793. #pragma clang diagnostic pop
  4794. #endif
  4795. #ifdef __clang__
  4796. #pragma clang diagnostic push
  4797. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4798. #pragma clang diagnostic ignored "-Wunused-variable"
  4799. #endif
  4800. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToBaseAdjustmentRecord_get_baseGlyphID_mD6A0DD18DBE69E0E68ACA6AABF47B1EA61B633A5 (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method)
  4801. {
  4802. uint32_t V_0 = 0;
  4803. {
  4804. uint32_t L_0 = __this->___m_BaseGlyphID;
  4805. V_0 = L_0;
  4806. goto IL_000a;
  4807. }
  4808. IL_000a:
  4809. {
  4810. uint32_t L_1 = V_0;
  4811. return L_1;
  4812. }
  4813. }
  4814. IL2CPP_EXTERN_C uint32_t MarkToBaseAdjustmentRecord_get_baseGlyphID_mD6A0DD18DBE69E0E68ACA6AABF47B1EA61B633A5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4815. {
  4816. MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* _thisAdjusted;
  4817. int32_t _offset = 1;
  4818. _thisAdjusted = reinterpret_cast<MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607*>(__this + _offset);
  4819. uint32_t _returnValue;
  4820. _returnValue = MarkToBaseAdjustmentRecord_get_baseGlyphID_mD6A0DD18DBE69E0E68ACA6AABF47B1EA61B633A5(_thisAdjusted, method);
  4821. return _returnValue;
  4822. }
  4823. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 MarkToBaseAdjustmentRecord_get_baseGlyphAnchorPoint_mCBF57932B7A89C532B0EF750DFD81F8FE389EE08 (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method)
  4824. {
  4825. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 V_0;
  4826. memset((&V_0), 0, sizeof(V_0));
  4827. {
  4828. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 L_0 = __this->___m_BaseGlyphAnchorPoint;
  4829. V_0 = L_0;
  4830. goto IL_000a;
  4831. }
  4832. IL_000a:
  4833. {
  4834. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 L_1 = V_0;
  4835. return L_1;
  4836. }
  4837. }
  4838. IL2CPP_EXTERN_C GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 MarkToBaseAdjustmentRecord_get_baseGlyphAnchorPoint_mCBF57932B7A89C532B0EF750DFD81F8FE389EE08_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4839. {
  4840. MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* _thisAdjusted;
  4841. int32_t _offset = 1;
  4842. _thisAdjusted = reinterpret_cast<MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607*>(__this + _offset);
  4843. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 _returnValue;
  4844. _returnValue = MarkToBaseAdjustmentRecord_get_baseGlyphAnchorPoint_mCBF57932B7A89C532B0EF750DFD81F8FE389EE08(_thisAdjusted, method);
  4845. return _returnValue;
  4846. }
  4847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToBaseAdjustmentRecord_get_markGlyphID_mB4BB0291733ECFC2433F5C2837F0B28EB05CAF5C (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method)
  4848. {
  4849. uint32_t V_0 = 0;
  4850. {
  4851. uint32_t L_0 = __this->___m_MarkGlyphID;
  4852. V_0 = L_0;
  4853. goto IL_000a;
  4854. }
  4855. IL_000a:
  4856. {
  4857. uint32_t L_1 = V_0;
  4858. return L_1;
  4859. }
  4860. }
  4861. IL2CPP_EXTERN_C uint32_t MarkToBaseAdjustmentRecord_get_markGlyphID_mB4BB0291733ECFC2433F5C2837F0B28EB05CAF5C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4862. {
  4863. MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* _thisAdjusted;
  4864. int32_t _offset = 1;
  4865. _thisAdjusted = reinterpret_cast<MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607*>(__this + _offset);
  4866. uint32_t _returnValue;
  4867. _returnValue = MarkToBaseAdjustmentRecord_get_markGlyphID_mB4BB0291733ECFC2433F5C2837F0B28EB05CAF5C(_thisAdjusted, method);
  4868. return _returnValue;
  4869. }
  4870. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 MarkToBaseAdjustmentRecord_get_markPositionAdjustment_m570715D1D0F84361A90564D4A958394453E1F9AB (MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* __this, const RuntimeMethod* method)
  4871. {
  4872. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 V_0;
  4873. memset((&V_0), 0, sizeof(V_0));
  4874. {
  4875. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 L_0 = __this->___m_MarkPositionAdjustment;
  4876. V_0 = L_0;
  4877. goto IL_000a;
  4878. }
  4879. IL_000a:
  4880. {
  4881. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 L_1 = V_0;
  4882. return L_1;
  4883. }
  4884. }
  4885. IL2CPP_EXTERN_C MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 MarkToBaseAdjustmentRecord_get_markPositionAdjustment_m570715D1D0F84361A90564D4A958394453E1F9AB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4886. {
  4887. MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607* _thisAdjusted;
  4888. int32_t _offset = 1;
  4889. _thisAdjusted = reinterpret_cast<MarkToBaseAdjustmentRecord_t4BE0F5A88932146F70A2B521176BDA91A20D8607*>(__this + _offset);
  4890. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 _returnValue;
  4891. _returnValue = MarkToBaseAdjustmentRecord_get_markPositionAdjustment_m570715D1D0F84361A90564D4A958394453E1F9AB(_thisAdjusted, method);
  4892. return _returnValue;
  4893. }
  4894. #ifdef __clang__
  4895. #pragma clang diagnostic pop
  4896. #endif
  4897. #ifdef __clang__
  4898. #pragma clang diagnostic push
  4899. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4900. #pragma clang diagnostic ignored "-Wunused-variable"
  4901. #endif
  4902. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToMarkAdjustmentRecord_get_baseMarkGlyphID_mA0EAEA751467A8841F9D20D122C4998905A508CC (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method)
  4903. {
  4904. uint32_t V_0 = 0;
  4905. {
  4906. uint32_t L_0 = __this->___m_BaseMarkGlyphID;
  4907. V_0 = L_0;
  4908. goto IL_000a;
  4909. }
  4910. IL_000a:
  4911. {
  4912. uint32_t L_1 = V_0;
  4913. return L_1;
  4914. }
  4915. }
  4916. IL2CPP_EXTERN_C uint32_t MarkToMarkAdjustmentRecord_get_baseMarkGlyphID_mA0EAEA751467A8841F9D20D122C4998905A508CC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4917. {
  4918. MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* _thisAdjusted;
  4919. int32_t _offset = 1;
  4920. _thisAdjusted = reinterpret_cast<MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C*>(__this + _offset);
  4921. uint32_t _returnValue;
  4922. _returnValue = MarkToMarkAdjustmentRecord_get_baseMarkGlyphID_mA0EAEA751467A8841F9D20D122C4998905A508CC(_thisAdjusted, method);
  4923. return _returnValue;
  4924. }
  4925. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 MarkToMarkAdjustmentRecord_get_baseMarkGlyphAnchorPoint_mB87ADA10491B42650BAD4DB7330771061827ACAB (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method)
  4926. {
  4927. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 V_0;
  4928. memset((&V_0), 0, sizeof(V_0));
  4929. {
  4930. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 L_0 = __this->___m_BaseMarkGlyphAnchorPoint;
  4931. V_0 = L_0;
  4932. goto IL_000a;
  4933. }
  4934. IL_000a:
  4935. {
  4936. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 L_1 = V_0;
  4937. return L_1;
  4938. }
  4939. }
  4940. IL2CPP_EXTERN_C GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 MarkToMarkAdjustmentRecord_get_baseMarkGlyphAnchorPoint_mB87ADA10491B42650BAD4DB7330771061827ACAB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4941. {
  4942. MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* _thisAdjusted;
  4943. int32_t _offset = 1;
  4944. _thisAdjusted = reinterpret_cast<MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C*>(__this + _offset);
  4945. GlyphAnchorPoint_t581FDCAD5A1D0F3B129968FAEF20C113AAB0BC08 _returnValue;
  4946. _returnValue = MarkToMarkAdjustmentRecord_get_baseMarkGlyphAnchorPoint_mB87ADA10491B42650BAD4DB7330771061827ACAB(_thisAdjusted, method);
  4947. return _returnValue;
  4948. }
  4949. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MarkToMarkAdjustmentRecord_get_combiningMarkGlyphID_m84613A2A27F87AA21CAEDD08759031302C9A8FBF (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method)
  4950. {
  4951. uint32_t V_0 = 0;
  4952. {
  4953. uint32_t L_0 = __this->___m_CombiningMarkGlyphID;
  4954. V_0 = L_0;
  4955. goto IL_000a;
  4956. }
  4957. IL_000a:
  4958. {
  4959. uint32_t L_1 = V_0;
  4960. return L_1;
  4961. }
  4962. }
  4963. IL2CPP_EXTERN_C uint32_t MarkToMarkAdjustmentRecord_get_combiningMarkGlyphID_m84613A2A27F87AA21CAEDD08759031302C9A8FBF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4964. {
  4965. MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* _thisAdjusted;
  4966. int32_t _offset = 1;
  4967. _thisAdjusted = reinterpret_cast<MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C*>(__this + _offset);
  4968. uint32_t _returnValue;
  4969. _returnValue = MarkToMarkAdjustmentRecord_get_combiningMarkGlyphID_m84613A2A27F87AA21CAEDD08759031302C9A8FBF(_thisAdjusted, method);
  4970. return _returnValue;
  4971. }
  4972. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 MarkToMarkAdjustmentRecord_get_combiningMarkPositionAdjustment_mC109ECEDB4AD314A25C0EB1F6F6151AE611DE15C (MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* __this, const RuntimeMethod* method)
  4973. {
  4974. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 V_0;
  4975. memset((&V_0), 0, sizeof(V_0));
  4976. {
  4977. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 L_0 = __this->___m_CombiningMarkPositionAdjustment;
  4978. V_0 = L_0;
  4979. goto IL_000a;
  4980. }
  4981. IL_000a:
  4982. {
  4983. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 L_1 = V_0;
  4984. return L_1;
  4985. }
  4986. }
  4987. IL2CPP_EXTERN_C MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 MarkToMarkAdjustmentRecord_get_combiningMarkPositionAdjustment_mC109ECEDB4AD314A25C0EB1F6F6151AE611DE15C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  4988. {
  4989. MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C* _thisAdjusted;
  4990. int32_t _offset = 1;
  4991. _thisAdjusted = reinterpret_cast<MarkToMarkAdjustmentRecord_tD53618A3728435D5C904857DAC644EE27640807C*>(__this + _offset);
  4992. MarkPositionAdjustment_t2523798D56F14A93A080D9D1298498325A51F436 _returnValue;
  4993. _returnValue = MarkToMarkAdjustmentRecord_get_combiningMarkPositionAdjustment_mC109ECEDB4AD314A25C0EB1F6F6151AE611DE15C(_thisAdjusted, method);
  4994. return _returnValue;
  4995. }
  4996. #ifdef __clang__
  4997. #pragma clang diagnostic pop
  4998. #endif
  4999. #ifdef __clang__
  5000. #pragma clang diagnostic push
  5001. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5002. #pragma clang diagnostic ignored "-Wunused-variable"
  5003. #endif
  5004. IL2CPP_EXTERN_C void MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshal_pinvoke(const MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B& unmarshaled, MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_pinvoke& marshaled)
  5005. {
  5006. marshaled.___m_TargetGlyphID = unmarshaled.___m_TargetGlyphID;
  5007. marshaled.___m_SubstituteGlyphIDs = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.___m_SubstituteGlyphIDs);
  5008. }
  5009. IL2CPP_EXTERN_C void MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshal_pinvoke_back(const MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_pinvoke& marshaled, MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B& unmarshaled)
  5010. {
  5011. static bool s_Il2CppMethodInitialized;
  5012. if (!s_Il2CppMethodInitialized)
  5013. {
  5014. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
  5015. s_Il2CppMethodInitialized = true;
  5016. }
  5017. uint32_t unmarshaledm_TargetGlyphID_temp_0 = 0;
  5018. unmarshaledm_TargetGlyphID_temp_0 = marshaled.___m_TargetGlyphID;
  5019. unmarshaled.___m_TargetGlyphID = unmarshaledm_TargetGlyphID_temp_0;
  5020. unmarshaled.___m_SubstituteGlyphIDs = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_SubstituteGlyphIDs);
  5021. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_SubstituteGlyphIDs), (void*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_SubstituteGlyphIDs));
  5022. }
  5023. IL2CPP_EXTERN_C void MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshal_pinvoke_cleanup(MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_pinvoke& marshaled)
  5024. {
  5025. il2cpp_codegen_com_destroy_safe_array(marshaled.___m_SubstituteGlyphIDs);
  5026. marshaled.___m_SubstituteGlyphIDs = NULL;
  5027. }
  5028. IL2CPP_EXTERN_C void MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshal_com(const MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B& unmarshaled, MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_com& marshaled)
  5029. {
  5030. marshaled.___m_TargetGlyphID = unmarshaled.___m_TargetGlyphID;
  5031. marshaled.___m_SubstituteGlyphIDs = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.___m_SubstituteGlyphIDs);
  5032. }
  5033. IL2CPP_EXTERN_C void MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshal_com_back(const MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_com& marshaled, MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B& unmarshaled)
  5034. {
  5035. static bool s_Il2CppMethodInitialized;
  5036. if (!s_Il2CppMethodInitialized)
  5037. {
  5038. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
  5039. s_Il2CppMethodInitialized = true;
  5040. }
  5041. uint32_t unmarshaledm_TargetGlyphID_temp_0 = 0;
  5042. unmarshaledm_TargetGlyphID_temp_0 = marshaled.___m_TargetGlyphID;
  5043. unmarshaled.___m_TargetGlyphID = unmarshaledm_TargetGlyphID_temp_0;
  5044. unmarshaled.___m_SubstituteGlyphIDs = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_SubstituteGlyphIDs);
  5045. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_SubstituteGlyphIDs), (void*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_SubstituteGlyphIDs));
  5046. }
  5047. IL2CPP_EXTERN_C void MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshal_com_cleanup(MultipleSubstitutionRecord_t668A640AFADBD46E3D4EC3A8417D0A02764DF87B_marshaled_com& marshaled)
  5048. {
  5049. il2cpp_codegen_com_destroy_safe_array(marshaled.___m_SubstituteGlyphIDs);
  5050. marshaled.___m_SubstituteGlyphIDs = NULL;
  5051. }
  5052. #ifdef __clang__
  5053. #pragma clang diagnostic pop
  5054. #endif
  5055. #ifdef __clang__
  5056. #pragma clang diagnostic push
  5057. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5058. #pragma clang diagnostic ignored "-Wunused-variable"
  5059. #endif
  5060. IL2CPP_EXTERN_C void LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshal_pinvoke(const LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94& unmarshaled, LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_pinvoke& marshaled)
  5061. {
  5062. marshaled.___m_ComponentGlyphIDs = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.___m_ComponentGlyphIDs);
  5063. marshaled.___m_LigatureGlyphID = unmarshaled.___m_LigatureGlyphID;
  5064. }
  5065. IL2CPP_EXTERN_C void LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshal_pinvoke_back(const LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_pinvoke& marshaled, LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94& unmarshaled)
  5066. {
  5067. static bool s_Il2CppMethodInitialized;
  5068. if (!s_Il2CppMethodInitialized)
  5069. {
  5070. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
  5071. s_Il2CppMethodInitialized = true;
  5072. }
  5073. unmarshaled.___m_ComponentGlyphIDs = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_ComponentGlyphIDs);
  5074. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_ComponentGlyphIDs), (void*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_ComponentGlyphIDs));
  5075. uint32_t unmarshaledm_LigatureGlyphID_temp_1 = 0;
  5076. unmarshaledm_LigatureGlyphID_temp_1 = marshaled.___m_LigatureGlyphID;
  5077. unmarshaled.___m_LigatureGlyphID = unmarshaledm_LigatureGlyphID_temp_1;
  5078. }
  5079. IL2CPP_EXTERN_C void LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshal_pinvoke_cleanup(LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_pinvoke& marshaled)
  5080. {
  5081. il2cpp_codegen_com_destroy_safe_array(marshaled.___m_ComponentGlyphIDs);
  5082. marshaled.___m_ComponentGlyphIDs = NULL;
  5083. }
  5084. IL2CPP_EXTERN_C void LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshal_com(const LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94& unmarshaled, LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_com& marshaled)
  5085. {
  5086. marshaled.___m_ComponentGlyphIDs = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.___m_ComponentGlyphIDs);
  5087. marshaled.___m_LigatureGlyphID = unmarshaled.___m_LigatureGlyphID;
  5088. }
  5089. IL2CPP_EXTERN_C void LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshal_com_back(const LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_com& marshaled, LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94& unmarshaled)
  5090. {
  5091. static bool s_Il2CppMethodInitialized;
  5092. if (!s_Il2CppMethodInitialized)
  5093. {
  5094. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
  5095. s_Il2CppMethodInitialized = true;
  5096. }
  5097. unmarshaled.___m_ComponentGlyphIDs = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_ComponentGlyphIDs);
  5098. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_ComponentGlyphIDs), (void*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, marshaled.___m_ComponentGlyphIDs));
  5099. uint32_t unmarshaledm_LigatureGlyphID_temp_1 = 0;
  5100. unmarshaledm_LigatureGlyphID_temp_1 = marshaled.___m_LigatureGlyphID;
  5101. unmarshaled.___m_LigatureGlyphID = unmarshaledm_LigatureGlyphID_temp_1;
  5102. }
  5103. IL2CPP_EXTERN_C void LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshal_com_cleanup(LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94_marshaled_com& marshaled)
  5104. {
  5105. il2cpp_codegen_com_destroy_safe_array(marshaled.___m_ComponentGlyphIDs);
  5106. marshaled.___m_ComponentGlyphIDs = NULL;
  5107. }
  5108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* LigatureSubstitutionRecord_get_componentGlyphIDs_m3BBDC9421E3A7369B198379F5433FBB13ADCE628 (LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94* __this, const RuntimeMethod* method)
  5109. {
  5110. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* V_0 = NULL;
  5111. {
  5112. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_0 = __this->___m_ComponentGlyphIDs;
  5113. V_0 = L_0;
  5114. goto IL_000a;
  5115. }
  5116. IL_000a:
  5117. {
  5118. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_1 = V_0;
  5119. return L_1;
  5120. }
  5121. }
  5122. IL2CPP_EXTERN_C UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* LigatureSubstitutionRecord_get_componentGlyphIDs_m3BBDC9421E3A7369B198379F5433FBB13ADCE628_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5123. {
  5124. LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94* _thisAdjusted;
  5125. int32_t _offset = 1;
  5126. _thisAdjusted = reinterpret_cast<LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94*>(__this + _offset);
  5127. UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* _returnValue;
  5128. _returnValue = LigatureSubstitutionRecord_get_componentGlyphIDs_m3BBDC9421E3A7369B198379F5433FBB13ADCE628(_thisAdjusted, method);
  5129. return _returnValue;
  5130. }
  5131. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t LigatureSubstitutionRecord_get_ligatureGlyphID_m5FD629E204026FB8B6279498CDE5CAB1D23827EC (LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94* __this, const RuntimeMethod* method)
  5132. {
  5133. uint32_t V_0 = 0;
  5134. {
  5135. uint32_t L_0 = __this->___m_LigatureGlyphID;
  5136. V_0 = L_0;
  5137. goto IL_000a;
  5138. }
  5139. IL_000a:
  5140. {
  5141. uint32_t L_1 = V_0;
  5142. return L_1;
  5143. }
  5144. }
  5145. IL2CPP_EXTERN_C uint32_t LigatureSubstitutionRecord_get_ligatureGlyphID_m5FD629E204026FB8B6279498CDE5CAB1D23827EC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  5146. {
  5147. LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94* _thisAdjusted;
  5148. int32_t _offset = 1;
  5149. _thisAdjusted = reinterpret_cast<LigatureSubstitutionRecord_t8660DC6B1D65C655D698216F72BFB3C85DDCAB94*>(__this + _offset);
  5150. uint32_t _returnValue;
  5151. _returnValue = LigatureSubstitutionRecord_get_ligatureGlyphID_m5FD629E204026FB8B6279498CDE5CAB1D23827EC(_thisAdjusted, method);
  5152. return _returnValue;
  5153. }
  5154. #ifdef __clang__
  5155. #pragma clang diagnostic pop
  5156. #endif
  5157. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
  5158. {
  5159. int32_t V_0 = 0;
  5160. int32_t G_B3_0 = 0;
  5161. {
  5162. int32_t L_0 = ___0_a;
  5163. int32_t L_1 = ___1_b;
  5164. if ((((int32_t)L_0) > ((int32_t)L_1)))
  5165. {
  5166. goto IL_0008;
  5167. }
  5168. }
  5169. {
  5170. int32_t L_2 = ___1_b;
  5171. G_B3_0 = L_2;
  5172. goto IL_0009;
  5173. }
  5174. IL_0008:
  5175. {
  5176. int32_t L_3 = ___0_a;
  5177. G_B3_0 = L_3;
  5178. }
  5179. IL_0009:
  5180. {
  5181. V_0 = G_B3_0;
  5182. goto IL_000c;
  5183. }
  5184. IL_000c:
  5185. {
  5186. int32_t L_4 = V_0;
  5187. return L_4;
  5188. }
  5189. }
  5190. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_BeginSample_m640E26B682D803CC5DB4EDFDF2F6E83771BF0BE4_inline (String_t* ___0_name, const RuntimeMethod* method)
  5191. {
  5192. {
  5193. String_t* L_0 = ___0_name;
  5194. Profiler_ValidateArguments_m631DF788CA8A7DF599A5871AF4D7FA8B9C3B52CC_inline(L_0, NULL);
  5195. String_t* L_1 = ___0_name;
  5196. Profiler_BeginSampleImpl_m7CA0C092A61229CA7BF617E521F2DE0E2B155CEA(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
  5197. return;
  5198. }
  5199. }
  5200. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mCED84CDDB1FA053F00F335965060C2D9A7BF2164_gshared_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, const RuntimeMethod* method)
  5201. {
  5202. {
  5203. int32_t L_0 = __this->____size;
  5204. return L_0;
  5205. }
  5206. }
  5207. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m2ADF12F1CF73175B87ACAB2DA7EB056BDEE4DABB_gshared_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, const RuntimeMethod* method)
  5208. {
  5209. int32_t V_0 = 0;
  5210. {
  5211. int32_t L_0 = __this->____version;
  5212. __this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
  5213. goto IL_0035;
  5214. }
  5215. IL_0035:
  5216. {
  5217. __this->____size = 0;
  5218. }
  5219. IL_003c:
  5220. {
  5221. return;
  5222. }
  5223. }
  5224. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mE5DEA053A93785502893EB2CD4357AB70E2B1A77_gshared_inline (List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* __this, GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D ___0_item, const RuntimeMethod* method)
  5225. {
  5226. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* V_0 = NULL;
  5227. int32_t V_1 = 0;
  5228. {
  5229. int32_t L_0 = __this->____version;
  5230. __this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
  5231. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_1 = __this->____items;
  5232. V_0 = L_1;
  5233. int32_t L_2 = __this->____size;
  5234. V_1 = L_2;
  5235. int32_t L_3 = V_1;
  5236. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_4 = V_0;
  5237. NullCheck(L_4);
  5238. if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
  5239. {
  5240. goto IL_0034;
  5241. }
  5242. }
  5243. {
  5244. int32_t L_5 = V_1;
  5245. __this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
  5246. GlyphRectU5BU5D_t494B690215E3F3F42B6F216930A461256CE2CC70* L_6 = V_0;
  5247. int32_t L_7 = V_1;
  5248. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_8 = ___0_item;
  5249. NullCheck(L_6);
  5250. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D)L_8);
  5251. return;
  5252. }
  5253. IL_0034:
  5254. {
  5255. GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D L_9 = ___0_item;
  5256. List_1_AddWithResize_m9FD3C28AEFDC7247A9E6CE3E84E5489C5B13C1DA(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
  5257. return;
  5258. }
  5259. }
  5260. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mA30526AC2097A68939350DBA860B7D2B0EEE1585_gshared_inline (List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* __this, const RuntimeMethod* method)
  5261. {
  5262. {
  5263. int32_t L_0 = __this->____size;
  5264. return L_0;
  5265. }
  5266. }
  5267. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_ValidateArguments_m631DF788CA8A7DF599A5871AF4D7FA8B9C3B52CC_inline (String_t* ___0_name, const RuntimeMethod* method)
  5268. {
  5269. bool V_0 = false;
  5270. {
  5271. String_t* L_0 = ___0_name;
  5272. bool L_1;
  5273. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  5274. V_0 = L_1;
  5275. bool L_2 = V_0;
  5276. if (!L_2)
  5277. {
  5278. goto IL_001c;
  5279. }
  5280. }
  5281. {
  5282. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5283. ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral31D159E683556C06B3B3963D92483B6867EB3233)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
  5284. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Profiler_ValidateArguments_m631DF788CA8A7DF599A5871AF4D7FA8B9C3B52CC_RuntimeMethod_var)));
  5285. }
  5286. IL_001c:
  5287. {
  5288. return;
  5289. }
  5290. }