go1.13.txt 453 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032
  1. pkg bytes, func ToValidUTF8([]uint8, []uint8) []uint8
  2. pkg crypto/ed25519, const PrivateKeySize = 64
  3. pkg crypto/ed25519, const PrivateKeySize ideal-int
  4. pkg crypto/ed25519, const PublicKeySize = 32
  5. pkg crypto/ed25519, const PublicKeySize ideal-int
  6. pkg crypto/ed25519, const SeedSize = 32
  7. pkg crypto/ed25519, const SeedSize ideal-int
  8. pkg crypto/ed25519, const SignatureSize = 64
  9. pkg crypto/ed25519, const SignatureSize ideal-int
  10. pkg crypto/ed25519, func GenerateKey(io.Reader) (PublicKey, PrivateKey, error)
  11. pkg crypto/ed25519, func NewKeyFromSeed([]uint8) PrivateKey
  12. pkg crypto/ed25519, func Sign(PrivateKey, []uint8) []uint8
  13. pkg crypto/ed25519, func Verify(PublicKey, []uint8, []uint8) bool
  14. pkg crypto/ed25519, method (PrivateKey) Public() crypto.PublicKey
  15. pkg crypto/ed25519, method (PrivateKey) Seed() []uint8
  16. pkg crypto/ed25519, method (PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)
  17. pkg crypto/ed25519, type PrivateKey []uint8
  18. pkg crypto/ed25519, type PublicKey []uint8
  19. pkg crypto/tls, const Ed25519 = 2055
  20. pkg crypto/tls, const Ed25519 SignatureScheme
  21. pkg crypto/x509, const Ed25519 = 4
  22. pkg crypto/x509, const Ed25519 PublicKeyAlgorithm
  23. pkg crypto/x509, const PureEd25519 = 16
  24. pkg crypto/x509, const PureEd25519 SignatureAlgorithm
  25. pkg database/sql, method (*Conn) Raw(func(interface{}) error) error
  26. pkg database/sql, method (*NullInt32) Scan(interface{}) error
  27. pkg database/sql, method (NullInt32) Value() (driver.Value, error)
  28. pkg database/sql, method (*NullTime) Scan(interface{}) error
  29. pkg database/sql, method (NullTime) Value() (driver.Value, error)
  30. pkg database/sql, type NullInt32 struct
  31. pkg database/sql, type NullInt32 struct, Int32 int32
  32. pkg database/sql, type NullInt32 struct, Valid bool
  33. pkg database/sql, type NullTime struct
  34. pkg database/sql, type NullTime struct, Time time.Time
  35. pkg database/sql, type NullTime struct, Valid bool
  36. pkg debug/dwarf, method (*UnsupportedType) Common() *CommonType
  37. pkg debug/dwarf, method (*UnsupportedType) Size() int64
  38. pkg debug/dwarf, method (*UnsupportedType) String() string
  39. pkg debug/dwarf, type UnsupportedType struct
  40. pkg debug/dwarf, type UnsupportedType struct, embedded CommonType
  41. pkg debug/dwarf, type UnsupportedType struct, Tag Tag
  42. pkg debug/elf, type Symbol struct, Library string
  43. pkg debug/elf, type Symbol struct, Version string
  44. pkg encoding/csv, method (*ParseError) Unwrap() error
  45. pkg encoding/json, method (*MarshalerError) Unwrap() error
  46. pkg errors, func As(error, interface{}) bool
  47. pkg errors, func Is(error, error) bool
  48. pkg errors, func Unwrap(error) error
  49. pkg go/constant, func Make(interface{}) Value
  50. pkg go/constant, func Val(Value) interface{}
  51. pkg go/token, func IsExported(string) bool
  52. pkg go/token, func IsIdentifier(string) bool
  53. pkg go/token, func IsKeyword(string) bool
  54. pkg go/types, func CheckExpr(*token.FileSet, *Package, token.Pos, ast.Expr, *Info) error
  55. pkg log, func Writer() io.Writer
  56. pkg log/syslog (netbsd-arm64-cgo), const LOG_ALERT = 1
  57. pkg log/syslog (netbsd-arm64-cgo), const LOG_ALERT Priority
  58. pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTH = 32
  59. pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTH Priority
  60. pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTHPRIV = 80
  61. pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTHPRIV Priority
  62. pkg log/syslog (netbsd-arm64-cgo), const LOG_CRIT = 2
  63. pkg log/syslog (netbsd-arm64-cgo), const LOG_CRIT Priority
  64. pkg log/syslog (netbsd-arm64-cgo), const LOG_CRON = 72
  65. pkg log/syslog (netbsd-arm64-cgo), const LOG_CRON Priority
  66. pkg log/syslog (netbsd-arm64-cgo), const LOG_DAEMON = 24
  67. pkg log/syslog (netbsd-arm64-cgo), const LOG_DAEMON Priority
  68. pkg log/syslog (netbsd-arm64-cgo), const LOG_DEBUG = 7
  69. pkg log/syslog (netbsd-arm64-cgo), const LOG_DEBUG Priority
  70. pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG = 0
  71. pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG Priority
  72. pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR = 3
  73. pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR Priority
  74. pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP = 88
  75. pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP Priority
  76. pkg log/syslog (netbsd-arm64-cgo), const LOG_INFO = 6
  77. pkg log/syslog (netbsd-arm64-cgo), const LOG_INFO Priority
  78. pkg log/syslog (netbsd-arm64-cgo), const LOG_KERN = 0
  79. pkg log/syslog (netbsd-arm64-cgo), const LOG_KERN Priority
  80. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL0 = 128
  81. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL0 Priority
  82. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL1 = 136
  83. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL1 Priority
  84. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL2 = 144
  85. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL2 Priority
  86. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL3 = 152
  87. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL3 Priority
  88. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL4 = 160
  89. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL4 Priority
  90. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL5 = 168
  91. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL5 Priority
  92. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL6 = 176
  93. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL6 Priority
  94. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL7 = 184
  95. pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL7 Priority
  96. pkg log/syslog (netbsd-arm64-cgo), const LOG_LPR = 48
  97. pkg log/syslog (netbsd-arm64-cgo), const LOG_LPR Priority
  98. pkg log/syslog (netbsd-arm64-cgo), const LOG_MAIL = 16
  99. pkg log/syslog (netbsd-arm64-cgo), const LOG_MAIL Priority
  100. pkg log/syslog (netbsd-arm64-cgo), const LOG_NEWS = 56
  101. pkg log/syslog (netbsd-arm64-cgo), const LOG_NEWS Priority
  102. pkg log/syslog (netbsd-arm64-cgo), const LOG_NOTICE = 5
  103. pkg log/syslog (netbsd-arm64-cgo), const LOG_NOTICE Priority
  104. pkg log/syslog (netbsd-arm64-cgo), const LOG_SYSLOG = 40
  105. pkg log/syslog (netbsd-arm64-cgo), const LOG_SYSLOG Priority
  106. pkg log/syslog (netbsd-arm64-cgo), const LOG_USER = 8
  107. pkg log/syslog (netbsd-arm64-cgo), const LOG_USER Priority
  108. pkg log/syslog (netbsd-arm64-cgo), const LOG_UUCP = 64
  109. pkg log/syslog (netbsd-arm64-cgo), const LOG_UUCP Priority
  110. pkg log/syslog (netbsd-arm64-cgo), const LOG_WARNING = 4
  111. pkg log/syslog (netbsd-arm64-cgo), const LOG_WARNING Priority
  112. pkg log/syslog (netbsd-arm64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
  113. pkg log/syslog (netbsd-arm64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
  114. pkg log/syslog (netbsd-arm64-cgo), func New(Priority, string) (*Writer, error)
  115. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Alert(string) error
  116. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Close() error
  117. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Crit(string) error
  118. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Debug(string) error
  119. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Emerg(string) error
  120. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Err(string) error
  121. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Info(string) error
  122. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Notice(string) error
  123. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Warning(string) error
  124. pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Write([]uint8) (int, error)
  125. pkg log/syslog (netbsd-arm64-cgo), type Priority int
  126. pkg log/syslog (netbsd-arm64-cgo), type Writer struct
  127. pkg log/syslog (netbsd-arm64), const LOG_ALERT = 1
  128. pkg log/syslog (netbsd-arm64), const LOG_ALERT Priority
  129. pkg log/syslog (netbsd-arm64), const LOG_AUTH = 32
  130. pkg log/syslog (netbsd-arm64), const LOG_AUTH Priority
  131. pkg log/syslog (netbsd-arm64), const LOG_AUTHPRIV = 80
  132. pkg log/syslog (netbsd-arm64), const LOG_AUTHPRIV Priority
  133. pkg log/syslog (netbsd-arm64), const LOG_CRIT = 2
  134. pkg log/syslog (netbsd-arm64), const LOG_CRIT Priority
  135. pkg log/syslog (netbsd-arm64), const LOG_CRON = 72
  136. pkg log/syslog (netbsd-arm64), const LOG_CRON Priority
  137. pkg log/syslog (netbsd-arm64), const LOG_DAEMON = 24
  138. pkg log/syslog (netbsd-arm64), const LOG_DAEMON Priority
  139. pkg log/syslog (netbsd-arm64), const LOG_DEBUG = 7
  140. pkg log/syslog (netbsd-arm64), const LOG_DEBUG Priority
  141. pkg log/syslog (netbsd-arm64), const LOG_EMERG = 0
  142. pkg log/syslog (netbsd-arm64), const LOG_EMERG Priority
  143. pkg log/syslog (netbsd-arm64), const LOG_ERR = 3
  144. pkg log/syslog (netbsd-arm64), const LOG_ERR Priority
  145. pkg log/syslog (netbsd-arm64), const LOG_FTP = 88
  146. pkg log/syslog (netbsd-arm64), const LOG_FTP Priority
  147. pkg log/syslog (netbsd-arm64), const LOG_INFO = 6
  148. pkg log/syslog (netbsd-arm64), const LOG_INFO Priority
  149. pkg log/syslog (netbsd-arm64), const LOG_KERN = 0
  150. pkg log/syslog (netbsd-arm64), const LOG_KERN Priority
  151. pkg log/syslog (netbsd-arm64), const LOG_LOCAL0 = 128
  152. pkg log/syslog (netbsd-arm64), const LOG_LOCAL0 Priority
  153. pkg log/syslog (netbsd-arm64), const LOG_LOCAL1 = 136
  154. pkg log/syslog (netbsd-arm64), const LOG_LOCAL1 Priority
  155. pkg log/syslog (netbsd-arm64), const LOG_LOCAL2 = 144
  156. pkg log/syslog (netbsd-arm64), const LOG_LOCAL2 Priority
  157. pkg log/syslog (netbsd-arm64), const LOG_LOCAL3 = 152
  158. pkg log/syslog (netbsd-arm64), const LOG_LOCAL3 Priority
  159. pkg log/syslog (netbsd-arm64), const LOG_LOCAL4 = 160
  160. pkg log/syslog (netbsd-arm64), const LOG_LOCAL4 Priority
  161. pkg log/syslog (netbsd-arm64), const LOG_LOCAL5 = 168
  162. pkg log/syslog (netbsd-arm64), const LOG_LOCAL5 Priority
  163. pkg log/syslog (netbsd-arm64), const LOG_LOCAL6 = 176
  164. pkg log/syslog (netbsd-arm64), const LOG_LOCAL6 Priority
  165. pkg log/syslog (netbsd-arm64), const LOG_LOCAL7 = 184
  166. pkg log/syslog (netbsd-arm64), const LOG_LOCAL7 Priority
  167. pkg log/syslog (netbsd-arm64), const LOG_LPR = 48
  168. pkg log/syslog (netbsd-arm64), const LOG_LPR Priority
  169. pkg log/syslog (netbsd-arm64), const LOG_MAIL = 16
  170. pkg log/syslog (netbsd-arm64), const LOG_MAIL Priority
  171. pkg log/syslog (netbsd-arm64), const LOG_NEWS = 56
  172. pkg log/syslog (netbsd-arm64), const LOG_NEWS Priority
  173. pkg log/syslog (netbsd-arm64), const LOG_NOTICE = 5
  174. pkg log/syslog (netbsd-arm64), const LOG_NOTICE Priority
  175. pkg log/syslog (netbsd-arm64), const LOG_SYSLOG = 40
  176. pkg log/syslog (netbsd-arm64), const LOG_SYSLOG Priority
  177. pkg log/syslog (netbsd-arm64), const LOG_USER = 8
  178. pkg log/syslog (netbsd-arm64), const LOG_USER Priority
  179. pkg log/syslog (netbsd-arm64), const LOG_UUCP = 64
  180. pkg log/syslog (netbsd-arm64), const LOG_UUCP Priority
  181. pkg log/syslog (netbsd-arm64), const LOG_WARNING = 4
  182. pkg log/syslog (netbsd-arm64), const LOG_WARNING Priority
  183. pkg log/syslog (netbsd-arm64), func Dial(string, string, Priority, string) (*Writer, error)
  184. pkg log/syslog (netbsd-arm64), func NewLogger(Priority, int) (*log.Logger, error)
  185. pkg log/syslog (netbsd-arm64), func New(Priority, string) (*Writer, error)
  186. pkg log/syslog (netbsd-arm64), method (*Writer) Alert(string) error
  187. pkg log/syslog (netbsd-arm64), method (*Writer) Close() error
  188. pkg log/syslog (netbsd-arm64), method (*Writer) Crit(string) error
  189. pkg log/syslog (netbsd-arm64), method (*Writer) Debug(string) error
  190. pkg log/syslog (netbsd-arm64), method (*Writer) Emerg(string) error
  191. pkg log/syslog (netbsd-arm64), method (*Writer) Err(string) error
  192. pkg log/syslog (netbsd-arm64), method (*Writer) Info(string) error
  193. pkg log/syslog (netbsd-arm64), method (*Writer) Notice(string) error
  194. pkg log/syslog (netbsd-arm64), method (*Writer) Warning(string) error
  195. pkg log/syslog (netbsd-arm64), method (*Writer) Write([]uint8) (int, error)
  196. pkg log/syslog (netbsd-arm64), type Priority int
  197. pkg log/syslog (netbsd-arm64), type Writer struct
  198. pkg math/big, method (*Int) TrailingZeroBits() uint
  199. pkg math/big, method (*Rat) SetUint64(uint64) *Rat
  200. pkg net/http, const SameSiteNoneMode = 4
  201. pkg net/http, const SameSiteNoneMode SameSite
  202. pkg net/http, const StatusEarlyHints = 103
  203. pkg net/http, const StatusEarlyHints ideal-int
  204. pkg net/http, func NewRequestWithContext(context.Context, string, string, io.Reader) (*Request, error)
  205. pkg net/http, method (Header) Clone() Header
  206. pkg net/http, method (*Request) Clone(context.Context) *Request
  207. pkg net/http, method (*Transport) Clone() *Transport
  208. pkg net/http, type Server struct, BaseContext func(net.Listener) context.Context
  209. pkg net/http, type Server struct, ConnContext func(context.Context, net.Conn) context.Context
  210. pkg net/http, type Transport struct, ForceAttemptHTTP2 bool
  211. pkg net/http, type Transport struct, ReadBufferSize int
  212. pkg net/http, type Transport struct, WriteBufferSize int
  213. pkg net, method (*DNSConfigError) Unwrap() error
  214. pkg net, method (*OpError) Unwrap() error
  215. pkg net, type DNSError struct, IsNotFound bool
  216. pkg net, type ListenConfig struct, KeepAlive time.Duration
  217. pkg net/url, method (*Error) Unwrap() error
  218. pkg os/exec, method (*Cmd) String() string
  219. pkg os/exec, method (*Error) Unwrap() error
  220. pkg os, func UserConfigDir() (string, error)
  221. pkg os, method (*LinkError) Unwrap() error
  222. pkg os, method (*PathError) Unwrap() error
  223. pkg os, method (*SyscallError) Unwrap() error
  224. pkg os (netbsd-arm64-cgo), const DevNull = "/dev/null"
  225. pkg os (netbsd-arm64-cgo), const O_APPEND = 8
  226. pkg os (netbsd-arm64-cgo), const O_CREATE = 512
  227. pkg os (netbsd-arm64-cgo), const O_EXCL = 2048
  228. pkg os (netbsd-arm64-cgo), const O_SYNC = 128
  229. pkg os (netbsd-arm64-cgo), const O_TRUNC = 1024
  230. pkg os (netbsd-arm64-cgo), const PathListSeparator = 58
  231. pkg os (netbsd-arm64-cgo), const PathSeparator = 47
  232. pkg os (netbsd-arm64), const DevNull = "/dev/null"
  233. pkg os (netbsd-arm64), const O_APPEND = 8
  234. pkg os (netbsd-arm64), const O_CREATE = 512
  235. pkg os (netbsd-arm64), const O_EXCL = 2048
  236. pkg os (netbsd-arm64), const O_SYNC = 128
  237. pkg os (netbsd-arm64), const O_TRUNC = 1024
  238. pkg os (netbsd-arm64), const PathListSeparator = 58
  239. pkg os (netbsd-arm64), const PathSeparator = 47
  240. pkg path/filepath (netbsd-arm64-cgo), const ListSeparator = 58
  241. pkg path/filepath (netbsd-arm64-cgo), const Separator = 47
  242. pkg path/filepath (netbsd-arm64), const ListSeparator = 58
  243. pkg path/filepath (netbsd-arm64), const Separator = 47
  244. pkg reflect, method (Value) IsZero() bool
  245. pkg runtime (netbsd-arm64-cgo), const GOARCH = "arm64"
  246. pkg runtime (netbsd-arm64-cgo), const GOOS = "netbsd"
  247. pkg runtime (netbsd-arm64), const GOARCH = "arm64"
  248. pkg runtime (netbsd-arm64), const GOOS = "netbsd"
  249. pkg strings, func ToValidUTF8(string, string) string
  250. pkg syscall, method (Errno) Is(error) bool
  251. pkg syscall (netbsd-arm64-cgo), const AF_APPLETALK = 16
  252. pkg syscall (netbsd-arm64-cgo), const AF_APPLETALK ideal-int
  253. pkg syscall (netbsd-arm64-cgo), const AF_ARP = 28
  254. pkg syscall (netbsd-arm64-cgo), const AF_ARP ideal-int
  255. pkg syscall (netbsd-arm64-cgo), const AF_BLUETOOTH = 31
  256. pkg syscall (netbsd-arm64-cgo), const AF_BLUETOOTH ideal-int
  257. pkg syscall (netbsd-arm64-cgo), const AF_CCITT = 10
  258. pkg syscall (netbsd-arm64-cgo), const AF_CCITT ideal-int
  259. pkg syscall (netbsd-arm64-cgo), const AF_CHAOS = 5
  260. pkg syscall (netbsd-arm64-cgo), const AF_CHAOS ideal-int
  261. pkg syscall (netbsd-arm64-cgo), const AF_CNT = 21
  262. pkg syscall (netbsd-arm64-cgo), const AF_CNT ideal-int
  263. pkg syscall (netbsd-arm64-cgo), const AF_COIP = 20
  264. pkg syscall (netbsd-arm64-cgo), const AF_COIP ideal-int
  265. pkg syscall (netbsd-arm64-cgo), const AF_DATAKIT = 9
  266. pkg syscall (netbsd-arm64-cgo), const AF_DATAKIT ideal-int
  267. pkg syscall (netbsd-arm64-cgo), const AF_DECnet = 12
  268. pkg syscall (netbsd-arm64-cgo), const AF_DECnet ideal-int
  269. pkg syscall (netbsd-arm64-cgo), const AF_DLI = 13
  270. pkg syscall (netbsd-arm64-cgo), const AF_DLI ideal-int
  271. pkg syscall (netbsd-arm64-cgo), const AF_E164 = 26
  272. pkg syscall (netbsd-arm64-cgo), const AF_E164 ideal-int
  273. pkg syscall (netbsd-arm64-cgo), const AF_ECMA = 8
  274. pkg syscall (netbsd-arm64-cgo), const AF_ECMA ideal-int
  275. pkg syscall (netbsd-arm64-cgo), const AF_HYLINK = 15
  276. pkg syscall (netbsd-arm64-cgo), const AF_HYLINK ideal-int
  277. pkg syscall (netbsd-arm64-cgo), const AF_IEEE80211 = 32
  278. pkg syscall (netbsd-arm64-cgo), const AF_IEEE80211 ideal-int
  279. pkg syscall (netbsd-arm64-cgo), const AF_IMPLINK = 3
  280. pkg syscall (netbsd-arm64-cgo), const AF_IMPLINK ideal-int
  281. pkg syscall (netbsd-arm64-cgo), const AF_INET6 = 24
  282. pkg syscall (netbsd-arm64-cgo), const AF_IPX = 23
  283. pkg syscall (netbsd-arm64-cgo), const AF_IPX ideal-int
  284. pkg syscall (netbsd-arm64-cgo), const AF_ISDN = 26
  285. pkg syscall (netbsd-arm64-cgo), const AF_ISDN ideal-int
  286. pkg syscall (netbsd-arm64-cgo), const AF_ISO = 7
  287. pkg syscall (netbsd-arm64-cgo), const AF_ISO ideal-int
  288. pkg syscall (netbsd-arm64-cgo), const AF_LAT = 14
  289. pkg syscall (netbsd-arm64-cgo), const AF_LAT ideal-int
  290. pkg syscall (netbsd-arm64-cgo), const AF_LINK = 18
  291. pkg syscall (netbsd-arm64-cgo), const AF_LINK ideal-int
  292. pkg syscall (netbsd-arm64-cgo), const AF_LOCAL = 1
  293. pkg syscall (netbsd-arm64-cgo), const AF_LOCAL ideal-int
  294. pkg syscall (netbsd-arm64-cgo), const AF_MAX = 35
  295. pkg syscall (netbsd-arm64-cgo), const AF_MAX ideal-int
  296. pkg syscall (netbsd-arm64-cgo), const AF_MPLS = 33
  297. pkg syscall (netbsd-arm64-cgo), const AF_MPLS ideal-int
  298. pkg syscall (netbsd-arm64-cgo), const AF_NATM = 27
  299. pkg syscall (netbsd-arm64-cgo), const AF_NATM ideal-int
  300. pkg syscall (netbsd-arm64-cgo), const AF_NS = 6
  301. pkg syscall (netbsd-arm64-cgo), const AF_NS ideal-int
  302. pkg syscall (netbsd-arm64-cgo), const AF_OROUTE = 17
  303. pkg syscall (netbsd-arm64-cgo), const AF_OROUTE ideal-int
  304. pkg syscall (netbsd-arm64-cgo), const AF_OSI = 7
  305. pkg syscall (netbsd-arm64-cgo), const AF_OSI ideal-int
  306. pkg syscall (netbsd-arm64-cgo), const AF_PUP = 4
  307. pkg syscall (netbsd-arm64-cgo), const AF_PUP ideal-int
  308. pkg syscall (netbsd-arm64-cgo), const AF_ROUTE = 34
  309. pkg syscall (netbsd-arm64-cgo), const AF_ROUTE ideal-int
  310. pkg syscall (netbsd-arm64-cgo), const AF_SNA = 11
  311. pkg syscall (netbsd-arm64-cgo), const AF_SNA ideal-int
  312. pkg syscall (netbsd-arm64-cgo), const ARPHRD_ARCNET = 7
  313. pkg syscall (netbsd-arm64-cgo), const ARPHRD_ARCNET ideal-int
  314. pkg syscall (netbsd-arm64-cgo), const ARPHRD_ETHER = 1
  315. pkg syscall (netbsd-arm64-cgo), const ARPHRD_ETHER ideal-int
  316. pkg syscall (netbsd-arm64-cgo), const ARPHRD_FRELAY = 15
  317. pkg syscall (netbsd-arm64-cgo), const ARPHRD_FRELAY ideal-int
  318. pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE1394 = 24
  319. pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE1394 ideal-int
  320. pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE802 = 6
  321. pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE802 ideal-int
  322. pkg syscall (netbsd-arm64-cgo), const ARPHRD_STRIP = 23
  323. pkg syscall (netbsd-arm64-cgo), const ARPHRD_STRIP ideal-int
  324. pkg syscall (netbsd-arm64-cgo), const B0 = 0
  325. pkg syscall (netbsd-arm64-cgo), const B0 ideal-int
  326. pkg syscall (netbsd-arm64-cgo), const B110 = 110
  327. pkg syscall (netbsd-arm64-cgo), const B110 ideal-int
  328. pkg syscall (netbsd-arm64-cgo), const B115200 = 115200
  329. pkg syscall (netbsd-arm64-cgo), const B115200 ideal-int
  330. pkg syscall (netbsd-arm64-cgo), const B1200 = 1200
  331. pkg syscall (netbsd-arm64-cgo), const B1200 ideal-int
  332. pkg syscall (netbsd-arm64-cgo), const B134 = 134
  333. pkg syscall (netbsd-arm64-cgo), const B134 ideal-int
  334. pkg syscall (netbsd-arm64-cgo), const B14400 = 14400
  335. pkg syscall (netbsd-arm64-cgo), const B14400 ideal-int
  336. pkg syscall (netbsd-arm64-cgo), const B150 = 150
  337. pkg syscall (netbsd-arm64-cgo), const B150 ideal-int
  338. pkg syscall (netbsd-arm64-cgo), const B1800 = 1800
  339. pkg syscall (netbsd-arm64-cgo), const B1800 ideal-int
  340. pkg syscall (netbsd-arm64-cgo), const B19200 = 19200
  341. pkg syscall (netbsd-arm64-cgo), const B19200 ideal-int
  342. pkg syscall (netbsd-arm64-cgo), const B200 = 200
  343. pkg syscall (netbsd-arm64-cgo), const B200 ideal-int
  344. pkg syscall (netbsd-arm64-cgo), const B230400 = 230400
  345. pkg syscall (netbsd-arm64-cgo), const B230400 ideal-int
  346. pkg syscall (netbsd-arm64-cgo), const B2400 = 2400
  347. pkg syscall (netbsd-arm64-cgo), const B2400 ideal-int
  348. pkg syscall (netbsd-arm64-cgo), const B28800 = 28800
  349. pkg syscall (netbsd-arm64-cgo), const B28800 ideal-int
  350. pkg syscall (netbsd-arm64-cgo), const B300 = 300
  351. pkg syscall (netbsd-arm64-cgo), const B300 ideal-int
  352. pkg syscall (netbsd-arm64-cgo), const B38400 = 38400
  353. pkg syscall (netbsd-arm64-cgo), const B38400 ideal-int
  354. pkg syscall (netbsd-arm64-cgo), const B460800 = 460800
  355. pkg syscall (netbsd-arm64-cgo), const B460800 ideal-int
  356. pkg syscall (netbsd-arm64-cgo), const B4800 = 4800
  357. pkg syscall (netbsd-arm64-cgo), const B4800 ideal-int
  358. pkg syscall (netbsd-arm64-cgo), const B50 = 50
  359. pkg syscall (netbsd-arm64-cgo), const B50 ideal-int
  360. pkg syscall (netbsd-arm64-cgo), const B57600 = 57600
  361. pkg syscall (netbsd-arm64-cgo), const B57600 ideal-int
  362. pkg syscall (netbsd-arm64-cgo), const B600 = 600
  363. pkg syscall (netbsd-arm64-cgo), const B600 ideal-int
  364. pkg syscall (netbsd-arm64-cgo), const B7200 = 7200
  365. pkg syscall (netbsd-arm64-cgo), const B7200 ideal-int
  366. pkg syscall (netbsd-arm64-cgo), const B75 = 75
  367. pkg syscall (netbsd-arm64-cgo), const B75 ideal-int
  368. pkg syscall (netbsd-arm64-cgo), const B76800 = 76800
  369. pkg syscall (netbsd-arm64-cgo), const B76800 ideal-int
  370. pkg syscall (netbsd-arm64-cgo), const B921600 = 921600
  371. pkg syscall (netbsd-arm64-cgo), const B921600 ideal-int
  372. pkg syscall (netbsd-arm64-cgo), const B9600 = 9600
  373. pkg syscall (netbsd-arm64-cgo), const B9600 ideal-int
  374. pkg syscall (netbsd-arm64-cgo), const BIOCFEEDBACK = 2147762813
  375. pkg syscall (netbsd-arm64-cgo), const BIOCFEEDBACK ideal-int
  376. pkg syscall (netbsd-arm64-cgo), const BIOCFLUSH = 536887912
  377. pkg syscall (netbsd-arm64-cgo), const BIOCFLUSH ideal-int
  378. pkg syscall (netbsd-arm64-cgo), const BIOCGBLEN = 1074020966
  379. pkg syscall (netbsd-arm64-cgo), const BIOCGBLEN ideal-int
  380. pkg syscall (netbsd-arm64-cgo), const BIOCGDLT = 1074020970
  381. pkg syscall (netbsd-arm64-cgo), const BIOCGDLT ideal-int
  382. pkg syscall (netbsd-arm64-cgo), const BIOCGDLTLIST = 3222291063
  383. pkg syscall (netbsd-arm64-cgo), const BIOCGDLTLIST ideal-int
  384. pkg syscall (netbsd-arm64-cgo), const BIOCGETIF = 1083196011
  385. pkg syscall (netbsd-arm64-cgo), const BIOCGETIF ideal-int
  386. pkg syscall (netbsd-arm64-cgo), const BIOCGFEEDBACK = 1074020988
  387. pkg syscall (netbsd-arm64-cgo), const BIOCGFEEDBACK ideal-int
  388. pkg syscall (netbsd-arm64-cgo), const BIOCGHDRCMPLT = 1074020980
  389. pkg syscall (netbsd-arm64-cgo), const BIOCGHDRCMPLT ideal-int
  390. pkg syscall (netbsd-arm64-cgo), const BIOCGRTIMEOUT = 1074807419
  391. pkg syscall (netbsd-arm64-cgo), const BIOCGRTIMEOUT ideal-int
  392. pkg syscall (netbsd-arm64-cgo), const BIOCGSEESENT = 1074020984
  393. pkg syscall (netbsd-arm64-cgo), const BIOCGSEESENT ideal-int
  394. pkg syscall (netbsd-arm64-cgo), const BIOCGSTATS = 1082147439
  395. pkg syscall (netbsd-arm64-cgo), const BIOCGSTATS ideal-int
  396. pkg syscall (netbsd-arm64-cgo), const BIOCGSTATSOLD = 1074283119
  397. pkg syscall (netbsd-arm64-cgo), const BIOCGSTATSOLD ideal-int
  398. pkg syscall (netbsd-arm64-cgo), const BIOCIMMEDIATE = 2147762800
  399. pkg syscall (netbsd-arm64-cgo), const BIOCIMMEDIATE ideal-int
  400. pkg syscall (netbsd-arm64-cgo), const BIOCPROMISC = 536887913
  401. pkg syscall (netbsd-arm64-cgo), const BIOCPROMISC ideal-int
  402. pkg syscall (netbsd-arm64-cgo), const BIOCSBLEN = 3221504614
  403. pkg syscall (netbsd-arm64-cgo), const BIOCSBLEN ideal-int
  404. pkg syscall (netbsd-arm64-cgo), const BIOCSDLT = 2147762806
  405. pkg syscall (netbsd-arm64-cgo), const BIOCSDLT ideal-int
  406. pkg syscall (netbsd-arm64-cgo), const BIOCSETF = 2148549223
  407. pkg syscall (netbsd-arm64-cgo), const BIOCSETF ideal-int
  408. pkg syscall (netbsd-arm64-cgo), const BIOCSETIF = 2156937836
  409. pkg syscall (netbsd-arm64-cgo), const BIOCSETIF ideal-int
  410. pkg syscall (netbsd-arm64-cgo), const BIOCSFEEDBACK = 2147762813
  411. pkg syscall (netbsd-arm64-cgo), const BIOCSFEEDBACK ideal-int
  412. pkg syscall (netbsd-arm64-cgo), const BIOCSHDRCMPLT = 2147762805
  413. pkg syscall (netbsd-arm64-cgo), const BIOCSHDRCMPLT ideal-int
  414. pkg syscall (netbsd-arm64-cgo), const BIOCSRTIMEOUT = 2148549242
  415. pkg syscall (netbsd-arm64-cgo), const BIOCSRTIMEOUT ideal-int
  416. pkg syscall (netbsd-arm64-cgo), const BIOCSSEESENT = 2147762809
  417. pkg syscall (netbsd-arm64-cgo), const BIOCSSEESENT ideal-int
  418. pkg syscall (netbsd-arm64-cgo), const BIOCSTCPF = 2148549234
  419. pkg syscall (netbsd-arm64-cgo), const BIOCSTCPF ideal-int
  420. pkg syscall (netbsd-arm64-cgo), const BIOCSUDPF = 2148549235
  421. pkg syscall (netbsd-arm64-cgo), const BIOCSUDPF ideal-int
  422. pkg syscall (netbsd-arm64-cgo), const BIOCVERSION = 1074020977
  423. pkg syscall (netbsd-arm64-cgo), const BIOCVERSION ideal-int
  424. pkg syscall (netbsd-arm64-cgo), const BPF_A = 16
  425. pkg syscall (netbsd-arm64-cgo), const BPF_ABS = 32
  426. pkg syscall (netbsd-arm64-cgo), const BPF_ABS ideal-int
  427. pkg syscall (netbsd-arm64-cgo), const BPF_ADD = 0
  428. pkg syscall (netbsd-arm64-cgo), const BPF_ADD ideal-int
  429. pkg syscall (netbsd-arm64-cgo), const BPF_A ideal-int
  430. pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT32 = 4
  431. pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT32 ideal-int
  432. pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT = 8
  433. pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT ideal-int
  434. pkg syscall (netbsd-arm64-cgo), const BPF_ALU = 4
  435. pkg syscall (netbsd-arm64-cgo), const BPF_ALU ideal-int
  436. pkg syscall (netbsd-arm64-cgo), const BPF_AND = 80
  437. pkg syscall (netbsd-arm64-cgo), const BPF_AND ideal-int
  438. pkg syscall (netbsd-arm64-cgo), const BPF_B = 16
  439. pkg syscall (netbsd-arm64-cgo), const BPF_B ideal-int
  440. pkg syscall (netbsd-arm64-cgo), const BPF_DFLTBUFSIZE = 1048576
  441. pkg syscall (netbsd-arm64-cgo), const BPF_DFLTBUFSIZE ideal-int
  442. pkg syscall (netbsd-arm64-cgo), const BPF_DIV = 48
  443. pkg syscall (netbsd-arm64-cgo), const BPF_DIV ideal-int
  444. pkg syscall (netbsd-arm64-cgo), const BPF_H = 8
  445. pkg syscall (netbsd-arm64-cgo), const BPF_H ideal-int
  446. pkg syscall (netbsd-arm64-cgo), const BPF_IMM = 0
  447. pkg syscall (netbsd-arm64-cgo), const BPF_IMM ideal-int
  448. pkg syscall (netbsd-arm64-cgo), const BPF_IND = 64
  449. pkg syscall (netbsd-arm64-cgo), const BPF_IND ideal-int
  450. pkg syscall (netbsd-arm64-cgo), const BPF_JA = 0
  451. pkg syscall (netbsd-arm64-cgo), const BPF_JA ideal-int
  452. pkg syscall (netbsd-arm64-cgo), const BPF_JEQ = 16
  453. pkg syscall (netbsd-arm64-cgo), const BPF_JEQ ideal-int
  454. pkg syscall (netbsd-arm64-cgo), const BPF_JGE = 48
  455. pkg syscall (netbsd-arm64-cgo), const BPF_JGE ideal-int
  456. pkg syscall (netbsd-arm64-cgo), const BPF_JGT = 32
  457. pkg syscall (netbsd-arm64-cgo), const BPF_JGT ideal-int
  458. pkg syscall (netbsd-arm64-cgo), const BPF_JMP = 5
  459. pkg syscall (netbsd-arm64-cgo), const BPF_JMP ideal-int
  460. pkg syscall (netbsd-arm64-cgo), const BPF_JSET = 64
  461. pkg syscall (netbsd-arm64-cgo), const BPF_JSET ideal-int
  462. pkg syscall (netbsd-arm64-cgo), const BPF_K = 0
  463. pkg syscall (netbsd-arm64-cgo), const BPF_K ideal-int
  464. pkg syscall (netbsd-arm64-cgo), const BPF_LD = 0
  465. pkg syscall (netbsd-arm64-cgo), const BPF_LD ideal-int
  466. pkg syscall (netbsd-arm64-cgo), const BPF_LDX = 1
  467. pkg syscall (netbsd-arm64-cgo), const BPF_LDX ideal-int
  468. pkg syscall (netbsd-arm64-cgo), const BPF_LEN = 128
  469. pkg syscall (netbsd-arm64-cgo), const BPF_LEN ideal-int
  470. pkg syscall (netbsd-arm64-cgo), const BPF_LSH = 96
  471. pkg syscall (netbsd-arm64-cgo), const BPF_LSH ideal-int
  472. pkg syscall (netbsd-arm64-cgo), const BPF_MAJOR_VERSION = 1
  473. pkg syscall (netbsd-arm64-cgo), const BPF_MAJOR_VERSION ideal-int
  474. pkg syscall (netbsd-arm64-cgo), const BPF_MAXBUFSIZE = 16777216
  475. pkg syscall (netbsd-arm64-cgo), const BPF_MAXBUFSIZE ideal-int
  476. pkg syscall (netbsd-arm64-cgo), const BPF_MAXINSNS = 512
  477. pkg syscall (netbsd-arm64-cgo), const BPF_MAXINSNS ideal-int
  478. pkg syscall (netbsd-arm64-cgo), const BPF_MEM = 96
  479. pkg syscall (netbsd-arm64-cgo), const BPF_MEM ideal-int
  480. pkg syscall (netbsd-arm64-cgo), const BPF_MEMWORDS = 16
  481. pkg syscall (netbsd-arm64-cgo), const BPF_MEMWORDS ideal-int
  482. pkg syscall (netbsd-arm64-cgo), const BPF_MINBUFSIZE = 32
  483. pkg syscall (netbsd-arm64-cgo), const BPF_MINBUFSIZE ideal-int
  484. pkg syscall (netbsd-arm64-cgo), const BPF_MINOR_VERSION = 1
  485. pkg syscall (netbsd-arm64-cgo), const BPF_MINOR_VERSION ideal-int
  486. pkg syscall (netbsd-arm64-cgo), const BPF_MISC = 7
  487. pkg syscall (netbsd-arm64-cgo), const BPF_MISC ideal-int
  488. pkg syscall (netbsd-arm64-cgo), const BPF_MSH = 160
  489. pkg syscall (netbsd-arm64-cgo), const BPF_MSH ideal-int
  490. pkg syscall (netbsd-arm64-cgo), const BPF_MUL = 32
  491. pkg syscall (netbsd-arm64-cgo), const BPF_MUL ideal-int
  492. pkg syscall (netbsd-arm64-cgo), const BPF_NEG = 128
  493. pkg syscall (netbsd-arm64-cgo), const BPF_NEG ideal-int
  494. pkg syscall (netbsd-arm64-cgo), const BPF_OR = 64
  495. pkg syscall (netbsd-arm64-cgo), const BPF_OR ideal-int
  496. pkg syscall (netbsd-arm64-cgo), const BPF_RELEASE = 199606
  497. pkg syscall (netbsd-arm64-cgo), const BPF_RELEASE ideal-int
  498. pkg syscall (netbsd-arm64-cgo), const BPF_RET = 6
  499. pkg syscall (netbsd-arm64-cgo), const BPF_RET ideal-int
  500. pkg syscall (netbsd-arm64-cgo), const BPF_RSH = 112
  501. pkg syscall (netbsd-arm64-cgo), const BPF_RSH ideal-int
  502. pkg syscall (netbsd-arm64-cgo), const BPF_ST = 2
  503. pkg syscall (netbsd-arm64-cgo), const BPF_ST ideal-int
  504. pkg syscall (netbsd-arm64-cgo), const BPF_STX = 3
  505. pkg syscall (netbsd-arm64-cgo), const BPF_STX ideal-int
  506. pkg syscall (netbsd-arm64-cgo), const BPF_SUB = 16
  507. pkg syscall (netbsd-arm64-cgo), const BPF_SUB ideal-int
  508. pkg syscall (netbsd-arm64-cgo), const BPF_TAX = 0
  509. pkg syscall (netbsd-arm64-cgo), const BPF_TAX ideal-int
  510. pkg syscall (netbsd-arm64-cgo), const BPF_TXA = 128
  511. pkg syscall (netbsd-arm64-cgo), const BPF_TXA ideal-int
  512. pkg syscall (netbsd-arm64-cgo), const BPF_W = 0
  513. pkg syscall (netbsd-arm64-cgo), const BPF_W ideal-int
  514. pkg syscall (netbsd-arm64-cgo), const BPF_X = 8
  515. pkg syscall (netbsd-arm64-cgo), const BPF_X ideal-int
  516. pkg syscall (netbsd-arm64-cgo), const BRKINT = 2
  517. pkg syscall (netbsd-arm64-cgo), const BRKINT ideal-int
  518. pkg syscall (netbsd-arm64-cgo), const CFLUSH = 15
  519. pkg syscall (netbsd-arm64-cgo), const CFLUSH ideal-int
  520. pkg syscall (netbsd-arm64-cgo), const CLOCAL = 32768
  521. pkg syscall (netbsd-arm64-cgo), const CLOCAL ideal-int
  522. pkg syscall (netbsd-arm64-cgo), const CLONE_CSIGNAL = 255
  523. pkg syscall (netbsd-arm64-cgo), const CLONE_CSIGNAL ideal-int
  524. pkg syscall (netbsd-arm64-cgo), const CLONE_FILES = 1024
  525. pkg syscall (netbsd-arm64-cgo), const CLONE_FILES ideal-int
  526. pkg syscall (netbsd-arm64-cgo), const CLONE_FS = 512
  527. pkg syscall (netbsd-arm64-cgo), const CLONE_FS ideal-int
  528. pkg syscall (netbsd-arm64-cgo), const CLONE_PID = 4096
  529. pkg syscall (netbsd-arm64-cgo), const CLONE_PID ideal-int
  530. pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE = 8192
  531. pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE ideal-int
  532. pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND = 2048
  533. pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND ideal-int
  534. pkg syscall (netbsd-arm64-cgo), const CLONE_VFORK = 16384
  535. pkg syscall (netbsd-arm64-cgo), const CLONE_VFORK ideal-int
  536. pkg syscall (netbsd-arm64-cgo), const CLONE_VM = 256
  537. pkg syscall (netbsd-arm64-cgo), const CLONE_VM ideal-int
  538. pkg syscall (netbsd-arm64-cgo), const CREAD = 2048
  539. pkg syscall (netbsd-arm64-cgo), const CREAD ideal-int
  540. pkg syscall (netbsd-arm64-cgo), const CS5 = 0
  541. pkg syscall (netbsd-arm64-cgo), const CS5 ideal-int
  542. pkg syscall (netbsd-arm64-cgo), const CS6 = 256
  543. pkg syscall (netbsd-arm64-cgo), const CS6 ideal-int
  544. pkg syscall (netbsd-arm64-cgo), const CS7 = 512
  545. pkg syscall (netbsd-arm64-cgo), const CS7 ideal-int
  546. pkg syscall (netbsd-arm64-cgo), const CS8 = 768
  547. pkg syscall (netbsd-arm64-cgo), const CS8 ideal-int
  548. pkg syscall (netbsd-arm64-cgo), const CSIZE = 768
  549. pkg syscall (netbsd-arm64-cgo), const CSIZE ideal-int
  550. pkg syscall (netbsd-arm64-cgo), const CSTART = 17
  551. pkg syscall (netbsd-arm64-cgo), const CSTART ideal-int
  552. pkg syscall (netbsd-arm64-cgo), const CSTATUS = 20
  553. pkg syscall (netbsd-arm64-cgo), const CSTATUS ideal-int
  554. pkg syscall (netbsd-arm64-cgo), const CSTOP = 19
  555. pkg syscall (netbsd-arm64-cgo), const CSTOPB = 1024
  556. pkg syscall (netbsd-arm64-cgo), const CSTOPB ideal-int
  557. pkg syscall (netbsd-arm64-cgo), const CSTOP ideal-int
  558. pkg syscall (netbsd-arm64-cgo), const CSUSP = 26
  559. pkg syscall (netbsd-arm64-cgo), const CSUSP ideal-int
  560. pkg syscall (netbsd-arm64-cgo), const CTL_MAXNAME = 12
  561. pkg syscall (netbsd-arm64-cgo), const CTL_MAXNAME ideal-int
  562. pkg syscall (netbsd-arm64-cgo), const CTL_NET = 4
  563. pkg syscall (netbsd-arm64-cgo), const CTL_NET ideal-int
  564. pkg syscall (netbsd-arm64-cgo), const CTL_QUERY = -2
  565. pkg syscall (netbsd-arm64-cgo), const CTL_QUERY ideal-int
  566. pkg syscall (netbsd-arm64-cgo), const DIOCBSFLUSH = 536896632
  567. pkg syscall (netbsd-arm64-cgo), const DIOCBSFLUSH ideal-int
  568. pkg syscall (netbsd-arm64-cgo), const DLT_A429 = 184
  569. pkg syscall (netbsd-arm64-cgo), const DLT_A429 ideal-int
  570. pkg syscall (netbsd-arm64-cgo), const DLT_A653_ICM = 185
  571. pkg syscall (netbsd-arm64-cgo), const DLT_A653_ICM ideal-int
  572. pkg syscall (netbsd-arm64-cgo), const DLT_AIRONET_HEADER = 120
  573. pkg syscall (netbsd-arm64-cgo), const DLT_AIRONET_HEADER ideal-int
  574. pkg syscall (netbsd-arm64-cgo), const DLT_AOS = 222
  575. pkg syscall (netbsd-arm64-cgo), const DLT_AOS ideal-int
  576. pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138
  577. pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  578. pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET = 7
  579. pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET ideal-int
  580. pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET_LINUX = 129
  581. pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET_LINUX ideal-int
  582. pkg syscall (netbsd-arm64-cgo), const DLT_ATM_CLIP = 19
  583. pkg syscall (netbsd-arm64-cgo), const DLT_ATM_CLIP ideal-int
  584. pkg syscall (netbsd-arm64-cgo), const DLT_ATM_RFC1483 = 11
  585. pkg syscall (netbsd-arm64-cgo), const DLT_ATM_RFC1483 ideal-int
  586. pkg syscall (netbsd-arm64-cgo), const DLT_AURORA = 126
  587. pkg syscall (netbsd-arm64-cgo), const DLT_AURORA ideal-int
  588. pkg syscall (netbsd-arm64-cgo), const DLT_AX25 = 3
  589. pkg syscall (netbsd-arm64-cgo), const DLT_AX25 ideal-int
  590. pkg syscall (netbsd-arm64-cgo), const DLT_AX25_KISS = 202
  591. pkg syscall (netbsd-arm64-cgo), const DLT_AX25_KISS ideal-int
  592. pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP = 165
  593. pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP ideal-int
  594. pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187
  595. pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
  596. pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201
  597. pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
  598. pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B = 190
  599. pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B ideal-int
  600. pkg syscall (netbsd-arm64-cgo), const DLT_CAN_SOCKETCAN = 227
  601. pkg syscall (netbsd-arm64-cgo), const DLT_CAN_SOCKETCAN ideal-int
  602. pkg syscall (netbsd-arm64-cgo), const DLT_CHAOS = 5
  603. pkg syscall (netbsd-arm64-cgo), const DLT_CHAOS ideal-int
  604. pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC = 104
  605. pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC ideal-int
  606. pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC_WITH_DIR = 205
  607. pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int
  608. pkg syscall (netbsd-arm64-cgo), const DLT_CISCO_IOS = 118
  609. pkg syscall (netbsd-arm64-cgo), const DLT_CISCO_IOS ideal-int
  610. pkg syscall (netbsd-arm64-cgo), const DLT_DECT = 221
  611. pkg syscall (netbsd-arm64-cgo), const DLT_DECT ideal-int
  612. pkg syscall (netbsd-arm64-cgo), const DLT_DOCSIS = 143
  613. pkg syscall (netbsd-arm64-cgo), const DLT_DOCSIS ideal-int
  614. pkg syscall (netbsd-arm64-cgo), const DLT_ECONET = 115
  615. pkg syscall (netbsd-arm64-cgo), const DLT_ECONET ideal-int
  616. pkg syscall (netbsd-arm64-cgo), const DLT_EN10MB = 1
  617. pkg syscall (netbsd-arm64-cgo), const DLT_EN10MB ideal-int
  618. pkg syscall (netbsd-arm64-cgo), const DLT_EN3MB = 2
  619. pkg syscall (netbsd-arm64-cgo), const DLT_EN3MB ideal-int
  620. pkg syscall (netbsd-arm64-cgo), const DLT_ENC = 109
  621. pkg syscall (netbsd-arm64-cgo), const DLT_ENC ideal-int
  622. pkg syscall (netbsd-arm64-cgo), const DLT_ERF = 197
  623. pkg syscall (netbsd-arm64-cgo), const DLT_ERF_ETH = 175
  624. pkg syscall (netbsd-arm64-cgo), const DLT_ERF_ETH ideal-int
  625. pkg syscall (netbsd-arm64-cgo), const DLT_ERF ideal-int
  626. pkg syscall (netbsd-arm64-cgo), const DLT_ERF_POS = 176
  627. pkg syscall (netbsd-arm64-cgo), const DLT_ERF_POS ideal-int
  628. pkg syscall (netbsd-arm64-cgo), const DLT_FC_2 = 224
  629. pkg syscall (netbsd-arm64-cgo), const DLT_FC_2 ideal-int
  630. pkg syscall (netbsd-arm64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225
  631. pkg syscall (netbsd-arm64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
  632. pkg syscall (netbsd-arm64-cgo), const DLT_FDDI = 10
  633. pkg syscall (netbsd-arm64-cgo), const DLT_FDDI ideal-int
  634. pkg syscall (netbsd-arm64-cgo), const DLT_FLEXRAY = 210
  635. pkg syscall (netbsd-arm64-cgo), const DLT_FLEXRAY ideal-int
  636. pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY = 107
  637. pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY ideal-int
  638. pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR = 206
  639. pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
  640. pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_SERIAL = 173
  641. pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_SERIAL ideal-int
  642. pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_T1E1 = 172
  643. pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_T1E1 ideal-int
  644. pkg syscall (netbsd-arm64-cgo), const DLT_GPF_F = 171
  645. pkg syscall (netbsd-arm64-cgo), const DLT_GPF_F ideal-int
  646. pkg syscall (netbsd-arm64-cgo), const DLT_GPF_T = 170
  647. pkg syscall (netbsd-arm64-cgo), const DLT_GPF_T ideal-int
  648. pkg syscall (netbsd-arm64-cgo), const DLT_GPRS_LLC = 169
  649. pkg syscall (netbsd-arm64-cgo), const DLT_GPRS_LLC ideal-int
  650. pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_ABIS = 218
  651. pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_ABIS ideal-int
  652. pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_UM = 217
  653. pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_UM ideal-int
  654. pkg syscall (netbsd-arm64-cgo), const DLT_HDLC = 16
  655. pkg syscall (netbsd-arm64-cgo), const DLT_HDLC ideal-int
  656. pkg syscall (netbsd-arm64-cgo), const DLT_HHDLC = 121
  657. pkg syscall (netbsd-arm64-cgo), const DLT_HHDLC ideal-int
  658. pkg syscall (netbsd-arm64-cgo), const DLT_HIPPI = 15
  659. pkg syscall (netbsd-arm64-cgo), const DLT_HIPPI ideal-int
  660. pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SN = 146
  661. pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SN ideal-int
  662. pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SP = 145
  663. pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SP ideal-int
  664. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11 = 105
  665. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11 ideal-int
  666. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO = 127
  667. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163
  668. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
  669. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO ideal-int
  670. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4 = 195
  671. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4 ideal-int
  672. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_LINUX = 191
  673. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int
  674. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215
  675. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
  676. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS = 188
  677. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int
  678. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193
  679. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
  680. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802 = 6
  681. pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802 ideal-int
  682. pkg syscall (netbsd-arm64-cgo), const DLT_IPMB = 199
  683. pkg syscall (netbsd-arm64-cgo), const DLT_IPMB ideal-int
  684. pkg syscall (netbsd-arm64-cgo), const DLT_IPMB_LINUX = 209
  685. pkg syscall (netbsd-arm64-cgo), const DLT_IPMB_LINUX ideal-int
  686. pkg syscall (netbsd-arm64-cgo), const DLT_IPNET = 226
  687. pkg syscall (netbsd-arm64-cgo), const DLT_IPNET ideal-int
  688. pkg syscall (netbsd-arm64-cgo), const DLT_IP_OVER_FC = 122
  689. pkg syscall (netbsd-arm64-cgo), const DLT_IP_OVER_FC ideal-int
  690. pkg syscall (netbsd-arm64-cgo), const DLT_IPV4 = 228
  691. pkg syscall (netbsd-arm64-cgo), const DLT_IPV4 ideal-int
  692. pkg syscall (netbsd-arm64-cgo), const DLT_IPV6 = 229
  693. pkg syscall (netbsd-arm64-cgo), const DLT_IPV6 ideal-int
  694. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM1 = 137
  695. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM1 ideal-int
  696. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM2 = 135
  697. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM2 ideal-int
  698. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_CHDLC = 181
  699. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_CHDLC ideal-int
  700. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ES = 132
  701. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ES ideal-int
  702. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ETHER = 178
  703. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ETHER ideal-int
  704. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_FRELAY = 180
  705. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_FRELAY ideal-int
  706. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_GGSN = 133
  707. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_GGSN ideal-int
  708. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ISM = 194
  709. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ISM ideal-int
  710. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MFR = 134
  711. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MFR ideal-int
  712. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLFR = 131
  713. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLFR ideal-int
  714. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLPPP = 130
  715. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLPPP ideal-int
  716. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MONITOR = 164
  717. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MONITOR ideal-int
  718. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PIC_PEER = 174
  719. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int
  720. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPP = 179
  721. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPP ideal-int
  722. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE = 167
  723. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM = 168
  724. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
  725. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE ideal-int
  726. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_SERVICES = 136
  727. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_SERVICES ideal-int
  728. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ST = 200
  729. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ST ideal-int
  730. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_VP = 183
  731. pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_VP ideal-int
  732. pkg syscall (netbsd-arm64-cgo), const DLT_LAPB_WITH_DIR = 207
  733. pkg syscall (netbsd-arm64-cgo), const DLT_LAPB_WITH_DIR ideal-int
  734. pkg syscall (netbsd-arm64-cgo), const DLT_LAPD = 203
  735. pkg syscall (netbsd-arm64-cgo), const DLT_LAPD ideal-int
  736. pkg syscall (netbsd-arm64-cgo), const DLT_LIN = 212
  737. pkg syscall (netbsd-arm64-cgo), const DLT_LIN ideal-int
  738. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_EVDEV = 216
  739. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_EVDEV ideal-int
  740. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_IRDA = 144
  741. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_IRDA ideal-int
  742. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_LAPD = 177
  743. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_LAPD ideal-int
  744. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_SLL = 113
  745. pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_SLL ideal-int
  746. pkg syscall (netbsd-arm64-cgo), const DLT_LOOP = 108
  747. pkg syscall (netbsd-arm64-cgo), const DLT_LOOP ideal-int
  748. pkg syscall (netbsd-arm64-cgo), const DLT_LTALK = 114
  749. pkg syscall (netbsd-arm64-cgo), const DLT_LTALK ideal-int
  750. pkg syscall (netbsd-arm64-cgo), const DLT_MFR = 182
  751. pkg syscall (netbsd-arm64-cgo), const DLT_MFR ideal-int
  752. pkg syscall (netbsd-arm64-cgo), const DLT_MOST = 211
  753. pkg syscall (netbsd-arm64-cgo), const DLT_MOST ideal-int
  754. pkg syscall (netbsd-arm64-cgo), const DLT_MPLS = 219
  755. pkg syscall (netbsd-arm64-cgo), const DLT_MPLS ideal-int
  756. pkg syscall (netbsd-arm64-cgo), const DLT_MTP2 = 140
  757. pkg syscall (netbsd-arm64-cgo), const DLT_MTP2 ideal-int
  758. pkg syscall (netbsd-arm64-cgo), const DLT_MTP2_WITH_PHDR = 139
  759. pkg syscall (netbsd-arm64-cgo), const DLT_MTP2_WITH_PHDR ideal-int
  760. pkg syscall (netbsd-arm64-cgo), const DLT_MTP3 = 141
  761. pkg syscall (netbsd-arm64-cgo), const DLT_MTP3 ideal-int
  762. pkg syscall (netbsd-arm64-cgo), const DLT_NULL = 0
  763. pkg syscall (netbsd-arm64-cgo), const DLT_NULL ideal-int
  764. pkg syscall (netbsd-arm64-cgo), const DLT_PCI_EXP = 125
  765. pkg syscall (netbsd-arm64-cgo), const DLT_PCI_EXP ideal-int
  766. pkg syscall (netbsd-arm64-cgo), const DLT_PFLOG = 117
  767. pkg syscall (netbsd-arm64-cgo), const DLT_PFLOG ideal-int
  768. pkg syscall (netbsd-arm64-cgo), const DLT_PFSYNC = 18
  769. pkg syscall (netbsd-arm64-cgo), const DLT_PFSYNC ideal-int
  770. pkg syscall (netbsd-arm64-cgo), const DLT_PPI = 192
  771. pkg syscall (netbsd-arm64-cgo), const DLT_PPI ideal-int
  772. pkg syscall (netbsd-arm64-cgo), const DLT_PPP = 9
  773. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_BSDOS = 14
  774. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_BSDOS ideal-int
  775. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_ETHER = 51
  776. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_ETHER ideal-int
  777. pkg syscall (netbsd-arm64-cgo), const DLT_PPP ideal-int
  778. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_PPPD = 166
  779. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_PPPD ideal-int
  780. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_SERIAL = 50
  781. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_SERIAL ideal-int
  782. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_WITH_DIR = 204
  783. pkg syscall (netbsd-arm64-cgo), const DLT_PPP_WITH_DIR ideal-int
  784. pkg syscall (netbsd-arm64-cgo), const DLT_PRISM_HEADER = 119
  785. pkg syscall (netbsd-arm64-cgo), const DLT_PRISM_HEADER ideal-int
  786. pkg syscall (netbsd-arm64-cgo), const DLT_PRONET = 4
  787. pkg syscall (netbsd-arm64-cgo), const DLT_PRONET ideal-int
  788. pkg syscall (netbsd-arm64-cgo), const DLT_RAIF1 = 198
  789. pkg syscall (netbsd-arm64-cgo), const DLT_RAIF1 ideal-int
  790. pkg syscall (netbsd-arm64-cgo), const DLT_RAW = 12
  791. pkg syscall (netbsd-arm64-cgo), const DLT_RAWAF_MASK = 35913728
  792. pkg syscall (netbsd-arm64-cgo), const DLT_RAWAF_MASK ideal-int
  793. pkg syscall (netbsd-arm64-cgo), const DLT_RAW ideal-int
  794. pkg syscall (netbsd-arm64-cgo), const DLT_RIO = 124
  795. pkg syscall (netbsd-arm64-cgo), const DLT_RIO ideal-int
  796. pkg syscall (netbsd-arm64-cgo), const DLT_SCCP = 142
  797. pkg syscall (netbsd-arm64-cgo), const DLT_SCCP ideal-int
  798. pkg syscall (netbsd-arm64-cgo), const DLT_SITA = 196
  799. pkg syscall (netbsd-arm64-cgo), const DLT_SITA ideal-int
  800. pkg syscall (netbsd-arm64-cgo), const DLT_SLIP = 8
  801. pkg syscall (netbsd-arm64-cgo), const DLT_SLIP_BSDOS = 13
  802. pkg syscall (netbsd-arm64-cgo), const DLT_SLIP_BSDOS ideal-int
  803. pkg syscall (netbsd-arm64-cgo), const DLT_SLIP ideal-int
  804. pkg syscall (netbsd-arm64-cgo), const DLT_SUNATM = 123
  805. pkg syscall (netbsd-arm64-cgo), const DLT_SUNATM ideal-int
  806. pkg syscall (netbsd-arm64-cgo), const DLT_SYMANTEC_FIREWALL = 99
  807. pkg syscall (netbsd-arm64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int
  808. pkg syscall (netbsd-arm64-cgo), const DLT_TZSP = 128
  809. pkg syscall (netbsd-arm64-cgo), const DLT_TZSP ideal-int
  810. pkg syscall (netbsd-arm64-cgo), const DLT_USB = 186
  811. pkg syscall (netbsd-arm64-cgo), const DLT_USB ideal-int
  812. pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX = 189
  813. pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX ideal-int
  814. pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX_MMAPPED = 220
  815. pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int
  816. pkg syscall (netbsd-arm64-cgo), const DLT_WIHART = 223
  817. pkg syscall (netbsd-arm64-cgo), const DLT_WIHART ideal-int
  818. pkg syscall (netbsd-arm64-cgo), const DLT_X2E_SERIAL = 213
  819. pkg syscall (netbsd-arm64-cgo), const DLT_X2E_SERIAL ideal-int
  820. pkg syscall (netbsd-arm64-cgo), const DLT_X2E_XORAYA = 214
  821. pkg syscall (netbsd-arm64-cgo), const DLT_X2E_XORAYA ideal-int
  822. pkg syscall (netbsd-arm64-cgo), const DT_BLK = 6
  823. pkg syscall (netbsd-arm64-cgo), const DT_BLK ideal-int
  824. pkg syscall (netbsd-arm64-cgo), const DT_CHR = 2
  825. pkg syscall (netbsd-arm64-cgo), const DT_CHR ideal-int
  826. pkg syscall (netbsd-arm64-cgo), const DT_DIR = 4
  827. pkg syscall (netbsd-arm64-cgo), const DT_DIR ideal-int
  828. pkg syscall (netbsd-arm64-cgo), const DT_FIFO = 1
  829. pkg syscall (netbsd-arm64-cgo), const DT_FIFO ideal-int
  830. pkg syscall (netbsd-arm64-cgo), const DT_LNK = 10
  831. pkg syscall (netbsd-arm64-cgo), const DT_LNK ideal-int
  832. pkg syscall (netbsd-arm64-cgo), const DT_REG = 8
  833. pkg syscall (netbsd-arm64-cgo), const DT_REG ideal-int
  834. pkg syscall (netbsd-arm64-cgo), const DT_SOCK = 12
  835. pkg syscall (netbsd-arm64-cgo), const DT_SOCK ideal-int
  836. pkg syscall (netbsd-arm64-cgo), const DT_UNKNOWN = 0
  837. pkg syscall (netbsd-arm64-cgo), const DT_UNKNOWN ideal-int
  838. pkg syscall (netbsd-arm64-cgo), const DT_WHT = 14
  839. pkg syscall (netbsd-arm64-cgo), const DT_WHT ideal-int
  840. pkg syscall (netbsd-arm64-cgo), const E2BIG = 7
  841. pkg syscall (netbsd-arm64-cgo), const EACCES = 13
  842. pkg syscall (netbsd-arm64-cgo), const EADDRINUSE = 48
  843. pkg syscall (netbsd-arm64-cgo), const EADDRNOTAVAIL = 49
  844. pkg syscall (netbsd-arm64-cgo), const EAFNOSUPPORT = 47
  845. pkg syscall (netbsd-arm64-cgo), const EAGAIN = 35
  846. pkg syscall (netbsd-arm64-cgo), const EALREADY = 37
  847. pkg syscall (netbsd-arm64-cgo), const EAUTH = 80
  848. pkg syscall (netbsd-arm64-cgo), const EAUTH Errno
  849. pkg syscall (netbsd-arm64-cgo), const EBADF = 9
  850. pkg syscall (netbsd-arm64-cgo), const EBADMSG = 88
  851. pkg syscall (netbsd-arm64-cgo), const EBADMSG Errno
  852. pkg syscall (netbsd-arm64-cgo), const EBADRPC = 72
  853. pkg syscall (netbsd-arm64-cgo), const EBADRPC Errno
  854. pkg syscall (netbsd-arm64-cgo), const EBUSY = 16
  855. pkg syscall (netbsd-arm64-cgo), const ECANCELED = 87
  856. pkg syscall (netbsd-arm64-cgo), const ECHILD = 10
  857. pkg syscall (netbsd-arm64-cgo), const ECHO = 8
  858. pkg syscall (netbsd-arm64-cgo), const ECHOCTL = 64
  859. pkg syscall (netbsd-arm64-cgo), const ECHOCTL ideal-int
  860. pkg syscall (netbsd-arm64-cgo), const ECHOE = 2
  861. pkg syscall (netbsd-arm64-cgo), const ECHOE ideal-int
  862. pkg syscall (netbsd-arm64-cgo), const ECHO ideal-int
  863. pkg syscall (netbsd-arm64-cgo), const ECHOK = 4
  864. pkg syscall (netbsd-arm64-cgo), const ECHOKE = 1
  865. pkg syscall (netbsd-arm64-cgo), const ECHOKE ideal-int
  866. pkg syscall (netbsd-arm64-cgo), const ECHOK ideal-int
  867. pkg syscall (netbsd-arm64-cgo), const ECHONL = 16
  868. pkg syscall (netbsd-arm64-cgo), const ECHONL ideal-int
  869. pkg syscall (netbsd-arm64-cgo), const ECHOPRT = 32
  870. pkg syscall (netbsd-arm64-cgo), const ECHOPRT ideal-int
  871. pkg syscall (netbsd-arm64-cgo), const ECONNABORTED = 53
  872. pkg syscall (netbsd-arm64-cgo), const ECONNREFUSED = 61
  873. pkg syscall (netbsd-arm64-cgo), const ECONNRESET = 54
  874. pkg syscall (netbsd-arm64-cgo), const EDEADLK = 11
  875. pkg syscall (netbsd-arm64-cgo), const EDESTADDRREQ = 39
  876. pkg syscall (netbsd-arm64-cgo), const EDOM = 33
  877. pkg syscall (netbsd-arm64-cgo), const EDQUOT = 69
  878. pkg syscall (netbsd-arm64-cgo), const EEXIST = 17
  879. pkg syscall (netbsd-arm64-cgo), const EFAULT = 14
  880. pkg syscall (netbsd-arm64-cgo), const EFBIG = 27
  881. pkg syscall (netbsd-arm64-cgo), const EFTYPE = 79
  882. pkg syscall (netbsd-arm64-cgo), const EFTYPE Errno
  883. pkg syscall (netbsd-arm64-cgo), const EHOSTDOWN = 64
  884. pkg syscall (netbsd-arm64-cgo), const EHOSTUNREACH = 65
  885. pkg syscall (netbsd-arm64-cgo), const EIDRM = 82
  886. pkg syscall (netbsd-arm64-cgo), const EILSEQ = 85
  887. pkg syscall (netbsd-arm64-cgo), const EINPROGRESS = 36
  888. pkg syscall (netbsd-arm64-cgo), const EINTR = 4
  889. pkg syscall (netbsd-arm64-cgo), const EINVAL = 22
  890. pkg syscall (netbsd-arm64-cgo), const EIO = 5
  891. pkg syscall (netbsd-arm64-cgo), const EISCONN = 56
  892. pkg syscall (netbsd-arm64-cgo), const EISDIR = 21
  893. pkg syscall (netbsd-arm64-cgo), const ELAST = 96
  894. pkg syscall (netbsd-arm64-cgo), const ELAST Errno
  895. pkg syscall (netbsd-arm64-cgo), const ELOOP = 62
  896. pkg syscall (netbsd-arm64-cgo), const EMFILE = 24
  897. pkg syscall (netbsd-arm64-cgo), const EMLINK = 31
  898. pkg syscall (netbsd-arm64-cgo), const EMSGSIZE = 40
  899. pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX = 1
  900. pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX32 = 5
  901. pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX32 ideal-int
  902. pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX ideal-int
  903. pkg syscall (netbsd-arm64-cgo), const EMUL_MAXID = 6
  904. pkg syscall (netbsd-arm64-cgo), const EMUL_MAXID ideal-int
  905. pkg syscall (netbsd-arm64-cgo), const EMULTIHOP = 94
  906. pkg syscall (netbsd-arm64-cgo), const EMULTIHOP Errno
  907. pkg syscall (netbsd-arm64-cgo), const ENAMETOOLONG = 63
  908. pkg syscall (netbsd-arm64-cgo), const ENEEDAUTH = 81
  909. pkg syscall (netbsd-arm64-cgo), const ENEEDAUTH Errno
  910. pkg syscall (netbsd-arm64-cgo), const ENETDOWN = 50
  911. pkg syscall (netbsd-arm64-cgo), const ENETRESET = 52
  912. pkg syscall (netbsd-arm64-cgo), const ENETUNREACH = 51
  913. pkg syscall (netbsd-arm64-cgo), const ENFILE = 23
  914. pkg syscall (netbsd-arm64-cgo), const ENOATTR = 93
  915. pkg syscall (netbsd-arm64-cgo), const ENOATTR Errno
  916. pkg syscall (netbsd-arm64-cgo), const ENOBUFS = 55
  917. pkg syscall (netbsd-arm64-cgo), const ENODATA = 89
  918. pkg syscall (netbsd-arm64-cgo), const ENODATA Errno
  919. pkg syscall (netbsd-arm64-cgo), const ENODEV = 19
  920. pkg syscall (netbsd-arm64-cgo), const ENOEXEC = 8
  921. pkg syscall (netbsd-arm64-cgo), const ENOLCK = 77
  922. pkg syscall (netbsd-arm64-cgo), const ENOLINK = 95
  923. pkg syscall (netbsd-arm64-cgo), const ENOLINK Errno
  924. pkg syscall (netbsd-arm64-cgo), const ENOMEM = 12
  925. pkg syscall (netbsd-arm64-cgo), const ENOMSG = 83
  926. pkg syscall (netbsd-arm64-cgo), const ENOPROTOOPT = 42
  927. pkg syscall (netbsd-arm64-cgo), const ENOSPC = 28
  928. pkg syscall (netbsd-arm64-cgo), const ENOSR = 90
  929. pkg syscall (netbsd-arm64-cgo), const ENOSR Errno
  930. pkg syscall (netbsd-arm64-cgo), const ENOSTR = 91
  931. pkg syscall (netbsd-arm64-cgo), const ENOSTR Errno
  932. pkg syscall (netbsd-arm64-cgo), const ENOSYS = 78
  933. pkg syscall (netbsd-arm64-cgo), const ENOTBLK = 15
  934. pkg syscall (netbsd-arm64-cgo), const ENOTCONN = 57
  935. pkg syscall (netbsd-arm64-cgo), const ENOTDIR = 20
  936. pkg syscall (netbsd-arm64-cgo), const ENOTEMPTY = 66
  937. pkg syscall (netbsd-arm64-cgo), const ENOTSOCK = 38
  938. pkg syscall (netbsd-arm64-cgo), const ENOTSUP = 86
  939. pkg syscall (netbsd-arm64-cgo), const ENOTTY = 25
  940. pkg syscall (netbsd-arm64-cgo), const ENXIO = 6
  941. pkg syscall (netbsd-arm64-cgo), const EOPNOTSUPP = 45
  942. pkg syscall (netbsd-arm64-cgo), const EOVERFLOW = 84
  943. pkg syscall (netbsd-arm64-cgo), const EPERM = 1
  944. pkg syscall (netbsd-arm64-cgo), const EPFNOSUPPORT = 46
  945. pkg syscall (netbsd-arm64-cgo), const EPIPE = 32
  946. pkg syscall (netbsd-arm64-cgo), const EPROCLIM = 67
  947. pkg syscall (netbsd-arm64-cgo), const EPROCLIM Errno
  948. pkg syscall (netbsd-arm64-cgo), const EPROCUNAVAIL = 76
  949. pkg syscall (netbsd-arm64-cgo), const EPROCUNAVAIL Errno
  950. pkg syscall (netbsd-arm64-cgo), const EPROGMISMATCH = 75
  951. pkg syscall (netbsd-arm64-cgo), const EPROGMISMATCH Errno
  952. pkg syscall (netbsd-arm64-cgo), const EPROGUNAVAIL = 74
  953. pkg syscall (netbsd-arm64-cgo), const EPROGUNAVAIL Errno
  954. pkg syscall (netbsd-arm64-cgo), const EPROTO = 96
  955. pkg syscall (netbsd-arm64-cgo), const EPROTO Errno
  956. pkg syscall (netbsd-arm64-cgo), const EPROTONOSUPPORT = 43
  957. pkg syscall (netbsd-arm64-cgo), const EPROTOTYPE = 41
  958. pkg syscall (netbsd-arm64-cgo), const ERANGE = 34
  959. pkg syscall (netbsd-arm64-cgo), const EREMOTE = 71
  960. pkg syscall (netbsd-arm64-cgo), const EROFS = 30
  961. pkg syscall (netbsd-arm64-cgo), const ERPCMISMATCH = 73
  962. pkg syscall (netbsd-arm64-cgo), const ERPCMISMATCH Errno
  963. pkg syscall (netbsd-arm64-cgo), const ESHUTDOWN = 58
  964. pkg syscall (netbsd-arm64-cgo), const ESOCKTNOSUPPORT = 44
  965. pkg syscall (netbsd-arm64-cgo), const ESPIPE = 29
  966. pkg syscall (netbsd-arm64-cgo), const ESRCH = 3
  967. pkg syscall (netbsd-arm64-cgo), const ESTALE = 70
  968. pkg syscall (netbsd-arm64-cgo), const ETHER_ADDR_LEN = 6
  969. pkg syscall (netbsd-arm64-cgo), const ETHER_ADDR_LEN ideal-int
  970. pkg syscall (netbsd-arm64-cgo), const ETHERCAP_JUMBO_MTU = 4
  971. pkg syscall (netbsd-arm64-cgo), const ETHERCAP_JUMBO_MTU ideal-int
  972. pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_HWTAGGING = 2
  973. pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
  974. pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_MTU = 1
  975. pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_MTU ideal-int
  976. pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_LEN = 4
  977. pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_LEN ideal-int
  978. pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_BE = 79764918
  979. pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_BE ideal-int
  980. pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_LE = 3988292384
  981. pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_LE ideal-int
  982. pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN = 14
  983. pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN ideal-int
  984. pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN = 1518
  985. pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN ideal-int
  986. pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN_JUMBO = 9018
  987. pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
  988. pkg syscall (netbsd-arm64-cgo), const ETHERMIN = 46
  989. pkg syscall (netbsd-arm64-cgo), const ETHERMIN ideal-int
  990. pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN = 64
  991. pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN ideal-int
  992. pkg syscall (netbsd-arm64-cgo), const ETHERMTU = 1500
  993. pkg syscall (netbsd-arm64-cgo), const ETHERMTU ideal-int
  994. pkg syscall (netbsd-arm64-cgo), const ETHERMTU_JUMBO = 9000
  995. pkg syscall (netbsd-arm64-cgo), const ETHERMTU_JUMBO ideal-int
  996. pkg syscall (netbsd-arm64-cgo), const ETHER_PPPOE_ENCAP_LEN = 8
  997. pkg syscall (netbsd-arm64-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int
  998. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_8023 = 4
  999. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_8023 ideal-int
  1000. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AARP = 33011
  1001. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AARP ideal-int
  1002. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ACCTON = 33680
  1003. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ACCTON ideal-int
  1004. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AEONIC = 32822
  1005. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AEONIC ideal-int
  1006. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ALPHA = 33098
  1007. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ALPHA ideal-int
  1008. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMBER = 24584
  1009. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMBER ideal-int
  1010. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMOEBA = 33093
  1011. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMOEBA ideal-int
  1012. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLO = 33015
  1013. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLODOMAIN = 32793
  1014. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int
  1015. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLO ideal-int
  1016. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLETALK = 32923
  1017. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLETALK ideal-int
  1018. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLITEK = 32967
  1019. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLITEK ideal-int
  1020. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARGONAUT = 32826
  1021. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARGONAUT ideal-int
  1022. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARP = 2054
  1023. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARP ideal-int
  1024. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AT = 32923
  1025. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATALK = 32923
  1026. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATALK ideal-int
  1027. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AT ideal-int
  1028. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATOMIC = 34527
  1029. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATOMIC ideal-int
  1030. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATT = 32873
  1031. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATT ideal-int
  1032. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATTSTANFORD = 32776
  1033. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int
  1034. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AUTOPHON = 32874
  1035. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AUTOPHON ideal-int
  1036. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AXIS = 34902
  1037. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AXIS ideal-int
  1038. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BCLOOP = 36867
  1039. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BCLOOP ideal-int
  1040. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BOFL = 33026
  1041. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BOFL ideal-int
  1042. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CABLETRON = 28724
  1043. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CABLETRON ideal-int
  1044. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CHAOS = 2052
  1045. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CHAOS ideal-int
  1046. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMDESIGN = 32876
  1047. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMDESIGN ideal-int
  1048. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877
  1049. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int
  1050. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COUNTERPOINT = 32866
  1051. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
  1052. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUS = 32772
  1053. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUS ideal-int
  1054. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUSVLN = 32771
  1055. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUSVLN ideal-int
  1056. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DCA = 4660
  1057. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DCA ideal-int
  1058. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DDE = 32891
  1059. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DDE ideal-int
  1060. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DEBNI = 43690
  1061. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DEBNI ideal-int
  1062. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECAM = 32840
  1063. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECAM ideal-int
  1064. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECCUST = 24582
  1065. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECCUST ideal-int
  1066. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDIAG = 24581
  1067. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDIAG ideal-int
  1068. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDNS = 32828
  1069. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDNS ideal-int
  1070. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDTS = 32830
  1071. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDTS ideal-int
  1072. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECEXPER = 24576
  1073. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECEXPER ideal-int
  1074. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLAST = 32833
  1075. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLAST ideal-int
  1076. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLTM = 32831
  1077. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLTM ideal-int
  1078. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECMUMPS = 24585
  1079. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECMUMPS ideal-int
  1080. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECNETBIOS = 32832
  1081. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECNETBIOS ideal-int
  1082. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DELTACON = 34526
  1083. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DELTACON ideal-int
  1084. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DIDDLE = 17185
  1085. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DIDDLE ideal-int
  1086. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG1 = 1632
  1087. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG1 ideal-int
  1088. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG2 = 1633
  1089. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG2 ideal-int
  1090. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DN = 24579
  1091. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DN ideal-int
  1092. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DOGFIGHT = 6537
  1093. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DOGFIGHT ideal-int
  1094. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DSMD = 32825
  1095. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DSMD ideal-int
  1096. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ECMA = 2051
  1097. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ECMA ideal-int
  1098. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ENCRYPT = 32829
  1099. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ENCRYPT ideal-int
  1100. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ES = 32861
  1101. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ES ideal-int
  1102. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXCELAN = 32784
  1103. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXCELAN ideal-int
  1104. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXPERDATA = 32841
  1105. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXPERDATA ideal-int
  1106. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLIP = 33094
  1107. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLIP ideal-int
  1108. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLOWCONTROL = 34824
  1109. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int
  1110. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FRARP = 2056
  1111. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FRARP ideal-int
  1112. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_GENDYN = 32872
  1113. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_GENDYN ideal-int
  1114. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HAYES = 33072
  1115. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HAYES ideal-int
  1116. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HIPPI_FP = 33152
  1117. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HIPPI_FP ideal-int
  1118. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HITACHI = 34848
  1119. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HITACHI ideal-int
  1120. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HP = 32773
  1121. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HP ideal-int
  1122. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUP = 2560
  1123. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUPAT = 2561
  1124. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int
  1125. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUP ideal-int
  1126. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBL = 19522
  1127. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBLDIAG = 16972
  1128. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int
  1129. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBL ideal-int
  1130. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IP = 2048
  1131. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPAS = 34668
  1132. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPAS ideal-int
  1133. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IP ideal-int
  1134. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPV6 = 34525
  1135. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPV6 ideal-int
  1136. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPX = 33079
  1137. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPX ideal-int
  1138. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPXNEW = 32823
  1139. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPXNEW ideal-int
  1140. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_KALPANA = 34178
  1141. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_KALPANA ideal-int
  1142. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANBRIDGE = 32824
  1143. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANBRIDGE ideal-int
  1144. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANPROBE = 34952
  1145. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANPROBE ideal-int
  1146. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LAT = 24580
  1147. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LAT ideal-int
  1148. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LBACK = 36864
  1149. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LBACK ideal-int
  1150. pkg syscall (netbsd-arm64-cgo), const ETHER_TYPE_LEN = 2
  1151. pkg syscall (netbsd-arm64-cgo), const ETHER_TYPE_LEN ideal-int
  1152. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LITTLE = 32864
  1153. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LITTLE ideal-int
  1154. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOGICRAFT = 33096
  1155. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOGICRAFT ideal-int
  1156. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOOPBACK = 36864
  1157. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOOPBACK ideal-int
  1158. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MATRA = 32890
  1159. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MATRA ideal-int
  1160. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MAX = 65535
  1161. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MAX ideal-int
  1162. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MERIT = 32892
  1163. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MERIT ideal-int
  1164. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MICP = 34618
  1165. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MICP ideal-int
  1166. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPDL = 24577
  1167. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPDL ideal-int
  1168. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPRC = 24578
  1169. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPRC ideal-int
  1170. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOTOROLA = 33165
  1171. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOTOROLA ideal-int
  1172. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS = 34887
  1173. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS ideal-int
  1174. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST = 34888
  1175. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
  1176. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MUMPS = 33087
  1177. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MUMPS ideal-int
  1178. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCC = 15364
  1179. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCC ideal-int
  1180. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLAIM = 15369
  1181. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLAIM ideal-int
  1182. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLREQ = 15365
  1183. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLREQ ideal-int
  1184. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLRSP = 15366
  1185. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLRSP ideal-int
  1186. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCREQ = 15362
  1187. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCREQ ideal-int
  1188. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCRSP = 15363
  1189. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCRSP ideal-int
  1190. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDG = 15367
  1191. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDGB = 15368
  1192. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDGB ideal-int
  1193. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDG ideal-int
  1194. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDLTE = 15370
  1195. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDLTE ideal-int
  1196. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAR = 15372
  1197. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAR ideal-int
  1198. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAS = 15371
  1199. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAS ideal-int
  1200. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRST = 15373
  1201. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRST ideal-int
  1202. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPSCD = 15361
  1203. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPSCD ideal-int
  1204. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPVCD = 15360
  1205. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPVCD ideal-int
  1206. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBS = 2050
  1207. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBS ideal-int
  1208. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NCD = 33097
  1209. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NCD ideal-int
  1210. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NESTAR = 32774
  1211. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NESTAR ideal-int
  1212. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NETBEUI = 33169
  1213. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NETBEUI ideal-int
  1214. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NOVELL = 33080
  1215. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NOVELL ideal-int
  1216. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NS = 1536
  1217. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSAT = 1537
  1218. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSAT ideal-int
  1219. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSCOMPAT = 2055
  1220. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSCOMPAT ideal-int
  1221. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NS ideal-int
  1222. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NTRAILER = 16
  1223. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NTRAILER ideal-int
  1224. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9 = 28679
  1225. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9 ideal-int
  1226. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9NET = 28681
  1227. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9NET ideal-int
  1228. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PACER = 32966
  1229. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PACER ideal-int
  1230. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PAE = 34958
  1231. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PAE ideal-int
  1232. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PCS = 16962
  1233. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PCS ideal-int
  1234. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PLANNING = 32836
  1235. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PLANNING ideal-int
  1236. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPP = 34827
  1237. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPP ideal-int
  1238. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOE = 34916
  1239. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOEDISC = 34915
  1240. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOEDISC ideal-int
  1241. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOE ideal-int
  1242. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS = 28721
  1243. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS ideal-int
  1244. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP = 512
  1245. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT = 512
  1246. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT ideal-int
  1247. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP ideal-int
  1248. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RACAL = 28720
  1249. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RACAL ideal-int
  1250. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RATIONAL = 33104
  1251. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RATIONAL ideal-int
  1252. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RAWFR = 25945
  1253. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RAWFR ideal-int
  1254. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RCL = 6549
  1255. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RCL ideal-int
  1256. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RDP = 34617
  1257. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RDP ideal-int
  1258. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RETIX = 33010
  1259. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RETIX ideal-int
  1260. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_REVARP = 32821
  1261. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_REVARP ideal-int
  1262. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SCA = 24583
  1263. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SCA ideal-int
  1264. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECTRA = 34523
  1265. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECTRA ideal-int
  1266. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECUREDATA = 34669
  1267. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECUREDATA ideal-int
  1268. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_BOUNCE = 32790
  1269. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int
  1270. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_DIAG = 32787
  1271. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_DIAG ideal-int
  1272. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SGITW = 33150
  1273. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SGITW ideal-int
  1274. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_NETGAMES = 32788
  1275. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int
  1276. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_RESV = 32789
  1277. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_RESV ideal-int
  1278. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SIMNET = 21000
  1279. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SIMNET ideal-int
  1280. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SLOWPROTOCOLS = 34825
  1281. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int
  1282. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNA = 32981
  1283. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNA ideal-int
  1284. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNMP = 33100
  1285. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNMP ideal-int
  1286. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SONIX = 64245
  1287. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SONIX ideal-int
  1288. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPIDER = 32927
  1289. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPIDER ideal-int
  1290. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPRITE = 1280
  1291. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPRITE ideal-int
  1292. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_STP = 33153
  1293. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_STP ideal-int
  1294. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARIS = 33067
  1295. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARIS ideal-int
  1296. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARISMC = 34091
  1297. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARISMC ideal-int
  1298. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPCOMP = 34667
  1299. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPCOMP ideal-int
  1300. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPSM = 36866
  1301. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPSM ideal-int
  1302. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TEC = 33103
  1303. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TEC ideal-int
  1304. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TIGAN = 32815
  1305. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TIGAN ideal-int
  1306. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRAIL = 4096
  1307. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRAIL ideal-int
  1308. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRANSETHER = 25944
  1309. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRANSETHER ideal-int
  1310. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TYMSHARE = 32814
  1311. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TYMSHARE ideal-int
  1312. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBBST = 28677
  1313. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBBST ideal-int
  1314. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDEBUG = 2304
  1315. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDEBUG ideal-int
  1316. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDIAGLOOP = 28674
  1317. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int
  1318. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDL = 28672
  1319. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDL ideal-int
  1320. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNIU = 28673
  1321. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNIU ideal-int
  1322. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNMC = 28675
  1323. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNMC ideal-int
  1324. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VALID = 5632
  1325. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VALID ideal-int
  1326. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VARIAN = 32989
  1327. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VARIAN ideal-int
  1328. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VAXELN = 32827
  1329. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VAXELN ideal-int
  1330. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEECO = 32871
  1331. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEECO ideal-int
  1332. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEXP = 32859
  1333. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEXP ideal-int
  1334. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VGLAB = 33073
  1335. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VGLAB ideal-int
  1336. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINES = 2989
  1337. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESECHO = 2991
  1338. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESECHO ideal-int
  1339. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINES ideal-int
  1340. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESLOOP = 2990
  1341. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESLOOP ideal-int
  1342. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VITAL = 65280
  1343. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VITAL ideal-int
  1344. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLAN = 33024
  1345. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLAN ideal-int
  1346. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLTLMAN = 32896
  1347. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLTLMAN ideal-int
  1348. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VPROD = 32860
  1349. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VPROD ideal-int
  1350. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VURESERVED = 33095
  1351. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VURESERVED ideal-int
  1352. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WATERLOO = 33072
  1353. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WATERLOO ideal-int
  1354. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WELLFLEET = 33027
  1355. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WELLFLEET ideal-int
  1356. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X25 = 2053
  1357. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X25 ideal-int
  1358. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X75 = 2049
  1359. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X75 ideal-int
  1360. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XNSSM = 36865
  1361. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XNSSM ideal-int
  1362. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XTP = 33149
  1363. pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XTP ideal-int
  1364. pkg syscall (netbsd-arm64-cgo), const ETHER_VLAN_ENCAP_LEN = 4
  1365. pkg syscall (netbsd-arm64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int
  1366. pkg syscall (netbsd-arm64-cgo), const ETIME = 92
  1367. pkg syscall (netbsd-arm64-cgo), const ETIMEDOUT = 60
  1368. pkg syscall (netbsd-arm64-cgo), const ETIME Errno
  1369. pkg syscall (netbsd-arm64-cgo), const ETOOMANYREFS = 59
  1370. pkg syscall (netbsd-arm64-cgo), const ETXTBSY = 26
  1371. pkg syscall (netbsd-arm64-cgo), const EUSERS = 68
  1372. pkg syscall (netbsd-arm64-cgo), const EV_ADD = 1
  1373. pkg syscall (netbsd-arm64-cgo), const EV_ADD ideal-int
  1374. pkg syscall (netbsd-arm64-cgo), const EV_CLEAR = 32
  1375. pkg syscall (netbsd-arm64-cgo), const EV_CLEAR ideal-int
  1376. pkg syscall (netbsd-arm64-cgo), const EV_DELETE = 2
  1377. pkg syscall (netbsd-arm64-cgo), const EV_DELETE ideal-int
  1378. pkg syscall (netbsd-arm64-cgo), const EV_DISABLE = 8
  1379. pkg syscall (netbsd-arm64-cgo), const EV_DISABLE ideal-int
  1380. pkg syscall (netbsd-arm64-cgo), const EV_ENABLE = 4
  1381. pkg syscall (netbsd-arm64-cgo), const EV_ENABLE ideal-int
  1382. pkg syscall (netbsd-arm64-cgo), const EV_EOF = 32768
  1383. pkg syscall (netbsd-arm64-cgo), const EV_EOF ideal-int
  1384. pkg syscall (netbsd-arm64-cgo), const EV_ERROR = 16384
  1385. pkg syscall (netbsd-arm64-cgo), const EV_ERROR ideal-int
  1386. pkg syscall (netbsd-arm64-cgo), const EVFILT_AIO = 2
  1387. pkg syscall (netbsd-arm64-cgo), const EVFILT_AIO ideal-int
  1388. pkg syscall (netbsd-arm64-cgo), const EVFILT_PROC = 4
  1389. pkg syscall (netbsd-arm64-cgo), const EVFILT_PROC ideal-int
  1390. pkg syscall (netbsd-arm64-cgo), const EVFILT_READ = 0
  1391. pkg syscall (netbsd-arm64-cgo), const EVFILT_READ ideal-int
  1392. pkg syscall (netbsd-arm64-cgo), const EVFILT_SIGNAL = 5
  1393. pkg syscall (netbsd-arm64-cgo), const EVFILT_SIGNAL ideal-int
  1394. pkg syscall (netbsd-arm64-cgo), const EVFILT_SYSCOUNT = 7
  1395. pkg syscall (netbsd-arm64-cgo), const EVFILT_SYSCOUNT ideal-int
  1396. pkg syscall (netbsd-arm64-cgo), const EVFILT_TIMER = 6
  1397. pkg syscall (netbsd-arm64-cgo), const EVFILT_TIMER ideal-int
  1398. pkg syscall (netbsd-arm64-cgo), const EVFILT_VNODE = 3
  1399. pkg syscall (netbsd-arm64-cgo), const EVFILT_VNODE ideal-int
  1400. pkg syscall (netbsd-arm64-cgo), const EVFILT_WRITE = 1
  1401. pkg syscall (netbsd-arm64-cgo), const EVFILT_WRITE ideal-int
  1402. pkg syscall (netbsd-arm64-cgo), const EV_FLAG1 = 8192
  1403. pkg syscall (netbsd-arm64-cgo), const EV_FLAG1 ideal-int
  1404. pkg syscall (netbsd-arm64-cgo), const EV_ONESHOT = 16
  1405. pkg syscall (netbsd-arm64-cgo), const EV_ONESHOT ideal-int
  1406. pkg syscall (netbsd-arm64-cgo), const EV_SYSFLAGS = 61440
  1407. pkg syscall (netbsd-arm64-cgo), const EV_SYSFLAGS ideal-int
  1408. pkg syscall (netbsd-arm64-cgo), const EWOULDBLOCK = 35
  1409. pkg syscall (netbsd-arm64-cgo), const EXDEV = 18
  1410. pkg syscall (netbsd-arm64-cgo), const EXTA = 19200
  1411. pkg syscall (netbsd-arm64-cgo), const EXTA ideal-int
  1412. pkg syscall (netbsd-arm64-cgo), const EXTB = 38400
  1413. pkg syscall (netbsd-arm64-cgo), const EXTB ideal-int
  1414. pkg syscall (netbsd-arm64-cgo), const EXTPROC = 2048
  1415. pkg syscall (netbsd-arm64-cgo), const EXTPROC ideal-int
  1416. pkg syscall (netbsd-arm64-cgo), const F_CLOSEM = 10
  1417. pkg syscall (netbsd-arm64-cgo), const F_CLOSEM ideal-int
  1418. pkg syscall (netbsd-arm64-cgo), const FD_CLOEXEC = 1
  1419. pkg syscall (netbsd-arm64-cgo), const FD_CLOEXEC ideal-int
  1420. pkg syscall (netbsd-arm64-cgo), const FD_SETSIZE = 256
  1421. pkg syscall (netbsd-arm64-cgo), const FD_SETSIZE ideal-int
  1422. pkg syscall (netbsd-arm64-cgo), const F_DUPFD = 0
  1423. pkg syscall (netbsd-arm64-cgo), const F_DUPFD_CLOEXEC = 12
  1424. pkg syscall (netbsd-arm64-cgo), const F_DUPFD_CLOEXEC ideal-int
  1425. pkg syscall (netbsd-arm64-cgo), const F_DUPFD ideal-int
  1426. pkg syscall (netbsd-arm64-cgo), const F_FSCTL = -2147483648
  1427. pkg syscall (netbsd-arm64-cgo), const F_FSCTL ideal-int
  1428. pkg syscall (netbsd-arm64-cgo), const F_FSDIRMASK = 1879048192
  1429. pkg syscall (netbsd-arm64-cgo), const F_FSDIRMASK ideal-int
  1430. pkg syscall (netbsd-arm64-cgo), const F_FSIN = 268435456
  1431. pkg syscall (netbsd-arm64-cgo), const F_FSIN ideal-int
  1432. pkg syscall (netbsd-arm64-cgo), const F_FSINOUT = 805306368
  1433. pkg syscall (netbsd-arm64-cgo), const F_FSINOUT ideal-int
  1434. pkg syscall (netbsd-arm64-cgo), const F_FSOUT = 536870912
  1435. pkg syscall (netbsd-arm64-cgo), const F_FSOUT ideal-int
  1436. pkg syscall (netbsd-arm64-cgo), const F_FSPRIV = 32768
  1437. pkg syscall (netbsd-arm64-cgo), const F_FSPRIV ideal-int
  1438. pkg syscall (netbsd-arm64-cgo), const F_FSVOID = 1073741824
  1439. pkg syscall (netbsd-arm64-cgo), const F_FSVOID ideal-int
  1440. pkg syscall (netbsd-arm64-cgo), const F_GETFD = 1
  1441. pkg syscall (netbsd-arm64-cgo), const F_GETFD ideal-int
  1442. pkg syscall (netbsd-arm64-cgo), const F_GETFL = 3
  1443. pkg syscall (netbsd-arm64-cgo), const F_GETFL ideal-int
  1444. pkg syscall (netbsd-arm64-cgo), const F_GETLK = 7
  1445. pkg syscall (netbsd-arm64-cgo), const F_GETLK ideal-int
  1446. pkg syscall (netbsd-arm64-cgo), const F_GETNOSIGPIPE = 13
  1447. pkg syscall (netbsd-arm64-cgo), const F_GETNOSIGPIPE ideal-int
  1448. pkg syscall (netbsd-arm64-cgo), const F_GETOWN = 5
  1449. pkg syscall (netbsd-arm64-cgo), const F_GETOWN ideal-int
  1450. pkg syscall (netbsd-arm64-cgo), const FLUSHO = 8388608
  1451. pkg syscall (netbsd-arm64-cgo), const FLUSHO ideal-int
  1452. pkg syscall (netbsd-arm64-cgo), const F_MAXFD = 11
  1453. pkg syscall (netbsd-arm64-cgo), const F_MAXFD ideal-int
  1454. pkg syscall (netbsd-arm64-cgo), const F_OK = 0
  1455. pkg syscall (netbsd-arm64-cgo), const F_OK ideal-int
  1456. pkg syscall (netbsd-arm64-cgo), const F_PARAM_MASK = 4095
  1457. pkg syscall (netbsd-arm64-cgo), const F_PARAM_MASK ideal-int
  1458. pkg syscall (netbsd-arm64-cgo), const F_PARAM_MAX = 4095
  1459. pkg syscall (netbsd-arm64-cgo), const F_PARAM_MAX ideal-int
  1460. pkg syscall (netbsd-arm64-cgo), const F_RDLCK = 1
  1461. pkg syscall (netbsd-arm64-cgo), const F_RDLCK ideal-int
  1462. pkg syscall (netbsd-arm64-cgo), const F_SETFD = 2
  1463. pkg syscall (netbsd-arm64-cgo), const F_SETFD ideal-int
  1464. pkg syscall (netbsd-arm64-cgo), const F_SETFL = 4
  1465. pkg syscall (netbsd-arm64-cgo), const F_SETFL ideal-int
  1466. pkg syscall (netbsd-arm64-cgo), const F_SETLK = 8
  1467. pkg syscall (netbsd-arm64-cgo), const F_SETLK ideal-int
  1468. pkg syscall (netbsd-arm64-cgo), const F_SETLKW = 9
  1469. pkg syscall (netbsd-arm64-cgo), const F_SETLKW ideal-int
  1470. pkg syscall (netbsd-arm64-cgo), const F_SETNOSIGPIPE = 14
  1471. pkg syscall (netbsd-arm64-cgo), const F_SETNOSIGPIPE ideal-int
  1472. pkg syscall (netbsd-arm64-cgo), const F_SETOWN = 6
  1473. pkg syscall (netbsd-arm64-cgo), const F_SETOWN ideal-int
  1474. pkg syscall (netbsd-arm64-cgo), const F_UNLCK = 2
  1475. pkg syscall (netbsd-arm64-cgo), const F_UNLCK ideal-int
  1476. pkg syscall (netbsd-arm64-cgo), const F_WRLCK = 3
  1477. pkg syscall (netbsd-arm64-cgo), const F_WRLCK ideal-int
  1478. pkg syscall (netbsd-arm64-cgo), const HUPCL = 16384
  1479. pkg syscall (netbsd-arm64-cgo), const HUPCL ideal-int
  1480. pkg syscall (netbsd-arm64-cgo), const ICANON = 256
  1481. pkg syscall (netbsd-arm64-cgo), const ICANON ideal-int
  1482. pkg syscall (netbsd-arm64-cgo), const ICMP6_FILTER = 18
  1483. pkg syscall (netbsd-arm64-cgo), const ICMP6_FILTER ideal-int
  1484. pkg syscall (netbsd-arm64-cgo), const ICRNL = 256
  1485. pkg syscall (netbsd-arm64-cgo), const ICRNL ideal-int
  1486. pkg syscall (netbsd-arm64-cgo), const IEXTEN = 1024
  1487. pkg syscall (netbsd-arm64-cgo), const IEXTEN ideal-int
  1488. pkg syscall (netbsd-arm64-cgo), const IFAN_ARRIVAL = 0
  1489. pkg syscall (netbsd-arm64-cgo), const IFAN_ARRIVAL ideal-int
  1490. pkg syscall (netbsd-arm64-cgo), const IFAN_DEPARTURE = 1
  1491. pkg syscall (netbsd-arm64-cgo), const IFAN_DEPARTURE ideal-int
  1492. pkg syscall (netbsd-arm64-cgo), const IFA_ROUTE = 1
  1493. pkg syscall (netbsd-arm64-cgo), const IFA_ROUTE ideal-int
  1494. pkg syscall (netbsd-arm64-cgo), const IFF_ALLMULTI = 512
  1495. pkg syscall (netbsd-arm64-cgo), const IFF_ALLMULTI ideal-int
  1496. pkg syscall (netbsd-arm64-cgo), const IFF_CANTCHANGE = 36690
  1497. pkg syscall (netbsd-arm64-cgo), const IFF_CANTCHANGE ideal-int
  1498. pkg syscall (netbsd-arm64-cgo), const IFF_DEBUG = 4
  1499. pkg syscall (netbsd-arm64-cgo), const IFF_DEBUG ideal-int
  1500. pkg syscall (netbsd-arm64-cgo), const IFF_LINK0 = 4096
  1501. pkg syscall (netbsd-arm64-cgo), const IFF_LINK0 ideal-int
  1502. pkg syscall (netbsd-arm64-cgo), const IFF_LINK1 = 8192
  1503. pkg syscall (netbsd-arm64-cgo), const IFF_LINK1 ideal-int
  1504. pkg syscall (netbsd-arm64-cgo), const IFF_LINK2 = 16384
  1505. pkg syscall (netbsd-arm64-cgo), const IFF_LINK2 ideal-int
  1506. pkg syscall (netbsd-arm64-cgo), const IFF_LOOPBACK = 8
  1507. pkg syscall (netbsd-arm64-cgo), const IFF_MULTICAST = 32768
  1508. pkg syscall (netbsd-arm64-cgo), const IFF_NOARP = 128
  1509. pkg syscall (netbsd-arm64-cgo), const IFF_NOARP ideal-int
  1510. pkg syscall (netbsd-arm64-cgo), const IFF_NOTRAILERS = 32
  1511. pkg syscall (netbsd-arm64-cgo), const IFF_NOTRAILERS ideal-int
  1512. pkg syscall (netbsd-arm64-cgo), const IFF_OACTIVE = 1024
  1513. pkg syscall (netbsd-arm64-cgo), const IFF_OACTIVE ideal-int
  1514. pkg syscall (netbsd-arm64-cgo), const IFF_POINTOPOINT = 16
  1515. pkg syscall (netbsd-arm64-cgo), const IFF_POINTOPOINT ideal-int
  1516. pkg syscall (netbsd-arm64-cgo), const IFF_PROMISC = 256
  1517. pkg syscall (netbsd-arm64-cgo), const IFF_PROMISC ideal-int
  1518. pkg syscall (netbsd-arm64-cgo), const IFF_RUNNING = 64
  1519. pkg syscall (netbsd-arm64-cgo), const IFF_RUNNING ideal-int
  1520. pkg syscall (netbsd-arm64-cgo), const IFF_SIMPLEX = 2048
  1521. pkg syscall (netbsd-arm64-cgo), const IFF_SIMPLEX ideal-int
  1522. pkg syscall (netbsd-arm64-cgo), const IFNAMSIZ = 16
  1523. pkg syscall (netbsd-arm64-cgo), const IFNAMSIZ ideal-int
  1524. pkg syscall (netbsd-arm64-cgo), const IFT_1822 = 2
  1525. pkg syscall (netbsd-arm64-cgo), const IFT_1822 ideal-int
  1526. pkg syscall (netbsd-arm64-cgo), const IFT_A12MPPSWITCH = 130
  1527. pkg syscall (netbsd-arm64-cgo), const IFT_A12MPPSWITCH ideal-int
  1528. pkg syscall (netbsd-arm64-cgo), const IFT_AAL2 = 187
  1529. pkg syscall (netbsd-arm64-cgo), const IFT_AAL2 ideal-int
  1530. pkg syscall (netbsd-arm64-cgo), const IFT_AAL5 = 49
  1531. pkg syscall (netbsd-arm64-cgo), const IFT_AAL5 ideal-int
  1532. pkg syscall (netbsd-arm64-cgo), const IFT_ADSL = 94
  1533. pkg syscall (netbsd-arm64-cgo), const IFT_ADSL ideal-int
  1534. pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8023 = 59
  1535. pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8023 ideal-int
  1536. pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8025 = 60
  1537. pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8025 ideal-int
  1538. pkg syscall (netbsd-arm64-cgo), const IFT_ARAP = 88
  1539. pkg syscall (netbsd-arm64-cgo), const IFT_ARAP ideal-int
  1540. pkg syscall (netbsd-arm64-cgo), const IFT_ARCNET = 35
  1541. pkg syscall (netbsd-arm64-cgo), const IFT_ARCNET ideal-int
  1542. pkg syscall (netbsd-arm64-cgo), const IFT_ARCNETPLUS = 36
  1543. pkg syscall (netbsd-arm64-cgo), const IFT_ARCNETPLUS ideal-int
  1544. pkg syscall (netbsd-arm64-cgo), const IFT_ASYNC = 84
  1545. pkg syscall (netbsd-arm64-cgo), const IFT_ASYNC ideal-int
  1546. pkg syscall (netbsd-arm64-cgo), const IFT_ATM = 37
  1547. pkg syscall (netbsd-arm64-cgo), const IFT_ATMDXI = 105
  1548. pkg syscall (netbsd-arm64-cgo), const IFT_ATMDXI ideal-int
  1549. pkg syscall (netbsd-arm64-cgo), const IFT_ATMFUNI = 106
  1550. pkg syscall (netbsd-arm64-cgo), const IFT_ATMFUNI ideal-int
  1551. pkg syscall (netbsd-arm64-cgo), const IFT_ATM ideal-int
  1552. pkg syscall (netbsd-arm64-cgo), const IFT_ATMIMA = 107
  1553. pkg syscall (netbsd-arm64-cgo), const IFT_ATMIMA ideal-int
  1554. pkg syscall (netbsd-arm64-cgo), const IFT_ATMLOGICAL = 80
  1555. pkg syscall (netbsd-arm64-cgo), const IFT_ATMLOGICAL ideal-int
  1556. pkg syscall (netbsd-arm64-cgo), const IFT_ATMRADIO = 189
  1557. pkg syscall (netbsd-arm64-cgo), const IFT_ATMRADIO ideal-int
  1558. pkg syscall (netbsd-arm64-cgo), const IFT_ATMSUBINTERFACE = 134
  1559. pkg syscall (netbsd-arm64-cgo), const IFT_ATMSUBINTERFACE ideal-int
  1560. pkg syscall (netbsd-arm64-cgo), const IFT_ATMVCIENDPT = 194
  1561. pkg syscall (netbsd-arm64-cgo), const IFT_ATMVCIENDPT ideal-int
  1562. pkg syscall (netbsd-arm64-cgo), const IFT_ATMVIRTUAL = 149
  1563. pkg syscall (netbsd-arm64-cgo), const IFT_ATMVIRTUAL ideal-int
  1564. pkg syscall (netbsd-arm64-cgo), const IFT_BGPPOLICYACCOUNTING = 162
  1565. pkg syscall (netbsd-arm64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int
  1566. pkg syscall (netbsd-arm64-cgo), const IFT_BRIDGE = 209
  1567. pkg syscall (netbsd-arm64-cgo), const IFT_BRIDGE ideal-int
  1568. pkg syscall (netbsd-arm64-cgo), const IFT_BSC = 83
  1569. pkg syscall (netbsd-arm64-cgo), const IFT_BSC ideal-int
  1570. pkg syscall (netbsd-arm64-cgo), const IFT_CARP = 248
  1571. pkg syscall (netbsd-arm64-cgo), const IFT_CARP ideal-int
  1572. pkg syscall (netbsd-arm64-cgo), const IFT_CCTEMUL = 61
  1573. pkg syscall (netbsd-arm64-cgo), const IFT_CCTEMUL ideal-int
  1574. pkg syscall (netbsd-arm64-cgo), const IFT_CEPT = 19
  1575. pkg syscall (netbsd-arm64-cgo), const IFT_CEPT ideal-int
  1576. pkg syscall (netbsd-arm64-cgo), const IFT_CES = 133
  1577. pkg syscall (netbsd-arm64-cgo), const IFT_CES ideal-int
  1578. pkg syscall (netbsd-arm64-cgo), const IFT_CHANNEL = 70
  1579. pkg syscall (netbsd-arm64-cgo), const IFT_CHANNEL ideal-int
  1580. pkg syscall (netbsd-arm64-cgo), const IFT_CNR = 85
  1581. pkg syscall (netbsd-arm64-cgo), const IFT_CNR ideal-int
  1582. pkg syscall (netbsd-arm64-cgo), const IFT_COFFEE = 132
  1583. pkg syscall (netbsd-arm64-cgo), const IFT_COFFEE ideal-int
  1584. pkg syscall (netbsd-arm64-cgo), const IFT_COMPOSITELINK = 155
  1585. pkg syscall (netbsd-arm64-cgo), const IFT_COMPOSITELINK ideal-int
  1586. pkg syscall (netbsd-arm64-cgo), const IFT_DCN = 141
  1587. pkg syscall (netbsd-arm64-cgo), const IFT_DCN ideal-int
  1588. pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALPOWERLINE = 138
  1589. pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALPOWERLINE ideal-int
  1590. pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186
  1591. pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
  1592. pkg syscall (netbsd-arm64-cgo), const IFT_DLSW = 74
  1593. pkg syscall (netbsd-arm64-cgo), const IFT_DLSW ideal-int
  1594. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128
  1595. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int
  1596. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEMACLAYER = 127
  1597. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int
  1598. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAM = 129
  1599. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205
  1600. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
  1601. pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int
  1602. pkg syscall (netbsd-arm64-cgo), const IFT_DS0 = 81
  1603. pkg syscall (netbsd-arm64-cgo), const IFT_DS0BUNDLE = 82
  1604. pkg syscall (netbsd-arm64-cgo), const IFT_DS0BUNDLE ideal-int
  1605. pkg syscall (netbsd-arm64-cgo), const IFT_DS0 ideal-int
  1606. pkg syscall (netbsd-arm64-cgo), const IFT_DS1FDL = 170
  1607. pkg syscall (netbsd-arm64-cgo), const IFT_DS1FDL ideal-int
  1608. pkg syscall (netbsd-arm64-cgo), const IFT_DS3 = 30
  1609. pkg syscall (netbsd-arm64-cgo), const IFT_DS3 ideal-int
  1610. pkg syscall (netbsd-arm64-cgo), const IFT_DTM = 140
  1611. pkg syscall (netbsd-arm64-cgo), const IFT_DTM ideal-int
  1612. pkg syscall (netbsd-arm64-cgo), const IFT_DVBASILN = 172
  1613. pkg syscall (netbsd-arm64-cgo), const IFT_DVBASILN ideal-int
  1614. pkg syscall (netbsd-arm64-cgo), const IFT_DVBASIOUT = 173
  1615. pkg syscall (netbsd-arm64-cgo), const IFT_DVBASIOUT ideal-int
  1616. pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCDOWNSTREAM = 147
  1617. pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int
  1618. pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCMACLAYER = 146
  1619. pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCMACLAYER ideal-int
  1620. pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCUPSTREAM = 148
  1621. pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCUPSTREAM ideal-int
  1622. pkg syscall (netbsd-arm64-cgo), const IFT_ECONET = 206
  1623. pkg syscall (netbsd-arm64-cgo), const IFT_ECONET ideal-int
  1624. pkg syscall (netbsd-arm64-cgo), const IFT_EON = 25
  1625. pkg syscall (netbsd-arm64-cgo), const IFT_EON ideal-int
  1626. pkg syscall (netbsd-arm64-cgo), const IFT_EPLRS = 87
  1627. pkg syscall (netbsd-arm64-cgo), const IFT_EPLRS ideal-int
  1628. pkg syscall (netbsd-arm64-cgo), const IFT_ESCON = 73
  1629. pkg syscall (netbsd-arm64-cgo), const IFT_ESCON ideal-int
  1630. pkg syscall (netbsd-arm64-cgo), const IFT_ETHER = 6
  1631. pkg syscall (netbsd-arm64-cgo), const IFT_ETHER ideal-int
  1632. pkg syscall (netbsd-arm64-cgo), const IFT_FAITH = 242
  1633. pkg syscall (netbsd-arm64-cgo), const IFT_FAITH ideal-int
  1634. pkg syscall (netbsd-arm64-cgo), const IFT_FAST = 125
  1635. pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHER = 62
  1636. pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHERFX = 69
  1637. pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHERFX ideal-int
  1638. pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHER ideal-int
  1639. pkg syscall (netbsd-arm64-cgo), const IFT_FAST ideal-int
  1640. pkg syscall (netbsd-arm64-cgo), const IFT_FDDI = 15
  1641. pkg syscall (netbsd-arm64-cgo), const IFT_FDDI ideal-int
  1642. pkg syscall (netbsd-arm64-cgo), const IFT_FIBRECHANNEL = 56
  1643. pkg syscall (netbsd-arm64-cgo), const IFT_FIBRECHANNEL ideal-int
  1644. pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58
  1645. pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int
  1646. pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYMPI = 92
  1647. pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYMPI ideal-int
  1648. pkg syscall (netbsd-arm64-cgo), const IFT_FRDLCIENDPT = 193
  1649. pkg syscall (netbsd-arm64-cgo), const IFT_FRDLCIENDPT ideal-int
  1650. pkg syscall (netbsd-arm64-cgo), const IFT_FRELAY = 32
  1651. pkg syscall (netbsd-arm64-cgo), const IFT_FRELAYDCE = 44
  1652. pkg syscall (netbsd-arm64-cgo), const IFT_FRELAYDCE ideal-int
  1653. pkg syscall (netbsd-arm64-cgo), const IFT_FRELAY ideal-int
  1654. pkg syscall (netbsd-arm64-cgo), const IFT_FRF16MFRBUNDLE = 163
  1655. pkg syscall (netbsd-arm64-cgo), const IFT_FRF16MFRBUNDLE ideal-int
  1656. pkg syscall (netbsd-arm64-cgo), const IFT_FRFORWARD = 158
  1657. pkg syscall (netbsd-arm64-cgo), const IFT_FRFORWARD ideal-int
  1658. pkg syscall (netbsd-arm64-cgo), const IFT_G703AT2MB = 67
  1659. pkg syscall (netbsd-arm64-cgo), const IFT_G703AT2MB ideal-int
  1660. pkg syscall (netbsd-arm64-cgo), const IFT_G703AT64K = 66
  1661. pkg syscall (netbsd-arm64-cgo), const IFT_G703AT64K ideal-int
  1662. pkg syscall (netbsd-arm64-cgo), const IFT_GIF = 240
  1663. pkg syscall (netbsd-arm64-cgo), const IFT_GIF ideal-int
  1664. pkg syscall (netbsd-arm64-cgo), const IFT_GIGABITETHERNET = 117
  1665. pkg syscall (netbsd-arm64-cgo), const IFT_GIGABITETHERNET ideal-int
  1666. pkg syscall (netbsd-arm64-cgo), const IFT_GR303IDT = 178
  1667. pkg syscall (netbsd-arm64-cgo), const IFT_GR303IDT ideal-int
  1668. pkg syscall (netbsd-arm64-cgo), const IFT_GR303RDT = 177
  1669. pkg syscall (netbsd-arm64-cgo), const IFT_GR303RDT ideal-int
  1670. pkg syscall (netbsd-arm64-cgo), const IFT_H323GATEKEEPER = 164
  1671. pkg syscall (netbsd-arm64-cgo), const IFT_H323GATEKEEPER ideal-int
  1672. pkg syscall (netbsd-arm64-cgo), const IFT_H323PROXY = 165
  1673. pkg syscall (netbsd-arm64-cgo), const IFT_H323PROXY ideal-int
  1674. pkg syscall (netbsd-arm64-cgo), const IFT_HDH1822 = 3
  1675. pkg syscall (netbsd-arm64-cgo), const IFT_HDH1822 ideal-int
  1676. pkg syscall (netbsd-arm64-cgo), const IFT_HDLC = 118
  1677. pkg syscall (netbsd-arm64-cgo), const IFT_HDLC ideal-int
  1678. pkg syscall (netbsd-arm64-cgo), const IFT_HDSL2 = 168
  1679. pkg syscall (netbsd-arm64-cgo), const IFT_HDSL2 ideal-int
  1680. pkg syscall (netbsd-arm64-cgo), const IFT_HIPERLAN2 = 183
  1681. pkg syscall (netbsd-arm64-cgo), const IFT_HIPERLAN2 ideal-int
  1682. pkg syscall (netbsd-arm64-cgo), const IFT_HIPPI = 47
  1683. pkg syscall (netbsd-arm64-cgo), const IFT_HIPPI ideal-int
  1684. pkg syscall (netbsd-arm64-cgo), const IFT_HIPPIINTERFACE = 57
  1685. pkg syscall (netbsd-arm64-cgo), const IFT_HIPPIINTERFACE ideal-int
  1686. pkg syscall (netbsd-arm64-cgo), const IFT_HOSTPAD = 90
  1687. pkg syscall (netbsd-arm64-cgo), const IFT_HOSTPAD ideal-int
  1688. pkg syscall (netbsd-arm64-cgo), const IFT_HSSI = 46
  1689. pkg syscall (netbsd-arm64-cgo), const IFT_HSSI ideal-int
  1690. pkg syscall (netbsd-arm64-cgo), const IFT_HY = 14
  1691. pkg syscall (netbsd-arm64-cgo), const IFT_HY ideal-int
  1692. pkg syscall (netbsd-arm64-cgo), const IFT_IBM370PARCHAN = 72
  1693. pkg syscall (netbsd-arm64-cgo), const IFT_IBM370PARCHAN ideal-int
  1694. pkg syscall (netbsd-arm64-cgo), const IFT_IDSL = 154
  1695. pkg syscall (netbsd-arm64-cgo), const IFT_IDSL ideal-int
  1696. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE1394 = 144
  1697. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE1394 ideal-int
  1698. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80211 = 71
  1699. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80211 ideal-int
  1700. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80212 = 55
  1701. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80212 ideal-int
  1702. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE8023ADLAG = 161
  1703. pkg syscall (netbsd-arm64-cgo), const IFT_IEEE8023ADLAG ideal-int
  1704. pkg syscall (netbsd-arm64-cgo), const IFT_IFGSN = 145
  1705. pkg syscall (netbsd-arm64-cgo), const IFT_IFGSN ideal-int
  1706. pkg syscall (netbsd-arm64-cgo), const IFT_IMT = 190
  1707. pkg syscall (netbsd-arm64-cgo), const IFT_IMT ideal-int
  1708. pkg syscall (netbsd-arm64-cgo), const IFT_INFINIBAND = 199
  1709. pkg syscall (netbsd-arm64-cgo), const IFT_INFINIBAND ideal-int
  1710. pkg syscall (netbsd-arm64-cgo), const IFT_INTERLEAVE = 124
  1711. pkg syscall (netbsd-arm64-cgo), const IFT_INTERLEAVE ideal-int
  1712. pkg syscall (netbsd-arm64-cgo), const IFT_IP = 126
  1713. pkg syscall (netbsd-arm64-cgo), const IFT_IPFORWARD = 142
  1714. pkg syscall (netbsd-arm64-cgo), const IFT_IPFORWARD ideal-int
  1715. pkg syscall (netbsd-arm64-cgo), const IFT_IP ideal-int
  1716. pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERATM = 114
  1717. pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERATM ideal-int
  1718. pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCDLC = 109
  1719. pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCDLC ideal-int
  1720. pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCLAW = 110
  1721. pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCLAW ideal-int
  1722. pkg syscall (netbsd-arm64-cgo), const IFT_IPSWITCH = 78
  1723. pkg syscall (netbsd-arm64-cgo), const IFT_IPSWITCH ideal-int
  1724. pkg syscall (netbsd-arm64-cgo), const IFT_ISDN = 63
  1725. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNBASIC = 20
  1726. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNBASIC ideal-int
  1727. pkg syscall (netbsd-arm64-cgo), const IFT_ISDN ideal-int
  1728. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNPRIMARY = 21
  1729. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNPRIMARY ideal-int
  1730. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNS = 75
  1731. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNS ideal-int
  1732. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNU = 76
  1733. pkg syscall (netbsd-arm64-cgo), const IFT_ISDNU ideal-int
  1734. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88022LLC = 41
  1735. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88022LLC ideal-int
  1736. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88023 = 7
  1737. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88023 ideal-int
  1738. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88024 = 8
  1739. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88024 ideal-int
  1740. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025 = 9
  1741. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025CRFPINT = 98
  1742. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025CRFPINT ideal-int
  1743. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025DTR = 86
  1744. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025DTR ideal-int
  1745. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025FIBER = 115
  1746. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025FIBER ideal-int
  1747. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025 ideal-int
  1748. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88026 = 10
  1749. pkg syscall (netbsd-arm64-cgo), const IFT_ISO88026 ideal-int
  1750. pkg syscall (netbsd-arm64-cgo), const IFT_ISUP = 179
  1751. pkg syscall (netbsd-arm64-cgo), const IFT_ISUP ideal-int
  1752. pkg syscall (netbsd-arm64-cgo), const IFT_L2VLAN = 135
  1753. pkg syscall (netbsd-arm64-cgo), const IFT_L2VLAN ideal-int
  1754. pkg syscall (netbsd-arm64-cgo), const IFT_L3IPVLAN = 136
  1755. pkg syscall (netbsd-arm64-cgo), const IFT_L3IPVLAN ideal-int
  1756. pkg syscall (netbsd-arm64-cgo), const IFT_L3IPXVLAN = 137
  1757. pkg syscall (netbsd-arm64-cgo), const IFT_L3IPXVLAN ideal-int
  1758. pkg syscall (netbsd-arm64-cgo), const IFT_LAPB = 16
  1759. pkg syscall (netbsd-arm64-cgo), const IFT_LAPB ideal-int
  1760. pkg syscall (netbsd-arm64-cgo), const IFT_LAPD = 77
  1761. pkg syscall (netbsd-arm64-cgo), const IFT_LAPD ideal-int
  1762. pkg syscall (netbsd-arm64-cgo), const IFT_LAPF = 119
  1763. pkg syscall (netbsd-arm64-cgo), const IFT_LAPF ideal-int
  1764. pkg syscall (netbsd-arm64-cgo), const IFT_LINEGROUP = 210
  1765. pkg syscall (netbsd-arm64-cgo), const IFT_LINEGROUP ideal-int
  1766. pkg syscall (netbsd-arm64-cgo), const IFT_LOCALTALK = 42
  1767. pkg syscall (netbsd-arm64-cgo), const IFT_LOCALTALK ideal-int
  1768. pkg syscall (netbsd-arm64-cgo), const IFT_LOOP = 24
  1769. pkg syscall (netbsd-arm64-cgo), const IFT_LOOP ideal-int
  1770. pkg syscall (netbsd-arm64-cgo), const IFT_MEDIAMAILOVERIP = 139
  1771. pkg syscall (netbsd-arm64-cgo), const IFT_MEDIAMAILOVERIP ideal-int
  1772. pkg syscall (netbsd-arm64-cgo), const IFT_MFSIGLINK = 167
  1773. pkg syscall (netbsd-arm64-cgo), const IFT_MFSIGLINK ideal-int
  1774. pkg syscall (netbsd-arm64-cgo), const IFT_MIOX25 = 38
  1775. pkg syscall (netbsd-arm64-cgo), const IFT_MIOX25 ideal-int
  1776. pkg syscall (netbsd-arm64-cgo), const IFT_MODEM = 48
  1777. pkg syscall (netbsd-arm64-cgo), const IFT_MODEM ideal-int
  1778. pkg syscall (netbsd-arm64-cgo), const IFT_MPC = 113
  1779. pkg syscall (netbsd-arm64-cgo), const IFT_MPC ideal-int
  1780. pkg syscall (netbsd-arm64-cgo), const IFT_MPLS = 166
  1781. pkg syscall (netbsd-arm64-cgo), const IFT_MPLS ideal-int
  1782. pkg syscall (netbsd-arm64-cgo), const IFT_MPLSTUNNEL = 150
  1783. pkg syscall (netbsd-arm64-cgo), const IFT_MPLSTUNNEL ideal-int
  1784. pkg syscall (netbsd-arm64-cgo), const IFT_MSDSL = 143
  1785. pkg syscall (netbsd-arm64-cgo), const IFT_MSDSL ideal-int
  1786. pkg syscall (netbsd-arm64-cgo), const IFT_MVL = 191
  1787. pkg syscall (netbsd-arm64-cgo), const IFT_MVL ideal-int
  1788. pkg syscall (netbsd-arm64-cgo), const IFT_MYRINET = 99
  1789. pkg syscall (netbsd-arm64-cgo), const IFT_MYRINET ideal-int
  1790. pkg syscall (netbsd-arm64-cgo), const IFT_NFAS = 175
  1791. pkg syscall (netbsd-arm64-cgo), const IFT_NFAS ideal-int
  1792. pkg syscall (netbsd-arm64-cgo), const IFT_NSIP = 27
  1793. pkg syscall (netbsd-arm64-cgo), const IFT_NSIP ideal-int
  1794. pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALCHANNEL = 195
  1795. pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALCHANNEL ideal-int
  1796. pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALTRANSPORT = 196
  1797. pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALTRANSPORT ideal-int
  1798. pkg syscall (netbsd-arm64-cgo), const IFT_OTHER = 1
  1799. pkg syscall (netbsd-arm64-cgo), const IFT_OTHER ideal-int
  1800. pkg syscall (netbsd-arm64-cgo), const IFT_P10 = 12
  1801. pkg syscall (netbsd-arm64-cgo), const IFT_P10 ideal-int
  1802. pkg syscall (netbsd-arm64-cgo), const IFT_P80 = 13
  1803. pkg syscall (netbsd-arm64-cgo), const IFT_P80 ideal-int
  1804. pkg syscall (netbsd-arm64-cgo), const IFT_PARA = 34
  1805. pkg syscall (netbsd-arm64-cgo), const IFT_PARA ideal-int
  1806. pkg syscall (netbsd-arm64-cgo), const IFT_PFLOG = 245
  1807. pkg syscall (netbsd-arm64-cgo), const IFT_PFLOG ideal-int
  1808. pkg syscall (netbsd-arm64-cgo), const IFT_PFSYNC = 246
  1809. pkg syscall (netbsd-arm64-cgo), const IFT_PFSYNC ideal-int
  1810. pkg syscall (netbsd-arm64-cgo), const IFT_PLC = 174
  1811. pkg syscall (netbsd-arm64-cgo), const IFT_PLC ideal-int
  1812. pkg syscall (netbsd-arm64-cgo), const IFT_PON155 = 207
  1813. pkg syscall (netbsd-arm64-cgo), const IFT_PON155 ideal-int
  1814. pkg syscall (netbsd-arm64-cgo), const IFT_PON622 = 208
  1815. pkg syscall (netbsd-arm64-cgo), const IFT_PON622 ideal-int
  1816. pkg syscall (netbsd-arm64-cgo), const IFT_POS = 171
  1817. pkg syscall (netbsd-arm64-cgo), const IFT_POS ideal-int
  1818. pkg syscall (netbsd-arm64-cgo), const IFT_PPP = 23
  1819. pkg syscall (netbsd-arm64-cgo), const IFT_PPP ideal-int
  1820. pkg syscall (netbsd-arm64-cgo), const IFT_PPPMULTILINKBUNDLE = 108
  1821. pkg syscall (netbsd-arm64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int
  1822. pkg syscall (netbsd-arm64-cgo), const IFT_PROPATM = 197
  1823. pkg syscall (netbsd-arm64-cgo), const IFT_PROPATM ideal-int
  1824. pkg syscall (netbsd-arm64-cgo), const IFT_PROPBWAP2MP = 184
  1825. pkg syscall (netbsd-arm64-cgo), const IFT_PROPBWAP2MP ideal-int
  1826. pkg syscall (netbsd-arm64-cgo), const IFT_PROPCNLS = 89
  1827. pkg syscall (netbsd-arm64-cgo), const IFT_PROPCNLS ideal-int
  1828. pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181
  1829. pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
  1830. pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180
  1831. pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
  1832. pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182
  1833. pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
  1834. pkg syscall (netbsd-arm64-cgo), const IFT_PROPMUX = 54
  1835. pkg syscall (netbsd-arm64-cgo), const IFT_PROPMUX ideal-int
  1836. pkg syscall (netbsd-arm64-cgo), const IFT_PROPVIRTUAL = 53
  1837. pkg syscall (netbsd-arm64-cgo), const IFT_PROPVIRTUAL ideal-int
  1838. pkg syscall (netbsd-arm64-cgo), const IFT_PROPWIRELESSP2P = 157
  1839. pkg syscall (netbsd-arm64-cgo), const IFT_PROPWIRELESSP2P ideal-int
  1840. pkg syscall (netbsd-arm64-cgo), const IFT_PTPSERIAL = 22
  1841. pkg syscall (netbsd-arm64-cgo), const IFT_PTPSERIAL ideal-int
  1842. pkg syscall (netbsd-arm64-cgo), const IFT_PVC = 241
  1843. pkg syscall (netbsd-arm64-cgo), const IFT_PVC ideal-int
  1844. pkg syscall (netbsd-arm64-cgo), const IFT_Q2931 = 201
  1845. pkg syscall (netbsd-arm64-cgo), const IFT_Q2931 ideal-int
  1846. pkg syscall (netbsd-arm64-cgo), const IFT_QLLC = 68
  1847. pkg syscall (netbsd-arm64-cgo), const IFT_QLLC ideal-int
  1848. pkg syscall (netbsd-arm64-cgo), const IFT_RADIOMAC = 188
  1849. pkg syscall (netbsd-arm64-cgo), const IFT_RADIOMAC ideal-int
  1850. pkg syscall (netbsd-arm64-cgo), const IFT_RADSL = 95
  1851. pkg syscall (netbsd-arm64-cgo), const IFT_RADSL ideal-int
  1852. pkg syscall (netbsd-arm64-cgo), const IFT_REACHDSL = 192
  1853. pkg syscall (netbsd-arm64-cgo), const IFT_REACHDSL ideal-int
  1854. pkg syscall (netbsd-arm64-cgo), const IFT_RFC1483 = 159
  1855. pkg syscall (netbsd-arm64-cgo), const IFT_RFC1483 ideal-int
  1856. pkg syscall (netbsd-arm64-cgo), const IFT_RS232 = 33
  1857. pkg syscall (netbsd-arm64-cgo), const IFT_RS232 ideal-int
  1858. pkg syscall (netbsd-arm64-cgo), const IFT_RSRB = 79
  1859. pkg syscall (netbsd-arm64-cgo), const IFT_RSRB ideal-int
  1860. pkg syscall (netbsd-arm64-cgo), const IFT_SDLC = 17
  1861. pkg syscall (netbsd-arm64-cgo), const IFT_SDLC ideal-int
  1862. pkg syscall (netbsd-arm64-cgo), const IFT_SDSL = 96
  1863. pkg syscall (netbsd-arm64-cgo), const IFT_SDSL ideal-int
  1864. pkg syscall (netbsd-arm64-cgo), const IFT_SHDSL = 169
  1865. pkg syscall (netbsd-arm64-cgo), const IFT_SHDSL ideal-int
  1866. pkg syscall (netbsd-arm64-cgo), const IFT_SIP = 31
  1867. pkg syscall (netbsd-arm64-cgo), const IFT_SIP ideal-int
  1868. pkg syscall (netbsd-arm64-cgo), const IFT_SIPSIG = 204
  1869. pkg syscall (netbsd-arm64-cgo), const IFT_SIPSIG ideal-int
  1870. pkg syscall (netbsd-arm64-cgo), const IFT_SIPTG = 203
  1871. pkg syscall (netbsd-arm64-cgo), const IFT_SIPTG ideal-int
  1872. pkg syscall (netbsd-arm64-cgo), const IFT_SLIP = 28
  1873. pkg syscall (netbsd-arm64-cgo), const IFT_SLIP ideal-int
  1874. pkg syscall (netbsd-arm64-cgo), const IFT_SMDSDXI = 43
  1875. pkg syscall (netbsd-arm64-cgo), const IFT_SMDSDXI ideal-int
  1876. pkg syscall (netbsd-arm64-cgo), const IFT_SMDSICIP = 52
  1877. pkg syscall (netbsd-arm64-cgo), const IFT_SMDSICIP ideal-int
  1878. pkg syscall (netbsd-arm64-cgo), const IFT_SONET = 39
  1879. pkg syscall (netbsd-arm64-cgo), const IFT_SONET ideal-int
  1880. pkg syscall (netbsd-arm64-cgo), const IFT_SONETOVERHEADCHANNEL = 185
  1881. pkg syscall (netbsd-arm64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int
  1882. pkg syscall (netbsd-arm64-cgo), const IFT_SONETPATH = 50
  1883. pkg syscall (netbsd-arm64-cgo), const IFT_SONETPATH ideal-int
  1884. pkg syscall (netbsd-arm64-cgo), const IFT_SONETVT = 51
  1885. pkg syscall (netbsd-arm64-cgo), const IFT_SONETVT ideal-int
  1886. pkg syscall (netbsd-arm64-cgo), const IFT_SRP = 151
  1887. pkg syscall (netbsd-arm64-cgo), const IFT_SRP ideal-int
  1888. pkg syscall (netbsd-arm64-cgo), const IFT_SS7SIGLINK = 156
  1889. pkg syscall (netbsd-arm64-cgo), const IFT_SS7SIGLINK ideal-int
  1890. pkg syscall (netbsd-arm64-cgo), const IFT_STACKTOSTACK = 111
  1891. pkg syscall (netbsd-arm64-cgo), const IFT_STACKTOSTACK ideal-int
  1892. pkg syscall (netbsd-arm64-cgo), const IFT_STARLAN = 11
  1893. pkg syscall (netbsd-arm64-cgo), const IFT_STARLAN ideal-int
  1894. pkg syscall (netbsd-arm64-cgo), const IFT_STF = 215
  1895. pkg syscall (netbsd-arm64-cgo), const IFT_STF ideal-int
  1896. pkg syscall (netbsd-arm64-cgo), const IFT_T1 = 18
  1897. pkg syscall (netbsd-arm64-cgo), const IFT_T1 ideal-int
  1898. pkg syscall (netbsd-arm64-cgo), const IFT_TDLC = 116
  1899. pkg syscall (netbsd-arm64-cgo), const IFT_TDLC ideal-int
  1900. pkg syscall (netbsd-arm64-cgo), const IFT_TELINK = 200
  1901. pkg syscall (netbsd-arm64-cgo), const IFT_TELINK ideal-int
  1902. pkg syscall (netbsd-arm64-cgo), const IFT_TERMPAD = 91
  1903. pkg syscall (netbsd-arm64-cgo), const IFT_TERMPAD ideal-int
  1904. pkg syscall (netbsd-arm64-cgo), const IFT_TR008 = 176
  1905. pkg syscall (netbsd-arm64-cgo), const IFT_TR008 ideal-int
  1906. pkg syscall (netbsd-arm64-cgo), const IFT_TRANSPHDLC = 123
  1907. pkg syscall (netbsd-arm64-cgo), const IFT_TRANSPHDLC ideal-int
  1908. pkg syscall (netbsd-arm64-cgo), const IFT_TUNNEL = 131
  1909. pkg syscall (netbsd-arm64-cgo), const IFT_TUNNEL ideal-int
  1910. pkg syscall (netbsd-arm64-cgo), const IFT_ULTRA = 29
  1911. pkg syscall (netbsd-arm64-cgo), const IFT_ULTRA ideal-int
  1912. pkg syscall (netbsd-arm64-cgo), const IFT_USB = 160
  1913. pkg syscall (netbsd-arm64-cgo), const IFT_USB ideal-int
  1914. pkg syscall (netbsd-arm64-cgo), const IFT_V11 = 64
  1915. pkg syscall (netbsd-arm64-cgo), const IFT_V11 ideal-int
  1916. pkg syscall (netbsd-arm64-cgo), const IFT_V35 = 45
  1917. pkg syscall (netbsd-arm64-cgo), const IFT_V35 ideal-int
  1918. pkg syscall (netbsd-arm64-cgo), const IFT_V36 = 65
  1919. pkg syscall (netbsd-arm64-cgo), const IFT_V36 ideal-int
  1920. pkg syscall (netbsd-arm64-cgo), const IFT_V37 = 120
  1921. pkg syscall (netbsd-arm64-cgo), const IFT_V37 ideal-int
  1922. pkg syscall (netbsd-arm64-cgo), const IFT_VDSL = 97
  1923. pkg syscall (netbsd-arm64-cgo), const IFT_VDSL ideal-int
  1924. pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALIPADDRESS = 112
  1925. pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
  1926. pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALTG = 202
  1927. pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALTG ideal-int
  1928. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEDID = 213
  1929. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEDID ideal-int
  1930. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEM = 100
  1931. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEMFGD = 211
  1932. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEMFGD ideal-int
  1933. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEM ideal-int
  1934. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEENCAP = 103
  1935. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEENCAP ideal-int
  1936. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFGDEANA = 212
  1937. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFGDEANA ideal-int
  1938. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXO = 101
  1939. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXO ideal-int
  1940. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXS = 102
  1941. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXS ideal-int
  1942. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERATM = 152
  1943. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERATM ideal-int
  1944. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERCABLE = 198
  1945. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERCABLE ideal-int
  1946. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERFRAMERELAY = 153
  1947. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int
  1948. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERIP = 104
  1949. pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERIP ideal-int
  1950. pkg syscall (netbsd-arm64-cgo), const IFT_X213 = 93
  1951. pkg syscall (netbsd-arm64-cgo), const IFT_X213 ideal-int
  1952. pkg syscall (netbsd-arm64-cgo), const IFT_X25 = 5
  1953. pkg syscall (netbsd-arm64-cgo), const IFT_X25DDN = 4
  1954. pkg syscall (netbsd-arm64-cgo), const IFT_X25DDN ideal-int
  1955. pkg syscall (netbsd-arm64-cgo), const IFT_X25HUNTGROUP = 122
  1956. pkg syscall (netbsd-arm64-cgo), const IFT_X25HUNTGROUP ideal-int
  1957. pkg syscall (netbsd-arm64-cgo), const IFT_X25 ideal-int
  1958. pkg syscall (netbsd-arm64-cgo), const IFT_X25MLP = 121
  1959. pkg syscall (netbsd-arm64-cgo), const IFT_X25MLP ideal-int
  1960. pkg syscall (netbsd-arm64-cgo), const IFT_X25PLE = 40
  1961. pkg syscall (netbsd-arm64-cgo), const IFT_X25PLE ideal-int
  1962. pkg syscall (netbsd-arm64-cgo), const IFT_XETHER = 26
  1963. pkg syscall (netbsd-arm64-cgo), const IFT_XETHER ideal-int
  1964. pkg syscall (netbsd-arm64-cgo), const IGNBRK = 1
  1965. pkg syscall (netbsd-arm64-cgo), const IGNBRK ideal-int
  1966. pkg syscall (netbsd-arm64-cgo), const IGNCR = 128
  1967. pkg syscall (netbsd-arm64-cgo), const IGNCR ideal-int
  1968. pkg syscall (netbsd-arm64-cgo), const IGNPAR = 4
  1969. pkg syscall (netbsd-arm64-cgo), const IGNPAR ideal-int
  1970. pkg syscall (netbsd-arm64-cgo), const IMAXBEL = 8192
  1971. pkg syscall (netbsd-arm64-cgo), const IMAXBEL ideal-int
  1972. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_HOST = 16777215
  1973. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_HOST ideal-int
  1974. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_MAX = 128
  1975. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_MAX ideal-int
  1976. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NET = 4278190080
  1977. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NET ideal-int
  1978. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NSHIFT = 24
  1979. pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NSHIFT ideal-int
  1980. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_HOST = 65535
  1981. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_HOST ideal-int
  1982. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_MAX = 65536
  1983. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_MAX ideal-int
  1984. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NET = 4294901760
  1985. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NET ideal-int
  1986. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NSHIFT = 16
  1987. pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NSHIFT ideal-int
  1988. pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_HOST = 255
  1989. pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_HOST ideal-int
  1990. pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NET = 4294967040
  1991. pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NET ideal-int
  1992. pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NSHIFT = 8
  1993. pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NSHIFT ideal-int
  1994. pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_HOST = 268435455
  1995. pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_HOST ideal-int
  1996. pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NET = 4026531840
  1997. pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NET ideal-int
  1998. pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NSHIFT = 28
  1999. pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NSHIFT ideal-int
  2000. pkg syscall (netbsd-arm64-cgo), const INLCR = 64
  2001. pkg syscall (netbsd-arm64-cgo), const INLCR ideal-int
  2002. pkg syscall (netbsd-arm64-cgo), const IN_LOOPBACKNET = 127
  2003. pkg syscall (netbsd-arm64-cgo), const IN_LOOPBACKNET ideal-int
  2004. pkg syscall (netbsd-arm64-cgo), const INPCK = 16
  2005. pkg syscall (netbsd-arm64-cgo), const INPCK ideal-int
  2006. pkg syscall (netbsd-arm64-cgo), const IP_ADD_MEMBERSHIP = 12
  2007. pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1
  2008. pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
  2009. pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1
  2010. pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
  2011. pkg syscall (netbsd-arm64-cgo), const IP_DF = 16384
  2012. pkg syscall (netbsd-arm64-cgo), const IP_DF ideal-int
  2013. pkg syscall (netbsd-arm64-cgo), const IP_DROP_MEMBERSHIP = 13
  2014. pkg syscall (netbsd-arm64-cgo), const IP_EF = 32768
  2015. pkg syscall (netbsd-arm64-cgo), const IP_EF ideal-int
  2016. pkg syscall (netbsd-arm64-cgo), const IP_ERRORMTU = 21
  2017. pkg syscall (netbsd-arm64-cgo), const IP_ERRORMTU ideal-int
  2018. pkg syscall (netbsd-arm64-cgo), const IP_HDRINCL = 2
  2019. pkg syscall (netbsd-arm64-cgo), const IP_HDRINCL ideal-int
  2020. pkg syscall (netbsd-arm64-cgo), const IP_IPSEC_POLICY = 22
  2021. pkg syscall (netbsd-arm64-cgo), const IP_IPSEC_POLICY ideal-int
  2022. pkg syscall (netbsd-arm64-cgo), const IP_MAX_MEMBERSHIPS = 20
  2023. pkg syscall (netbsd-arm64-cgo), const IP_MAX_MEMBERSHIPS ideal-int
  2024. pkg syscall (netbsd-arm64-cgo), const IP_MAXPACKET = 65535
  2025. pkg syscall (netbsd-arm64-cgo), const IP_MAXPACKET ideal-int
  2026. pkg syscall (netbsd-arm64-cgo), const IP_MF = 8192
  2027. pkg syscall (netbsd-arm64-cgo), const IP_MF ideal-int
  2028. pkg syscall (netbsd-arm64-cgo), const IP_MINFRAGSIZE = 69
  2029. pkg syscall (netbsd-arm64-cgo), const IP_MINFRAGSIZE ideal-int
  2030. pkg syscall (netbsd-arm64-cgo), const IP_MINTTL = 24
  2031. pkg syscall (netbsd-arm64-cgo), const IP_MINTTL ideal-int
  2032. pkg syscall (netbsd-arm64-cgo), const IP_MSS = 576
  2033. pkg syscall (netbsd-arm64-cgo), const IP_MSS ideal-int
  2034. pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_IF = 9
  2035. pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_LOOP = 11
  2036. pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_TTL = 10
  2037. pkg syscall (netbsd-arm64-cgo), const IP_OFFMASK = 8191
  2038. pkg syscall (netbsd-arm64-cgo), const IP_OFFMASK ideal-int
  2039. pkg syscall (netbsd-arm64-cgo), const IP_OPTIONS = 1
  2040. pkg syscall (netbsd-arm64-cgo), const IP_OPTIONS ideal-int
  2041. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE = 19
  2042. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_DEFAULT = 0
  2043. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_DEFAULT ideal-int
  2044. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_HIGH = 1
  2045. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_HIGH ideal-int
  2046. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE ideal-int
  2047. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_LOW = 2
  2048. pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_LOW ideal-int
  2049. pkg syscall (netbsd-arm64-cgo), const IPPROTO_AH = 51
  2050. pkg syscall (netbsd-arm64-cgo), const IPPROTO_AH ideal-int
  2051. pkg syscall (netbsd-arm64-cgo), const IPPROTO_CARP = 112
  2052. pkg syscall (netbsd-arm64-cgo), const IPPROTO_CARP ideal-int
  2053. pkg syscall (netbsd-arm64-cgo), const IPPROTO_DONE = 257
  2054. pkg syscall (netbsd-arm64-cgo), const IPPROTO_DONE ideal-int
  2055. pkg syscall (netbsd-arm64-cgo), const IPPROTO_DSTOPTS = 60
  2056. pkg syscall (netbsd-arm64-cgo), const IPPROTO_DSTOPTS ideal-int
  2057. pkg syscall (netbsd-arm64-cgo), const IPPROTO_EGP = 8
  2058. pkg syscall (netbsd-arm64-cgo), const IPPROTO_EGP ideal-int
  2059. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ENCAP = 98
  2060. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ENCAP ideal-int
  2061. pkg syscall (netbsd-arm64-cgo), const IPPROTO_EON = 80
  2062. pkg syscall (netbsd-arm64-cgo), const IPPROTO_EON ideal-int
  2063. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ESP = 50
  2064. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ESP ideal-int
  2065. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ETHERIP = 97
  2066. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ETHERIP ideal-int
  2067. pkg syscall (netbsd-arm64-cgo), const IPPROTO_FRAGMENT = 44
  2068. pkg syscall (netbsd-arm64-cgo), const IPPROTO_FRAGMENT ideal-int
  2069. pkg syscall (netbsd-arm64-cgo), const IPPROTO_GGP = 3
  2070. pkg syscall (netbsd-arm64-cgo), const IPPROTO_GGP ideal-int
  2071. pkg syscall (netbsd-arm64-cgo), const IPPROTO_GRE = 47
  2072. pkg syscall (netbsd-arm64-cgo), const IPPROTO_GRE ideal-int
  2073. pkg syscall (netbsd-arm64-cgo), const IPPROTO_HOPOPTS = 0
  2074. pkg syscall (netbsd-arm64-cgo), const IPPROTO_HOPOPTS ideal-int
  2075. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMP = 1
  2076. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMP ideal-int
  2077. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMPV6 = 58
  2078. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMPV6 ideal-int
  2079. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IDP = 22
  2080. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IDP ideal-int
  2081. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IGMP = 2
  2082. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IGMP ideal-int
  2083. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPCOMP = 108
  2084. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPCOMP ideal-int
  2085. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPIP = 4
  2086. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPIP ideal-int
  2087. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV4 = 4
  2088. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV4 ideal-int
  2089. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV6_ICMP = 58
  2090. pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV6_ICMP ideal-int
  2091. pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAX = 256
  2092. pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAXID = 52
  2093. pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAX ideal-int
  2094. pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAXID ideal-int
  2095. pkg syscall (netbsd-arm64-cgo), const IPPROTO_MOBILE = 55
  2096. pkg syscall (netbsd-arm64-cgo), const IPPROTO_MOBILE ideal-int
  2097. pkg syscall (netbsd-arm64-cgo), const IPPROTO_NONE = 59
  2098. pkg syscall (netbsd-arm64-cgo), const IPPROTO_NONE ideal-int
  2099. pkg syscall (netbsd-arm64-cgo), const IPPROTO_PFSYNC = 240
  2100. pkg syscall (netbsd-arm64-cgo), const IPPROTO_PFSYNC ideal-int
  2101. pkg syscall (netbsd-arm64-cgo), const IPPROTO_PIM = 103
  2102. pkg syscall (netbsd-arm64-cgo), const IPPROTO_PIM ideal-int
  2103. pkg syscall (netbsd-arm64-cgo), const IPPROTO_PUP = 12
  2104. pkg syscall (netbsd-arm64-cgo), const IPPROTO_PUP ideal-int
  2105. pkg syscall (netbsd-arm64-cgo), const IPPROTO_RAW = 255
  2106. pkg syscall (netbsd-arm64-cgo), const IPPROTO_RAW ideal-int
  2107. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ROUTING = 43
  2108. pkg syscall (netbsd-arm64-cgo), const IPPROTO_ROUTING ideal-int
  2109. pkg syscall (netbsd-arm64-cgo), const IPPROTO_RSVP = 46
  2110. pkg syscall (netbsd-arm64-cgo), const IPPROTO_RSVP ideal-int
  2111. pkg syscall (netbsd-arm64-cgo), const IPPROTO_TP = 29
  2112. pkg syscall (netbsd-arm64-cgo), const IPPROTO_TP ideal-int
  2113. pkg syscall (netbsd-arm64-cgo), const IPPROTO_VRRP = 112
  2114. pkg syscall (netbsd-arm64-cgo), const IPPROTO_VRRP ideal-int
  2115. pkg syscall (netbsd-arm64-cgo), const IP_RECVDSTADDR = 7
  2116. pkg syscall (netbsd-arm64-cgo), const IP_RECVDSTADDR ideal-int
  2117. pkg syscall (netbsd-arm64-cgo), const IP_RECVIF = 20
  2118. pkg syscall (netbsd-arm64-cgo), const IP_RECVIF ideal-int
  2119. pkg syscall (netbsd-arm64-cgo), const IP_RECVOPTS = 5
  2120. pkg syscall (netbsd-arm64-cgo), const IP_RECVOPTS ideal-int
  2121. pkg syscall (netbsd-arm64-cgo), const IP_RECVRETOPTS = 6
  2122. pkg syscall (netbsd-arm64-cgo), const IP_RECVRETOPTS ideal-int
  2123. pkg syscall (netbsd-arm64-cgo), const IP_RECVTTL = 23
  2124. pkg syscall (netbsd-arm64-cgo), const IP_RECVTTL ideal-int
  2125. pkg syscall (netbsd-arm64-cgo), const IP_RETOPTS = 8
  2126. pkg syscall (netbsd-arm64-cgo), const IP_RETOPTS ideal-int
  2127. pkg syscall (netbsd-arm64-cgo), const IP_RF = 32768
  2128. pkg syscall (netbsd-arm64-cgo), const IP_RF ideal-int
  2129. pkg syscall (netbsd-arm64-cgo), const IP_TOS = 3
  2130. pkg syscall (netbsd-arm64-cgo), const IP_TTL = 4
  2131. pkg syscall (netbsd-arm64-cgo), const IPV6_CHECKSUM = 26
  2132. pkg syscall (netbsd-arm64-cgo), const IPV6_CHECKSUM ideal-int
  2133. pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1
  2134. pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
  2135. pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1
  2136. pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
  2137. pkg syscall (netbsd-arm64-cgo), const IPV6_DEFHLIM = 64
  2138. pkg syscall (netbsd-arm64-cgo), const IPV6_DEFHLIM ideal-int
  2139. pkg syscall (netbsd-arm64-cgo), const IPV6_DONTFRAG = 62
  2140. pkg syscall (netbsd-arm64-cgo), const IPV6_DONTFRAG ideal-int
  2141. pkg syscall (netbsd-arm64-cgo), const IPV6_DSTOPTS = 50
  2142. pkg syscall (netbsd-arm64-cgo), const IPV6_DSTOPTS ideal-int
  2143. pkg syscall (netbsd-arm64-cgo), const IPV6_FAITH = 29
  2144. pkg syscall (netbsd-arm64-cgo), const IPV6_FAITH ideal-int
  2145. pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWINFO_MASK = 4294967055
  2146. pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWINFO_MASK ideal-int
  2147. pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600
  2148. pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
  2149. pkg syscall (netbsd-arm64-cgo), const IPV6_FRAGTTL = 120
  2150. pkg syscall (netbsd-arm64-cgo), const IPV6_FRAGTTL ideal-int
  2151. pkg syscall (netbsd-arm64-cgo), const IPV6_HLIMDEC = 1
  2152. pkg syscall (netbsd-arm64-cgo), const IPV6_HLIMDEC ideal-int
  2153. pkg syscall (netbsd-arm64-cgo), const IPV6_HOPLIMIT = 47
  2154. pkg syscall (netbsd-arm64-cgo), const IPV6_HOPLIMIT ideal-int
  2155. pkg syscall (netbsd-arm64-cgo), const IPV6_HOPOPTS = 49
  2156. pkg syscall (netbsd-arm64-cgo), const IPV6_HOPOPTS ideal-int
  2157. pkg syscall (netbsd-arm64-cgo), const IPV6_IPSEC_POLICY = 28
  2158. pkg syscall (netbsd-arm64-cgo), const IPV6_IPSEC_POLICY ideal-int
  2159. pkg syscall (netbsd-arm64-cgo), const IPV6_JOIN_GROUP = 12
  2160. pkg syscall (netbsd-arm64-cgo), const IPV6_LEAVE_GROUP = 13
  2161. pkg syscall (netbsd-arm64-cgo), const IPV6_MAXHLIM = 255
  2162. pkg syscall (netbsd-arm64-cgo), const IPV6_MAXHLIM ideal-int
  2163. pkg syscall (netbsd-arm64-cgo), const IPV6_MAXPACKET = 65535
  2164. pkg syscall (netbsd-arm64-cgo), const IPV6_MAXPACKET ideal-int
  2165. pkg syscall (netbsd-arm64-cgo), const IPV6_MMTU = 1280
  2166. pkg syscall (netbsd-arm64-cgo), const IPV6_MMTU ideal-int
  2167. pkg syscall (netbsd-arm64-cgo), const IPV6_MULTICAST_HOPS = 10
  2168. pkg syscall (netbsd-arm64-cgo), const IPV6_MULTICAST_IF = 9
  2169. pkg syscall (netbsd-arm64-cgo), const IPV6_MULTICAST_LOOP = 11
  2170. pkg syscall (netbsd-arm64-cgo), const IPV6_NEXTHOP = 48
  2171. pkg syscall (netbsd-arm64-cgo), const IPV6_NEXTHOP ideal-int
  2172. pkg syscall (netbsd-arm64-cgo), const IPV6_PATHMTU = 44
  2173. pkg syscall (netbsd-arm64-cgo), const IPV6_PATHMTU ideal-int
  2174. pkg syscall (netbsd-arm64-cgo), const IPV6_PKTINFO = 46
  2175. pkg syscall (netbsd-arm64-cgo), const IPV6_PKTINFO ideal-int
  2176. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE = 14
  2177. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_DEFAULT = 0
  2178. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
  2179. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_HIGH = 1
  2180. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_HIGH ideal-int
  2181. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE ideal-int
  2182. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_LOW = 2
  2183. pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_LOW ideal-int
  2184. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVDSTOPTS = 40
  2185. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVDSTOPTS ideal-int
  2186. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPLIMIT = 37
  2187. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPLIMIT ideal-int
  2188. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPOPTS = 39
  2189. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPOPTS ideal-int
  2190. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPATHMTU = 43
  2191. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPATHMTU ideal-int
  2192. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPKTINFO = 36
  2193. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPKTINFO ideal-int
  2194. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVRTHDR = 38
  2195. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVRTHDR ideal-int
  2196. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVTCLASS = 57
  2197. pkg syscall (netbsd-arm64-cgo), const IPV6_RECVTCLASS ideal-int
  2198. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR = 51
  2199. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDRDSTOPTS = 35
  2200. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDRDSTOPTS ideal-int
  2201. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR ideal-int
  2202. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_LOOSE = 0
  2203. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_LOOSE ideal-int
  2204. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_STRICT = 1
  2205. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_STRICT ideal-int
  2206. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_TYPE_0 = 0
  2207. pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
  2208. pkg syscall (netbsd-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3
  2209. pkg syscall (netbsd-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
  2210. pkg syscall (netbsd-arm64-cgo), const IPV6_TCLASS = 61
  2211. pkg syscall (netbsd-arm64-cgo), const IPV6_TCLASS ideal-int
  2212. pkg syscall (netbsd-arm64-cgo), const IPV6_UNICAST_HOPS = 4
  2213. pkg syscall (netbsd-arm64-cgo), const IPV6_USE_MIN_MTU = 42
  2214. pkg syscall (netbsd-arm64-cgo), const IPV6_USE_MIN_MTU ideal-int
  2215. pkg syscall (netbsd-arm64-cgo), const IPV6_V6ONLY = 27
  2216. pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION = 96
  2217. pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION ideal-int
  2218. pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION_MASK = 240
  2219. pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION_MASK ideal-int
  2220. pkg syscall (netbsd-arm64-cgo), const ISIG = 128
  2221. pkg syscall (netbsd-arm64-cgo), const ISIG ideal-int
  2222. pkg syscall (netbsd-arm64-cgo), const ISTRIP = 32
  2223. pkg syscall (netbsd-arm64-cgo), const ISTRIP ideal-int
  2224. pkg syscall (netbsd-arm64-cgo), const IXANY = 2048
  2225. pkg syscall (netbsd-arm64-cgo), const IXANY ideal-int
  2226. pkg syscall (netbsd-arm64-cgo), const IXOFF = 1024
  2227. pkg syscall (netbsd-arm64-cgo), const IXOFF ideal-int
  2228. pkg syscall (netbsd-arm64-cgo), const IXON = 512
  2229. pkg syscall (netbsd-arm64-cgo), const IXON ideal-int
  2230. pkg syscall (netbsd-arm64-cgo), const LOCK_EX = 2
  2231. pkg syscall (netbsd-arm64-cgo), const LOCK_EX ideal-int
  2232. pkg syscall (netbsd-arm64-cgo), const LOCK_NB = 4
  2233. pkg syscall (netbsd-arm64-cgo), const LOCK_NB ideal-int
  2234. pkg syscall (netbsd-arm64-cgo), const LOCK_SH = 1
  2235. pkg syscall (netbsd-arm64-cgo), const LOCK_SH ideal-int
  2236. pkg syscall (netbsd-arm64-cgo), const LOCK_UN = 8
  2237. pkg syscall (netbsd-arm64-cgo), const LOCK_UN ideal-int
  2238. pkg syscall (netbsd-arm64-cgo), const MADV_DONTNEED = 4
  2239. pkg syscall (netbsd-arm64-cgo), const MADV_DONTNEED ideal-int
  2240. pkg syscall (netbsd-arm64-cgo), const MADV_FREE = 6
  2241. pkg syscall (netbsd-arm64-cgo), const MADV_FREE ideal-int
  2242. pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL = 0
  2243. pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL ideal-int
  2244. pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM = 1
  2245. pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM ideal-int
  2246. pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL = 2
  2247. pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL ideal-int
  2248. pkg syscall (netbsd-arm64-cgo), const MADV_SPACEAVAIL = 5
  2249. pkg syscall (netbsd-arm64-cgo), const MADV_SPACEAVAIL ideal-int
  2250. pkg syscall (netbsd-arm64-cgo), const MADV_WILLNEED = 3
  2251. pkg syscall (netbsd-arm64-cgo), const MADV_WILLNEED ideal-int
  2252. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_16MB = 402653184
  2253. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_16MB ideal-int
  2254. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_1TB = 671088640
  2255. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_1TB ideal-int
  2256. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_256TB = 805306368
  2257. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_256TB ideal-int
  2258. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_4GB = 536870912
  2259. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_4GB ideal-int
  2260. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64KB = 268435456
  2261. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64KB ideal-int
  2262. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64PB = 939524096
  2263. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64PB ideal-int
  2264. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_MASK = -16777216
  2265. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_MASK ideal-int
  2266. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_SHIFT = 24
  2267. pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_SHIFT ideal-int
  2268. pkg syscall (netbsd-arm64-cgo), const MAP_ANON = 4096
  2269. pkg syscall (netbsd-arm64-cgo), const MAP_ANON ideal-int
  2270. pkg syscall (netbsd-arm64-cgo), const MAP_FILE = 0
  2271. pkg syscall (netbsd-arm64-cgo), const MAP_FILE ideal-int
  2272. pkg syscall (netbsd-arm64-cgo), const MAP_FIXED = 16
  2273. pkg syscall (netbsd-arm64-cgo), const MAP_FIXED ideal-int
  2274. pkg syscall (netbsd-arm64-cgo), const MAP_HASSEMAPHORE = 512
  2275. pkg syscall (netbsd-arm64-cgo), const MAP_HASSEMAPHORE ideal-int
  2276. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT = 128
  2277. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_COPY = 1
  2278. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_COPY ideal-int
  2279. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DEFAULT = 1
  2280. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DEFAULT ideal-int
  2281. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DONATE_COPY = 3
  2282. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DONATE_COPY ideal-int
  2283. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT ideal-int
  2284. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_NONE = 2
  2285. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_NONE ideal-int
  2286. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_SHARE = 0
  2287. pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_SHARE ideal-int
  2288. pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE = 64
  2289. pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE ideal-int
  2290. pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE = 2
  2291. pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE ideal-int
  2292. pkg syscall (netbsd-arm64-cgo), const MAP_RENAME = 32
  2293. pkg syscall (netbsd-arm64-cgo), const MAP_RENAME ideal-int
  2294. pkg syscall (netbsd-arm64-cgo), const MAP_SHARED = 1
  2295. pkg syscall (netbsd-arm64-cgo), const MAP_SHARED ideal-int
  2296. pkg syscall (netbsd-arm64-cgo), const MAP_STACK = 8192
  2297. pkg syscall (netbsd-arm64-cgo), const MAP_STACK ideal-int
  2298. pkg syscall (netbsd-arm64-cgo), const MAP_TRYFIXED = 1024
  2299. pkg syscall (netbsd-arm64-cgo), const MAP_TRYFIXED ideal-int
  2300. pkg syscall (netbsd-arm64-cgo), const MAP_WIRED = 2048
  2301. pkg syscall (netbsd-arm64-cgo), const MAP_WIRED ideal-int
  2302. pkg syscall (netbsd-arm64-cgo), const MCL_CURRENT = 1
  2303. pkg syscall (netbsd-arm64-cgo), const MCL_CURRENT ideal-int
  2304. pkg syscall (netbsd-arm64-cgo), const MCL_FUTURE = 2
  2305. pkg syscall (netbsd-arm64-cgo), const MCL_FUTURE ideal-int
  2306. pkg syscall (netbsd-arm64-cgo), const MS_ASYNC = 1
  2307. pkg syscall (netbsd-arm64-cgo), const MS_ASYNC ideal-int
  2308. pkg syscall (netbsd-arm64-cgo), const MSG_BCAST = 256
  2309. pkg syscall (netbsd-arm64-cgo), const MSG_BCAST ideal-int
  2310. pkg syscall (netbsd-arm64-cgo), const MSG_CMSG_CLOEXEC = 2048
  2311. pkg syscall (netbsd-arm64-cgo), const MSG_CMSG_CLOEXEC ideal-int
  2312. pkg syscall (netbsd-arm64-cgo), const MSG_CONTROLMBUF = 33554432
  2313. pkg syscall (netbsd-arm64-cgo), const MSG_CONTROLMBUF ideal-int
  2314. pkg syscall (netbsd-arm64-cgo), const MSG_CTRUNC = 32
  2315. pkg syscall (netbsd-arm64-cgo), const MSG_CTRUNC ideal-int
  2316. pkg syscall (netbsd-arm64-cgo), const MSG_DONTROUTE = 4
  2317. pkg syscall (netbsd-arm64-cgo), const MSG_DONTROUTE ideal-int
  2318. pkg syscall (netbsd-arm64-cgo), const MSG_DONTWAIT = 128
  2319. pkg syscall (netbsd-arm64-cgo), const MSG_DONTWAIT ideal-int
  2320. pkg syscall (netbsd-arm64-cgo), const MSG_EOR = 8
  2321. pkg syscall (netbsd-arm64-cgo), const MSG_EOR ideal-int
  2322. pkg syscall (netbsd-arm64-cgo), const MSG_IOVUSRSPACE = 67108864
  2323. pkg syscall (netbsd-arm64-cgo), const MSG_IOVUSRSPACE ideal-int
  2324. pkg syscall (netbsd-arm64-cgo), const MSG_LENUSRSPACE = 134217728
  2325. pkg syscall (netbsd-arm64-cgo), const MSG_LENUSRSPACE ideal-int
  2326. pkg syscall (netbsd-arm64-cgo), const MSG_MCAST = 512
  2327. pkg syscall (netbsd-arm64-cgo), const MSG_MCAST ideal-int
  2328. pkg syscall (netbsd-arm64-cgo), const MSG_NAMEMBUF = 16777216
  2329. pkg syscall (netbsd-arm64-cgo), const MSG_NAMEMBUF ideal-int
  2330. pkg syscall (netbsd-arm64-cgo), const MSG_NBIO = 4096
  2331. pkg syscall (netbsd-arm64-cgo), const MSG_NBIO ideal-int
  2332. pkg syscall (netbsd-arm64-cgo), const MSG_NOSIGNAL = 1024
  2333. pkg syscall (netbsd-arm64-cgo), const MSG_NOSIGNAL ideal-int
  2334. pkg syscall (netbsd-arm64-cgo), const MSG_OOB = 1
  2335. pkg syscall (netbsd-arm64-cgo), const MSG_OOB ideal-int
  2336. pkg syscall (netbsd-arm64-cgo), const MSG_PEEK = 2
  2337. pkg syscall (netbsd-arm64-cgo), const MSG_PEEK ideal-int
  2338. pkg syscall (netbsd-arm64-cgo), const MSG_TRUNC = 16
  2339. pkg syscall (netbsd-arm64-cgo), const MSG_TRUNC ideal-int
  2340. pkg syscall (netbsd-arm64-cgo), const MSG_USERFLAGS = 16777215
  2341. pkg syscall (netbsd-arm64-cgo), const MSG_USERFLAGS ideal-int
  2342. pkg syscall (netbsd-arm64-cgo), const MSG_WAITALL = 64
  2343. pkg syscall (netbsd-arm64-cgo), const MSG_WAITALL ideal-int
  2344. pkg syscall (netbsd-arm64-cgo), const MS_INVALIDATE = 2
  2345. pkg syscall (netbsd-arm64-cgo), const MS_INVALIDATE ideal-int
  2346. pkg syscall (netbsd-arm64-cgo), const MS_SYNC = 4
  2347. pkg syscall (netbsd-arm64-cgo), const MS_SYNC ideal-int
  2348. pkg syscall (netbsd-arm64-cgo), const NAME_MAX = 511
  2349. pkg syscall (netbsd-arm64-cgo), const NAME_MAX ideal-int
  2350. pkg syscall (netbsd-arm64-cgo), const NET_RT_DUMP = 1
  2351. pkg syscall (netbsd-arm64-cgo), const NET_RT_DUMP ideal-int
  2352. pkg syscall (netbsd-arm64-cgo), const NET_RT_FLAGS = 2
  2353. pkg syscall (netbsd-arm64-cgo), const NET_RT_FLAGS ideal-int
  2354. pkg syscall (netbsd-arm64-cgo), const NET_RT_IFLIST = 5
  2355. pkg syscall (netbsd-arm64-cgo), const NET_RT_IFLIST ideal-int
  2356. pkg syscall (netbsd-arm64-cgo), const NET_RT_MAXID = 6
  2357. pkg syscall (netbsd-arm64-cgo), const NET_RT_MAXID ideal-int
  2358. pkg syscall (netbsd-arm64-cgo), const NET_RT_OIFLIST = 4
  2359. pkg syscall (netbsd-arm64-cgo), const NET_RT_OIFLIST ideal-int
  2360. pkg syscall (netbsd-arm64-cgo), const NET_RT_OOIFLIST = 3
  2361. pkg syscall (netbsd-arm64-cgo), const NET_RT_OOIFLIST ideal-int
  2362. pkg syscall (netbsd-arm64-cgo), const NOFLSH = 2147483648
  2363. pkg syscall (netbsd-arm64-cgo), const NOFLSH ideal-int
  2364. pkg syscall (netbsd-arm64-cgo), const NOTE_ATTRIB = 8
  2365. pkg syscall (netbsd-arm64-cgo), const NOTE_ATTRIB ideal-int
  2366. pkg syscall (netbsd-arm64-cgo), const NOTE_CHILD = 4
  2367. pkg syscall (netbsd-arm64-cgo), const NOTE_CHILD ideal-int
  2368. pkg syscall (netbsd-arm64-cgo), const NOTE_DELETE = 1
  2369. pkg syscall (netbsd-arm64-cgo), const NOTE_DELETE ideal-int
  2370. pkg syscall (netbsd-arm64-cgo), const NOTE_EXEC = 536870912
  2371. pkg syscall (netbsd-arm64-cgo), const NOTE_EXEC ideal-int
  2372. pkg syscall (netbsd-arm64-cgo), const NOTE_EXIT = 2147483648
  2373. pkg syscall (netbsd-arm64-cgo), const NOTE_EXIT ideal-int
  2374. pkg syscall (netbsd-arm64-cgo), const NOTE_EXTEND = 4
  2375. pkg syscall (netbsd-arm64-cgo), const NOTE_EXTEND ideal-int
  2376. pkg syscall (netbsd-arm64-cgo), const NOTE_FORK = 1073741824
  2377. pkg syscall (netbsd-arm64-cgo), const NOTE_FORK ideal-int
  2378. pkg syscall (netbsd-arm64-cgo), const NOTE_LINK = 16
  2379. pkg syscall (netbsd-arm64-cgo), const NOTE_LINK ideal-int
  2380. pkg syscall (netbsd-arm64-cgo), const NOTE_LOWAT = 1
  2381. pkg syscall (netbsd-arm64-cgo), const NOTE_LOWAT ideal-int
  2382. pkg syscall (netbsd-arm64-cgo), const NOTE_PCTRLMASK = 4026531840
  2383. pkg syscall (netbsd-arm64-cgo), const NOTE_PCTRLMASK ideal-int
  2384. pkg syscall (netbsd-arm64-cgo), const NOTE_PDATAMASK = 1048575
  2385. pkg syscall (netbsd-arm64-cgo), const NOTE_PDATAMASK ideal-int
  2386. pkg syscall (netbsd-arm64-cgo), const NOTE_RENAME = 32
  2387. pkg syscall (netbsd-arm64-cgo), const NOTE_RENAME ideal-int
  2388. pkg syscall (netbsd-arm64-cgo), const NOTE_REVOKE = 64
  2389. pkg syscall (netbsd-arm64-cgo), const NOTE_REVOKE ideal-int
  2390. pkg syscall (netbsd-arm64-cgo), const NOTE_TRACK = 1
  2391. pkg syscall (netbsd-arm64-cgo), const NOTE_TRACKERR = 2
  2392. pkg syscall (netbsd-arm64-cgo), const NOTE_TRACKERR ideal-int
  2393. pkg syscall (netbsd-arm64-cgo), const NOTE_TRACK ideal-int
  2394. pkg syscall (netbsd-arm64-cgo), const NOTE_WRITE = 2
  2395. pkg syscall (netbsd-arm64-cgo), const NOTE_WRITE ideal-int
  2396. pkg syscall (netbsd-arm64-cgo), const O_ACCMODE = 3
  2397. pkg syscall (netbsd-arm64-cgo), const O_ACCMODE ideal-int
  2398. pkg syscall (netbsd-arm64-cgo), const O_ALT_IO = 262144
  2399. pkg syscall (netbsd-arm64-cgo), const O_ALT_IO ideal-int
  2400. pkg syscall (netbsd-arm64-cgo), const O_APPEND = 8
  2401. pkg syscall (netbsd-arm64-cgo), const O_ASYNC = 64
  2402. pkg syscall (netbsd-arm64-cgo), const O_CLOEXEC = 4194304
  2403. pkg syscall (netbsd-arm64-cgo), const O_CREAT = 512
  2404. pkg syscall (netbsd-arm64-cgo), const OCRNL = 16
  2405. pkg syscall (netbsd-arm64-cgo), const OCRNL ideal-int
  2406. pkg syscall (netbsd-arm64-cgo), const O_DIRECT = 524288
  2407. pkg syscall (netbsd-arm64-cgo), const O_DIRECT ideal-int
  2408. pkg syscall (netbsd-arm64-cgo), const O_DIRECTORY = 2097152
  2409. pkg syscall (netbsd-arm64-cgo), const O_DIRECTORY ideal-int
  2410. pkg syscall (netbsd-arm64-cgo), const O_DSYNC = 65536
  2411. pkg syscall (netbsd-arm64-cgo), const O_DSYNC ideal-int
  2412. pkg syscall (netbsd-arm64-cgo), const O_EXCL = 2048
  2413. pkg syscall (netbsd-arm64-cgo), const O_EXLOCK = 32
  2414. pkg syscall (netbsd-arm64-cgo), const O_EXLOCK ideal-int
  2415. pkg syscall (netbsd-arm64-cgo), const OFIOGETBMAP = 3221513850
  2416. pkg syscall (netbsd-arm64-cgo), const OFIOGETBMAP ideal-int
  2417. pkg syscall (netbsd-arm64-cgo), const O_FSYNC = 128
  2418. pkg syscall (netbsd-arm64-cgo), const O_FSYNC ideal-int
  2419. pkg syscall (netbsd-arm64-cgo), const O_NDELAY = 4
  2420. pkg syscall (netbsd-arm64-cgo), const O_NDELAY ideal-int
  2421. pkg syscall (netbsd-arm64-cgo), const ONLCR = 2
  2422. pkg syscall (netbsd-arm64-cgo), const ONLCR ideal-int
  2423. pkg syscall (netbsd-arm64-cgo), const ONLRET = 64
  2424. pkg syscall (netbsd-arm64-cgo), const ONLRET ideal-int
  2425. pkg syscall (netbsd-arm64-cgo), const ONOCR = 32
  2426. pkg syscall (netbsd-arm64-cgo), const ONOCR ideal-int
  2427. pkg syscall (netbsd-arm64-cgo), const O_NOCTTY = 32768
  2428. pkg syscall (netbsd-arm64-cgo), const ONOEOT = 8
  2429. pkg syscall (netbsd-arm64-cgo), const ONOEOT ideal-int
  2430. pkg syscall (netbsd-arm64-cgo), const O_NOFOLLOW = 256
  2431. pkg syscall (netbsd-arm64-cgo), const O_NOFOLLOW ideal-int
  2432. pkg syscall (netbsd-arm64-cgo), const O_NONBLOCK = 4
  2433. pkg syscall (netbsd-arm64-cgo), const O_NOSIGPIPE = 16777216
  2434. pkg syscall (netbsd-arm64-cgo), const O_NOSIGPIPE ideal-int
  2435. pkg syscall (netbsd-arm64-cgo), const OPOST = 1
  2436. pkg syscall (netbsd-arm64-cgo), const OPOST ideal-int
  2437. pkg syscall (netbsd-arm64-cgo), const O_RSYNC = 131072
  2438. pkg syscall (netbsd-arm64-cgo), const O_RSYNC ideal-int
  2439. pkg syscall (netbsd-arm64-cgo), const O_SHLOCK = 16
  2440. pkg syscall (netbsd-arm64-cgo), const O_SHLOCK ideal-int
  2441. pkg syscall (netbsd-arm64-cgo), const O_SYNC = 128
  2442. pkg syscall (netbsd-arm64-cgo), const O_TRUNC = 1024
  2443. pkg syscall (netbsd-arm64-cgo), const PARENB = 4096
  2444. pkg syscall (netbsd-arm64-cgo), const PARENB ideal-int
  2445. pkg syscall (netbsd-arm64-cgo), const PARMRK = 8
  2446. pkg syscall (netbsd-arm64-cgo), const PARMRK ideal-int
  2447. pkg syscall (netbsd-arm64-cgo), const PARODD = 8192
  2448. pkg syscall (netbsd-arm64-cgo), const PARODD ideal-int
  2449. pkg syscall (netbsd-arm64-cgo), const PENDIN = 536870912
  2450. pkg syscall (netbsd-arm64-cgo), const PENDIN ideal-int
  2451. pkg syscall (netbsd-arm64-cgo), const PRI_IOFLUSH = 124
  2452. pkg syscall (netbsd-arm64-cgo), const PRI_IOFLUSH ideal-int
  2453. pkg syscall (netbsd-arm64-cgo), const PRIO_PGRP = 1
  2454. pkg syscall (netbsd-arm64-cgo), const PRIO_PGRP ideal-int
  2455. pkg syscall (netbsd-arm64-cgo), const PRIO_PROCESS = 0
  2456. pkg syscall (netbsd-arm64-cgo), const PRIO_PROCESS ideal-int
  2457. pkg syscall (netbsd-arm64-cgo), const PRIO_USER = 2
  2458. pkg syscall (netbsd-arm64-cgo), const PRIO_USER ideal-int
  2459. pkg syscall (netbsd-arm64-cgo), const PROT_EXEC = 4
  2460. pkg syscall (netbsd-arm64-cgo), const PROT_EXEC ideal-int
  2461. pkg syscall (netbsd-arm64-cgo), const PROT_NONE = 0
  2462. pkg syscall (netbsd-arm64-cgo), const PROT_NONE ideal-int
  2463. pkg syscall (netbsd-arm64-cgo), const PROT_READ = 1
  2464. pkg syscall (netbsd-arm64-cgo), const PROT_READ ideal-int
  2465. pkg syscall (netbsd-arm64-cgo), const PROT_WRITE = 2
  2466. pkg syscall (netbsd-arm64-cgo), const PROT_WRITE ideal-int
  2467. pkg syscall (netbsd-arm64-cgo), const PTRACE_CONT = 7
  2468. pkg syscall (netbsd-arm64-cgo), const PTRACE_CONT ideal-int
  2469. pkg syscall (netbsd-arm64-cgo), const PTRACE_KILL = 8
  2470. pkg syscall (netbsd-arm64-cgo), const PTRACE_KILL ideal-int
  2471. pkg syscall (netbsd-arm64-cgo), const PTRACE_TRACEME = 0
  2472. pkg syscall (netbsd-arm64-cgo), const PTRACE_TRACEME ideal-int
  2473. pkg syscall (netbsd-arm64-cgo), const RLIM_INFINITY = 9223372036854775807
  2474. pkg syscall (netbsd-arm64-cgo), const RLIM_INFINITY ideal-int
  2475. pkg syscall (netbsd-arm64-cgo), const RLIMIT_AS = 10
  2476. pkg syscall (netbsd-arm64-cgo), const RLIMIT_AS ideal-int
  2477. pkg syscall (netbsd-arm64-cgo), const RLIMIT_CORE = 4
  2478. pkg syscall (netbsd-arm64-cgo), const RLIMIT_CORE ideal-int
  2479. pkg syscall (netbsd-arm64-cgo), const RLIMIT_CPU = 0
  2480. pkg syscall (netbsd-arm64-cgo), const RLIMIT_CPU ideal-int
  2481. pkg syscall (netbsd-arm64-cgo), const RLIMIT_DATA = 2
  2482. pkg syscall (netbsd-arm64-cgo), const RLIMIT_DATA ideal-int
  2483. pkg syscall (netbsd-arm64-cgo), const RLIMIT_FSIZE = 1
  2484. pkg syscall (netbsd-arm64-cgo), const RLIMIT_FSIZE ideal-int
  2485. pkg syscall (netbsd-arm64-cgo), const RLIMIT_NOFILE = 8
  2486. pkg syscall (netbsd-arm64-cgo), const RLIMIT_NOFILE ideal-int
  2487. pkg syscall (netbsd-arm64-cgo), const RLIMIT_STACK = 3
  2488. pkg syscall (netbsd-arm64-cgo), const RLIMIT_STACK ideal-int
  2489. pkg syscall (netbsd-arm64-cgo), const RTA_AUTHOR = 64
  2490. pkg syscall (netbsd-arm64-cgo), const RTA_AUTHOR ideal-int
  2491. pkg syscall (netbsd-arm64-cgo), const RTA_BRD = 128
  2492. pkg syscall (netbsd-arm64-cgo), const RTA_BRD ideal-int
  2493. pkg syscall (netbsd-arm64-cgo), const RTA_DST = 1
  2494. pkg syscall (netbsd-arm64-cgo), const RTA_DST ideal-int
  2495. pkg syscall (netbsd-arm64-cgo), const RTA_GATEWAY = 2
  2496. pkg syscall (netbsd-arm64-cgo), const RTA_GATEWAY ideal-int
  2497. pkg syscall (netbsd-arm64-cgo), const RTA_GENMASK = 8
  2498. pkg syscall (netbsd-arm64-cgo), const RTA_GENMASK ideal-int
  2499. pkg syscall (netbsd-arm64-cgo), const RTA_IFA = 32
  2500. pkg syscall (netbsd-arm64-cgo), const RTA_IFA ideal-int
  2501. pkg syscall (netbsd-arm64-cgo), const RTA_IFP = 16
  2502. pkg syscall (netbsd-arm64-cgo), const RTA_IFP ideal-int
  2503. pkg syscall (netbsd-arm64-cgo), const RTA_NETMASK = 4
  2504. pkg syscall (netbsd-arm64-cgo), const RTA_NETMASK ideal-int
  2505. pkg syscall (netbsd-arm64-cgo), const RTA_TAG = 256
  2506. pkg syscall (netbsd-arm64-cgo), const RTA_TAG ideal-int
  2507. pkg syscall (netbsd-arm64-cgo), const RTAX_AUTHOR = 6
  2508. pkg syscall (netbsd-arm64-cgo), const RTAX_AUTHOR ideal-int
  2509. pkg syscall (netbsd-arm64-cgo), const RTAX_BRD = 7
  2510. pkg syscall (netbsd-arm64-cgo), const RTAX_BRD ideal-int
  2511. pkg syscall (netbsd-arm64-cgo), const RTAX_DST = 0
  2512. pkg syscall (netbsd-arm64-cgo), const RTAX_DST ideal-int
  2513. pkg syscall (netbsd-arm64-cgo), const RTAX_GATEWAY = 1
  2514. pkg syscall (netbsd-arm64-cgo), const RTAX_GATEWAY ideal-int
  2515. pkg syscall (netbsd-arm64-cgo), const RTAX_GENMASK = 3
  2516. pkg syscall (netbsd-arm64-cgo), const RTAX_GENMASK ideal-int
  2517. pkg syscall (netbsd-arm64-cgo), const RTAX_IFA = 5
  2518. pkg syscall (netbsd-arm64-cgo), const RTAX_IFA ideal-int
  2519. pkg syscall (netbsd-arm64-cgo), const RTAX_IFP = 4
  2520. pkg syscall (netbsd-arm64-cgo), const RTAX_IFP ideal-int
  2521. pkg syscall (netbsd-arm64-cgo), const RTAX_MAX = 9
  2522. pkg syscall (netbsd-arm64-cgo), const RTAX_MAX ideal-int
  2523. pkg syscall (netbsd-arm64-cgo), const RTAX_NETMASK = 2
  2524. pkg syscall (netbsd-arm64-cgo), const RTAX_NETMASK ideal-int
  2525. pkg syscall (netbsd-arm64-cgo), const RTAX_TAG = 8
  2526. pkg syscall (netbsd-arm64-cgo), const RTAX_TAG ideal-int
  2527. pkg syscall (netbsd-arm64-cgo), const RTF_ANNOUNCE = 131072
  2528. pkg syscall (netbsd-arm64-cgo), const RTF_ANNOUNCE ideal-int
  2529. pkg syscall (netbsd-arm64-cgo), const RTF_BLACKHOLE = 4096
  2530. pkg syscall (netbsd-arm64-cgo), const RTF_BLACKHOLE ideal-int
  2531. pkg syscall (netbsd-arm64-cgo), const RTF_CLONED = 8192
  2532. pkg syscall (netbsd-arm64-cgo), const RTF_CLONED ideal-int
  2533. pkg syscall (netbsd-arm64-cgo), const RTF_CLONING = 256
  2534. pkg syscall (netbsd-arm64-cgo), const RTF_CLONING ideal-int
  2535. pkg syscall (netbsd-arm64-cgo), const RTF_DONE = 64
  2536. pkg syscall (netbsd-arm64-cgo), const RTF_DONE ideal-int
  2537. pkg syscall (netbsd-arm64-cgo), const RTF_DYNAMIC = 16
  2538. pkg syscall (netbsd-arm64-cgo), const RTF_DYNAMIC ideal-int
  2539. pkg syscall (netbsd-arm64-cgo), const RTF_GATEWAY = 2
  2540. pkg syscall (netbsd-arm64-cgo), const RTF_GATEWAY ideal-int
  2541. pkg syscall (netbsd-arm64-cgo), const RTF_HOST = 4
  2542. pkg syscall (netbsd-arm64-cgo), const RTF_HOST ideal-int
  2543. pkg syscall (netbsd-arm64-cgo), const RTF_LLINFO = 1024
  2544. pkg syscall (netbsd-arm64-cgo), const RTF_LLINFO ideal-int
  2545. pkg syscall (netbsd-arm64-cgo), const RTF_MASK = 128
  2546. pkg syscall (netbsd-arm64-cgo), const RTF_MASK ideal-int
  2547. pkg syscall (netbsd-arm64-cgo), const RTF_MODIFIED = 32
  2548. pkg syscall (netbsd-arm64-cgo), const RTF_MODIFIED ideal-int
  2549. pkg syscall (netbsd-arm64-cgo), const RTF_PROTO1 = 32768
  2550. pkg syscall (netbsd-arm64-cgo), const RTF_PROTO1 ideal-int
  2551. pkg syscall (netbsd-arm64-cgo), const RTF_PROTO2 = 16384
  2552. pkg syscall (netbsd-arm64-cgo), const RTF_PROTO2 ideal-int
  2553. pkg syscall (netbsd-arm64-cgo), const RTF_REJECT = 8
  2554. pkg syscall (netbsd-arm64-cgo), const RTF_REJECT ideal-int
  2555. pkg syscall (netbsd-arm64-cgo), const RTF_SRC = 65536
  2556. pkg syscall (netbsd-arm64-cgo), const RTF_SRC ideal-int
  2557. pkg syscall (netbsd-arm64-cgo), const RTF_STATIC = 2048
  2558. pkg syscall (netbsd-arm64-cgo), const RTF_STATIC ideal-int
  2559. pkg syscall (netbsd-arm64-cgo), const RTF_UP = 1
  2560. pkg syscall (netbsd-arm64-cgo), const RTF_UP ideal-int
  2561. pkg syscall (netbsd-arm64-cgo), const RTF_XRESOLVE = 512
  2562. pkg syscall (netbsd-arm64-cgo), const RTF_XRESOLVE ideal-int
  2563. pkg syscall (netbsd-arm64-cgo), const RTM_ADD = 1
  2564. pkg syscall (netbsd-arm64-cgo), const RTM_ADD ideal-int
  2565. pkg syscall (netbsd-arm64-cgo), const RTM_CHANGE = 3
  2566. pkg syscall (netbsd-arm64-cgo), const RTM_CHANGE ideal-int
  2567. pkg syscall (netbsd-arm64-cgo), const RTM_CHGADDR = 21
  2568. pkg syscall (netbsd-arm64-cgo), const RTM_CHGADDR ideal-int
  2569. pkg syscall (netbsd-arm64-cgo), const RTM_DELADDR = 13
  2570. pkg syscall (netbsd-arm64-cgo), const RTM_DELADDR ideal-int
  2571. pkg syscall (netbsd-arm64-cgo), const RTM_DELETE = 2
  2572. pkg syscall (netbsd-arm64-cgo), const RTM_DELETE ideal-int
  2573. pkg syscall (netbsd-arm64-cgo), const RTM_GET = 4
  2574. pkg syscall (netbsd-arm64-cgo), const RTM_GET ideal-int
  2575. pkg syscall (netbsd-arm64-cgo), const RTM_IEEE80211 = 17
  2576. pkg syscall (netbsd-arm64-cgo), const RTM_IEEE80211 ideal-int
  2577. pkg syscall (netbsd-arm64-cgo), const RTM_IFANNOUNCE = 16
  2578. pkg syscall (netbsd-arm64-cgo), const RTM_IFANNOUNCE ideal-int
  2579. pkg syscall (netbsd-arm64-cgo), const RTM_IFINFO = 20
  2580. pkg syscall (netbsd-arm64-cgo), const RTM_IFINFO ideal-int
  2581. pkg syscall (netbsd-arm64-cgo), const RTM_LLINFO_UPD = 19
  2582. pkg syscall (netbsd-arm64-cgo), const RTM_LLINFO_UPD ideal-int
  2583. pkg syscall (netbsd-arm64-cgo), const RTM_LOCK = 8
  2584. pkg syscall (netbsd-arm64-cgo), const RTM_LOCK ideal-int
  2585. pkg syscall (netbsd-arm64-cgo), const RTM_LOSING = 5
  2586. pkg syscall (netbsd-arm64-cgo), const RTM_LOSING ideal-int
  2587. pkg syscall (netbsd-arm64-cgo), const RTM_MISS = 7
  2588. pkg syscall (netbsd-arm64-cgo), const RTM_MISS ideal-int
  2589. pkg syscall (netbsd-arm64-cgo), const RTM_NEWADDR = 12
  2590. pkg syscall (netbsd-arm64-cgo), const RTM_NEWADDR ideal-int
  2591. pkg syscall (netbsd-arm64-cgo), const RTM_OIFINFO = 15
  2592. pkg syscall (netbsd-arm64-cgo), const RTM_OIFINFO ideal-int
  2593. pkg syscall (netbsd-arm64-cgo), const RTM_OLDADD = 9
  2594. pkg syscall (netbsd-arm64-cgo), const RTM_OLDADD ideal-int
  2595. pkg syscall (netbsd-arm64-cgo), const RTM_OLDDEL = 10
  2596. pkg syscall (netbsd-arm64-cgo), const RTM_OLDDEL ideal-int
  2597. pkg syscall (netbsd-arm64-cgo), const RTM_OOIFINFO = 14
  2598. pkg syscall (netbsd-arm64-cgo), const RTM_OOIFINFO ideal-int
  2599. pkg syscall (netbsd-arm64-cgo), const RTM_REDIRECT = 6
  2600. pkg syscall (netbsd-arm64-cgo), const RTM_REDIRECT ideal-int
  2601. pkg syscall (netbsd-arm64-cgo), const RTM_RESOLVE = 11
  2602. pkg syscall (netbsd-arm64-cgo), const RTM_RESOLVE ideal-int
  2603. pkg syscall (netbsd-arm64-cgo), const RTM_RTTUNIT = 1000000
  2604. pkg syscall (netbsd-arm64-cgo), const RTM_RTTUNIT ideal-int
  2605. pkg syscall (netbsd-arm64-cgo), const RTM_SETGATE = 18
  2606. pkg syscall (netbsd-arm64-cgo), const RTM_SETGATE ideal-int
  2607. pkg syscall (netbsd-arm64-cgo), const RTM_VERSION = 4
  2608. pkg syscall (netbsd-arm64-cgo), const RTM_VERSION ideal-int
  2609. pkg syscall (netbsd-arm64-cgo), const RTV_EXPIRE = 4
  2610. pkg syscall (netbsd-arm64-cgo), const RTV_EXPIRE ideal-int
  2611. pkg syscall (netbsd-arm64-cgo), const RTV_HOPCOUNT = 2
  2612. pkg syscall (netbsd-arm64-cgo), const RTV_HOPCOUNT ideal-int
  2613. pkg syscall (netbsd-arm64-cgo), const RTV_MTU = 1
  2614. pkg syscall (netbsd-arm64-cgo), const RTV_MTU ideal-int
  2615. pkg syscall (netbsd-arm64-cgo), const RTV_RPIPE = 8
  2616. pkg syscall (netbsd-arm64-cgo), const RTV_RPIPE ideal-int
  2617. pkg syscall (netbsd-arm64-cgo), const RTV_RTT = 64
  2618. pkg syscall (netbsd-arm64-cgo), const RTV_RTT ideal-int
  2619. pkg syscall (netbsd-arm64-cgo), const RTV_RTTVAR = 128
  2620. pkg syscall (netbsd-arm64-cgo), const RTV_RTTVAR ideal-int
  2621. pkg syscall (netbsd-arm64-cgo), const RTV_SPIPE = 16
  2622. pkg syscall (netbsd-arm64-cgo), const RTV_SPIPE ideal-int
  2623. pkg syscall (netbsd-arm64-cgo), const RTV_SSTHRESH = 32
  2624. pkg syscall (netbsd-arm64-cgo), const RTV_SSTHRESH ideal-int
  2625. pkg syscall (netbsd-arm64-cgo), const RUSAGE_CHILDREN = -1
  2626. pkg syscall (netbsd-arm64-cgo), const RUSAGE_CHILDREN ideal-int
  2627. pkg syscall (netbsd-arm64-cgo), const RUSAGE_SELF = 0
  2628. pkg syscall (netbsd-arm64-cgo), const RUSAGE_SELF ideal-int
  2629. pkg syscall (netbsd-arm64-cgo), const S_ARCH1 = 65536
  2630. pkg syscall (netbsd-arm64-cgo), const S_ARCH1 ideal-int
  2631. pkg syscall (netbsd-arm64-cgo), const S_ARCH2 = 131072
  2632. pkg syscall (netbsd-arm64-cgo), const S_ARCH2 ideal-int
  2633. pkg syscall (netbsd-arm64-cgo), const S_BLKSIZE = 512
  2634. pkg syscall (netbsd-arm64-cgo), const S_BLKSIZE ideal-int
  2635. pkg syscall (netbsd-arm64-cgo), const SCM_CREDS = 4
  2636. pkg syscall (netbsd-arm64-cgo), const SCM_CREDS ideal-int
  2637. pkg syscall (netbsd-arm64-cgo), const SCM_RIGHTS = 1
  2638. pkg syscall (netbsd-arm64-cgo), const SCM_RIGHTS ideal-int
  2639. pkg syscall (netbsd-arm64-cgo), const SCM_TIMESTAMP = 8
  2640. pkg syscall (netbsd-arm64-cgo), const SCM_TIMESTAMP ideal-int
  2641. pkg syscall (netbsd-arm64-cgo), const S_IEXEC = 64
  2642. pkg syscall (netbsd-arm64-cgo), const S_IEXEC ideal-int
  2643. pkg syscall (netbsd-arm64-cgo), const S_IFMT = 61440
  2644. pkg syscall (netbsd-arm64-cgo), const S_IFWHT = 57344
  2645. pkg syscall (netbsd-arm64-cgo), const S_IFWHT ideal-int
  2646. pkg syscall (netbsd-arm64-cgo), const SIGBUS = 10
  2647. pkg syscall (netbsd-arm64-cgo), const SIGCHLD = 20
  2648. pkg syscall (netbsd-arm64-cgo), const SIGCHLD Signal
  2649. pkg syscall (netbsd-arm64-cgo), const SIGCONT = 19
  2650. pkg syscall (netbsd-arm64-cgo), const SIGCONT Signal
  2651. pkg syscall (netbsd-arm64-cgo), const SIGEMT = 7
  2652. pkg syscall (netbsd-arm64-cgo), const SIGEMT Signal
  2653. pkg syscall (netbsd-arm64-cgo), const SIGINFO = 29
  2654. pkg syscall (netbsd-arm64-cgo), const SIGINFO Signal
  2655. pkg syscall (netbsd-arm64-cgo), const SIGIO = 23
  2656. pkg syscall (netbsd-arm64-cgo), const SIGIO Signal
  2657. pkg syscall (netbsd-arm64-cgo), const SIGIOT = 6
  2658. pkg syscall (netbsd-arm64-cgo), const SIGIOT Signal
  2659. pkg syscall (netbsd-arm64-cgo), const SIGPROF = 27
  2660. pkg syscall (netbsd-arm64-cgo), const SIGPROF Signal
  2661. pkg syscall (netbsd-arm64-cgo), const SIGPWR = 32
  2662. pkg syscall (netbsd-arm64-cgo), const SIGPWR Signal
  2663. pkg syscall (netbsd-arm64-cgo), const SIGSTOP = 17
  2664. pkg syscall (netbsd-arm64-cgo), const SIGSTOP Signal
  2665. pkg syscall (netbsd-arm64-cgo), const SIGSYS = 12
  2666. pkg syscall (netbsd-arm64-cgo), const SIGSYS Signal
  2667. pkg syscall (netbsd-arm64-cgo), const SIGTSTP = 18
  2668. pkg syscall (netbsd-arm64-cgo), const SIGTSTP Signal
  2669. pkg syscall (netbsd-arm64-cgo), const SIGTTIN = 21
  2670. pkg syscall (netbsd-arm64-cgo), const SIGTTIN Signal
  2671. pkg syscall (netbsd-arm64-cgo), const SIGTTOU = 22
  2672. pkg syscall (netbsd-arm64-cgo), const SIGTTOU Signal
  2673. pkg syscall (netbsd-arm64-cgo), const SIGURG = 16
  2674. pkg syscall (netbsd-arm64-cgo), const SIGURG Signal
  2675. pkg syscall (netbsd-arm64-cgo), const SIGUSR1 = 30
  2676. pkg syscall (netbsd-arm64-cgo), const SIGUSR1 Signal
  2677. pkg syscall (netbsd-arm64-cgo), const SIGUSR2 = 31
  2678. pkg syscall (netbsd-arm64-cgo), const SIGUSR2 Signal
  2679. pkg syscall (netbsd-arm64-cgo), const SIGVTALRM = 26
  2680. pkg syscall (netbsd-arm64-cgo), const SIGVTALRM Signal
  2681. pkg syscall (netbsd-arm64-cgo), const SIGWINCH = 28
  2682. pkg syscall (netbsd-arm64-cgo), const SIGWINCH Signal
  2683. pkg syscall (netbsd-arm64-cgo), const SIGXCPU = 24
  2684. pkg syscall (netbsd-arm64-cgo), const SIGXCPU Signal
  2685. pkg syscall (netbsd-arm64-cgo), const SIGXFSZ = 25
  2686. pkg syscall (netbsd-arm64-cgo), const SIGXFSZ Signal
  2687. pkg syscall (netbsd-arm64-cgo), const SIOCADDMULTI = 2156947761
  2688. pkg syscall (netbsd-arm64-cgo), const SIOCADDMULTI ideal-int
  2689. pkg syscall (netbsd-arm64-cgo), const SIOCADDRT = 2151182858
  2690. pkg syscall (netbsd-arm64-cgo), const SIOCADDRT ideal-int
  2691. pkg syscall (netbsd-arm64-cgo), const SIOCAIFADDR = 2151704858
  2692. pkg syscall (netbsd-arm64-cgo), const SIOCAIFADDR ideal-int
  2693. pkg syscall (netbsd-arm64-cgo), const SIOCALIFADDR = 2165860636
  2694. pkg syscall (netbsd-arm64-cgo), const SIOCALIFADDR ideal-int
  2695. pkg syscall (netbsd-arm64-cgo), const SIOCATMARK = 1074033415
  2696. pkg syscall (netbsd-arm64-cgo), const SIOCATMARK ideal-int
  2697. pkg syscall (netbsd-arm64-cgo), const SIOCDELMULTI = 2156947762
  2698. pkg syscall (netbsd-arm64-cgo), const SIOCDELMULTI ideal-int
  2699. pkg syscall (netbsd-arm64-cgo), const SIOCDELRT = 2151182859
  2700. pkg syscall (netbsd-arm64-cgo), const SIOCDELRT ideal-int
  2701. pkg syscall (netbsd-arm64-cgo), const SIOCDIFADDR = 2156947737
  2702. pkg syscall (netbsd-arm64-cgo), const SIOCDIFADDR ideal-int
  2703. pkg syscall (netbsd-arm64-cgo), const SIOCDIFPHYADDR = 2156947785
  2704. pkg syscall (netbsd-arm64-cgo), const SIOCDIFPHYADDR ideal-int
  2705. pkg syscall (netbsd-arm64-cgo), const SIOCDLIFADDR = 2165860638
  2706. pkg syscall (netbsd-arm64-cgo), const SIOCDLIFADDR ideal-int
  2707. pkg syscall (netbsd-arm64-cgo), const SIOCGDRVSPEC = 3223873915
  2708. pkg syscall (netbsd-arm64-cgo), const SIOCGDRVSPEC ideal-int
  2709. pkg syscall (netbsd-arm64-cgo), const SIOCGETPFSYNC = 3230689784
  2710. pkg syscall (netbsd-arm64-cgo), const SIOCGETPFSYNC ideal-int
  2711. pkg syscall (netbsd-arm64-cgo), const SIOCGETSGCNT = 3223352628
  2712. pkg syscall (netbsd-arm64-cgo), const SIOCGETSGCNT ideal-int
  2713. pkg syscall (netbsd-arm64-cgo), const SIOCGETVIFCNT = 3223876915
  2714. pkg syscall (netbsd-arm64-cgo), const SIOCGETVIFCNT ideal-int
  2715. pkg syscall (netbsd-arm64-cgo), const SIOCGHIWAT = 1074033409
  2716. pkg syscall (netbsd-arm64-cgo), const SIOCGHIWAT ideal-int
  2717. pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDR = 3230689569
  2718. pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDR ideal-int
  2719. pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDRPREF = 3231213856
  2720. pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDRPREF ideal-int
  2721. pkg syscall (netbsd-arm64-cgo), const SIOCGIFALIAS = 3225446683
  2722. pkg syscall (netbsd-arm64-cgo), const SIOCGIFALIAS ideal-int
  2723. pkg syscall (netbsd-arm64-cgo), const SIOCGIFBRDADDR = 3230689571
  2724. pkg syscall (netbsd-arm64-cgo), const SIOCGIFBRDADDR ideal-int
  2725. pkg syscall (netbsd-arm64-cgo), const SIOCGIFCAP = 3223349622
  2726. pkg syscall (netbsd-arm64-cgo), const SIOCGIFCAP ideal-int
  2727. pkg syscall (netbsd-arm64-cgo), const SIOCGIFCONF = 3222300966
  2728. pkg syscall (netbsd-arm64-cgo), const SIOCGIFCONF ideal-int
  2729. pkg syscall (netbsd-arm64-cgo), const SIOCGIFDATA = 3231213957
  2730. pkg syscall (netbsd-arm64-cgo), const SIOCGIFDATA ideal-int
  2731. pkg syscall (netbsd-arm64-cgo), const SIOCGIFDLT = 3230689655
  2732. pkg syscall (netbsd-arm64-cgo), const SIOCGIFDLT ideal-int
  2733. pkg syscall (netbsd-arm64-cgo), const SIOCGIFDSTADDR = 3230689570
  2734. pkg syscall (netbsd-arm64-cgo), const SIOCGIFDSTADDR ideal-int
  2735. pkg syscall (netbsd-arm64-cgo), const SIOCGIFFLAGS = 3230689553
  2736. pkg syscall (netbsd-arm64-cgo), const SIOCGIFFLAGS ideal-int
  2737. pkg syscall (netbsd-arm64-cgo), const SIOCGIFGENERIC = 3230689594
  2738. pkg syscall (netbsd-arm64-cgo), const SIOCGIFGENERIC ideal-int
  2739. pkg syscall (netbsd-arm64-cgo), const SIOCGIFMEDIA = 3224398134
  2740. pkg syscall (netbsd-arm64-cgo), const SIOCGIFMEDIA ideal-int
  2741. pkg syscall (netbsd-arm64-cgo), const SIOCGIFMETRIC = 3230689559
  2742. pkg syscall (netbsd-arm64-cgo), const SIOCGIFMETRIC ideal-int
  2743. pkg syscall (netbsd-arm64-cgo), const SIOCGIFMTU = 3230689662
  2744. pkg syscall (netbsd-arm64-cgo), const SIOCGIFMTU ideal-int
  2745. pkg syscall (netbsd-arm64-cgo), const SIOCGIFNETMASK = 3230689573
  2746. pkg syscall (netbsd-arm64-cgo), const SIOCGIFNETMASK ideal-int
  2747. pkg syscall (netbsd-arm64-cgo), const SIOCGIFPDSTADDR = 3230689608
  2748. pkg syscall (netbsd-arm64-cgo), const SIOCGIFPDSTADDR ideal-int
  2749. pkg syscall (netbsd-arm64-cgo), const SIOCGIFPSRCADDR = 3230689607
  2750. pkg syscall (netbsd-arm64-cgo), const SIOCGIFPSRCADDR ideal-int
  2751. pkg syscall (netbsd-arm64-cgo), const SIOCGLIFADDR = 3239602461
  2752. pkg syscall (netbsd-arm64-cgo), const SIOCGLIFADDR ideal-int
  2753. pkg syscall (netbsd-arm64-cgo), const SIOCGLIFPHYADDR = 3239602507
  2754. pkg syscall (netbsd-arm64-cgo), const SIOCGLIFPHYADDR ideal-int
  2755. pkg syscall (netbsd-arm64-cgo), const SIOCGLINKSTR = 3223873927
  2756. pkg syscall (netbsd-arm64-cgo), const SIOCGLINKSTR ideal-int
  2757. pkg syscall (netbsd-arm64-cgo), const SIOCGLOWAT = 1074033411
  2758. pkg syscall (netbsd-arm64-cgo), const SIOCGLOWAT ideal-int
  2759. pkg syscall (netbsd-arm64-cgo), const SIOCGPGRP = 1074033417
  2760. pkg syscall (netbsd-arm64-cgo), const SIOCGPGRP ideal-int
  2761. pkg syscall (netbsd-arm64-cgo), const SIOCGVH = 3230689667
  2762. pkg syscall (netbsd-arm64-cgo), const SIOCGVH ideal-int
  2763. pkg syscall (netbsd-arm64-cgo), const SIOCIFCREATE = 2156947834
  2764. pkg syscall (netbsd-arm64-cgo), const SIOCIFCREATE ideal-int
  2765. pkg syscall (netbsd-arm64-cgo), const SIOCIFDESTROY = 2156947833
  2766. pkg syscall (netbsd-arm64-cgo), const SIOCIFDESTROY ideal-int
  2767. pkg syscall (netbsd-arm64-cgo), const SIOCIFGCLONERS = 3222301048
  2768. pkg syscall (netbsd-arm64-cgo), const SIOCIFGCLONERS ideal-int
  2769. pkg syscall (netbsd-arm64-cgo), const SIOCINITIFADDR = 3228592516
  2770. pkg syscall (netbsd-arm64-cgo), const SIOCINITIFADDR ideal-int
  2771. pkg syscall (netbsd-arm64-cgo), const SIOCSDRVSPEC = 2150132091
  2772. pkg syscall (netbsd-arm64-cgo), const SIOCSDRVSPEC ideal-int
  2773. pkg syscall (netbsd-arm64-cgo), const SIOCSETPFSYNC = 2156947959
  2774. pkg syscall (netbsd-arm64-cgo), const SIOCSETPFSYNC ideal-int
  2775. pkg syscall (netbsd-arm64-cgo), const SIOCSHIWAT = 2147775232
  2776. pkg syscall (netbsd-arm64-cgo), const SIOCSHIWAT ideal-int
  2777. pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDR = 2156947724
  2778. pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDR ideal-int
  2779. pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDRPREF = 2157472031
  2780. pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDRPREF ideal-int
  2781. pkg syscall (netbsd-arm64-cgo), const SIOCSIFBRDADDR = 2156947731
  2782. pkg syscall (netbsd-arm64-cgo), const SIOCSIFBRDADDR ideal-int
  2783. pkg syscall (netbsd-arm64-cgo), const SIOCSIFCAP = 2149607797
  2784. pkg syscall (netbsd-arm64-cgo), const SIOCSIFCAP ideal-int
  2785. pkg syscall (netbsd-arm64-cgo), const SIOCSIFDSTADDR = 2156947726
  2786. pkg syscall (netbsd-arm64-cgo), const SIOCSIFDSTADDR ideal-int
  2787. pkg syscall (netbsd-arm64-cgo), const SIOCSIFFLAGS = 2156947728
  2788. pkg syscall (netbsd-arm64-cgo), const SIOCSIFFLAGS ideal-int
  2789. pkg syscall (netbsd-arm64-cgo), const SIOCSIFGENERIC = 2156947769
  2790. pkg syscall (netbsd-arm64-cgo), const SIOCSIFGENERIC ideal-int
  2791. pkg syscall (netbsd-arm64-cgo), const SIOCSIFMEDIA = 3230689589
  2792. pkg syscall (netbsd-arm64-cgo), const SIOCSIFMEDIA ideal-int
  2793. pkg syscall (netbsd-arm64-cgo), const SIOCSIFMETRIC = 2156947736
  2794. pkg syscall (netbsd-arm64-cgo), const SIOCSIFMETRIC ideal-int
  2795. pkg syscall (netbsd-arm64-cgo), const SIOCSIFMTU = 2156947839
  2796. pkg syscall (netbsd-arm64-cgo), const SIOCSIFMTU ideal-int
  2797. pkg syscall (netbsd-arm64-cgo), const SIOCSIFNETMASK = 2156947734
  2798. pkg syscall (netbsd-arm64-cgo), const SIOCSIFNETMASK ideal-int
  2799. pkg syscall (netbsd-arm64-cgo), const SIOCSIFPHYADDR = 2151704902
  2800. pkg syscall (netbsd-arm64-cgo), const SIOCSIFPHYADDR ideal-int
  2801. pkg syscall (netbsd-arm64-cgo), const SIOCSLIFPHYADDR = 2165860682
  2802. pkg syscall (netbsd-arm64-cgo), const SIOCSLIFPHYADDR ideal-int
  2803. pkg syscall (netbsd-arm64-cgo), const SIOCSLINKSTR = 2150132104
  2804. pkg syscall (netbsd-arm64-cgo), const SIOCSLINKSTR ideal-int
  2805. pkg syscall (netbsd-arm64-cgo), const SIOCSLOWAT = 2147775234
  2806. pkg syscall (netbsd-arm64-cgo), const SIOCSLOWAT ideal-int
  2807. pkg syscall (netbsd-arm64-cgo), const SIOCSPGRP = 2147775240
  2808. pkg syscall (netbsd-arm64-cgo), const SIOCSPGRP ideal-int
  2809. pkg syscall (netbsd-arm64-cgo), const SIOCSVH = 3230689666
  2810. pkg syscall (netbsd-arm64-cgo), const SIOCSVH ideal-int
  2811. pkg syscall (netbsd-arm64-cgo), const SIOCZIFDATA = 3231213958
  2812. pkg syscall (netbsd-arm64-cgo), const SIOCZIFDATA ideal-int
  2813. pkg syscall (netbsd-arm64-cgo), const S_IREAD = 256
  2814. pkg syscall (netbsd-arm64-cgo), const S_IREAD ideal-int
  2815. pkg syscall (netbsd-arm64-cgo), const S_IRGRP = 32
  2816. pkg syscall (netbsd-arm64-cgo), const S_IRGRP ideal-int
  2817. pkg syscall (netbsd-arm64-cgo), const S_IROTH = 4
  2818. pkg syscall (netbsd-arm64-cgo), const S_IROTH ideal-int
  2819. pkg syscall (netbsd-arm64-cgo), const S_IRWXG = 56
  2820. pkg syscall (netbsd-arm64-cgo), const S_IRWXG ideal-int
  2821. pkg syscall (netbsd-arm64-cgo), const S_IRWXO = 7
  2822. pkg syscall (netbsd-arm64-cgo), const S_IRWXO ideal-int
  2823. pkg syscall (netbsd-arm64-cgo), const S_IRWXU = 448
  2824. pkg syscall (netbsd-arm64-cgo), const S_IRWXU ideal-int
  2825. pkg syscall (netbsd-arm64-cgo), const S_ISTXT = 512
  2826. pkg syscall (netbsd-arm64-cgo), const S_ISTXT ideal-int
  2827. pkg syscall (netbsd-arm64-cgo), const S_IWGRP = 16
  2828. pkg syscall (netbsd-arm64-cgo), const S_IWGRP ideal-int
  2829. pkg syscall (netbsd-arm64-cgo), const S_IWOTH = 2
  2830. pkg syscall (netbsd-arm64-cgo), const S_IWOTH ideal-int
  2831. pkg syscall (netbsd-arm64-cgo), const S_IWRITE = 128
  2832. pkg syscall (netbsd-arm64-cgo), const S_IWRITE ideal-int
  2833. pkg syscall (netbsd-arm64-cgo), const S_IXGRP = 8
  2834. pkg syscall (netbsd-arm64-cgo), const S_IXGRP ideal-int
  2835. pkg syscall (netbsd-arm64-cgo), const S_IXOTH = 1
  2836. pkg syscall (netbsd-arm64-cgo), const S_IXOTH ideal-int
  2837. pkg syscall (netbsd-arm64-cgo), const SizeofBpfHdr = 32
  2838. pkg syscall (netbsd-arm64-cgo), const SizeofBpfHdr ideal-int
  2839. pkg syscall (netbsd-arm64-cgo), const SizeofBpfInsn = 8
  2840. pkg syscall (netbsd-arm64-cgo), const SizeofBpfInsn ideal-int
  2841. pkg syscall (netbsd-arm64-cgo), const SizeofBpfProgram = 16
  2842. pkg syscall (netbsd-arm64-cgo), const SizeofBpfProgram ideal-int
  2843. pkg syscall (netbsd-arm64-cgo), const SizeofBpfStat = 128
  2844. pkg syscall (netbsd-arm64-cgo), const SizeofBpfStat ideal-int
  2845. pkg syscall (netbsd-arm64-cgo), const SizeofBpfVersion = 4
  2846. pkg syscall (netbsd-arm64-cgo), const SizeofBpfVersion ideal-int
  2847. pkg syscall (netbsd-arm64-cgo), const SizeofCmsghdr = 12
  2848. pkg syscall (netbsd-arm64-cgo), const SizeofCmsghdr ideal-int
  2849. pkg syscall (netbsd-arm64-cgo), const SizeofICMPv6Filter = 32
  2850. pkg syscall (netbsd-arm64-cgo), const SizeofICMPv6Filter ideal-int
  2851. pkg syscall (netbsd-arm64-cgo), const SizeofIfaMsghdr = 24
  2852. pkg syscall (netbsd-arm64-cgo), const SizeofIfaMsghdr ideal-int
  2853. pkg syscall (netbsd-arm64-cgo), const SizeofIfAnnounceMsghdr = 24
  2854. pkg syscall (netbsd-arm64-cgo), const SizeofIfAnnounceMsghdr ideal-int
  2855. pkg syscall (netbsd-arm64-cgo), const SizeofIfData = 136
  2856. pkg syscall (netbsd-arm64-cgo), const SizeofIfData ideal-int
  2857. pkg syscall (netbsd-arm64-cgo), const SizeofIfMsghdr = 152
  2858. pkg syscall (netbsd-arm64-cgo), const SizeofIfMsghdr ideal-int
  2859. pkg syscall (netbsd-arm64-cgo), const SizeofInet6Pktinfo = 20
  2860. pkg syscall (netbsd-arm64-cgo), const SizeofInet6Pktinfo ideal-int
  2861. pkg syscall (netbsd-arm64-cgo), const SizeofIPMreq = 8
  2862. pkg syscall (netbsd-arm64-cgo), const SizeofIPMreq ideal-int
  2863. pkg syscall (netbsd-arm64-cgo), const SizeofIPv6Mreq = 20
  2864. pkg syscall (netbsd-arm64-cgo), const SizeofIPv6Mreq ideal-int
  2865. pkg syscall (netbsd-arm64-cgo), const SizeofIPv6MTUInfo = 32
  2866. pkg syscall (netbsd-arm64-cgo), const SizeofIPv6MTUInfo ideal-int
  2867. pkg syscall (netbsd-arm64-cgo), const SizeofLinger = 8
  2868. pkg syscall (netbsd-arm64-cgo), const SizeofLinger ideal-int
  2869. pkg syscall (netbsd-arm64-cgo), const SizeofMsghdr = 48
  2870. pkg syscall (netbsd-arm64-cgo), const SizeofMsghdr ideal-int
  2871. pkg syscall (netbsd-arm64-cgo), const SizeofRtMetrics = 80
  2872. pkg syscall (netbsd-arm64-cgo), const SizeofRtMetrics ideal-int
  2873. pkg syscall (netbsd-arm64-cgo), const SizeofRtMsghdr = 120
  2874. pkg syscall (netbsd-arm64-cgo), const SizeofRtMsghdr ideal-int
  2875. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrAny = 108
  2876. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrAny ideal-int
  2877. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrDatalink = 20
  2878. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrDatalink ideal-int
  2879. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet4 = 16
  2880. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet4 ideal-int
  2881. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet6 = 28
  2882. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet6 ideal-int
  2883. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrUnix = 106
  2884. pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrUnix ideal-int
  2885. pkg syscall (netbsd-arm64-cgo), const S_LOGIN_SET = 1
  2886. pkg syscall (netbsd-arm64-cgo), const S_LOGIN_SET ideal-int
  2887. pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTCONN = 2
  2888. pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTCONN ideal-int
  2889. pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTFILTER = 4096
  2890. pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTFILTER ideal-int
  2891. pkg syscall (netbsd-arm64-cgo), const SO_BROADCAST = 32
  2892. pkg syscall (netbsd-arm64-cgo), const SOCK_CLOEXEC = 268435456
  2893. pkg syscall (netbsd-arm64-cgo), const SOCK_CLOEXEC ideal-int
  2894. pkg syscall (netbsd-arm64-cgo), const SOCK_FLAGS_MASK = 4026531840
  2895. pkg syscall (netbsd-arm64-cgo), const SOCK_FLAGS_MASK ideal-int
  2896. pkg syscall (netbsd-arm64-cgo), const SOCK_NONBLOCK = 536870912
  2897. pkg syscall (netbsd-arm64-cgo), const SOCK_NONBLOCK ideal-int
  2898. pkg syscall (netbsd-arm64-cgo), const SOCK_NOSIGPIPE = 1073741824
  2899. pkg syscall (netbsd-arm64-cgo), const SOCK_NOSIGPIPE ideal-int
  2900. pkg syscall (netbsd-arm64-cgo), const SOCK_RDM = 4
  2901. pkg syscall (netbsd-arm64-cgo), const SOCK_RDM ideal-int
  2902. pkg syscall (netbsd-arm64-cgo), const SO_DEBUG = 1
  2903. pkg syscall (netbsd-arm64-cgo), const SO_DEBUG ideal-int
  2904. pkg syscall (netbsd-arm64-cgo), const SO_DONTROUTE = 16
  2905. pkg syscall (netbsd-arm64-cgo), const SO_ERROR = 4103
  2906. pkg syscall (netbsd-arm64-cgo), const SO_ERROR ideal-int
  2907. pkg syscall (netbsd-arm64-cgo), const SO_KEEPALIVE = 8
  2908. pkg syscall (netbsd-arm64-cgo), const SO_LINGER = 128
  2909. pkg syscall (netbsd-arm64-cgo), const SOL_SOCKET = 65535
  2910. pkg syscall (netbsd-arm64-cgo), const SOMAXCONN = 128
  2911. pkg syscall (netbsd-arm64-cgo), const SO_NOHEADER = 4106
  2912. pkg syscall (netbsd-arm64-cgo), const SO_NOHEADER ideal-int
  2913. pkg syscall (netbsd-arm64-cgo), const SO_NOSIGPIPE = 2048
  2914. pkg syscall (netbsd-arm64-cgo), const SO_NOSIGPIPE ideal-int
  2915. pkg syscall (netbsd-arm64-cgo), const SO_OOBINLINE = 256
  2916. pkg syscall (netbsd-arm64-cgo), const SO_OOBINLINE ideal-int
  2917. pkg syscall (netbsd-arm64-cgo), const SO_OVERFLOWED = 4105
  2918. pkg syscall (netbsd-arm64-cgo), const SO_OVERFLOWED ideal-int
  2919. pkg syscall (netbsd-arm64-cgo), const SO_RCVBUF = 4098
  2920. pkg syscall (netbsd-arm64-cgo), const SO_RCVLOWAT = 4100
  2921. pkg syscall (netbsd-arm64-cgo), const SO_RCVLOWAT ideal-int
  2922. pkg syscall (netbsd-arm64-cgo), const SO_RCVTIMEO = 4108
  2923. pkg syscall (netbsd-arm64-cgo), const SO_RCVTIMEO ideal-int
  2924. pkg syscall (netbsd-arm64-cgo), const SO_REUSEADDR = 4
  2925. pkg syscall (netbsd-arm64-cgo), const SO_REUSEPORT = 512
  2926. pkg syscall (netbsd-arm64-cgo), const SO_REUSEPORT ideal-int
  2927. pkg syscall (netbsd-arm64-cgo), const SO_SNDBUF = 4097
  2928. pkg syscall (netbsd-arm64-cgo), const SO_SNDLOWAT = 4099
  2929. pkg syscall (netbsd-arm64-cgo), const SO_SNDLOWAT ideal-int
  2930. pkg syscall (netbsd-arm64-cgo), const SO_SNDTIMEO = 4107
  2931. pkg syscall (netbsd-arm64-cgo), const SO_SNDTIMEO ideal-int
  2932. pkg syscall (netbsd-arm64-cgo), const SO_TIMESTAMP = 8192
  2933. pkg syscall (netbsd-arm64-cgo), const SO_TIMESTAMP ideal-int
  2934. pkg syscall (netbsd-arm64-cgo), const SO_TYPE = 4104
  2935. pkg syscall (netbsd-arm64-cgo), const SO_TYPE ideal-int
  2936. pkg syscall (netbsd-arm64-cgo), const SO_USELOOPBACK = 64
  2937. pkg syscall (netbsd-arm64-cgo), const SO_USELOOPBACK ideal-int
  2938. pkg syscall (netbsd-arm64-cgo), const SYS_ACCEPT = 30
  2939. pkg syscall (netbsd-arm64-cgo), const SYS_ACCEPT ideal-int
  2940. pkg syscall (netbsd-arm64-cgo), const SYS_ACCESS = 33
  2941. pkg syscall (netbsd-arm64-cgo), const SYS_ACCESS ideal-int
  2942. pkg syscall (netbsd-arm64-cgo), const SYS_ACCT = 51
  2943. pkg syscall (netbsd-arm64-cgo), const SYS_ACCT ideal-int
  2944. pkg syscall (netbsd-arm64-cgo), const SYS_ADJTIME = 421
  2945. pkg syscall (netbsd-arm64-cgo), const SYS_ADJTIME ideal-int
  2946. pkg syscall (netbsd-arm64-cgo), const SYS_BIND = 104
  2947. pkg syscall (netbsd-arm64-cgo), const SYS_BIND ideal-int
  2948. pkg syscall (netbsd-arm64-cgo), const SYS_BREAK = 17
  2949. pkg syscall (netbsd-arm64-cgo), const SYS_BREAK ideal-int
  2950. pkg syscall (netbsd-arm64-cgo), const SYS_CHDIR = 12
  2951. pkg syscall (netbsd-arm64-cgo), const SYS_CHDIR ideal-int
  2952. pkg syscall (netbsd-arm64-cgo), const SYS_CHFLAGS = 34
  2953. pkg syscall (netbsd-arm64-cgo), const SYS_CHFLAGS ideal-int
  2954. pkg syscall (netbsd-arm64-cgo), const SYS_CHMOD = 15
  2955. pkg syscall (netbsd-arm64-cgo), const SYS_CHMOD ideal-int
  2956. pkg syscall (netbsd-arm64-cgo), const SYS_CHOWN = 16
  2957. pkg syscall (netbsd-arm64-cgo), const SYS_CHOWN ideal-int
  2958. pkg syscall (netbsd-arm64-cgo), const SYS_CHROOT = 61
  2959. pkg syscall (netbsd-arm64-cgo), const SYS_CHROOT ideal-int
  2960. pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETRES = 429
  2961. pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETRES ideal-int
  2962. pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETTIME = 427
  2963. pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETTIME ideal-int
  2964. pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_SETTIME = 428
  2965. pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_SETTIME ideal-int
  2966. pkg syscall (netbsd-arm64-cgo), const SYS___CLONE = 287
  2967. pkg syscall (netbsd-arm64-cgo), const SYS___CLONE ideal-int
  2968. pkg syscall (netbsd-arm64-cgo), const SYS_CLOSE = 6
  2969. pkg syscall (netbsd-arm64-cgo), const SYS_CLOSE ideal-int
  2970. pkg syscall (netbsd-arm64-cgo), const SYS_CONNECT = 98
  2971. pkg syscall (netbsd-arm64-cgo), const SYS_CONNECT ideal-int
  2972. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_0 = 0
  2973. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_0 ideal-int
  2974. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_1 = 16777216
  2975. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_1 ideal-int
  2976. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERSION = 16777216
  2977. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERSION ideal-int
  2978. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_MASK = 4278190080
  2979. pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_MASK ideal-int
  2980. pkg syscall (netbsd-arm64-cgo), const SYS_DUP2 = 90
  2981. pkg syscall (netbsd-arm64-cgo), const SYS_DUP2 ideal-int
  2982. pkg syscall (netbsd-arm64-cgo), const SYS_DUP3 = 454
  2983. pkg syscall (netbsd-arm64-cgo), const SYS_DUP3 ideal-int
  2984. pkg syscall (netbsd-arm64-cgo), const SYS_DUP = 41
  2985. pkg syscall (netbsd-arm64-cgo), const SYS_DUP ideal-int
  2986. pkg syscall (netbsd-arm64-cgo), const SYS_EXECVE = 59
  2987. pkg syscall (netbsd-arm64-cgo), const SYS_EXECVE ideal-int
  2988. pkg syscall (netbsd-arm64-cgo), const SYS_EXIT = 1
  2989. pkg syscall (netbsd-arm64-cgo), const SYS_EXIT ideal-int
  2990. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTRCTL = 360
  2991. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTRCTL ideal-int
  2992. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FD = 366
  2993. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
  2994. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FILE = 363
  2995. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
  2996. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_LINK = 369
  2997. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
  2998. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FD = 365
  2999. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FD ideal-int
  3000. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FILE = 362
  3001. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FILE ideal-int
  3002. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_LINK = 368
  3003. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_LINK ideal-int
  3004. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FD = 370
  3005. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FD ideal-int
  3006. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FILE = 371
  3007. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int
  3008. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_LINK = 372
  3009. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int
  3010. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FD = 364
  3011. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FD ideal-int
  3012. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FILE = 361
  3013. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FILE ideal-int
  3014. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_LINK = 367
  3015. pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_LINK ideal-int
  3016. pkg syscall (netbsd-arm64-cgo), const SYS_FACCESSAT = 462
  3017. pkg syscall (netbsd-arm64-cgo), const SYS_FACCESSAT ideal-int
  3018. pkg syscall (netbsd-arm64-cgo), const SYS_FCHDIR = 13
  3019. pkg syscall (netbsd-arm64-cgo), const SYS_FCHDIR ideal-int
  3020. pkg syscall (netbsd-arm64-cgo), const SYS_FCHFLAGS = 35
  3021. pkg syscall (netbsd-arm64-cgo), const SYS_FCHFLAGS ideal-int
  3022. pkg syscall (netbsd-arm64-cgo), const SYS_FCHMOD = 124
  3023. pkg syscall (netbsd-arm64-cgo), const SYS_FCHMODAT = 463
  3024. pkg syscall (netbsd-arm64-cgo), const SYS_FCHMODAT ideal-int
  3025. pkg syscall (netbsd-arm64-cgo), const SYS_FCHMOD ideal-int
  3026. pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWN = 123
  3027. pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWNAT = 464
  3028. pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWNAT ideal-int
  3029. pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWN ideal-int
  3030. pkg syscall (netbsd-arm64-cgo), const SYS_FCHROOT = 297
  3031. pkg syscall (netbsd-arm64-cgo), const SYS_FCHROOT ideal-int
  3032. pkg syscall (netbsd-arm64-cgo), const SYS_FCNTL = 92
  3033. pkg syscall (netbsd-arm64-cgo), const SYS_FCNTL ideal-int
  3034. pkg syscall (netbsd-arm64-cgo), const SYS_FDATASYNC = 241
  3035. pkg syscall (netbsd-arm64-cgo), const SYS_FDATASYNC ideal-int
  3036. pkg syscall (netbsd-arm64-cgo), const SYS_FEXECVE = 465
  3037. pkg syscall (netbsd-arm64-cgo), const SYS_FEXECVE ideal-int
  3038. pkg syscall (netbsd-arm64-cgo), const SYS_FGETXATTR = 380
  3039. pkg syscall (netbsd-arm64-cgo), const SYS_FGETXATTR ideal-int
  3040. pkg syscall (netbsd-arm64-cgo), const SYS_FHSTAT = 451
  3041. pkg syscall (netbsd-arm64-cgo), const SYS_FHSTAT ideal-int
  3042. pkg syscall (netbsd-arm64-cgo), const SYS_FKTRACE = 288
  3043. pkg syscall (netbsd-arm64-cgo), const SYS_FKTRACE ideal-int
  3044. pkg syscall (netbsd-arm64-cgo), const SYS_FLISTXATTR = 383
  3045. pkg syscall (netbsd-arm64-cgo), const SYS_FLISTXATTR ideal-int
  3046. pkg syscall (netbsd-arm64-cgo), const SYS_FLOCK = 131
  3047. pkg syscall (netbsd-arm64-cgo), const SYS_FLOCK ideal-int
  3048. pkg syscall (netbsd-arm64-cgo), const SYS_FORK = 2
  3049. pkg syscall (netbsd-arm64-cgo), const SYS_FORK ideal-int
  3050. pkg syscall (netbsd-arm64-cgo), const SYS_FPATHCONF = 192
  3051. pkg syscall (netbsd-arm64-cgo), const SYS_FPATHCONF ideal-int
  3052. pkg syscall (netbsd-arm64-cgo), const SYS_FREMOVEXATTR = 386
  3053. pkg syscall (netbsd-arm64-cgo), const SYS_FREMOVEXATTR ideal-int
  3054. pkg syscall (netbsd-arm64-cgo), const SYS_FSETXATTR = 377
  3055. pkg syscall (netbsd-arm64-cgo), const SYS_FSETXATTR ideal-int
  3056. pkg syscall (netbsd-arm64-cgo), const SYS_FSTAT = 440
  3057. pkg syscall (netbsd-arm64-cgo), const SYS_FSTATAT = 466
  3058. pkg syscall (netbsd-arm64-cgo), const SYS_FSTATAT ideal-int
  3059. pkg syscall (netbsd-arm64-cgo), const SYS_FSTAT ideal-int
  3060. pkg syscall (netbsd-arm64-cgo), const SYS_FSTATVFS1 = 358
  3061. pkg syscall (netbsd-arm64-cgo), const SYS_FSTATVFS1 ideal-int
  3062. pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC = 95
  3063. pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC ideal-int
  3064. pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC_RANGE = 354
  3065. pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC_RANGE ideal-int
  3066. pkg syscall (netbsd-arm64-cgo), const SYS_FTRUNCATE = 201
  3067. pkg syscall (netbsd-arm64-cgo), const SYS_FTRUNCATE ideal-int
  3068. pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMENS = 472
  3069. pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMENS ideal-int
  3070. pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMES = 423
  3071. pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMES ideal-int
  3072. pkg syscall (netbsd-arm64-cgo), const SYS_GETCONTEXT = 307
  3073. pkg syscall (netbsd-arm64-cgo), const SYS_GETCONTEXT ideal-int
  3074. pkg syscall (netbsd-arm64-cgo), const SYS___GETCWD = 296
  3075. pkg syscall (netbsd-arm64-cgo), const SYS___GETCWD ideal-int
  3076. pkg syscall (netbsd-arm64-cgo), const SYS_GETDENTS = 390
  3077. pkg syscall (netbsd-arm64-cgo), const SYS_GETDENTS ideal-int
  3078. pkg syscall (netbsd-arm64-cgo), const SYS_GETEGID = 43
  3079. pkg syscall (netbsd-arm64-cgo), const SYS_GETEGID ideal-int
  3080. pkg syscall (netbsd-arm64-cgo), const SYS_GETEUID = 25
  3081. pkg syscall (netbsd-arm64-cgo), const SYS_GETEUID ideal-int
  3082. pkg syscall (netbsd-arm64-cgo), const SYS_GETFH = 395
  3083. pkg syscall (netbsd-arm64-cgo), const SYS_GETFH ideal-int
  3084. pkg syscall (netbsd-arm64-cgo), const SYS_GETGID = 47
  3085. pkg syscall (netbsd-arm64-cgo), const SYS_GETGID ideal-int
  3086. pkg syscall (netbsd-arm64-cgo), const SYS_GETGROUPS = 79
  3087. pkg syscall (netbsd-arm64-cgo), const SYS_GETGROUPS ideal-int
  3088. pkg syscall (netbsd-arm64-cgo), const SYS_GETITIMER = 426
  3089. pkg syscall (netbsd-arm64-cgo), const SYS_GETITIMER ideal-int
  3090. pkg syscall (netbsd-arm64-cgo), const SYS___GETLOGIN = 49
  3091. pkg syscall (netbsd-arm64-cgo), const SYS___GETLOGIN ideal-int
  3092. pkg syscall (netbsd-arm64-cgo), const SYS_GETPEERNAME = 31
  3093. pkg syscall (netbsd-arm64-cgo), const SYS_GETPEERNAME ideal-int
  3094. pkg syscall (netbsd-arm64-cgo), const SYS_GETPGID = 207
  3095. pkg syscall (netbsd-arm64-cgo), const SYS_GETPGID ideal-int
  3096. pkg syscall (netbsd-arm64-cgo), const SYS_GETPGRP = 81
  3097. pkg syscall (netbsd-arm64-cgo), const SYS_GETPGRP ideal-int
  3098. pkg syscall (netbsd-arm64-cgo), const SYS_GETPID = 20
  3099. pkg syscall (netbsd-arm64-cgo), const SYS_GETPID ideal-int
  3100. pkg syscall (netbsd-arm64-cgo), const SYS_GETPPID = 39
  3101. pkg syscall (netbsd-arm64-cgo), const SYS_GETPPID ideal-int
  3102. pkg syscall (netbsd-arm64-cgo), const SYS_GETPRIORITY = 100
  3103. pkg syscall (netbsd-arm64-cgo), const SYS_GETPRIORITY ideal-int
  3104. pkg syscall (netbsd-arm64-cgo), const SYS_GETRLIMIT = 194
  3105. pkg syscall (netbsd-arm64-cgo), const SYS_GETRLIMIT ideal-int
  3106. pkg syscall (netbsd-arm64-cgo), const SYS_GETRUSAGE = 445
  3107. pkg syscall (netbsd-arm64-cgo), const SYS_GETRUSAGE ideal-int
  3108. pkg syscall (netbsd-arm64-cgo), const SYS_GETSID = 286
  3109. pkg syscall (netbsd-arm64-cgo), const SYS_GETSID ideal-int
  3110. pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKNAME = 32
  3111. pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKNAME ideal-int
  3112. pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKOPT = 118
  3113. pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKOPT ideal-int
  3114. pkg syscall (netbsd-arm64-cgo), const SYS_GETTIMEOFDAY = 418
  3115. pkg syscall (netbsd-arm64-cgo), const SYS_GETTIMEOFDAY ideal-int
  3116. pkg syscall (netbsd-arm64-cgo), const SYS_GETUID = 24
  3117. pkg syscall (netbsd-arm64-cgo), const SYS_GETUID ideal-int
  3118. pkg syscall (netbsd-arm64-cgo), const SYS_GETVFSSTAT = 356
  3119. pkg syscall (netbsd-arm64-cgo), const SYS_GETVFSSTAT ideal-int
  3120. pkg syscall (netbsd-arm64-cgo), const SYS_GETXATTR = 378
  3121. pkg syscall (netbsd-arm64-cgo), const SYS_GETXATTR ideal-int
  3122. pkg syscall (netbsd-arm64-cgo), const SYS_IOCTL = 54
  3123. pkg syscall (netbsd-arm64-cgo), const SYS_IOCTL ideal-int
  3124. pkg syscall (netbsd-arm64-cgo), const SYS_ISSETUGID = 305
  3125. pkg syscall (netbsd-arm64-cgo), const SYS_ISSETUGID ideal-int
  3126. pkg syscall (netbsd-arm64-cgo), const SYS_KEVENT = 435
  3127. pkg syscall (netbsd-arm64-cgo), const SYS_KEVENT ideal-int
  3128. pkg syscall (netbsd-arm64-cgo), const SYS_KILL = 37
  3129. pkg syscall (netbsd-arm64-cgo), const SYS_KILL ideal-int
  3130. pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE1 = 455
  3131. pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE1 ideal-int
  3132. pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE = 344
  3133. pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE ideal-int
  3134. pkg syscall (netbsd-arm64-cgo), const SYS_KTRACE = 45
  3135. pkg syscall (netbsd-arm64-cgo), const SYS_KTRACE ideal-int
  3136. pkg syscall (netbsd-arm64-cgo), const SYS_LCHFLAGS = 304
  3137. pkg syscall (netbsd-arm64-cgo), const SYS_LCHFLAGS ideal-int
  3138. pkg syscall (netbsd-arm64-cgo), const SYS_LCHMOD = 274
  3139. pkg syscall (netbsd-arm64-cgo), const SYS_LCHMOD ideal-int
  3140. pkg syscall (netbsd-arm64-cgo), const SYS_LCHOWN = 275
  3141. pkg syscall (netbsd-arm64-cgo), const SYS_LCHOWN ideal-int
  3142. pkg syscall (netbsd-arm64-cgo), const SYS_LGETXATTR = 379
  3143. pkg syscall (netbsd-arm64-cgo), const SYS_LGETXATTR ideal-int
  3144. pkg syscall (netbsd-arm64-cgo), const SYS_LINK = 9
  3145. pkg syscall (netbsd-arm64-cgo), const SYS_LINKAT = 457
  3146. pkg syscall (netbsd-arm64-cgo), const SYS_LINKAT ideal-int
  3147. pkg syscall (netbsd-arm64-cgo), const SYS_LINK ideal-int
  3148. pkg syscall (netbsd-arm64-cgo), const SYS_LISTEN = 106
  3149. pkg syscall (netbsd-arm64-cgo), const SYS_LISTEN ideal-int
  3150. pkg syscall (netbsd-arm64-cgo), const SYS_LISTXATTR = 381
  3151. pkg syscall (netbsd-arm64-cgo), const SYS_LISTXATTR ideal-int
  3152. pkg syscall (netbsd-arm64-cgo), const SYS_LLISTXATTR = 382
  3153. pkg syscall (netbsd-arm64-cgo), const SYS_LLISTXATTR ideal-int
  3154. pkg syscall (netbsd-arm64-cgo), const SYS_LREMOVEXATTR = 385
  3155. pkg syscall (netbsd-arm64-cgo), const SYS_LREMOVEXATTR ideal-int
  3156. pkg syscall (netbsd-arm64-cgo), const SYS_LSEEK = 199
  3157. pkg syscall (netbsd-arm64-cgo), const SYS_LSEEK ideal-int
  3158. pkg syscall (netbsd-arm64-cgo), const SYS_LSETXATTR = 376
  3159. pkg syscall (netbsd-arm64-cgo), const SYS_LSETXATTR ideal-int
  3160. pkg syscall (netbsd-arm64-cgo), const SYS_LSTAT = 441
  3161. pkg syscall (netbsd-arm64-cgo), const SYS_LSTAT ideal-int
  3162. pkg syscall (netbsd-arm64-cgo), const SYS_LUTIMES = 424
  3163. pkg syscall (netbsd-arm64-cgo), const SYS_LUTIMES ideal-int
  3164. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CONTINUE = 314
  3165. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CONTINUE ideal-int
  3166. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CREATE = 309
  3167. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CREATE ideal-int
  3168. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CTL = 325
  3169. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CTL ideal-int
  3170. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_DETACH = 319
  3171. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_DETACH ideal-int
  3172. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_EXIT = 310
  3173. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_EXIT ideal-int
  3174. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETNAME = 324
  3175. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETNAME ideal-int
  3176. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETPRIVATE = 316
  3177. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETPRIVATE ideal-int
  3178. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_KILL = 318
  3179. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_KILL ideal-int
  3180. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_PARK = 434
  3181. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_PARK ideal-int
  3182. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SELF = 311
  3183. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SELF ideal-int
  3184. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETNAME = 323
  3185. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETNAME ideal-int
  3186. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETPRIVATE = 317
  3187. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETPRIVATE ideal-int
  3188. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SUSPEND = 313
  3189. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SUSPEND ideal-int
  3190. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK = 321
  3191. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK_ALL = 322
  3192. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK_ALL ideal-int
  3193. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK ideal-int
  3194. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAIT = 312
  3195. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAIT ideal-int
  3196. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAKEUP = 315
  3197. pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAKEUP ideal-int
  3198. pkg syscall (netbsd-arm64-cgo), const SYS_MADVISE = 75
  3199. pkg syscall (netbsd-arm64-cgo), const SYS_MADVISE ideal-int
  3200. pkg syscall (netbsd-arm64-cgo), const SYS_MINCORE = 78
  3201. pkg syscall (netbsd-arm64-cgo), const SYS_MINCORE ideal-int
  3202. pkg syscall (netbsd-arm64-cgo), const SYS_MINHERIT = 273
  3203. pkg syscall (netbsd-arm64-cgo), const SYS_MINHERIT ideal-int
  3204. pkg syscall (netbsd-arm64-cgo), const SYS_MKDIR = 136
  3205. pkg syscall (netbsd-arm64-cgo), const SYS_MKDIRAT = 461
  3206. pkg syscall (netbsd-arm64-cgo), const SYS_MKDIRAT ideal-int
  3207. pkg syscall (netbsd-arm64-cgo), const SYS_MKDIR ideal-int
  3208. pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFO = 132
  3209. pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFOAT = 459
  3210. pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFOAT ideal-int
  3211. pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFO ideal-int
  3212. pkg syscall (netbsd-arm64-cgo), const SYS_MKNOD = 450
  3213. pkg syscall (netbsd-arm64-cgo), const SYS_MKNODAT = 460
  3214. pkg syscall (netbsd-arm64-cgo), const SYS_MKNODAT ideal-int
  3215. pkg syscall (netbsd-arm64-cgo), const SYS_MKNOD ideal-int
  3216. pkg syscall (netbsd-arm64-cgo), const SYS_MLOCK = 203
  3217. pkg syscall (netbsd-arm64-cgo), const SYS_MLOCKALL = 242
  3218. pkg syscall (netbsd-arm64-cgo), const SYS_MLOCKALL ideal-int
  3219. pkg syscall (netbsd-arm64-cgo), const SYS_MLOCK ideal-int
  3220. pkg syscall (netbsd-arm64-cgo), const SYS_MMAP = 197
  3221. pkg syscall (netbsd-arm64-cgo), const SYS_MMAP ideal-int
  3222. pkg syscall (netbsd-arm64-cgo), const SYS_MODCTL = 246
  3223. pkg syscall (netbsd-arm64-cgo), const SYS_MODCTL ideal-int
  3224. pkg syscall (netbsd-arm64-cgo), const SYS_MOUNT = 410
  3225. pkg syscall (netbsd-arm64-cgo), const SYS_MOUNT ideal-int
  3226. pkg syscall (netbsd-arm64-cgo), const SYS_MPROTECT = 74
  3227. pkg syscall (netbsd-arm64-cgo), const SYS_MPROTECT ideal-int
  3228. pkg syscall (netbsd-arm64-cgo), const SYS_MREMAP = 411
  3229. pkg syscall (netbsd-arm64-cgo), const SYS_MREMAP ideal-int
  3230. pkg syscall (netbsd-arm64-cgo), const SYS_MSGCTL = 444
  3231. pkg syscall (netbsd-arm64-cgo), const SYS_MSGCTL ideal-int
  3232. pkg syscall (netbsd-arm64-cgo), const SYS_MSGGET = 225
  3233. pkg syscall (netbsd-arm64-cgo), const SYS_MSGGET ideal-int
  3234. pkg syscall (netbsd-arm64-cgo), const SYS_MSGRCV = 227
  3235. pkg syscall (netbsd-arm64-cgo), const SYS_MSGRCV ideal-int
  3236. pkg syscall (netbsd-arm64-cgo), const SYS_MSGSND = 226
  3237. pkg syscall (netbsd-arm64-cgo), const SYS_MSGSND ideal-int
  3238. pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCK = 204
  3239. pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCKALL = 243
  3240. pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCKALL ideal-int
  3241. pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCK ideal-int
  3242. pkg syscall (netbsd-arm64-cgo), const SYS_MUNMAP = 73
  3243. pkg syscall (netbsd-arm64-cgo), const SYS_MUNMAP ideal-int
  3244. pkg syscall (netbsd-arm64-cgo), const SYS_NANOSLEEP = 430
  3245. pkg syscall (netbsd-arm64-cgo), const SYS_NANOSLEEP ideal-int
  3246. pkg syscall (netbsd-arm64-cgo), const SYS_NTP_ADJTIME = 176
  3247. pkg syscall (netbsd-arm64-cgo), const SYS_NTP_ADJTIME ideal-int
  3248. pkg syscall (netbsd-arm64-cgo), const SYS_NTP_GETTIME = 448
  3249. pkg syscall (netbsd-arm64-cgo), const SYS_NTP_GETTIME ideal-int
  3250. pkg syscall (netbsd-arm64-cgo), const SYS_OPEN = 5
  3251. pkg syscall (netbsd-arm64-cgo), const SYS_OPENAT = 468
  3252. pkg syscall (netbsd-arm64-cgo), const SYS_OPENAT ideal-int
  3253. pkg syscall (netbsd-arm64-cgo), const SYS_OPEN ideal-int
  3254. pkg syscall (netbsd-arm64-cgo), const SYS_PACCEPT = 456
  3255. pkg syscall (netbsd-arm64-cgo), const SYS_PACCEPT ideal-int
  3256. pkg syscall (netbsd-arm64-cgo), const SYS_PATHCONF = 191
  3257. pkg syscall (netbsd-arm64-cgo), const SYS_PATHCONF ideal-int
  3258. pkg syscall (netbsd-arm64-cgo), const SYS_PIPE2 = 453
  3259. pkg syscall (netbsd-arm64-cgo), const SYS_PIPE2 ideal-int
  3260. pkg syscall (netbsd-arm64-cgo), const SYS_PIPE = 42
  3261. pkg syscall (netbsd-arm64-cgo), const SYS_PIPE ideal-int
  3262. pkg syscall (netbsd-arm64-cgo), const SYS_PMC_CONTROL = 342
  3263. pkg syscall (netbsd-arm64-cgo), const SYS_PMC_CONTROL ideal-int
  3264. pkg syscall (netbsd-arm64-cgo), const SYS_PMC_GET_INFO = 341
  3265. pkg syscall (netbsd-arm64-cgo), const SYS_PMC_GET_INFO ideal-int
  3266. pkg syscall (netbsd-arm64-cgo), const SYS_POLL = 209
  3267. pkg syscall (netbsd-arm64-cgo), const SYS_POLL ideal-int
  3268. pkg syscall (netbsd-arm64-cgo), const SYS_POLLTS = 437
  3269. pkg syscall (netbsd-arm64-cgo), const SYS_POLLTS ideal-int
  3270. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_CHOWN = 283
  3271. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_CHOWN ideal-int
  3272. pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_FADVISE = 416
  3273. pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_FADVISE ideal-int
  3274. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_FCHOWN = 284
  3275. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_FCHOWN ideal-int
  3276. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_LCHOWN = 285
  3277. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_LCHOWN ideal-int
  3278. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_RENAME = 270
  3279. pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_RENAME ideal-int
  3280. pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_SPAWN = 474
  3281. pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_SPAWN ideal-int
  3282. pkg syscall (netbsd-arm64-cgo), const SYS_PREAD = 173
  3283. pkg syscall (netbsd-arm64-cgo), const SYS_PREAD ideal-int
  3284. pkg syscall (netbsd-arm64-cgo), const SYS_PREADV = 289
  3285. pkg syscall (netbsd-arm64-cgo), const SYS_PREADV ideal-int
  3286. pkg syscall (netbsd-arm64-cgo), const SYS_PROFIL = 44
  3287. pkg syscall (netbsd-arm64-cgo), const SYS_PROFIL ideal-int
  3288. pkg syscall (netbsd-arm64-cgo), const SYS_PSELECT = 436
  3289. pkg syscall (netbsd-arm64-cgo), const SYS_PSELECT ideal-int
  3290. pkg syscall (netbsd-arm64-cgo), const SYS_PSET_ASSIGN = 414
  3291. pkg syscall (netbsd-arm64-cgo), const SYS_PSET_ASSIGN ideal-int
  3292. pkg syscall (netbsd-arm64-cgo), const SYS__PSET_BIND = 415
  3293. pkg syscall (netbsd-arm64-cgo), const SYS__PSET_BIND ideal-int
  3294. pkg syscall (netbsd-arm64-cgo), const SYS_PSET_CREATE = 412
  3295. pkg syscall (netbsd-arm64-cgo), const SYS_PSET_CREATE ideal-int
  3296. pkg syscall (netbsd-arm64-cgo), const SYS_PSET_DESTROY = 413
  3297. pkg syscall (netbsd-arm64-cgo), const SYS_PSET_DESTROY ideal-int
  3298. pkg syscall (netbsd-arm64-cgo), const SYS_PTRACE = 26
  3299. pkg syscall (netbsd-arm64-cgo), const SYS_PTRACE ideal-int
  3300. pkg syscall (netbsd-arm64-cgo), const SYS_PWRITE = 174
  3301. pkg syscall (netbsd-arm64-cgo), const SYS_PWRITE ideal-int
  3302. pkg syscall (netbsd-arm64-cgo), const SYS_PWRITEV = 290
  3303. pkg syscall (netbsd-arm64-cgo), const SYS_PWRITEV ideal-int
  3304. pkg syscall (netbsd-arm64-cgo), const SYS___QUOTACTL = 473
  3305. pkg syscall (netbsd-arm64-cgo), const SYS___QUOTACTL ideal-int
  3306. pkg syscall (netbsd-arm64-cgo), const SYS_RASCTL = 343
  3307. pkg syscall (netbsd-arm64-cgo), const SYS_RASCTL ideal-int
  3308. pkg syscall (netbsd-arm64-cgo), const SYS_READ = 3
  3309. pkg syscall (netbsd-arm64-cgo), const SYS_READ ideal-int
  3310. pkg syscall (netbsd-arm64-cgo), const SYS_READLINK = 58
  3311. pkg syscall (netbsd-arm64-cgo), const SYS_READLINKAT = 469
  3312. pkg syscall (netbsd-arm64-cgo), const SYS_READLINKAT ideal-int
  3313. pkg syscall (netbsd-arm64-cgo), const SYS_READLINK ideal-int
  3314. pkg syscall (netbsd-arm64-cgo), const SYS_READV = 120
  3315. pkg syscall (netbsd-arm64-cgo), const SYS_READV ideal-int
  3316. pkg syscall (netbsd-arm64-cgo), const SYS_REBOOT = 208
  3317. pkg syscall (netbsd-arm64-cgo), const SYS_REBOOT ideal-int
  3318. pkg syscall (netbsd-arm64-cgo), const SYS_RECVFROM = 29
  3319. pkg syscall (netbsd-arm64-cgo), const SYS_RECVFROM ideal-int
  3320. pkg syscall (netbsd-arm64-cgo), const SYS_RECVMMSG = 475
  3321. pkg syscall (netbsd-arm64-cgo), const SYS_RECVMMSG ideal-int
  3322. pkg syscall (netbsd-arm64-cgo), const SYS_RECVMSG = 27
  3323. pkg syscall (netbsd-arm64-cgo), const SYS_RECVMSG ideal-int
  3324. pkg syscall (netbsd-arm64-cgo), const SYS_REMOVEXATTR = 384
  3325. pkg syscall (netbsd-arm64-cgo), const SYS_REMOVEXATTR ideal-int
  3326. pkg syscall (netbsd-arm64-cgo), const SYS_RENAME = 128
  3327. pkg syscall (netbsd-arm64-cgo), const SYS_RENAMEAT = 458
  3328. pkg syscall (netbsd-arm64-cgo), const SYS_RENAMEAT ideal-int
  3329. pkg syscall (netbsd-arm64-cgo), const SYS_RENAME ideal-int
  3330. pkg syscall (netbsd-arm64-cgo), const SYS_REVOKE = 56
  3331. pkg syscall (netbsd-arm64-cgo), const SYS_REVOKE ideal-int
  3332. pkg syscall (netbsd-arm64-cgo), const SYS_RMDIR = 137
  3333. pkg syscall (netbsd-arm64-cgo), const SYS_RMDIR ideal-int
  3334. pkg syscall (netbsd-arm64-cgo), const SYS_SBRK = 69
  3335. pkg syscall (netbsd-arm64-cgo), const SYS_SBRK ideal-int
  3336. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETAFFINITY = 349
  3337. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETAFFINITY ideal-int
  3338. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETPARAM = 347
  3339. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETPARAM ideal-int
  3340. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETAFFINITY = 348
  3341. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETAFFINITY ideal-int
  3342. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETPARAM = 346
  3343. pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETPARAM ideal-int
  3344. pkg syscall (netbsd-arm64-cgo), const SYS_SCHED_YIELD = 350
  3345. pkg syscall (netbsd-arm64-cgo), const SYS_SCHED_YIELD ideal-int
  3346. pkg syscall (netbsd-arm64-cgo), const SYS_SELECT = 417
  3347. pkg syscall (netbsd-arm64-cgo), const SYS_SELECT ideal-int
  3348. pkg syscall (netbsd-arm64-cgo), const SYS_SEMCONFIG = 223
  3349. pkg syscall (netbsd-arm64-cgo), const SYS_SEMCONFIG ideal-int
  3350. pkg syscall (netbsd-arm64-cgo), const SYS___SEMCTL = 442
  3351. pkg syscall (netbsd-arm64-cgo), const SYS___SEMCTL ideal-int
  3352. pkg syscall (netbsd-arm64-cgo), const SYS_SEMGET = 221
  3353. pkg syscall (netbsd-arm64-cgo), const SYS_SEMGET ideal-int
  3354. pkg syscall (netbsd-arm64-cgo), const SYS_SEMOP = 222
  3355. pkg syscall (netbsd-arm64-cgo), const SYS_SEMOP ideal-int
  3356. pkg syscall (netbsd-arm64-cgo), const SYS_SENDMMSG = 476
  3357. pkg syscall (netbsd-arm64-cgo), const SYS_SENDMMSG ideal-int
  3358. pkg syscall (netbsd-arm64-cgo), const SYS_SENDMSG = 28
  3359. pkg syscall (netbsd-arm64-cgo), const SYS_SENDMSG ideal-int
  3360. pkg syscall (netbsd-arm64-cgo), const SYS_SENDTO = 133
  3361. pkg syscall (netbsd-arm64-cgo), const SYS_SENDTO ideal-int
  3362. pkg syscall (netbsd-arm64-cgo), const SYS_SETCONTEXT = 308
  3363. pkg syscall (netbsd-arm64-cgo), const SYS_SETCONTEXT ideal-int
  3364. pkg syscall (netbsd-arm64-cgo), const SYS_SETEGID = 182
  3365. pkg syscall (netbsd-arm64-cgo), const SYS_SETEGID ideal-int
  3366. pkg syscall (netbsd-arm64-cgo), const SYS_SETEUID = 183
  3367. pkg syscall (netbsd-arm64-cgo), const SYS_SETEUID ideal-int
  3368. pkg syscall (netbsd-arm64-cgo), const SYS_SETGID = 181
  3369. pkg syscall (netbsd-arm64-cgo), const SYS_SETGID ideal-int
  3370. pkg syscall (netbsd-arm64-cgo), const SYS_SETGROUPS = 80
  3371. pkg syscall (netbsd-arm64-cgo), const SYS_SETGROUPS ideal-int
  3372. pkg syscall (netbsd-arm64-cgo), const SYS_SETITIMER = 425
  3373. pkg syscall (netbsd-arm64-cgo), const SYS_SETITIMER ideal-int
  3374. pkg syscall (netbsd-arm64-cgo), const SYS___SETLOGIN = 50
  3375. pkg syscall (netbsd-arm64-cgo), const SYS___SETLOGIN ideal-int
  3376. pkg syscall (netbsd-arm64-cgo), const SYS_SETPGID = 82
  3377. pkg syscall (netbsd-arm64-cgo), const SYS_SETPGID ideal-int
  3378. pkg syscall (netbsd-arm64-cgo), const SYS_SETPRIORITY = 96
  3379. pkg syscall (netbsd-arm64-cgo), const SYS_SETPRIORITY ideal-int
  3380. pkg syscall (netbsd-arm64-cgo), const SYS_SETREGID = 127
  3381. pkg syscall (netbsd-arm64-cgo), const SYS_SETREGID ideal-int
  3382. pkg syscall (netbsd-arm64-cgo), const SYS_SETREUID = 126
  3383. pkg syscall (netbsd-arm64-cgo), const SYS_SETREUID ideal-int
  3384. pkg syscall (netbsd-arm64-cgo), const SYS_SETRLIMIT = 195
  3385. pkg syscall (netbsd-arm64-cgo), const SYS_SETRLIMIT ideal-int
  3386. pkg syscall (netbsd-arm64-cgo), const SYS_SETSID = 147
  3387. pkg syscall (netbsd-arm64-cgo), const SYS_SETSID ideal-int
  3388. pkg syscall (netbsd-arm64-cgo), const SYS_SETSOCKOPT = 105
  3389. pkg syscall (netbsd-arm64-cgo), const SYS_SETSOCKOPT ideal-int
  3390. pkg syscall (netbsd-arm64-cgo), const SYS_SETTIMEOFDAY = 419
  3391. pkg syscall (netbsd-arm64-cgo), const SYS_SETTIMEOFDAY ideal-int
  3392. pkg syscall (netbsd-arm64-cgo), const SYS_SETUID = 23
  3393. pkg syscall (netbsd-arm64-cgo), const SYS_SETUID ideal-int
  3394. pkg syscall (netbsd-arm64-cgo), const SYS_SETXATTR = 375
  3395. pkg syscall (netbsd-arm64-cgo), const SYS_SETXATTR ideal-int
  3396. pkg syscall (netbsd-arm64-cgo), const SYS_SHMAT = 228
  3397. pkg syscall (netbsd-arm64-cgo), const SYS_SHMAT ideal-int
  3398. pkg syscall (netbsd-arm64-cgo), const SYS_SHMCTL = 443
  3399. pkg syscall (netbsd-arm64-cgo), const SYS_SHMCTL ideal-int
  3400. pkg syscall (netbsd-arm64-cgo), const SYS_SHMDT = 230
  3401. pkg syscall (netbsd-arm64-cgo), const SYS_SHMDT ideal-int
  3402. pkg syscall (netbsd-arm64-cgo), const SYS_SHMGET = 231
  3403. pkg syscall (netbsd-arm64-cgo), const SYS_SHMGET ideal-int
  3404. pkg syscall (netbsd-arm64-cgo), const SYS_SHUTDOWN = 134
  3405. pkg syscall (netbsd-arm64-cgo), const SYS_SHUTDOWN ideal-int
  3406. pkg syscall (netbsd-arm64-cgo), const SYS___SIGACTION_SIGTRAMP = 340
  3407. pkg syscall (netbsd-arm64-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int
  3408. pkg syscall (netbsd-arm64-cgo), const SYS_SIGQUEUEINFO = 245
  3409. pkg syscall (netbsd-arm64-cgo), const SYS_SIGQUEUEINFO ideal-int
  3410. pkg syscall (netbsd-arm64-cgo), const SYS___SIGTIMEDWAIT = 431
  3411. pkg syscall (netbsd-arm64-cgo), const SYS___SIGTIMEDWAIT ideal-int
  3412. pkg syscall (netbsd-arm64-cgo), const SYS_SOCKET = 394
  3413. pkg syscall (netbsd-arm64-cgo), const SYS_SOCKET ideal-int
  3414. pkg syscall (netbsd-arm64-cgo), const SYS_SOCKETPAIR = 135
  3415. pkg syscall (netbsd-arm64-cgo), const SYS_SOCKETPAIR ideal-int
  3416. pkg syscall (netbsd-arm64-cgo), const SYS_SSTK = 70
  3417. pkg syscall (netbsd-arm64-cgo), const SYS_SSTK ideal-int
  3418. pkg syscall (netbsd-arm64-cgo), const SYS_STAT = 439
  3419. pkg syscall (netbsd-arm64-cgo), const SYS_STAT ideal-int
  3420. pkg syscall (netbsd-arm64-cgo), const SYS_STATVFS1 = 357
  3421. pkg syscall (netbsd-arm64-cgo), const SYS_STATVFS1 ideal-int
  3422. pkg syscall (netbsd-arm64-cgo), const SYS_SWAPCTL = 271
  3423. pkg syscall (netbsd-arm64-cgo), const SYS_SWAPCTL ideal-int
  3424. pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINK = 57
  3425. pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINKAT = 470
  3426. pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINKAT ideal-int
  3427. pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINK ideal-int
  3428. pkg syscall (netbsd-arm64-cgo), const SYS_SYNC = 36
  3429. pkg syscall (netbsd-arm64-cgo), const SYS_SYNC ideal-int
  3430. pkg syscall (netbsd-arm64-cgo), const SYS_SYSARCH = 165
  3431. pkg syscall (netbsd-arm64-cgo), const SYS_SYSARCH ideal-int
  3432. pkg syscall (netbsd-arm64-cgo), const SYS___SYSCTL = 202
  3433. pkg syscall (netbsd-arm64-cgo), const SYS___SYSCTL ideal-int
  3434. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_CREATE = 235
  3435. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_CREATE ideal-int
  3436. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_DELETE = 236
  3437. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_DELETE ideal-int
  3438. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETOVERRUN = 239
  3439. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETOVERRUN ideal-int
  3440. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETTIME = 447
  3441. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETTIME ideal-int
  3442. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_SETTIME = 446
  3443. pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_SETTIME ideal-int
  3444. pkg syscall (netbsd-arm64-cgo), const SYS_TRUNCATE = 200
  3445. pkg syscall (netbsd-arm64-cgo), const SYS_TRUNCATE ideal-int
  3446. pkg syscall (netbsd-arm64-cgo), const SYS_UMASK = 60
  3447. pkg syscall (netbsd-arm64-cgo), const SYS_UMASK ideal-int
  3448. pkg syscall (netbsd-arm64-cgo), const SYS_UNDELETE = 205
  3449. pkg syscall (netbsd-arm64-cgo), const SYS_UNDELETE ideal-int
  3450. pkg syscall (netbsd-arm64-cgo), const SYS_UNLINK = 10
  3451. pkg syscall (netbsd-arm64-cgo), const SYS_UNLINKAT = 471
  3452. pkg syscall (netbsd-arm64-cgo), const SYS_UNLINKAT ideal-int
  3453. pkg syscall (netbsd-arm64-cgo), const SYS_UNLINK ideal-int
  3454. pkg syscall (netbsd-arm64-cgo), const SYS_UNMOUNT = 22
  3455. pkg syscall (netbsd-arm64-cgo), const SYS_UNMOUNT ideal-int
  3456. pkg syscall (netbsd-arm64-cgo), const SYS_UTIMENSAT = 467
  3457. pkg syscall (netbsd-arm64-cgo), const SYS_UTIMENSAT ideal-int
  3458. pkg syscall (netbsd-arm64-cgo), const SYS_UTIMES = 420
  3459. pkg syscall (netbsd-arm64-cgo), const SYS_UTIMES ideal-int
  3460. pkg syscall (netbsd-arm64-cgo), const SYS_UTRACE = 306
  3461. pkg syscall (netbsd-arm64-cgo), const SYS_UTRACE ideal-int
  3462. pkg syscall (netbsd-arm64-cgo), const SYS_UUIDGEN = 355
  3463. pkg syscall (netbsd-arm64-cgo), const SYS_UUIDGEN ideal-int
  3464. pkg syscall (netbsd-arm64-cgo), const SYS_VADVISE = 72
  3465. pkg syscall (netbsd-arm64-cgo), const SYS_VADVISE ideal-int
  3466. pkg syscall (netbsd-arm64-cgo), const SYS_VFORK = 66
  3467. pkg syscall (netbsd-arm64-cgo), const SYS_VFORK ideal-int
  3468. pkg syscall (netbsd-arm64-cgo), const SYS_WAIT4 = 449
  3469. pkg syscall (netbsd-arm64-cgo), const SYS_WAIT4 ideal-int
  3470. pkg syscall (netbsd-arm64-cgo), const SYS_WRITE = 4
  3471. pkg syscall (netbsd-arm64-cgo), const SYS_WRITE ideal-int
  3472. pkg syscall (netbsd-arm64-cgo), const SYS_WRITEV = 121
  3473. pkg syscall (netbsd-arm64-cgo), const SYS_WRITEV ideal-int
  3474. pkg syscall (netbsd-arm64-cgo), const TCIFLUSH = 1
  3475. pkg syscall (netbsd-arm64-cgo), const TCIFLUSH ideal-int
  3476. pkg syscall (netbsd-arm64-cgo), const TCIOFLUSH = 3
  3477. pkg syscall (netbsd-arm64-cgo), const TCIOFLUSH ideal-int
  3478. pkg syscall (netbsd-arm64-cgo), const TCOFLUSH = 2
  3479. pkg syscall (netbsd-arm64-cgo), const TCOFLUSH ideal-int
  3480. pkg syscall (netbsd-arm64-cgo), const TCP_CONGCTL = 32
  3481. pkg syscall (netbsd-arm64-cgo), const TCP_CONGCTL ideal-int
  3482. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPCNT = 6
  3483. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPCNT ideal-int
  3484. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPIDLE = 3
  3485. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPIDLE ideal-int
  3486. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINIT = 7
  3487. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINIT ideal-int
  3488. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINTVL = 5
  3489. pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINTVL ideal-int
  3490. pkg syscall (netbsd-arm64-cgo), const TCP_MAXBURST = 4
  3491. pkg syscall (netbsd-arm64-cgo), const TCP_MAXBURST ideal-int
  3492. pkg syscall (netbsd-arm64-cgo), const TCP_MAXSEG = 2
  3493. pkg syscall (netbsd-arm64-cgo), const TCP_MAXSEG ideal-int
  3494. pkg syscall (netbsd-arm64-cgo), const TCP_MAXWIN = 65535
  3495. pkg syscall (netbsd-arm64-cgo), const TCP_MAXWIN ideal-int
  3496. pkg syscall (netbsd-arm64-cgo), const TCP_MAX_WINSHIFT = 14
  3497. pkg syscall (netbsd-arm64-cgo), const TCP_MAX_WINSHIFT ideal-int
  3498. pkg syscall (netbsd-arm64-cgo), const TCP_MD5SIG = 16
  3499. pkg syscall (netbsd-arm64-cgo), const TCP_MD5SIG ideal-int
  3500. pkg syscall (netbsd-arm64-cgo), const TCP_MINMSS = 216
  3501. pkg syscall (netbsd-arm64-cgo), const TCP_MINMSS ideal-int
  3502. pkg syscall (netbsd-arm64-cgo), const TCP_MSS = 536
  3503. pkg syscall (netbsd-arm64-cgo), const TCP_MSS ideal-int
  3504. pkg syscall (netbsd-arm64-cgo), const TCSAFLUSH = 2
  3505. pkg syscall (netbsd-arm64-cgo), const TCSAFLUSH ideal-int
  3506. pkg syscall (netbsd-arm64-cgo), const TIOCCBRK = 536900730
  3507. pkg syscall (netbsd-arm64-cgo), const TIOCCBRK ideal-int
  3508. pkg syscall (netbsd-arm64-cgo), const TIOCCDTR = 536900728
  3509. pkg syscall (netbsd-arm64-cgo), const TIOCCDTR ideal-int
  3510. pkg syscall (netbsd-arm64-cgo), const TIOCCONS = 2147775586
  3511. pkg syscall (netbsd-arm64-cgo), const TIOCCONS ideal-int
  3512. pkg syscall (netbsd-arm64-cgo), const TIOCDCDTIMESTAMP = 1074820184
  3513. pkg syscall (netbsd-arm64-cgo), const TIOCDCDTIMESTAMP ideal-int
  3514. pkg syscall (netbsd-arm64-cgo), const TIOCDRAIN = 536900702
  3515. pkg syscall (netbsd-arm64-cgo), const TIOCDRAIN ideal-int
  3516. pkg syscall (netbsd-arm64-cgo), const TIOCEXCL = 536900621
  3517. pkg syscall (netbsd-arm64-cgo), const TIOCEXCL ideal-int
  3518. pkg syscall (netbsd-arm64-cgo), const TIOCEXT = 2147775584
  3519. pkg syscall (netbsd-arm64-cgo), const TIOCEXT ideal-int
  3520. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CDTRCTS = 16
  3521. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CDTRCTS ideal-int
  3522. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CLOCAL = 2
  3523. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CLOCAL ideal-int
  3524. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CRTSCTS = 4
  3525. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CRTSCTS ideal-int
  3526. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_MDMBUF = 8
  3527. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_MDMBUF ideal-int
  3528. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_SOFTCAR = 1
  3529. pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_SOFTCAR ideal-int
  3530. pkg syscall (netbsd-arm64-cgo), const TIOCFLUSH = 2147775504
  3531. pkg syscall (netbsd-arm64-cgo), const TIOCFLUSH ideal-int
  3532. pkg syscall (netbsd-arm64-cgo), const TIOCGETA = 1076655123
  3533. pkg syscall (netbsd-arm64-cgo), const TIOCGETA ideal-int
  3534. pkg syscall (netbsd-arm64-cgo), const TIOCGETD = 1074033690
  3535. pkg syscall (netbsd-arm64-cgo), const TIOCGETD ideal-int
  3536. pkg syscall (netbsd-arm64-cgo), const TIOCGFLAGS = 1074033757
  3537. pkg syscall (netbsd-arm64-cgo), const TIOCGFLAGS ideal-int
  3538. pkg syscall (netbsd-arm64-cgo), const TIOCGLINED = 1075868738
  3539. pkg syscall (netbsd-arm64-cgo), const TIOCGLINED ideal-int
  3540. pkg syscall (netbsd-arm64-cgo), const TIOCGPGRP = 1074033783
  3541. pkg syscall (netbsd-arm64-cgo), const TIOCGPGRP ideal-int
  3542. pkg syscall (netbsd-arm64-cgo), const TIOCGQSIZE = 1074033793
  3543. pkg syscall (netbsd-arm64-cgo), const TIOCGQSIZE ideal-int
  3544. pkg syscall (netbsd-arm64-cgo), const TIOCGRANTPT = 536900679
  3545. pkg syscall (netbsd-arm64-cgo), const TIOCGRANTPT ideal-int
  3546. pkg syscall (netbsd-arm64-cgo), const TIOCGSID = 1074033763
  3547. pkg syscall (netbsd-arm64-cgo), const TIOCGSID ideal-int
  3548. pkg syscall (netbsd-arm64-cgo), const TIOCGSIZE = 1074295912
  3549. pkg syscall (netbsd-arm64-cgo), const TIOCGSIZE ideal-int
  3550. pkg syscall (netbsd-arm64-cgo), const TIOCGWINSZ = 1074295912
  3551. pkg syscall (netbsd-arm64-cgo), const TIOCGWINSZ ideal-int
  3552. pkg syscall (netbsd-arm64-cgo), const TIOCMBIC = 2147775595
  3553. pkg syscall (netbsd-arm64-cgo), const TIOCMBIC ideal-int
  3554. pkg syscall (netbsd-arm64-cgo), const TIOCMBIS = 2147775596
  3555. pkg syscall (netbsd-arm64-cgo), const TIOCMBIS ideal-int
  3556. pkg syscall (netbsd-arm64-cgo), const TIOCM_CAR = 64
  3557. pkg syscall (netbsd-arm64-cgo), const TIOCM_CAR ideal-int
  3558. pkg syscall (netbsd-arm64-cgo), const TIOCM_CD = 64
  3559. pkg syscall (netbsd-arm64-cgo), const TIOCM_CD ideal-int
  3560. pkg syscall (netbsd-arm64-cgo), const TIOCM_CTS = 32
  3561. pkg syscall (netbsd-arm64-cgo), const TIOCM_CTS ideal-int
  3562. pkg syscall (netbsd-arm64-cgo), const TIOCM_DSR = 256
  3563. pkg syscall (netbsd-arm64-cgo), const TIOCM_DSR ideal-int
  3564. pkg syscall (netbsd-arm64-cgo), const TIOCM_DTR = 2
  3565. pkg syscall (netbsd-arm64-cgo), const TIOCM_DTR ideal-int
  3566. pkg syscall (netbsd-arm64-cgo), const TIOCMGET = 1074033770
  3567. pkg syscall (netbsd-arm64-cgo), const TIOCMGET ideal-int
  3568. pkg syscall (netbsd-arm64-cgo), const TIOCM_LE = 1
  3569. pkg syscall (netbsd-arm64-cgo), const TIOCM_LE ideal-int
  3570. pkg syscall (netbsd-arm64-cgo), const TIOCM_RI = 128
  3571. pkg syscall (netbsd-arm64-cgo), const TIOCM_RI ideal-int
  3572. pkg syscall (netbsd-arm64-cgo), const TIOCM_RNG = 128
  3573. pkg syscall (netbsd-arm64-cgo), const TIOCM_RNG ideal-int
  3574. pkg syscall (netbsd-arm64-cgo), const TIOCM_RTS = 4
  3575. pkg syscall (netbsd-arm64-cgo), const TIOCM_RTS ideal-int
  3576. pkg syscall (netbsd-arm64-cgo), const TIOCMSET = 2147775597
  3577. pkg syscall (netbsd-arm64-cgo), const TIOCMSET ideal-int
  3578. pkg syscall (netbsd-arm64-cgo), const TIOCM_SR = 16
  3579. pkg syscall (netbsd-arm64-cgo), const TIOCM_SR ideal-int
  3580. pkg syscall (netbsd-arm64-cgo), const TIOCM_ST = 8
  3581. pkg syscall (netbsd-arm64-cgo), const TIOCM_ST ideal-int
  3582. pkg syscall (netbsd-arm64-cgo), const TIOCNOTTY = 536900721
  3583. pkg syscall (netbsd-arm64-cgo), const TIOCNOTTY ideal-int
  3584. pkg syscall (netbsd-arm64-cgo), const TIOCNXCL = 536900622
  3585. pkg syscall (netbsd-arm64-cgo), const TIOCNXCL ideal-int
  3586. pkg syscall (netbsd-arm64-cgo), const TIOCOUTQ = 1074033779
  3587. pkg syscall (netbsd-arm64-cgo), const TIOCOUTQ ideal-int
  3588. pkg syscall (netbsd-arm64-cgo), const TIOCPKT = 2147775600
  3589. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DATA = 0
  3590. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DATA ideal-int
  3591. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DOSTOP = 32
  3592. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DOSTOP ideal-int
  3593. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHREAD = 1
  3594. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHREAD ideal-int
  3595. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHWRITE = 2
  3596. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHWRITE ideal-int
  3597. pkg syscall (netbsd-arm64-cgo), const TIOCPKT ideal-int
  3598. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_IOCTL = 64
  3599. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_IOCTL ideal-int
  3600. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_NOSTOP = 16
  3601. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_NOSTOP ideal-int
  3602. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_START = 8
  3603. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_START ideal-int
  3604. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_STOP = 4
  3605. pkg syscall (netbsd-arm64-cgo), const TIOCPKT_STOP ideal-int
  3606. pkg syscall (netbsd-arm64-cgo), const TIOCPTMGET = 1076393030
  3607. pkg syscall (netbsd-arm64-cgo), const TIOCPTMGET ideal-int
  3608. pkg syscall (netbsd-arm64-cgo), const TIOCPTSNAME = 1076393032
  3609. pkg syscall (netbsd-arm64-cgo), const TIOCPTSNAME ideal-int
  3610. pkg syscall (netbsd-arm64-cgo), const TIOCRCVFRAME = 2148037701
  3611. pkg syscall (netbsd-arm64-cgo), const TIOCRCVFRAME ideal-int
  3612. pkg syscall (netbsd-arm64-cgo), const TIOCREMOTE = 2147775593
  3613. pkg syscall (netbsd-arm64-cgo), const TIOCREMOTE ideal-int
  3614. pkg syscall (netbsd-arm64-cgo), const TIOCSBRK = 536900731
  3615. pkg syscall (netbsd-arm64-cgo), const TIOCSBRK ideal-int
  3616. pkg syscall (netbsd-arm64-cgo), const TIOCSCTTY = 536900705
  3617. pkg syscall (netbsd-arm64-cgo), const TIOCSCTTY ideal-int
  3618. pkg syscall (netbsd-arm64-cgo), const TIOCSDTR = 536900729
  3619. pkg syscall (netbsd-arm64-cgo), const TIOCSDTR ideal-int
  3620. pkg syscall (netbsd-arm64-cgo), const TIOCSETA = 2150396948
  3621. pkg syscall (netbsd-arm64-cgo), const TIOCSETAF = 2150396950
  3622. pkg syscall (netbsd-arm64-cgo), const TIOCSETAF ideal-int
  3623. pkg syscall (netbsd-arm64-cgo), const TIOCSETA ideal-int
  3624. pkg syscall (netbsd-arm64-cgo), const TIOCSETAW = 2150396949
  3625. pkg syscall (netbsd-arm64-cgo), const TIOCSETAW ideal-int
  3626. pkg syscall (netbsd-arm64-cgo), const TIOCSETD = 2147775515
  3627. pkg syscall (netbsd-arm64-cgo), const TIOCSETD ideal-int
  3628. pkg syscall (netbsd-arm64-cgo), const TIOCSFLAGS = 2147775580
  3629. pkg syscall (netbsd-arm64-cgo), const TIOCSFLAGS ideal-int
  3630. pkg syscall (netbsd-arm64-cgo), const TIOCSIG = 536900703
  3631. pkg syscall (netbsd-arm64-cgo), const TIOCSIG ideal-int
  3632. pkg syscall (netbsd-arm64-cgo), const TIOCSLINED = 2149610563
  3633. pkg syscall (netbsd-arm64-cgo), const TIOCSLINED ideal-int
  3634. pkg syscall (netbsd-arm64-cgo), const TIOCSPGRP = 2147775606
  3635. pkg syscall (netbsd-arm64-cgo), const TIOCSPGRP ideal-int
  3636. pkg syscall (netbsd-arm64-cgo), const TIOCSQSIZE = 2147775616
  3637. pkg syscall (netbsd-arm64-cgo), const TIOCSQSIZE ideal-int
  3638. pkg syscall (netbsd-arm64-cgo), const TIOCSSIZE = 2148037735
  3639. pkg syscall (netbsd-arm64-cgo), const TIOCSSIZE ideal-int
  3640. pkg syscall (netbsd-arm64-cgo), const TIOCSTART = 536900718
  3641. pkg syscall (netbsd-arm64-cgo), const TIOCSTART ideal-int
  3642. pkg syscall (netbsd-arm64-cgo), const TIOCSTAT = 2147775589
  3643. pkg syscall (netbsd-arm64-cgo), const TIOCSTAT ideal-int
  3644. pkg syscall (netbsd-arm64-cgo), const TIOCSTI = 2147578994
  3645. pkg syscall (netbsd-arm64-cgo), const TIOCSTI ideal-int
  3646. pkg syscall (netbsd-arm64-cgo), const TIOCSTOP = 536900719
  3647. pkg syscall (netbsd-arm64-cgo), const TIOCSTOP ideal-int
  3648. pkg syscall (netbsd-arm64-cgo), const TIOCSWINSZ = 2148037735
  3649. pkg syscall (netbsd-arm64-cgo), const TIOCSWINSZ ideal-int
  3650. pkg syscall (netbsd-arm64-cgo), const TIOCUCNTL = 2147775590
  3651. pkg syscall (netbsd-arm64-cgo), const TIOCUCNTL ideal-int
  3652. pkg syscall (netbsd-arm64-cgo), const TIOCXMTFRAME = 2148037700
  3653. pkg syscall (netbsd-arm64-cgo), const TIOCXMTFRAME ideal-int
  3654. pkg syscall (netbsd-arm64-cgo), const TOSTOP = 4194304
  3655. pkg syscall (netbsd-arm64-cgo), const TOSTOP ideal-int
  3656. pkg syscall (netbsd-arm64-cgo), const VDISCARD = 15
  3657. pkg syscall (netbsd-arm64-cgo), const VDISCARD ideal-int
  3658. pkg syscall (netbsd-arm64-cgo), const VDSUSP = 11
  3659. pkg syscall (netbsd-arm64-cgo), const VDSUSP ideal-int
  3660. pkg syscall (netbsd-arm64-cgo), const VEOF = 0
  3661. pkg syscall (netbsd-arm64-cgo), const VEOF ideal-int
  3662. pkg syscall (netbsd-arm64-cgo), const VEOL = 1
  3663. pkg syscall (netbsd-arm64-cgo), const VEOL2 = 2
  3664. pkg syscall (netbsd-arm64-cgo), const VEOL2 ideal-int
  3665. pkg syscall (netbsd-arm64-cgo), const VEOL ideal-int
  3666. pkg syscall (netbsd-arm64-cgo), const VERASE = 3
  3667. pkg syscall (netbsd-arm64-cgo), const VERASE ideal-int
  3668. pkg syscall (netbsd-arm64-cgo), const VINTR = 8
  3669. pkg syscall (netbsd-arm64-cgo), const VINTR ideal-int
  3670. pkg syscall (netbsd-arm64-cgo), const VKILL = 5
  3671. pkg syscall (netbsd-arm64-cgo), const VKILL ideal-int
  3672. pkg syscall (netbsd-arm64-cgo), const VLNEXT = 14
  3673. pkg syscall (netbsd-arm64-cgo), const VLNEXT ideal-int
  3674. pkg syscall (netbsd-arm64-cgo), const VMIN = 16
  3675. pkg syscall (netbsd-arm64-cgo), const VMIN ideal-int
  3676. pkg syscall (netbsd-arm64-cgo), const VQUIT = 9
  3677. pkg syscall (netbsd-arm64-cgo), const VQUIT ideal-int
  3678. pkg syscall (netbsd-arm64-cgo), const VREPRINT = 6
  3679. pkg syscall (netbsd-arm64-cgo), const VREPRINT ideal-int
  3680. pkg syscall (netbsd-arm64-cgo), const VSTART = 12
  3681. pkg syscall (netbsd-arm64-cgo), const VSTART ideal-int
  3682. pkg syscall (netbsd-arm64-cgo), const VSTATUS = 18
  3683. pkg syscall (netbsd-arm64-cgo), const VSTATUS ideal-int
  3684. pkg syscall (netbsd-arm64-cgo), const VSTOP = 13
  3685. pkg syscall (netbsd-arm64-cgo), const VSTOP ideal-int
  3686. pkg syscall (netbsd-arm64-cgo), const VSUSP = 10
  3687. pkg syscall (netbsd-arm64-cgo), const VSUSP ideal-int
  3688. pkg syscall (netbsd-arm64-cgo), const VTIME = 17
  3689. pkg syscall (netbsd-arm64-cgo), const VTIME ideal-int
  3690. pkg syscall (netbsd-arm64-cgo), const VWERASE = 4
  3691. pkg syscall (netbsd-arm64-cgo), const VWERASE ideal-int
  3692. pkg syscall (netbsd-arm64-cgo), const WALL = 8
  3693. pkg syscall (netbsd-arm64-cgo), const WALL ideal-int
  3694. pkg syscall (netbsd-arm64-cgo), const WALLSIG = 8
  3695. pkg syscall (netbsd-arm64-cgo), const WALLSIG ideal-int
  3696. pkg syscall (netbsd-arm64-cgo), const WALTSIG = 4
  3697. pkg syscall (netbsd-arm64-cgo), const WALTSIG ideal-int
  3698. pkg syscall (netbsd-arm64-cgo), const WCLONE = 4
  3699. pkg syscall (netbsd-arm64-cgo), const WCLONE ideal-int
  3700. pkg syscall (netbsd-arm64-cgo), const WCOREFLAG = 128
  3701. pkg syscall (netbsd-arm64-cgo), const WCOREFLAG ideal-int
  3702. pkg syscall (netbsd-arm64-cgo), const WNOHANG = 1
  3703. pkg syscall (netbsd-arm64-cgo), const WNOHANG ideal-int
  3704. pkg syscall (netbsd-arm64-cgo), const WNOWAIT = 65536
  3705. pkg syscall (netbsd-arm64-cgo), const WNOWAIT ideal-int
  3706. pkg syscall (netbsd-arm64-cgo), const WNOZOMBIE = 131072
  3707. pkg syscall (netbsd-arm64-cgo), const WNOZOMBIE ideal-int
  3708. pkg syscall (netbsd-arm64-cgo), const WOPTSCHECKED = 262144
  3709. pkg syscall (netbsd-arm64-cgo), const WOPTSCHECKED ideal-int
  3710. pkg syscall (netbsd-arm64-cgo), const WSTOPPED = 127
  3711. pkg syscall (netbsd-arm64-cgo), const WSTOPPED ideal-int
  3712. pkg syscall (netbsd-arm64-cgo), const WUNTRACED = 2
  3713. pkg syscall (netbsd-arm64-cgo), const WUNTRACED ideal-int
  3714. pkg syscall (netbsd-arm64-cgo), func Accept4(int, int) (int, Sockaddr, error)
  3715. pkg syscall (netbsd-arm64-cgo), func Accept(int) (int, Sockaddr, error)
  3716. pkg syscall (netbsd-arm64-cgo), func Access(string, uint32) error
  3717. pkg syscall (netbsd-arm64-cgo), func Adjtime(*Timeval, *Timeval) error
  3718. pkg syscall (netbsd-arm64-cgo), func Bind(int, Sockaddr) error
  3719. pkg syscall (netbsd-arm64-cgo), func BpfBuflen(int) (int, error)
  3720. pkg syscall (netbsd-arm64-cgo), func BpfDatalink(int) (int, error)
  3721. pkg syscall (netbsd-arm64-cgo), func BpfHeadercmpl(int) (int, error)
  3722. pkg syscall (netbsd-arm64-cgo), func BpfInterface(int, string) (string, error)
  3723. pkg syscall (netbsd-arm64-cgo), func BpfJump(int, int, int, int) *BpfInsn
  3724. pkg syscall (netbsd-arm64-cgo), func BpfStats(int) (*BpfStat, error)
  3725. pkg syscall (netbsd-arm64-cgo), func BpfStmt(int, int) *BpfInsn
  3726. pkg syscall (netbsd-arm64-cgo), func BpfTimeout(int) (*Timeval, error)
  3727. pkg syscall (netbsd-arm64-cgo), func CheckBpfVersion(int) error
  3728. pkg syscall (netbsd-arm64-cgo), func Chflags(string, int) error
  3729. pkg syscall (netbsd-arm64-cgo), func Chroot(string) error
  3730. pkg syscall (netbsd-arm64-cgo), func Close(int) error
  3731. pkg syscall (netbsd-arm64-cgo), func CloseOnExec(int)
  3732. pkg syscall (netbsd-arm64-cgo), func CmsgLen(int) int
  3733. pkg syscall (netbsd-arm64-cgo), func CmsgSpace(int) int
  3734. pkg syscall (netbsd-arm64-cgo), func Connect(int, Sockaddr) error
  3735. pkg syscall (netbsd-arm64-cgo), func Dup2(int, int) error
  3736. pkg syscall (netbsd-arm64-cgo), func Dup(int) (int, error)
  3737. pkg syscall (netbsd-arm64-cgo), func Fchdir(int) error
  3738. pkg syscall (netbsd-arm64-cgo), func Fchflags(int, int) error
  3739. pkg syscall (netbsd-arm64-cgo), func Fchmod(int, uint32) error
  3740. pkg syscall (netbsd-arm64-cgo), func Fchown(int, int, int) error
  3741. pkg syscall (netbsd-arm64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error
  3742. pkg syscall (netbsd-arm64-cgo), func Flock(int, int) error
  3743. pkg syscall (netbsd-arm64-cgo), func FlushBpf(int) error
  3744. pkg syscall (netbsd-arm64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
  3745. pkg syscall (netbsd-arm64-cgo), func Fpathconf(int, int) (int, error)
  3746. pkg syscall (netbsd-arm64-cgo), func Fstat(int, *Stat_t) error
  3747. pkg syscall (netbsd-arm64-cgo), func Fsync(int) error
  3748. pkg syscall (netbsd-arm64-cgo), func Ftruncate(int, int64) error
  3749. pkg syscall (netbsd-arm64-cgo), func Futimes(int, []Timeval) error
  3750. pkg syscall (netbsd-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
  3751. pkg syscall (netbsd-arm64-cgo), func Getpeername(int) (Sockaddr, error)
  3752. pkg syscall (netbsd-arm64-cgo), func Getpgid(int) (int, error)
  3753. pkg syscall (netbsd-arm64-cgo), func Getpgrp() int
  3754. pkg syscall (netbsd-arm64-cgo), func Getpriority(int, int) (int, error)
  3755. pkg syscall (netbsd-arm64-cgo), func Getrlimit(int, *Rlimit) error
  3756. pkg syscall (netbsd-arm64-cgo), func Getrusage(int, *Rusage) error
  3757. pkg syscall (netbsd-arm64-cgo), func Getsid(int) (int, error)
  3758. pkg syscall (netbsd-arm64-cgo), func Getsockname(int) (Sockaddr, error)
  3759. pkg syscall (netbsd-arm64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
  3760. pkg syscall (netbsd-arm64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
  3761. pkg syscall (netbsd-arm64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
  3762. pkg syscall (netbsd-arm64-cgo), func GetsockoptInt(int, int, int) (int, error)
  3763. pkg syscall (netbsd-arm64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
  3764. pkg syscall (netbsd-arm64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
  3765. pkg syscall (netbsd-arm64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
  3766. pkg syscall (netbsd-arm64-cgo), func Issetugid() bool
  3767. pkg syscall (netbsd-arm64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
  3768. pkg syscall (netbsd-arm64-cgo), func Kill(int, Signal) error
  3769. pkg syscall (netbsd-arm64-cgo), func Kqueue() (int, error)
  3770. pkg syscall (netbsd-arm64-cgo), func Listen(int, int) error
  3771. pkg syscall (netbsd-arm64-cgo), func Lstat(string, *Stat_t) error
  3772. pkg syscall (netbsd-arm64-cgo), func Mkfifo(string, uint32) error
  3773. pkg syscall (netbsd-arm64-cgo), func Mknod(string, uint32, int) error
  3774. pkg syscall (netbsd-arm64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
  3775. pkg syscall (netbsd-arm64-cgo), func Munmap([]uint8) error
  3776. pkg syscall (netbsd-arm64-cgo), func Nanosleep(*Timespec, *Timespec) error
  3777. pkg syscall (netbsd-arm64-cgo), func Open(string, int, uint32) (int, error)
  3778. pkg syscall (netbsd-arm64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
  3779. pkg syscall (netbsd-arm64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
  3780. pkg syscall (netbsd-arm64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
  3781. pkg syscall (netbsd-arm64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
  3782. pkg syscall (netbsd-arm64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
  3783. pkg syscall (netbsd-arm64-cgo), func Pathconf(string, int) (int, error)
  3784. pkg syscall (netbsd-arm64-cgo), func Pipe2([]int, int) error
  3785. pkg syscall (netbsd-arm64-cgo), func Pipe([]int) error
  3786. pkg syscall (netbsd-arm64-cgo), func Pread(int, []uint8, int64) (int, error)
  3787. pkg syscall (netbsd-arm64-cgo), func Pwrite(int, []uint8, int64) (int, error)
  3788. pkg syscall (netbsd-arm64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  3789. pkg syscall (netbsd-arm64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  3790. pkg syscall (netbsd-arm64-cgo), func ReadDirent(int, []uint8) (int, error)
  3791. pkg syscall (netbsd-arm64-cgo), func Read(int, []uint8) (int, error)
  3792. pkg syscall (netbsd-arm64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
  3793. pkg syscall (netbsd-arm64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
  3794. pkg syscall (netbsd-arm64-cgo), func Revoke(string) error
  3795. pkg syscall (netbsd-arm64-cgo), func RouteRIB(int, int) ([]uint8, error)
  3796. pkg syscall (netbsd-arm64-cgo), func Seek(int, int64, int) (int64, error)
  3797. pkg syscall (netbsd-arm64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
  3798. pkg syscall (netbsd-arm64-cgo), func Sendfile(int, int, *int64, int) (int, error)
  3799. pkg syscall (netbsd-arm64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
  3800. pkg syscall (netbsd-arm64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
  3801. pkg syscall (netbsd-arm64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
  3802. pkg syscall (netbsd-arm64-cgo), func SetBpfBuflen(int, int) (int, error)
  3803. pkg syscall (netbsd-arm64-cgo), func SetBpfDatalink(int, int) (int, error)
  3804. pkg syscall (netbsd-arm64-cgo), func SetBpfHeadercmpl(int, int) error
  3805. pkg syscall (netbsd-arm64-cgo), func SetBpfImmediate(int, int) error
  3806. pkg syscall (netbsd-arm64-cgo), func SetBpf(int, []BpfInsn) error
  3807. pkg syscall (netbsd-arm64-cgo), func SetBpfInterface(int, string) error
  3808. pkg syscall (netbsd-arm64-cgo), func SetBpfPromisc(int, int) error
  3809. pkg syscall (netbsd-arm64-cgo), func SetBpfTimeout(int, *Timeval) error
  3810. pkg syscall (netbsd-arm64-cgo), func Setegid(int) error
  3811. pkg syscall (netbsd-arm64-cgo), func Seteuid(int) error
  3812. pkg syscall (netbsd-arm64-cgo), func Setgid(int) error
  3813. pkg syscall (netbsd-arm64-cgo), func Setgroups([]int) error
  3814. pkg syscall (netbsd-arm64-cgo), func SetKevent(*Kevent_t, int, int, int)
  3815. pkg syscall (netbsd-arm64-cgo), func SetNonblock(int, bool) error
  3816. pkg syscall (netbsd-arm64-cgo), func Setpgid(int, int) error
  3817. pkg syscall (netbsd-arm64-cgo), func Setpriority(int, int, int) error
  3818. pkg syscall (netbsd-arm64-cgo), func Setregid(int, int) error
  3819. pkg syscall (netbsd-arm64-cgo), func Setreuid(int, int) error
  3820. pkg syscall (netbsd-arm64-cgo), func Setrlimit(int, *Rlimit) error
  3821. pkg syscall (netbsd-arm64-cgo), func Setsid() (int, error)
  3822. pkg syscall (netbsd-arm64-cgo), func SetsockoptByte(int, int, int, uint8) error
  3823. pkg syscall (netbsd-arm64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
  3824. pkg syscall (netbsd-arm64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
  3825. pkg syscall (netbsd-arm64-cgo), func SetsockoptInt(int, int, int, int) error
  3826. pkg syscall (netbsd-arm64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
  3827. pkg syscall (netbsd-arm64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
  3828. pkg syscall (netbsd-arm64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
  3829. pkg syscall (netbsd-arm64-cgo), func SetsockoptString(int, int, int, string) error
  3830. pkg syscall (netbsd-arm64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
  3831. pkg syscall (netbsd-arm64-cgo), func Settimeofday(*Timeval) error
  3832. pkg syscall (netbsd-arm64-cgo), func Setuid(int) error
  3833. pkg syscall (netbsd-arm64-cgo), func Shutdown(int, int) error
  3834. pkg syscall (netbsd-arm64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error)
  3835. pkg syscall (netbsd-arm64-cgo), func Socket(int, int, int) (int, error)
  3836. pkg syscall (netbsd-arm64-cgo), func Socketpair(int, int, int) ([2]int, error)
  3837. pkg syscall (netbsd-arm64-cgo), func Stat(string, *Stat_t) error
  3838. pkg syscall (netbsd-arm64-cgo), func StringSlicePtr([]string) []*uint8
  3839. pkg syscall (netbsd-arm64-cgo), func Sync() error
  3840. pkg syscall (netbsd-arm64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  3841. pkg syscall (netbsd-arm64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  3842. pkg syscall (netbsd-arm64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  3843. pkg syscall (netbsd-arm64-cgo), func Sysctl(string) (string, error)
  3844. pkg syscall (netbsd-arm64-cgo), func SysctlUint32(string) (uint32, error)
  3845. pkg syscall (netbsd-arm64-cgo), func TimevalToNsec(Timeval) int64
  3846. pkg syscall (netbsd-arm64-cgo), func Truncate(string, int64) error
  3847. pkg syscall (netbsd-arm64-cgo), func Umask(int) int
  3848. pkg syscall (netbsd-arm64-cgo), func UnixRights(...int) []uint8
  3849. pkg syscall (netbsd-arm64-cgo), func Unmount(string, int) error
  3850. pkg syscall (netbsd-arm64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
  3851. pkg syscall (netbsd-arm64-cgo), func Write(int, []uint8) (int, error)
  3852. pkg syscall (netbsd-arm64-cgo), method (*Cmsghdr) SetLen(int)
  3853. pkg syscall (netbsd-arm64-cgo), method (*Iovec) SetLen(int)
  3854. pkg syscall (netbsd-arm64-cgo), method (*Msghdr) SetControllen(int)
  3855. pkg syscall (netbsd-arm64-cgo), type BpfHdr struct
  3856. pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Caplen uint32
  3857. pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Datalen uint32
  3858. pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Hdrlen uint16
  3859. pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
  3860. pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Tstamp BpfTimeval
  3861. pkg syscall (netbsd-arm64-cgo), type BpfInsn struct
  3862. pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Code uint16
  3863. pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Jf uint8
  3864. pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Jt uint8
  3865. pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, K uint32
  3866. pkg syscall (netbsd-arm64-cgo), type BpfProgram struct
  3867. pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Insns *BpfInsn
  3868. pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Len uint32
  3869. pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
  3870. pkg syscall (netbsd-arm64-cgo), type BpfStat struct
  3871. pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Capt uint64
  3872. pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Drop uint64
  3873. pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Padding [13]uint64
  3874. pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Recv uint64
  3875. pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct
  3876. pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct, Sec int64
  3877. pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct, Usec int64
  3878. pkg syscall (netbsd-arm64-cgo), type BpfVersion struct
  3879. pkg syscall (netbsd-arm64-cgo), type BpfVersion struct, Major uint16
  3880. pkg syscall (netbsd-arm64-cgo), type BpfVersion struct, Minor uint16
  3881. pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct
  3882. pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Len uint32
  3883. pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Level int32
  3884. pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Type int32
  3885. pkg syscall (netbsd-arm64-cgo), type Credential struct
  3886. pkg syscall (netbsd-arm64-cgo), type Credential struct, Gid uint32
  3887. pkg syscall (netbsd-arm64-cgo), type Credential struct, Groups []uint32
  3888. pkg syscall (netbsd-arm64-cgo), type Credential struct, NoSetGroups bool
  3889. pkg syscall (netbsd-arm64-cgo), type Credential struct, Uid uint32
  3890. pkg syscall (netbsd-arm64-cgo), type Dirent struct
  3891. pkg syscall (netbsd-arm64-cgo), type Dirent struct, Fileno uint64
  3892. pkg syscall (netbsd-arm64-cgo), type Dirent struct, Name [512]int8
  3893. pkg syscall (netbsd-arm64-cgo), type Dirent struct, Namlen uint16
  3894. pkg syscall (netbsd-arm64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
  3895. pkg syscall (netbsd-arm64-cgo), type Dirent struct, Reclen uint16
  3896. pkg syscall (netbsd-arm64-cgo), type Dirent struct, Type uint8
  3897. pkg syscall (netbsd-arm64-cgo), type FdSet struct
  3898. pkg syscall (netbsd-arm64-cgo), type FdSet struct, Bits [8]uint32
  3899. pkg syscall (netbsd-arm64-cgo), type Flock_t struct
  3900. pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Len int64
  3901. pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Pid int32
  3902. pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Start int64
  3903. pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Type int16
  3904. pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Whence int16
  3905. pkg syscall (netbsd-arm64-cgo), type Fsid struct
  3906. pkg syscall (netbsd-arm64-cgo), type Fsid struct, X__fsid_val [2]int32
  3907. pkg syscall (netbsd-arm64-cgo), type ICMPv6Filter struct
  3908. pkg syscall (netbsd-arm64-cgo), type ICMPv6Filter struct, Filt [8]uint32
  3909. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct
  3910. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Addrs int32
  3911. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Flags int32
  3912. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Index uint16
  3913. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Metric int32
  3914. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Msglen uint16
  3915. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
  3916. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Type uint8
  3917. pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Version uint8
  3918. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct
  3919. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Index uint16
  3920. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Msglen uint16
  3921. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Name [16]int8
  3922. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Type uint8
  3923. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Version uint8
  3924. pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, What uint16
  3925. pkg syscall (netbsd-arm64-cgo), type IfData struct
  3926. pkg syscall (netbsd-arm64-cgo), type IfData struct, Addrlen uint8
  3927. pkg syscall (netbsd-arm64-cgo), type IfData struct, Baudrate uint64
  3928. pkg syscall (netbsd-arm64-cgo), type IfData struct, Collisions uint64
  3929. pkg syscall (netbsd-arm64-cgo), type IfData struct, Hdrlen uint8
  3930. pkg syscall (netbsd-arm64-cgo), type IfData struct, Ibytes uint64
  3931. pkg syscall (netbsd-arm64-cgo), type IfData struct, Ierrors uint64
  3932. pkg syscall (netbsd-arm64-cgo), type IfData struct, Imcasts uint64
  3933. pkg syscall (netbsd-arm64-cgo), type IfData struct, Ipackets uint64
  3934. pkg syscall (netbsd-arm64-cgo), type IfData struct, Iqdrops uint64
  3935. pkg syscall (netbsd-arm64-cgo), type IfData struct, Lastchange Timespec
  3936. pkg syscall (netbsd-arm64-cgo), type IfData struct, Link_state int32
  3937. pkg syscall (netbsd-arm64-cgo), type IfData struct, Metric uint64
  3938. pkg syscall (netbsd-arm64-cgo), type IfData struct, Mtu uint64
  3939. pkg syscall (netbsd-arm64-cgo), type IfData struct, Noproto uint64
  3940. pkg syscall (netbsd-arm64-cgo), type IfData struct, Obytes uint64
  3941. pkg syscall (netbsd-arm64-cgo), type IfData struct, Oerrors uint64
  3942. pkg syscall (netbsd-arm64-cgo), type IfData struct, Omcasts uint64
  3943. pkg syscall (netbsd-arm64-cgo), type IfData struct, Opackets uint64
  3944. pkg syscall (netbsd-arm64-cgo), type IfData struct, Pad_cgo_0 [1]uint8
  3945. pkg syscall (netbsd-arm64-cgo), type IfData struct, Type uint8
  3946. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct
  3947. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Addrs int32
  3948. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Data IfData
  3949. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Flags int32
  3950. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Index uint16
  3951. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Msglen uint16
  3952. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
  3953. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Type uint8
  3954. pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Version uint8
  3955. pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct
  3956. pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
  3957. pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct, Ifindex uint32
  3958. pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct
  3959. pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct, Data []uint8
  3960. pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
  3961. pkg syscall (netbsd-arm64-cgo), type InterfaceAnnounceMessage struct
  3962. pkg syscall (netbsd-arm64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
  3963. pkg syscall (netbsd-arm64-cgo), type InterfaceMessage struct
  3964. pkg syscall (netbsd-arm64-cgo), type InterfaceMessage struct, Data []uint8
  3965. pkg syscall (netbsd-arm64-cgo), type InterfaceMessage struct, Header IfMsghdr
  3966. pkg syscall (netbsd-arm64-cgo), type Iovec struct
  3967. pkg syscall (netbsd-arm64-cgo), type Iovec struct, Base *uint8
  3968. pkg syscall (netbsd-arm64-cgo), type Iovec struct, Len uint64
  3969. pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct
  3970. pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6
  3971. pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct, Mtu uint32
  3972. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct
  3973. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Data int64
  3974. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Fflags uint32
  3975. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Filter uint32
  3976. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Flags uint32
  3977. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Ident uint64
  3978. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8
  3979. pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Udata int64
  3980. pkg syscall (netbsd-arm64-cgo), type Mclpool [0]uint8
  3981. pkg syscall (netbsd-arm64-cgo), type Msghdr struct
  3982. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Controllen uint32
  3983. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Control *uint8
  3984. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Flags int32
  3985. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Iov *Iovec
  3986. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Iovlen int32
  3987. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Namelen uint32
  3988. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Name *uint8
  3989. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
  3990. pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
  3991. pkg syscall (netbsd-arm64-cgo), type RawSockaddrAny struct, Pad [92]int8
  3992. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct
  3993. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Alen uint8
  3994. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Data [12]int8
  3995. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Family uint8
  3996. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Index uint16
  3997. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Len uint8
  3998. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Nlen uint8
  3999. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Slen uint8
  4000. pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Type uint8
  4001. pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet4 struct, Family uint8
  4002. pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet4 struct, Len uint8
  4003. pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
  4004. pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet6 struct, Family uint8
  4005. pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet6 struct, Len uint8
  4006. pkg syscall (netbsd-arm64-cgo), type RawSockaddr struct, Data [14]int8
  4007. pkg syscall (netbsd-arm64-cgo), type RawSockaddr struct, Family uint8
  4008. pkg syscall (netbsd-arm64-cgo), type RawSockaddr struct, Len uint8
  4009. pkg syscall (netbsd-arm64-cgo), type RawSockaddrUnix struct, Family uint8
  4010. pkg syscall (netbsd-arm64-cgo), type RawSockaddrUnix struct, Len uint8
  4011. pkg syscall (netbsd-arm64-cgo), type RawSockaddrUnix struct, Path [104]int8
  4012. pkg syscall (netbsd-arm64-cgo), type Rlimit struct
  4013. pkg syscall (netbsd-arm64-cgo), type Rlimit struct, Cur uint64
  4014. pkg syscall (netbsd-arm64-cgo), type Rlimit struct, Max uint64
  4015. pkg syscall (netbsd-arm64-cgo), type RouteMessage struct
  4016. pkg syscall (netbsd-arm64-cgo), type RouteMessage struct, Data []uint8
  4017. pkg syscall (netbsd-arm64-cgo), type RouteMessage struct, Header RtMsghdr
  4018. pkg syscall (netbsd-arm64-cgo), type RoutingMessage interface, unexported methods
  4019. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct
  4020. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Expire int64
  4021. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Hopcount uint64
  4022. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Locks uint64
  4023. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Mtu uint64
  4024. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Pksent int64
  4025. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Recvpipe uint64
  4026. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Rtt uint64
  4027. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Rttvar uint64
  4028. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Sendpipe uint64
  4029. pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Ssthresh uint64
  4030. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct
  4031. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Addrs int32
  4032. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Errno int32
  4033. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Flags int32
  4034. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Index uint16
  4035. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Inits int32
  4036. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Msglen uint16
  4037. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
  4038. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8
  4039. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Pid int32
  4040. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Rmx RtMetrics
  4041. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Seq int32
  4042. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Type uint8
  4043. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Use int32
  4044. pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Version uint8
  4045. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Idrss int64
  4046. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Inblock int64
  4047. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Isrss int64
  4048. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Ixrss int64
  4049. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Majflt int64
  4050. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Maxrss int64
  4051. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Minflt int64
  4052. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Msgrcv int64
  4053. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Msgsnd int64
  4054. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nivcsw int64
  4055. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nsignals int64
  4056. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nswap int64
  4057. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nvcsw int64
  4058. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Oublock int64
  4059. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Stime Timeval
  4060. pkg syscall (netbsd-arm64-cgo), type Rusage struct, Utime Timeval
  4061. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct
  4062. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Alen uint8
  4063. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Data [12]int8
  4064. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Family uint8
  4065. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Index uint16
  4066. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Len uint8
  4067. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Nlen uint8
  4068. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Slen uint8
  4069. pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Type uint8
  4070. pkg syscall (netbsd-arm64-cgo), type SocketControlMessage struct
  4071. pkg syscall (netbsd-arm64-cgo), type SocketControlMessage struct, Data []uint8
  4072. pkg syscall (netbsd-arm64-cgo), type SocketControlMessage struct, Header Cmsghdr
  4073. pkg syscall (netbsd-arm64-cgo), type Statfs_t [0]uint8
  4074. pkg syscall (netbsd-arm64-cgo), type Stat_t struct
  4075. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Atimespec Timespec
  4076. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Birthtimespec Timespec
  4077. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Blksize uint32
  4078. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Blocks int64
  4079. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Ctimespec Timespec
  4080. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Dev uint64
  4081. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Flags uint32
  4082. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Gen uint32
  4083. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Gid uint32
  4084. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Ino uint64
  4085. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Mode uint32
  4086. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Mtimespec Timespec
  4087. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Nlink uint32
  4088. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
  4089. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Pad_cgo_1 [4]uint8
  4090. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8
  4091. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Rdev uint64
  4092. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Size int64
  4093. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Spare [2]uint32
  4094. pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Uid uint32
  4095. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct
  4096. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Flags uint32
  4097. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Name [32]int8
  4098. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Num int32
  4099. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Un [16]uint8
  4100. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Ver uint32
  4101. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X__rsvd uint32
  4102. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8
  4103. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8
  4104. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8
  4105. pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8
  4106. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Chroot string
  4107. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Credential *Credential
  4108. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Ctty int
  4109. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Foreground bool
  4110. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Noctty bool
  4111. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Pgid int
  4112. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Ptrace bool
  4113. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Setctty bool
  4114. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Setpgid bool
  4115. pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Setsid bool
  4116. pkg syscall (netbsd-arm64-cgo), type Termios struct
  4117. pkg syscall (netbsd-arm64-cgo), type Termios struct, Cc [20]uint8
  4118. pkg syscall (netbsd-arm64-cgo), type Termios struct, Cflag uint32
  4119. pkg syscall (netbsd-arm64-cgo), type Termios struct, Iflag uint32
  4120. pkg syscall (netbsd-arm64-cgo), type Termios struct, Ispeed int32
  4121. pkg syscall (netbsd-arm64-cgo), type Termios struct, Lflag uint32
  4122. pkg syscall (netbsd-arm64-cgo), type Termios struct, Oflag uint32
  4123. pkg syscall (netbsd-arm64-cgo), type Termios struct, Ospeed int32
  4124. pkg syscall (netbsd-arm64-cgo), type Timespec struct, Nsec int64
  4125. pkg syscall (netbsd-arm64-cgo), type Timespec struct, Sec int64
  4126. pkg syscall (netbsd-arm64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8
  4127. pkg syscall (netbsd-arm64-cgo), type Timeval struct, Sec int64
  4128. pkg syscall (netbsd-arm64-cgo), type Timeval struct, Usec int32
  4129. pkg syscall (netbsd-arm64-cgo), type WaitStatus uint32
  4130. pkg syscall (netbsd-arm64-cgo), var Stderr int
  4131. pkg syscall (netbsd-arm64-cgo), var Stdin int
  4132. pkg syscall (netbsd-arm64-cgo), var Stdout int
  4133. pkg syscall (netbsd-arm64), const AF_APPLETALK = 16
  4134. pkg syscall (netbsd-arm64), const AF_APPLETALK ideal-int
  4135. pkg syscall (netbsd-arm64), const AF_ARP = 28
  4136. pkg syscall (netbsd-arm64), const AF_ARP ideal-int
  4137. pkg syscall (netbsd-arm64), const AF_BLUETOOTH = 31
  4138. pkg syscall (netbsd-arm64), const AF_BLUETOOTH ideal-int
  4139. pkg syscall (netbsd-arm64), const AF_CCITT = 10
  4140. pkg syscall (netbsd-arm64), const AF_CCITT ideal-int
  4141. pkg syscall (netbsd-arm64), const AF_CHAOS = 5
  4142. pkg syscall (netbsd-arm64), const AF_CHAOS ideal-int
  4143. pkg syscall (netbsd-arm64), const AF_CNT = 21
  4144. pkg syscall (netbsd-arm64), const AF_CNT ideal-int
  4145. pkg syscall (netbsd-arm64), const AF_COIP = 20
  4146. pkg syscall (netbsd-arm64), const AF_COIP ideal-int
  4147. pkg syscall (netbsd-arm64), const AF_DATAKIT = 9
  4148. pkg syscall (netbsd-arm64), const AF_DATAKIT ideal-int
  4149. pkg syscall (netbsd-arm64), const AF_DECnet = 12
  4150. pkg syscall (netbsd-arm64), const AF_DECnet ideal-int
  4151. pkg syscall (netbsd-arm64), const AF_DLI = 13
  4152. pkg syscall (netbsd-arm64), const AF_DLI ideal-int
  4153. pkg syscall (netbsd-arm64), const AF_E164 = 26
  4154. pkg syscall (netbsd-arm64), const AF_E164 ideal-int
  4155. pkg syscall (netbsd-arm64), const AF_ECMA = 8
  4156. pkg syscall (netbsd-arm64), const AF_ECMA ideal-int
  4157. pkg syscall (netbsd-arm64), const AF_HYLINK = 15
  4158. pkg syscall (netbsd-arm64), const AF_HYLINK ideal-int
  4159. pkg syscall (netbsd-arm64), const AF_IEEE80211 = 32
  4160. pkg syscall (netbsd-arm64), const AF_IEEE80211 ideal-int
  4161. pkg syscall (netbsd-arm64), const AF_IMPLINK = 3
  4162. pkg syscall (netbsd-arm64), const AF_IMPLINK ideal-int
  4163. pkg syscall (netbsd-arm64), const AF_INET6 = 24
  4164. pkg syscall (netbsd-arm64), const AF_IPX = 23
  4165. pkg syscall (netbsd-arm64), const AF_IPX ideal-int
  4166. pkg syscall (netbsd-arm64), const AF_ISDN = 26
  4167. pkg syscall (netbsd-arm64), const AF_ISDN ideal-int
  4168. pkg syscall (netbsd-arm64), const AF_ISO = 7
  4169. pkg syscall (netbsd-arm64), const AF_ISO ideal-int
  4170. pkg syscall (netbsd-arm64), const AF_LAT = 14
  4171. pkg syscall (netbsd-arm64), const AF_LAT ideal-int
  4172. pkg syscall (netbsd-arm64), const AF_LINK = 18
  4173. pkg syscall (netbsd-arm64), const AF_LINK ideal-int
  4174. pkg syscall (netbsd-arm64), const AF_LOCAL = 1
  4175. pkg syscall (netbsd-arm64), const AF_LOCAL ideal-int
  4176. pkg syscall (netbsd-arm64), const AF_MAX = 35
  4177. pkg syscall (netbsd-arm64), const AF_MAX ideal-int
  4178. pkg syscall (netbsd-arm64), const AF_MPLS = 33
  4179. pkg syscall (netbsd-arm64), const AF_MPLS ideal-int
  4180. pkg syscall (netbsd-arm64), const AF_NATM = 27
  4181. pkg syscall (netbsd-arm64), const AF_NATM ideal-int
  4182. pkg syscall (netbsd-arm64), const AF_NS = 6
  4183. pkg syscall (netbsd-arm64), const AF_NS ideal-int
  4184. pkg syscall (netbsd-arm64), const AF_OROUTE = 17
  4185. pkg syscall (netbsd-arm64), const AF_OROUTE ideal-int
  4186. pkg syscall (netbsd-arm64), const AF_OSI = 7
  4187. pkg syscall (netbsd-arm64), const AF_OSI ideal-int
  4188. pkg syscall (netbsd-arm64), const AF_PUP = 4
  4189. pkg syscall (netbsd-arm64), const AF_PUP ideal-int
  4190. pkg syscall (netbsd-arm64), const AF_ROUTE = 34
  4191. pkg syscall (netbsd-arm64), const AF_ROUTE ideal-int
  4192. pkg syscall (netbsd-arm64), const AF_SNA = 11
  4193. pkg syscall (netbsd-arm64), const AF_SNA ideal-int
  4194. pkg syscall (netbsd-arm64), const ARPHRD_ARCNET = 7
  4195. pkg syscall (netbsd-arm64), const ARPHRD_ARCNET ideal-int
  4196. pkg syscall (netbsd-arm64), const ARPHRD_ETHER = 1
  4197. pkg syscall (netbsd-arm64), const ARPHRD_ETHER ideal-int
  4198. pkg syscall (netbsd-arm64), const ARPHRD_FRELAY = 15
  4199. pkg syscall (netbsd-arm64), const ARPHRD_FRELAY ideal-int
  4200. pkg syscall (netbsd-arm64), const ARPHRD_IEEE1394 = 24
  4201. pkg syscall (netbsd-arm64), const ARPHRD_IEEE1394 ideal-int
  4202. pkg syscall (netbsd-arm64), const ARPHRD_IEEE802 = 6
  4203. pkg syscall (netbsd-arm64), const ARPHRD_IEEE802 ideal-int
  4204. pkg syscall (netbsd-arm64), const ARPHRD_STRIP = 23
  4205. pkg syscall (netbsd-arm64), const ARPHRD_STRIP ideal-int
  4206. pkg syscall (netbsd-arm64), const B0 = 0
  4207. pkg syscall (netbsd-arm64), const B0 ideal-int
  4208. pkg syscall (netbsd-arm64), const B110 = 110
  4209. pkg syscall (netbsd-arm64), const B110 ideal-int
  4210. pkg syscall (netbsd-arm64), const B115200 = 115200
  4211. pkg syscall (netbsd-arm64), const B115200 ideal-int
  4212. pkg syscall (netbsd-arm64), const B1200 = 1200
  4213. pkg syscall (netbsd-arm64), const B1200 ideal-int
  4214. pkg syscall (netbsd-arm64), const B134 = 134
  4215. pkg syscall (netbsd-arm64), const B134 ideal-int
  4216. pkg syscall (netbsd-arm64), const B14400 = 14400
  4217. pkg syscall (netbsd-arm64), const B14400 ideal-int
  4218. pkg syscall (netbsd-arm64), const B150 = 150
  4219. pkg syscall (netbsd-arm64), const B150 ideal-int
  4220. pkg syscall (netbsd-arm64), const B1800 = 1800
  4221. pkg syscall (netbsd-arm64), const B1800 ideal-int
  4222. pkg syscall (netbsd-arm64), const B19200 = 19200
  4223. pkg syscall (netbsd-arm64), const B19200 ideal-int
  4224. pkg syscall (netbsd-arm64), const B200 = 200
  4225. pkg syscall (netbsd-arm64), const B200 ideal-int
  4226. pkg syscall (netbsd-arm64), const B230400 = 230400
  4227. pkg syscall (netbsd-arm64), const B230400 ideal-int
  4228. pkg syscall (netbsd-arm64), const B2400 = 2400
  4229. pkg syscall (netbsd-arm64), const B2400 ideal-int
  4230. pkg syscall (netbsd-arm64), const B28800 = 28800
  4231. pkg syscall (netbsd-arm64), const B28800 ideal-int
  4232. pkg syscall (netbsd-arm64), const B300 = 300
  4233. pkg syscall (netbsd-arm64), const B300 ideal-int
  4234. pkg syscall (netbsd-arm64), const B38400 = 38400
  4235. pkg syscall (netbsd-arm64), const B38400 ideal-int
  4236. pkg syscall (netbsd-arm64), const B460800 = 460800
  4237. pkg syscall (netbsd-arm64), const B460800 ideal-int
  4238. pkg syscall (netbsd-arm64), const B4800 = 4800
  4239. pkg syscall (netbsd-arm64), const B4800 ideal-int
  4240. pkg syscall (netbsd-arm64), const B50 = 50
  4241. pkg syscall (netbsd-arm64), const B50 ideal-int
  4242. pkg syscall (netbsd-arm64), const B57600 = 57600
  4243. pkg syscall (netbsd-arm64), const B57600 ideal-int
  4244. pkg syscall (netbsd-arm64), const B600 = 600
  4245. pkg syscall (netbsd-arm64), const B600 ideal-int
  4246. pkg syscall (netbsd-arm64), const B7200 = 7200
  4247. pkg syscall (netbsd-arm64), const B7200 ideal-int
  4248. pkg syscall (netbsd-arm64), const B75 = 75
  4249. pkg syscall (netbsd-arm64), const B75 ideal-int
  4250. pkg syscall (netbsd-arm64), const B76800 = 76800
  4251. pkg syscall (netbsd-arm64), const B76800 ideal-int
  4252. pkg syscall (netbsd-arm64), const B921600 = 921600
  4253. pkg syscall (netbsd-arm64), const B921600 ideal-int
  4254. pkg syscall (netbsd-arm64), const B9600 = 9600
  4255. pkg syscall (netbsd-arm64), const B9600 ideal-int
  4256. pkg syscall (netbsd-arm64), const BIOCFEEDBACK = 2147762813
  4257. pkg syscall (netbsd-arm64), const BIOCFEEDBACK ideal-int
  4258. pkg syscall (netbsd-arm64), const BIOCFLUSH = 536887912
  4259. pkg syscall (netbsd-arm64), const BIOCFLUSH ideal-int
  4260. pkg syscall (netbsd-arm64), const BIOCGBLEN = 1074020966
  4261. pkg syscall (netbsd-arm64), const BIOCGBLEN ideal-int
  4262. pkg syscall (netbsd-arm64), const BIOCGDLT = 1074020970
  4263. pkg syscall (netbsd-arm64), const BIOCGDLT ideal-int
  4264. pkg syscall (netbsd-arm64), const BIOCGDLTLIST = 3222291063
  4265. pkg syscall (netbsd-arm64), const BIOCGDLTLIST ideal-int
  4266. pkg syscall (netbsd-arm64), const BIOCGETIF = 1083196011
  4267. pkg syscall (netbsd-arm64), const BIOCGETIF ideal-int
  4268. pkg syscall (netbsd-arm64), const BIOCGFEEDBACK = 1074020988
  4269. pkg syscall (netbsd-arm64), const BIOCGFEEDBACK ideal-int
  4270. pkg syscall (netbsd-arm64), const BIOCGHDRCMPLT = 1074020980
  4271. pkg syscall (netbsd-arm64), const BIOCGHDRCMPLT ideal-int
  4272. pkg syscall (netbsd-arm64), const BIOCGRTIMEOUT = 1074807419
  4273. pkg syscall (netbsd-arm64), const BIOCGRTIMEOUT ideal-int
  4274. pkg syscall (netbsd-arm64), const BIOCGSEESENT = 1074020984
  4275. pkg syscall (netbsd-arm64), const BIOCGSEESENT ideal-int
  4276. pkg syscall (netbsd-arm64), const BIOCGSTATS = 1082147439
  4277. pkg syscall (netbsd-arm64), const BIOCGSTATS ideal-int
  4278. pkg syscall (netbsd-arm64), const BIOCGSTATSOLD = 1074283119
  4279. pkg syscall (netbsd-arm64), const BIOCGSTATSOLD ideal-int
  4280. pkg syscall (netbsd-arm64), const BIOCIMMEDIATE = 2147762800
  4281. pkg syscall (netbsd-arm64), const BIOCIMMEDIATE ideal-int
  4282. pkg syscall (netbsd-arm64), const BIOCPROMISC = 536887913
  4283. pkg syscall (netbsd-arm64), const BIOCPROMISC ideal-int
  4284. pkg syscall (netbsd-arm64), const BIOCSBLEN = 3221504614
  4285. pkg syscall (netbsd-arm64), const BIOCSBLEN ideal-int
  4286. pkg syscall (netbsd-arm64), const BIOCSDLT = 2147762806
  4287. pkg syscall (netbsd-arm64), const BIOCSDLT ideal-int
  4288. pkg syscall (netbsd-arm64), const BIOCSETF = 2148549223
  4289. pkg syscall (netbsd-arm64), const BIOCSETF ideal-int
  4290. pkg syscall (netbsd-arm64), const BIOCSETIF = 2156937836
  4291. pkg syscall (netbsd-arm64), const BIOCSETIF ideal-int
  4292. pkg syscall (netbsd-arm64), const BIOCSFEEDBACK = 2147762813
  4293. pkg syscall (netbsd-arm64), const BIOCSFEEDBACK ideal-int
  4294. pkg syscall (netbsd-arm64), const BIOCSHDRCMPLT = 2147762805
  4295. pkg syscall (netbsd-arm64), const BIOCSHDRCMPLT ideal-int
  4296. pkg syscall (netbsd-arm64), const BIOCSRTIMEOUT = 2148549242
  4297. pkg syscall (netbsd-arm64), const BIOCSRTIMEOUT ideal-int
  4298. pkg syscall (netbsd-arm64), const BIOCSSEESENT = 2147762809
  4299. pkg syscall (netbsd-arm64), const BIOCSSEESENT ideal-int
  4300. pkg syscall (netbsd-arm64), const BIOCSTCPF = 2148549234
  4301. pkg syscall (netbsd-arm64), const BIOCSTCPF ideal-int
  4302. pkg syscall (netbsd-arm64), const BIOCSUDPF = 2148549235
  4303. pkg syscall (netbsd-arm64), const BIOCSUDPF ideal-int
  4304. pkg syscall (netbsd-arm64), const BIOCVERSION = 1074020977
  4305. pkg syscall (netbsd-arm64), const BIOCVERSION ideal-int
  4306. pkg syscall (netbsd-arm64), const BPF_A = 16
  4307. pkg syscall (netbsd-arm64), const BPF_ABS = 32
  4308. pkg syscall (netbsd-arm64), const BPF_ABS ideal-int
  4309. pkg syscall (netbsd-arm64), const BPF_ADD = 0
  4310. pkg syscall (netbsd-arm64), const BPF_ADD ideal-int
  4311. pkg syscall (netbsd-arm64), const BPF_A ideal-int
  4312. pkg syscall (netbsd-arm64), const BPF_ALIGNMENT32 = 4
  4313. pkg syscall (netbsd-arm64), const BPF_ALIGNMENT32 ideal-int
  4314. pkg syscall (netbsd-arm64), const BPF_ALIGNMENT = 8
  4315. pkg syscall (netbsd-arm64), const BPF_ALIGNMENT ideal-int
  4316. pkg syscall (netbsd-arm64), const BPF_ALU = 4
  4317. pkg syscall (netbsd-arm64), const BPF_ALU ideal-int
  4318. pkg syscall (netbsd-arm64), const BPF_AND = 80
  4319. pkg syscall (netbsd-arm64), const BPF_AND ideal-int
  4320. pkg syscall (netbsd-arm64), const BPF_B = 16
  4321. pkg syscall (netbsd-arm64), const BPF_B ideal-int
  4322. pkg syscall (netbsd-arm64), const BPF_DFLTBUFSIZE = 1048576
  4323. pkg syscall (netbsd-arm64), const BPF_DFLTBUFSIZE ideal-int
  4324. pkg syscall (netbsd-arm64), const BPF_DIV = 48
  4325. pkg syscall (netbsd-arm64), const BPF_DIV ideal-int
  4326. pkg syscall (netbsd-arm64), const BPF_H = 8
  4327. pkg syscall (netbsd-arm64), const BPF_H ideal-int
  4328. pkg syscall (netbsd-arm64), const BPF_IMM = 0
  4329. pkg syscall (netbsd-arm64), const BPF_IMM ideal-int
  4330. pkg syscall (netbsd-arm64), const BPF_IND = 64
  4331. pkg syscall (netbsd-arm64), const BPF_IND ideal-int
  4332. pkg syscall (netbsd-arm64), const BPF_JA = 0
  4333. pkg syscall (netbsd-arm64), const BPF_JA ideal-int
  4334. pkg syscall (netbsd-arm64), const BPF_JEQ = 16
  4335. pkg syscall (netbsd-arm64), const BPF_JEQ ideal-int
  4336. pkg syscall (netbsd-arm64), const BPF_JGE = 48
  4337. pkg syscall (netbsd-arm64), const BPF_JGE ideal-int
  4338. pkg syscall (netbsd-arm64), const BPF_JGT = 32
  4339. pkg syscall (netbsd-arm64), const BPF_JGT ideal-int
  4340. pkg syscall (netbsd-arm64), const BPF_JMP = 5
  4341. pkg syscall (netbsd-arm64), const BPF_JMP ideal-int
  4342. pkg syscall (netbsd-arm64), const BPF_JSET = 64
  4343. pkg syscall (netbsd-arm64), const BPF_JSET ideal-int
  4344. pkg syscall (netbsd-arm64), const BPF_K = 0
  4345. pkg syscall (netbsd-arm64), const BPF_K ideal-int
  4346. pkg syscall (netbsd-arm64), const BPF_LD = 0
  4347. pkg syscall (netbsd-arm64), const BPF_LD ideal-int
  4348. pkg syscall (netbsd-arm64), const BPF_LDX = 1
  4349. pkg syscall (netbsd-arm64), const BPF_LDX ideal-int
  4350. pkg syscall (netbsd-arm64), const BPF_LEN = 128
  4351. pkg syscall (netbsd-arm64), const BPF_LEN ideal-int
  4352. pkg syscall (netbsd-arm64), const BPF_LSH = 96
  4353. pkg syscall (netbsd-arm64), const BPF_LSH ideal-int
  4354. pkg syscall (netbsd-arm64), const BPF_MAJOR_VERSION = 1
  4355. pkg syscall (netbsd-arm64), const BPF_MAJOR_VERSION ideal-int
  4356. pkg syscall (netbsd-arm64), const BPF_MAXBUFSIZE = 16777216
  4357. pkg syscall (netbsd-arm64), const BPF_MAXBUFSIZE ideal-int
  4358. pkg syscall (netbsd-arm64), const BPF_MAXINSNS = 512
  4359. pkg syscall (netbsd-arm64), const BPF_MAXINSNS ideal-int
  4360. pkg syscall (netbsd-arm64), const BPF_MEM = 96
  4361. pkg syscall (netbsd-arm64), const BPF_MEM ideal-int
  4362. pkg syscall (netbsd-arm64), const BPF_MEMWORDS = 16
  4363. pkg syscall (netbsd-arm64), const BPF_MEMWORDS ideal-int
  4364. pkg syscall (netbsd-arm64), const BPF_MINBUFSIZE = 32
  4365. pkg syscall (netbsd-arm64), const BPF_MINBUFSIZE ideal-int
  4366. pkg syscall (netbsd-arm64), const BPF_MINOR_VERSION = 1
  4367. pkg syscall (netbsd-arm64), const BPF_MINOR_VERSION ideal-int
  4368. pkg syscall (netbsd-arm64), const BPF_MISC = 7
  4369. pkg syscall (netbsd-arm64), const BPF_MISC ideal-int
  4370. pkg syscall (netbsd-arm64), const BPF_MSH = 160
  4371. pkg syscall (netbsd-arm64), const BPF_MSH ideal-int
  4372. pkg syscall (netbsd-arm64), const BPF_MUL = 32
  4373. pkg syscall (netbsd-arm64), const BPF_MUL ideal-int
  4374. pkg syscall (netbsd-arm64), const BPF_NEG = 128
  4375. pkg syscall (netbsd-arm64), const BPF_NEG ideal-int
  4376. pkg syscall (netbsd-arm64), const BPF_OR = 64
  4377. pkg syscall (netbsd-arm64), const BPF_OR ideal-int
  4378. pkg syscall (netbsd-arm64), const BPF_RELEASE = 199606
  4379. pkg syscall (netbsd-arm64), const BPF_RELEASE ideal-int
  4380. pkg syscall (netbsd-arm64), const BPF_RET = 6
  4381. pkg syscall (netbsd-arm64), const BPF_RET ideal-int
  4382. pkg syscall (netbsd-arm64), const BPF_RSH = 112
  4383. pkg syscall (netbsd-arm64), const BPF_RSH ideal-int
  4384. pkg syscall (netbsd-arm64), const BPF_ST = 2
  4385. pkg syscall (netbsd-arm64), const BPF_ST ideal-int
  4386. pkg syscall (netbsd-arm64), const BPF_STX = 3
  4387. pkg syscall (netbsd-arm64), const BPF_STX ideal-int
  4388. pkg syscall (netbsd-arm64), const BPF_SUB = 16
  4389. pkg syscall (netbsd-arm64), const BPF_SUB ideal-int
  4390. pkg syscall (netbsd-arm64), const BPF_TAX = 0
  4391. pkg syscall (netbsd-arm64), const BPF_TAX ideal-int
  4392. pkg syscall (netbsd-arm64), const BPF_TXA = 128
  4393. pkg syscall (netbsd-arm64), const BPF_TXA ideal-int
  4394. pkg syscall (netbsd-arm64), const BPF_W = 0
  4395. pkg syscall (netbsd-arm64), const BPF_W ideal-int
  4396. pkg syscall (netbsd-arm64), const BPF_X = 8
  4397. pkg syscall (netbsd-arm64), const BPF_X ideal-int
  4398. pkg syscall (netbsd-arm64), const BRKINT = 2
  4399. pkg syscall (netbsd-arm64), const BRKINT ideal-int
  4400. pkg syscall (netbsd-arm64), const CFLUSH = 15
  4401. pkg syscall (netbsd-arm64), const CFLUSH ideal-int
  4402. pkg syscall (netbsd-arm64), const CLOCAL = 32768
  4403. pkg syscall (netbsd-arm64), const CLOCAL ideal-int
  4404. pkg syscall (netbsd-arm64), const CLONE_CSIGNAL = 255
  4405. pkg syscall (netbsd-arm64), const CLONE_CSIGNAL ideal-int
  4406. pkg syscall (netbsd-arm64), const CLONE_FILES = 1024
  4407. pkg syscall (netbsd-arm64), const CLONE_FILES ideal-int
  4408. pkg syscall (netbsd-arm64), const CLONE_FS = 512
  4409. pkg syscall (netbsd-arm64), const CLONE_FS ideal-int
  4410. pkg syscall (netbsd-arm64), const CLONE_PID = 4096
  4411. pkg syscall (netbsd-arm64), const CLONE_PID ideal-int
  4412. pkg syscall (netbsd-arm64), const CLONE_PTRACE = 8192
  4413. pkg syscall (netbsd-arm64), const CLONE_PTRACE ideal-int
  4414. pkg syscall (netbsd-arm64), const CLONE_SIGHAND = 2048
  4415. pkg syscall (netbsd-arm64), const CLONE_SIGHAND ideal-int
  4416. pkg syscall (netbsd-arm64), const CLONE_VFORK = 16384
  4417. pkg syscall (netbsd-arm64), const CLONE_VFORK ideal-int
  4418. pkg syscall (netbsd-arm64), const CLONE_VM = 256
  4419. pkg syscall (netbsd-arm64), const CLONE_VM ideal-int
  4420. pkg syscall (netbsd-arm64), const CREAD = 2048
  4421. pkg syscall (netbsd-arm64), const CREAD ideal-int
  4422. pkg syscall (netbsd-arm64), const CS5 = 0
  4423. pkg syscall (netbsd-arm64), const CS5 ideal-int
  4424. pkg syscall (netbsd-arm64), const CS6 = 256
  4425. pkg syscall (netbsd-arm64), const CS6 ideal-int
  4426. pkg syscall (netbsd-arm64), const CS7 = 512
  4427. pkg syscall (netbsd-arm64), const CS7 ideal-int
  4428. pkg syscall (netbsd-arm64), const CS8 = 768
  4429. pkg syscall (netbsd-arm64), const CS8 ideal-int
  4430. pkg syscall (netbsd-arm64), const CSIZE = 768
  4431. pkg syscall (netbsd-arm64), const CSIZE ideal-int
  4432. pkg syscall (netbsd-arm64), const CSTART = 17
  4433. pkg syscall (netbsd-arm64), const CSTART ideal-int
  4434. pkg syscall (netbsd-arm64), const CSTATUS = 20
  4435. pkg syscall (netbsd-arm64), const CSTATUS ideal-int
  4436. pkg syscall (netbsd-arm64), const CSTOP = 19
  4437. pkg syscall (netbsd-arm64), const CSTOPB = 1024
  4438. pkg syscall (netbsd-arm64), const CSTOPB ideal-int
  4439. pkg syscall (netbsd-arm64), const CSTOP ideal-int
  4440. pkg syscall (netbsd-arm64), const CSUSP = 26
  4441. pkg syscall (netbsd-arm64), const CSUSP ideal-int
  4442. pkg syscall (netbsd-arm64), const CTL_MAXNAME = 12
  4443. pkg syscall (netbsd-arm64), const CTL_MAXNAME ideal-int
  4444. pkg syscall (netbsd-arm64), const CTL_NET = 4
  4445. pkg syscall (netbsd-arm64), const CTL_NET ideal-int
  4446. pkg syscall (netbsd-arm64), const CTL_QUERY = -2
  4447. pkg syscall (netbsd-arm64), const CTL_QUERY ideal-int
  4448. pkg syscall (netbsd-arm64), const DIOCBSFLUSH = 536896632
  4449. pkg syscall (netbsd-arm64), const DIOCBSFLUSH ideal-int
  4450. pkg syscall (netbsd-arm64), const DLT_A429 = 184
  4451. pkg syscall (netbsd-arm64), const DLT_A429 ideal-int
  4452. pkg syscall (netbsd-arm64), const DLT_A653_ICM = 185
  4453. pkg syscall (netbsd-arm64), const DLT_A653_ICM ideal-int
  4454. pkg syscall (netbsd-arm64), const DLT_AIRONET_HEADER = 120
  4455. pkg syscall (netbsd-arm64), const DLT_AIRONET_HEADER ideal-int
  4456. pkg syscall (netbsd-arm64), const DLT_AOS = 222
  4457. pkg syscall (netbsd-arm64), const DLT_AOS ideal-int
  4458. pkg syscall (netbsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138
  4459. pkg syscall (netbsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  4460. pkg syscall (netbsd-arm64), const DLT_ARCNET = 7
  4461. pkg syscall (netbsd-arm64), const DLT_ARCNET ideal-int
  4462. pkg syscall (netbsd-arm64), const DLT_ARCNET_LINUX = 129
  4463. pkg syscall (netbsd-arm64), const DLT_ARCNET_LINUX ideal-int
  4464. pkg syscall (netbsd-arm64), const DLT_ATM_CLIP = 19
  4465. pkg syscall (netbsd-arm64), const DLT_ATM_CLIP ideal-int
  4466. pkg syscall (netbsd-arm64), const DLT_ATM_RFC1483 = 11
  4467. pkg syscall (netbsd-arm64), const DLT_ATM_RFC1483 ideal-int
  4468. pkg syscall (netbsd-arm64), const DLT_AURORA = 126
  4469. pkg syscall (netbsd-arm64), const DLT_AURORA ideal-int
  4470. pkg syscall (netbsd-arm64), const DLT_AX25 = 3
  4471. pkg syscall (netbsd-arm64), const DLT_AX25 ideal-int
  4472. pkg syscall (netbsd-arm64), const DLT_AX25_KISS = 202
  4473. pkg syscall (netbsd-arm64), const DLT_AX25_KISS ideal-int
  4474. pkg syscall (netbsd-arm64), const DLT_BACNET_MS_TP = 165
  4475. pkg syscall (netbsd-arm64), const DLT_BACNET_MS_TP ideal-int
  4476. pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4 = 187
  4477. pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4 ideal-int
  4478. pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201
  4479. pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
  4480. pkg syscall (netbsd-arm64), const DLT_CAN20B = 190
  4481. pkg syscall (netbsd-arm64), const DLT_CAN20B ideal-int
  4482. pkg syscall (netbsd-arm64), const DLT_CAN_SOCKETCAN = 227
  4483. pkg syscall (netbsd-arm64), const DLT_CAN_SOCKETCAN ideal-int
  4484. pkg syscall (netbsd-arm64), const DLT_CHAOS = 5
  4485. pkg syscall (netbsd-arm64), const DLT_CHAOS ideal-int
  4486. pkg syscall (netbsd-arm64), const DLT_C_HDLC = 104
  4487. pkg syscall (netbsd-arm64), const DLT_C_HDLC ideal-int
  4488. pkg syscall (netbsd-arm64), const DLT_C_HDLC_WITH_DIR = 205
  4489. pkg syscall (netbsd-arm64), const DLT_C_HDLC_WITH_DIR ideal-int
  4490. pkg syscall (netbsd-arm64), const DLT_CISCO_IOS = 118
  4491. pkg syscall (netbsd-arm64), const DLT_CISCO_IOS ideal-int
  4492. pkg syscall (netbsd-arm64), const DLT_DECT = 221
  4493. pkg syscall (netbsd-arm64), const DLT_DECT ideal-int
  4494. pkg syscall (netbsd-arm64), const DLT_DOCSIS = 143
  4495. pkg syscall (netbsd-arm64), const DLT_DOCSIS ideal-int
  4496. pkg syscall (netbsd-arm64), const DLT_ECONET = 115
  4497. pkg syscall (netbsd-arm64), const DLT_ECONET ideal-int
  4498. pkg syscall (netbsd-arm64), const DLT_EN10MB = 1
  4499. pkg syscall (netbsd-arm64), const DLT_EN10MB ideal-int
  4500. pkg syscall (netbsd-arm64), const DLT_EN3MB = 2
  4501. pkg syscall (netbsd-arm64), const DLT_EN3MB ideal-int
  4502. pkg syscall (netbsd-arm64), const DLT_ENC = 109
  4503. pkg syscall (netbsd-arm64), const DLT_ENC ideal-int
  4504. pkg syscall (netbsd-arm64), const DLT_ERF = 197
  4505. pkg syscall (netbsd-arm64), const DLT_ERF_ETH = 175
  4506. pkg syscall (netbsd-arm64), const DLT_ERF_ETH ideal-int
  4507. pkg syscall (netbsd-arm64), const DLT_ERF ideal-int
  4508. pkg syscall (netbsd-arm64), const DLT_ERF_POS = 176
  4509. pkg syscall (netbsd-arm64), const DLT_ERF_POS ideal-int
  4510. pkg syscall (netbsd-arm64), const DLT_FC_2 = 224
  4511. pkg syscall (netbsd-arm64), const DLT_FC_2 ideal-int
  4512. pkg syscall (netbsd-arm64), const DLT_FC_2_WITH_FRAME_DELIMS = 225
  4513. pkg syscall (netbsd-arm64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int
  4514. pkg syscall (netbsd-arm64), const DLT_FDDI = 10
  4515. pkg syscall (netbsd-arm64), const DLT_FDDI ideal-int
  4516. pkg syscall (netbsd-arm64), const DLT_FLEXRAY = 210
  4517. pkg syscall (netbsd-arm64), const DLT_FLEXRAY ideal-int
  4518. pkg syscall (netbsd-arm64), const DLT_FRELAY = 107
  4519. pkg syscall (netbsd-arm64), const DLT_FRELAY ideal-int
  4520. pkg syscall (netbsd-arm64), const DLT_FRELAY_WITH_DIR = 206
  4521. pkg syscall (netbsd-arm64), const DLT_FRELAY_WITH_DIR ideal-int
  4522. pkg syscall (netbsd-arm64), const DLT_GCOM_SERIAL = 173
  4523. pkg syscall (netbsd-arm64), const DLT_GCOM_SERIAL ideal-int
  4524. pkg syscall (netbsd-arm64), const DLT_GCOM_T1E1 = 172
  4525. pkg syscall (netbsd-arm64), const DLT_GCOM_T1E1 ideal-int
  4526. pkg syscall (netbsd-arm64), const DLT_GPF_F = 171
  4527. pkg syscall (netbsd-arm64), const DLT_GPF_F ideal-int
  4528. pkg syscall (netbsd-arm64), const DLT_GPF_T = 170
  4529. pkg syscall (netbsd-arm64), const DLT_GPF_T ideal-int
  4530. pkg syscall (netbsd-arm64), const DLT_GPRS_LLC = 169
  4531. pkg syscall (netbsd-arm64), const DLT_GPRS_LLC ideal-int
  4532. pkg syscall (netbsd-arm64), const DLT_GSMTAP_ABIS = 218
  4533. pkg syscall (netbsd-arm64), const DLT_GSMTAP_ABIS ideal-int
  4534. pkg syscall (netbsd-arm64), const DLT_GSMTAP_UM = 217
  4535. pkg syscall (netbsd-arm64), const DLT_GSMTAP_UM ideal-int
  4536. pkg syscall (netbsd-arm64), const DLT_HDLC = 16
  4537. pkg syscall (netbsd-arm64), const DLT_HDLC ideal-int
  4538. pkg syscall (netbsd-arm64), const DLT_HHDLC = 121
  4539. pkg syscall (netbsd-arm64), const DLT_HHDLC ideal-int
  4540. pkg syscall (netbsd-arm64), const DLT_HIPPI = 15
  4541. pkg syscall (netbsd-arm64), const DLT_HIPPI ideal-int
  4542. pkg syscall (netbsd-arm64), const DLT_IBM_SN = 146
  4543. pkg syscall (netbsd-arm64), const DLT_IBM_SN ideal-int
  4544. pkg syscall (netbsd-arm64), const DLT_IBM_SP = 145
  4545. pkg syscall (netbsd-arm64), const DLT_IBM_SP ideal-int
  4546. pkg syscall (netbsd-arm64), const DLT_IEEE802_11 = 105
  4547. pkg syscall (netbsd-arm64), const DLT_IEEE802_11 ideal-int
  4548. pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO = 127
  4549. pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO_AVS = 163
  4550. pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO_AVS ideal-int
  4551. pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO ideal-int
  4552. pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4 = 195
  4553. pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4 ideal-int
  4554. pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_LINUX = 191
  4555. pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_LINUX ideal-int
  4556. pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_NONASK_PHY = 215
  4557. pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
  4558. pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS = 188
  4559. pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS ideal-int
  4560. pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS_RADIO = 193
  4561. pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
  4562. pkg syscall (netbsd-arm64), const DLT_IEEE802 = 6
  4563. pkg syscall (netbsd-arm64), const DLT_IEEE802 ideal-int
  4564. pkg syscall (netbsd-arm64), const DLT_IPMB = 199
  4565. pkg syscall (netbsd-arm64), const DLT_IPMB ideal-int
  4566. pkg syscall (netbsd-arm64), const DLT_IPMB_LINUX = 209
  4567. pkg syscall (netbsd-arm64), const DLT_IPMB_LINUX ideal-int
  4568. pkg syscall (netbsd-arm64), const DLT_IPNET = 226
  4569. pkg syscall (netbsd-arm64), const DLT_IPNET ideal-int
  4570. pkg syscall (netbsd-arm64), const DLT_IP_OVER_FC = 122
  4571. pkg syscall (netbsd-arm64), const DLT_IP_OVER_FC ideal-int
  4572. pkg syscall (netbsd-arm64), const DLT_IPV4 = 228
  4573. pkg syscall (netbsd-arm64), const DLT_IPV4 ideal-int
  4574. pkg syscall (netbsd-arm64), const DLT_IPV6 = 229
  4575. pkg syscall (netbsd-arm64), const DLT_IPV6 ideal-int
  4576. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM1 = 137
  4577. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM1 ideal-int
  4578. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM2 = 135
  4579. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM2 ideal-int
  4580. pkg syscall (netbsd-arm64), const DLT_JUNIPER_CHDLC = 181
  4581. pkg syscall (netbsd-arm64), const DLT_JUNIPER_CHDLC ideal-int
  4582. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ES = 132
  4583. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ES ideal-int
  4584. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ETHER = 178
  4585. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ETHER ideal-int
  4586. pkg syscall (netbsd-arm64), const DLT_JUNIPER_FRELAY = 180
  4587. pkg syscall (netbsd-arm64), const DLT_JUNIPER_FRELAY ideal-int
  4588. pkg syscall (netbsd-arm64), const DLT_JUNIPER_GGSN = 133
  4589. pkg syscall (netbsd-arm64), const DLT_JUNIPER_GGSN ideal-int
  4590. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ISM = 194
  4591. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ISM ideal-int
  4592. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MFR = 134
  4593. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MFR ideal-int
  4594. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLFR = 131
  4595. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLFR ideal-int
  4596. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLPPP = 130
  4597. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLPPP ideal-int
  4598. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MONITOR = 164
  4599. pkg syscall (netbsd-arm64), const DLT_JUNIPER_MONITOR ideal-int
  4600. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PIC_PEER = 174
  4601. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PIC_PEER ideal-int
  4602. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPP = 179
  4603. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPP ideal-int
  4604. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE = 167
  4605. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE_ATM = 168
  4606. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE_ATM ideal-int
  4607. pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE ideal-int
  4608. pkg syscall (netbsd-arm64), const DLT_JUNIPER_SERVICES = 136
  4609. pkg syscall (netbsd-arm64), const DLT_JUNIPER_SERVICES ideal-int
  4610. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ST = 200
  4611. pkg syscall (netbsd-arm64), const DLT_JUNIPER_ST ideal-int
  4612. pkg syscall (netbsd-arm64), const DLT_JUNIPER_VP = 183
  4613. pkg syscall (netbsd-arm64), const DLT_JUNIPER_VP ideal-int
  4614. pkg syscall (netbsd-arm64), const DLT_LAPB_WITH_DIR = 207
  4615. pkg syscall (netbsd-arm64), const DLT_LAPB_WITH_DIR ideal-int
  4616. pkg syscall (netbsd-arm64), const DLT_LAPD = 203
  4617. pkg syscall (netbsd-arm64), const DLT_LAPD ideal-int
  4618. pkg syscall (netbsd-arm64), const DLT_LIN = 212
  4619. pkg syscall (netbsd-arm64), const DLT_LIN ideal-int
  4620. pkg syscall (netbsd-arm64), const DLT_LINUX_EVDEV = 216
  4621. pkg syscall (netbsd-arm64), const DLT_LINUX_EVDEV ideal-int
  4622. pkg syscall (netbsd-arm64), const DLT_LINUX_IRDA = 144
  4623. pkg syscall (netbsd-arm64), const DLT_LINUX_IRDA ideal-int
  4624. pkg syscall (netbsd-arm64), const DLT_LINUX_LAPD = 177
  4625. pkg syscall (netbsd-arm64), const DLT_LINUX_LAPD ideal-int
  4626. pkg syscall (netbsd-arm64), const DLT_LINUX_SLL = 113
  4627. pkg syscall (netbsd-arm64), const DLT_LINUX_SLL ideal-int
  4628. pkg syscall (netbsd-arm64), const DLT_LOOP = 108
  4629. pkg syscall (netbsd-arm64), const DLT_LOOP ideal-int
  4630. pkg syscall (netbsd-arm64), const DLT_LTALK = 114
  4631. pkg syscall (netbsd-arm64), const DLT_LTALK ideal-int
  4632. pkg syscall (netbsd-arm64), const DLT_MFR = 182
  4633. pkg syscall (netbsd-arm64), const DLT_MFR ideal-int
  4634. pkg syscall (netbsd-arm64), const DLT_MOST = 211
  4635. pkg syscall (netbsd-arm64), const DLT_MOST ideal-int
  4636. pkg syscall (netbsd-arm64), const DLT_MPLS = 219
  4637. pkg syscall (netbsd-arm64), const DLT_MPLS ideal-int
  4638. pkg syscall (netbsd-arm64), const DLT_MTP2 = 140
  4639. pkg syscall (netbsd-arm64), const DLT_MTP2 ideal-int
  4640. pkg syscall (netbsd-arm64), const DLT_MTP2_WITH_PHDR = 139
  4641. pkg syscall (netbsd-arm64), const DLT_MTP2_WITH_PHDR ideal-int
  4642. pkg syscall (netbsd-arm64), const DLT_MTP3 = 141
  4643. pkg syscall (netbsd-arm64), const DLT_MTP3 ideal-int
  4644. pkg syscall (netbsd-arm64), const DLT_NULL = 0
  4645. pkg syscall (netbsd-arm64), const DLT_NULL ideal-int
  4646. pkg syscall (netbsd-arm64), const DLT_PCI_EXP = 125
  4647. pkg syscall (netbsd-arm64), const DLT_PCI_EXP ideal-int
  4648. pkg syscall (netbsd-arm64), const DLT_PFLOG = 117
  4649. pkg syscall (netbsd-arm64), const DLT_PFLOG ideal-int
  4650. pkg syscall (netbsd-arm64), const DLT_PFSYNC = 18
  4651. pkg syscall (netbsd-arm64), const DLT_PFSYNC ideal-int
  4652. pkg syscall (netbsd-arm64), const DLT_PPI = 192
  4653. pkg syscall (netbsd-arm64), const DLT_PPI ideal-int
  4654. pkg syscall (netbsd-arm64), const DLT_PPP = 9
  4655. pkg syscall (netbsd-arm64), const DLT_PPP_BSDOS = 14
  4656. pkg syscall (netbsd-arm64), const DLT_PPP_BSDOS ideal-int
  4657. pkg syscall (netbsd-arm64), const DLT_PPP_ETHER = 51
  4658. pkg syscall (netbsd-arm64), const DLT_PPP_ETHER ideal-int
  4659. pkg syscall (netbsd-arm64), const DLT_PPP ideal-int
  4660. pkg syscall (netbsd-arm64), const DLT_PPP_PPPD = 166
  4661. pkg syscall (netbsd-arm64), const DLT_PPP_PPPD ideal-int
  4662. pkg syscall (netbsd-arm64), const DLT_PPP_SERIAL = 50
  4663. pkg syscall (netbsd-arm64), const DLT_PPP_SERIAL ideal-int
  4664. pkg syscall (netbsd-arm64), const DLT_PPP_WITH_DIR = 204
  4665. pkg syscall (netbsd-arm64), const DLT_PPP_WITH_DIR ideal-int
  4666. pkg syscall (netbsd-arm64), const DLT_PRISM_HEADER = 119
  4667. pkg syscall (netbsd-arm64), const DLT_PRISM_HEADER ideal-int
  4668. pkg syscall (netbsd-arm64), const DLT_PRONET = 4
  4669. pkg syscall (netbsd-arm64), const DLT_PRONET ideal-int
  4670. pkg syscall (netbsd-arm64), const DLT_RAIF1 = 198
  4671. pkg syscall (netbsd-arm64), const DLT_RAIF1 ideal-int
  4672. pkg syscall (netbsd-arm64), const DLT_RAW = 12
  4673. pkg syscall (netbsd-arm64), const DLT_RAWAF_MASK = 35913728
  4674. pkg syscall (netbsd-arm64), const DLT_RAWAF_MASK ideal-int
  4675. pkg syscall (netbsd-arm64), const DLT_RAW ideal-int
  4676. pkg syscall (netbsd-arm64), const DLT_RIO = 124
  4677. pkg syscall (netbsd-arm64), const DLT_RIO ideal-int
  4678. pkg syscall (netbsd-arm64), const DLT_SCCP = 142
  4679. pkg syscall (netbsd-arm64), const DLT_SCCP ideal-int
  4680. pkg syscall (netbsd-arm64), const DLT_SITA = 196
  4681. pkg syscall (netbsd-arm64), const DLT_SITA ideal-int
  4682. pkg syscall (netbsd-arm64), const DLT_SLIP = 8
  4683. pkg syscall (netbsd-arm64), const DLT_SLIP_BSDOS = 13
  4684. pkg syscall (netbsd-arm64), const DLT_SLIP_BSDOS ideal-int
  4685. pkg syscall (netbsd-arm64), const DLT_SLIP ideal-int
  4686. pkg syscall (netbsd-arm64), const DLT_SUNATM = 123
  4687. pkg syscall (netbsd-arm64), const DLT_SUNATM ideal-int
  4688. pkg syscall (netbsd-arm64), const DLT_SYMANTEC_FIREWALL = 99
  4689. pkg syscall (netbsd-arm64), const DLT_SYMANTEC_FIREWALL ideal-int
  4690. pkg syscall (netbsd-arm64), const DLT_TZSP = 128
  4691. pkg syscall (netbsd-arm64), const DLT_TZSP ideal-int
  4692. pkg syscall (netbsd-arm64), const DLT_USB = 186
  4693. pkg syscall (netbsd-arm64), const DLT_USB ideal-int
  4694. pkg syscall (netbsd-arm64), const DLT_USB_LINUX = 189
  4695. pkg syscall (netbsd-arm64), const DLT_USB_LINUX ideal-int
  4696. pkg syscall (netbsd-arm64), const DLT_USB_LINUX_MMAPPED = 220
  4697. pkg syscall (netbsd-arm64), const DLT_USB_LINUX_MMAPPED ideal-int
  4698. pkg syscall (netbsd-arm64), const DLT_WIHART = 223
  4699. pkg syscall (netbsd-arm64), const DLT_WIHART ideal-int
  4700. pkg syscall (netbsd-arm64), const DLT_X2E_SERIAL = 213
  4701. pkg syscall (netbsd-arm64), const DLT_X2E_SERIAL ideal-int
  4702. pkg syscall (netbsd-arm64), const DLT_X2E_XORAYA = 214
  4703. pkg syscall (netbsd-arm64), const DLT_X2E_XORAYA ideal-int
  4704. pkg syscall (netbsd-arm64), const DT_BLK = 6
  4705. pkg syscall (netbsd-arm64), const DT_BLK ideal-int
  4706. pkg syscall (netbsd-arm64), const DT_CHR = 2
  4707. pkg syscall (netbsd-arm64), const DT_CHR ideal-int
  4708. pkg syscall (netbsd-arm64), const DT_DIR = 4
  4709. pkg syscall (netbsd-arm64), const DT_DIR ideal-int
  4710. pkg syscall (netbsd-arm64), const DT_FIFO = 1
  4711. pkg syscall (netbsd-arm64), const DT_FIFO ideal-int
  4712. pkg syscall (netbsd-arm64), const DT_LNK = 10
  4713. pkg syscall (netbsd-arm64), const DT_LNK ideal-int
  4714. pkg syscall (netbsd-arm64), const DT_REG = 8
  4715. pkg syscall (netbsd-arm64), const DT_REG ideal-int
  4716. pkg syscall (netbsd-arm64), const DT_SOCK = 12
  4717. pkg syscall (netbsd-arm64), const DT_SOCK ideal-int
  4718. pkg syscall (netbsd-arm64), const DT_UNKNOWN = 0
  4719. pkg syscall (netbsd-arm64), const DT_UNKNOWN ideal-int
  4720. pkg syscall (netbsd-arm64), const DT_WHT = 14
  4721. pkg syscall (netbsd-arm64), const DT_WHT ideal-int
  4722. pkg syscall (netbsd-arm64), const E2BIG = 7
  4723. pkg syscall (netbsd-arm64), const EACCES = 13
  4724. pkg syscall (netbsd-arm64), const EADDRINUSE = 48
  4725. pkg syscall (netbsd-arm64), const EADDRNOTAVAIL = 49
  4726. pkg syscall (netbsd-arm64), const EAFNOSUPPORT = 47
  4727. pkg syscall (netbsd-arm64), const EAGAIN = 35
  4728. pkg syscall (netbsd-arm64), const EALREADY = 37
  4729. pkg syscall (netbsd-arm64), const EAUTH = 80
  4730. pkg syscall (netbsd-arm64), const EAUTH Errno
  4731. pkg syscall (netbsd-arm64), const EBADF = 9
  4732. pkg syscall (netbsd-arm64), const EBADMSG = 88
  4733. pkg syscall (netbsd-arm64), const EBADMSG Errno
  4734. pkg syscall (netbsd-arm64), const EBADRPC = 72
  4735. pkg syscall (netbsd-arm64), const EBADRPC Errno
  4736. pkg syscall (netbsd-arm64), const EBUSY = 16
  4737. pkg syscall (netbsd-arm64), const ECANCELED = 87
  4738. pkg syscall (netbsd-arm64), const ECHILD = 10
  4739. pkg syscall (netbsd-arm64), const ECHO = 8
  4740. pkg syscall (netbsd-arm64), const ECHOCTL = 64
  4741. pkg syscall (netbsd-arm64), const ECHOCTL ideal-int
  4742. pkg syscall (netbsd-arm64), const ECHOE = 2
  4743. pkg syscall (netbsd-arm64), const ECHOE ideal-int
  4744. pkg syscall (netbsd-arm64), const ECHO ideal-int
  4745. pkg syscall (netbsd-arm64), const ECHOK = 4
  4746. pkg syscall (netbsd-arm64), const ECHOKE = 1
  4747. pkg syscall (netbsd-arm64), const ECHOKE ideal-int
  4748. pkg syscall (netbsd-arm64), const ECHOK ideal-int
  4749. pkg syscall (netbsd-arm64), const ECHONL = 16
  4750. pkg syscall (netbsd-arm64), const ECHONL ideal-int
  4751. pkg syscall (netbsd-arm64), const ECHOPRT = 32
  4752. pkg syscall (netbsd-arm64), const ECHOPRT ideal-int
  4753. pkg syscall (netbsd-arm64), const ECONNABORTED = 53
  4754. pkg syscall (netbsd-arm64), const ECONNREFUSED = 61
  4755. pkg syscall (netbsd-arm64), const ECONNRESET = 54
  4756. pkg syscall (netbsd-arm64), const EDEADLK = 11
  4757. pkg syscall (netbsd-arm64), const EDESTADDRREQ = 39
  4758. pkg syscall (netbsd-arm64), const EDOM = 33
  4759. pkg syscall (netbsd-arm64), const EDQUOT = 69
  4760. pkg syscall (netbsd-arm64), const EEXIST = 17
  4761. pkg syscall (netbsd-arm64), const EFAULT = 14
  4762. pkg syscall (netbsd-arm64), const EFBIG = 27
  4763. pkg syscall (netbsd-arm64), const EFTYPE = 79
  4764. pkg syscall (netbsd-arm64), const EFTYPE Errno
  4765. pkg syscall (netbsd-arm64), const EHOSTDOWN = 64
  4766. pkg syscall (netbsd-arm64), const EHOSTUNREACH = 65
  4767. pkg syscall (netbsd-arm64), const EIDRM = 82
  4768. pkg syscall (netbsd-arm64), const EILSEQ = 85
  4769. pkg syscall (netbsd-arm64), const EINPROGRESS = 36
  4770. pkg syscall (netbsd-arm64), const EINTR = 4
  4771. pkg syscall (netbsd-arm64), const EINVAL = 22
  4772. pkg syscall (netbsd-arm64), const EIO = 5
  4773. pkg syscall (netbsd-arm64), const EISCONN = 56
  4774. pkg syscall (netbsd-arm64), const EISDIR = 21
  4775. pkg syscall (netbsd-arm64), const ELAST = 96
  4776. pkg syscall (netbsd-arm64), const ELAST Errno
  4777. pkg syscall (netbsd-arm64), const ELOOP = 62
  4778. pkg syscall (netbsd-arm64), const EMFILE = 24
  4779. pkg syscall (netbsd-arm64), const EMLINK = 31
  4780. pkg syscall (netbsd-arm64), const EMSGSIZE = 40
  4781. pkg syscall (netbsd-arm64), const EMUL_LINUX = 1
  4782. pkg syscall (netbsd-arm64), const EMUL_LINUX32 = 5
  4783. pkg syscall (netbsd-arm64), const EMUL_LINUX32 ideal-int
  4784. pkg syscall (netbsd-arm64), const EMUL_LINUX ideal-int
  4785. pkg syscall (netbsd-arm64), const EMUL_MAXID = 6
  4786. pkg syscall (netbsd-arm64), const EMUL_MAXID ideal-int
  4787. pkg syscall (netbsd-arm64), const EMULTIHOP = 94
  4788. pkg syscall (netbsd-arm64), const EMULTIHOP Errno
  4789. pkg syscall (netbsd-arm64), const ENAMETOOLONG = 63
  4790. pkg syscall (netbsd-arm64), const ENEEDAUTH = 81
  4791. pkg syscall (netbsd-arm64), const ENEEDAUTH Errno
  4792. pkg syscall (netbsd-arm64), const ENETDOWN = 50
  4793. pkg syscall (netbsd-arm64), const ENETRESET = 52
  4794. pkg syscall (netbsd-arm64), const ENETUNREACH = 51
  4795. pkg syscall (netbsd-arm64), const ENFILE = 23
  4796. pkg syscall (netbsd-arm64), const ENOATTR = 93
  4797. pkg syscall (netbsd-arm64), const ENOATTR Errno
  4798. pkg syscall (netbsd-arm64), const ENOBUFS = 55
  4799. pkg syscall (netbsd-arm64), const ENODATA = 89
  4800. pkg syscall (netbsd-arm64), const ENODATA Errno
  4801. pkg syscall (netbsd-arm64), const ENODEV = 19
  4802. pkg syscall (netbsd-arm64), const ENOEXEC = 8
  4803. pkg syscall (netbsd-arm64), const ENOLCK = 77
  4804. pkg syscall (netbsd-arm64), const ENOLINK = 95
  4805. pkg syscall (netbsd-arm64), const ENOLINK Errno
  4806. pkg syscall (netbsd-arm64), const ENOMEM = 12
  4807. pkg syscall (netbsd-arm64), const ENOMSG = 83
  4808. pkg syscall (netbsd-arm64), const ENOPROTOOPT = 42
  4809. pkg syscall (netbsd-arm64), const ENOSPC = 28
  4810. pkg syscall (netbsd-arm64), const ENOSR = 90
  4811. pkg syscall (netbsd-arm64), const ENOSR Errno
  4812. pkg syscall (netbsd-arm64), const ENOSTR = 91
  4813. pkg syscall (netbsd-arm64), const ENOSTR Errno
  4814. pkg syscall (netbsd-arm64), const ENOSYS = 78
  4815. pkg syscall (netbsd-arm64), const ENOTBLK = 15
  4816. pkg syscall (netbsd-arm64), const ENOTCONN = 57
  4817. pkg syscall (netbsd-arm64), const ENOTDIR = 20
  4818. pkg syscall (netbsd-arm64), const ENOTEMPTY = 66
  4819. pkg syscall (netbsd-arm64), const ENOTSOCK = 38
  4820. pkg syscall (netbsd-arm64), const ENOTSUP = 86
  4821. pkg syscall (netbsd-arm64), const ENOTTY = 25
  4822. pkg syscall (netbsd-arm64), const ENXIO = 6
  4823. pkg syscall (netbsd-arm64), const EOPNOTSUPP = 45
  4824. pkg syscall (netbsd-arm64), const EOVERFLOW = 84
  4825. pkg syscall (netbsd-arm64), const EPERM = 1
  4826. pkg syscall (netbsd-arm64), const EPFNOSUPPORT = 46
  4827. pkg syscall (netbsd-arm64), const EPIPE = 32
  4828. pkg syscall (netbsd-arm64), const EPROCLIM = 67
  4829. pkg syscall (netbsd-arm64), const EPROCLIM Errno
  4830. pkg syscall (netbsd-arm64), const EPROCUNAVAIL = 76
  4831. pkg syscall (netbsd-arm64), const EPROCUNAVAIL Errno
  4832. pkg syscall (netbsd-arm64), const EPROGMISMATCH = 75
  4833. pkg syscall (netbsd-arm64), const EPROGMISMATCH Errno
  4834. pkg syscall (netbsd-arm64), const EPROGUNAVAIL = 74
  4835. pkg syscall (netbsd-arm64), const EPROGUNAVAIL Errno
  4836. pkg syscall (netbsd-arm64), const EPROTO = 96
  4837. pkg syscall (netbsd-arm64), const EPROTO Errno
  4838. pkg syscall (netbsd-arm64), const EPROTONOSUPPORT = 43
  4839. pkg syscall (netbsd-arm64), const EPROTOTYPE = 41
  4840. pkg syscall (netbsd-arm64), const ERANGE = 34
  4841. pkg syscall (netbsd-arm64), const EREMOTE = 71
  4842. pkg syscall (netbsd-arm64), const EROFS = 30
  4843. pkg syscall (netbsd-arm64), const ERPCMISMATCH = 73
  4844. pkg syscall (netbsd-arm64), const ERPCMISMATCH Errno
  4845. pkg syscall (netbsd-arm64), const ESHUTDOWN = 58
  4846. pkg syscall (netbsd-arm64), const ESOCKTNOSUPPORT = 44
  4847. pkg syscall (netbsd-arm64), const ESPIPE = 29
  4848. pkg syscall (netbsd-arm64), const ESRCH = 3
  4849. pkg syscall (netbsd-arm64), const ESTALE = 70
  4850. pkg syscall (netbsd-arm64), const ETHER_ADDR_LEN = 6
  4851. pkg syscall (netbsd-arm64), const ETHER_ADDR_LEN ideal-int
  4852. pkg syscall (netbsd-arm64), const ETHERCAP_JUMBO_MTU = 4
  4853. pkg syscall (netbsd-arm64), const ETHERCAP_JUMBO_MTU ideal-int
  4854. pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_HWTAGGING = 2
  4855. pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_HWTAGGING ideal-int
  4856. pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_MTU = 1
  4857. pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_MTU ideal-int
  4858. pkg syscall (netbsd-arm64), const ETHER_CRC_LEN = 4
  4859. pkg syscall (netbsd-arm64), const ETHER_CRC_LEN ideal-int
  4860. pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_BE = 79764918
  4861. pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_BE ideal-int
  4862. pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_LE = 3988292384
  4863. pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_LE ideal-int
  4864. pkg syscall (netbsd-arm64), const ETHER_HDR_LEN = 14
  4865. pkg syscall (netbsd-arm64), const ETHER_HDR_LEN ideal-int
  4866. pkg syscall (netbsd-arm64), const ETHER_MAX_LEN = 1518
  4867. pkg syscall (netbsd-arm64), const ETHER_MAX_LEN ideal-int
  4868. pkg syscall (netbsd-arm64), const ETHER_MAX_LEN_JUMBO = 9018
  4869. pkg syscall (netbsd-arm64), const ETHER_MAX_LEN_JUMBO ideal-int
  4870. pkg syscall (netbsd-arm64), const ETHERMIN = 46
  4871. pkg syscall (netbsd-arm64), const ETHERMIN ideal-int
  4872. pkg syscall (netbsd-arm64), const ETHER_MIN_LEN = 64
  4873. pkg syscall (netbsd-arm64), const ETHER_MIN_LEN ideal-int
  4874. pkg syscall (netbsd-arm64), const ETHERMTU = 1500
  4875. pkg syscall (netbsd-arm64), const ETHERMTU ideal-int
  4876. pkg syscall (netbsd-arm64), const ETHERMTU_JUMBO = 9000
  4877. pkg syscall (netbsd-arm64), const ETHERMTU_JUMBO ideal-int
  4878. pkg syscall (netbsd-arm64), const ETHER_PPPOE_ENCAP_LEN = 8
  4879. pkg syscall (netbsd-arm64), const ETHER_PPPOE_ENCAP_LEN ideal-int
  4880. pkg syscall (netbsd-arm64), const ETHERTYPE_8023 = 4
  4881. pkg syscall (netbsd-arm64), const ETHERTYPE_8023 ideal-int
  4882. pkg syscall (netbsd-arm64), const ETHERTYPE_AARP = 33011
  4883. pkg syscall (netbsd-arm64), const ETHERTYPE_AARP ideal-int
  4884. pkg syscall (netbsd-arm64), const ETHERTYPE_ACCTON = 33680
  4885. pkg syscall (netbsd-arm64), const ETHERTYPE_ACCTON ideal-int
  4886. pkg syscall (netbsd-arm64), const ETHERTYPE_AEONIC = 32822
  4887. pkg syscall (netbsd-arm64), const ETHERTYPE_AEONIC ideal-int
  4888. pkg syscall (netbsd-arm64), const ETHERTYPE_ALPHA = 33098
  4889. pkg syscall (netbsd-arm64), const ETHERTYPE_ALPHA ideal-int
  4890. pkg syscall (netbsd-arm64), const ETHERTYPE_AMBER = 24584
  4891. pkg syscall (netbsd-arm64), const ETHERTYPE_AMBER ideal-int
  4892. pkg syscall (netbsd-arm64), const ETHERTYPE_AMOEBA = 33093
  4893. pkg syscall (netbsd-arm64), const ETHERTYPE_AMOEBA ideal-int
  4894. pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLO = 33015
  4895. pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLODOMAIN = 32793
  4896. pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLODOMAIN ideal-int
  4897. pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLO ideal-int
  4898. pkg syscall (netbsd-arm64), const ETHERTYPE_APPLETALK = 32923
  4899. pkg syscall (netbsd-arm64), const ETHERTYPE_APPLETALK ideal-int
  4900. pkg syscall (netbsd-arm64), const ETHERTYPE_APPLITEK = 32967
  4901. pkg syscall (netbsd-arm64), const ETHERTYPE_APPLITEK ideal-int
  4902. pkg syscall (netbsd-arm64), const ETHERTYPE_ARGONAUT = 32826
  4903. pkg syscall (netbsd-arm64), const ETHERTYPE_ARGONAUT ideal-int
  4904. pkg syscall (netbsd-arm64), const ETHERTYPE_ARP = 2054
  4905. pkg syscall (netbsd-arm64), const ETHERTYPE_ARP ideal-int
  4906. pkg syscall (netbsd-arm64), const ETHERTYPE_AT = 32923
  4907. pkg syscall (netbsd-arm64), const ETHERTYPE_ATALK = 32923
  4908. pkg syscall (netbsd-arm64), const ETHERTYPE_ATALK ideal-int
  4909. pkg syscall (netbsd-arm64), const ETHERTYPE_AT ideal-int
  4910. pkg syscall (netbsd-arm64), const ETHERTYPE_ATOMIC = 34527
  4911. pkg syscall (netbsd-arm64), const ETHERTYPE_ATOMIC ideal-int
  4912. pkg syscall (netbsd-arm64), const ETHERTYPE_ATT = 32873
  4913. pkg syscall (netbsd-arm64), const ETHERTYPE_ATT ideal-int
  4914. pkg syscall (netbsd-arm64), const ETHERTYPE_ATTSTANFORD = 32776
  4915. pkg syscall (netbsd-arm64), const ETHERTYPE_ATTSTANFORD ideal-int
  4916. pkg syscall (netbsd-arm64), const ETHERTYPE_AUTOPHON = 32874
  4917. pkg syscall (netbsd-arm64), const ETHERTYPE_AUTOPHON ideal-int
  4918. pkg syscall (netbsd-arm64), const ETHERTYPE_AXIS = 34902
  4919. pkg syscall (netbsd-arm64), const ETHERTYPE_AXIS ideal-int
  4920. pkg syscall (netbsd-arm64), const ETHERTYPE_BCLOOP = 36867
  4921. pkg syscall (netbsd-arm64), const ETHERTYPE_BCLOOP ideal-int
  4922. pkg syscall (netbsd-arm64), const ETHERTYPE_BOFL = 33026
  4923. pkg syscall (netbsd-arm64), const ETHERTYPE_BOFL ideal-int
  4924. pkg syscall (netbsd-arm64), const ETHERTYPE_CABLETRON = 28724
  4925. pkg syscall (netbsd-arm64), const ETHERTYPE_CABLETRON ideal-int
  4926. pkg syscall (netbsd-arm64), const ETHERTYPE_CHAOS = 2052
  4927. pkg syscall (netbsd-arm64), const ETHERTYPE_CHAOS ideal-int
  4928. pkg syscall (netbsd-arm64), const ETHERTYPE_COMDESIGN = 32876
  4929. pkg syscall (netbsd-arm64), const ETHERTYPE_COMDESIGN ideal-int
  4930. pkg syscall (netbsd-arm64), const ETHERTYPE_COMPUGRAPHIC = 32877
  4931. pkg syscall (netbsd-arm64), const ETHERTYPE_COMPUGRAPHIC ideal-int
  4932. pkg syscall (netbsd-arm64), const ETHERTYPE_COUNTERPOINT = 32866
  4933. pkg syscall (netbsd-arm64), const ETHERTYPE_COUNTERPOINT ideal-int
  4934. pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUS = 32772
  4935. pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUS ideal-int
  4936. pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUSVLN = 32771
  4937. pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUSVLN ideal-int
  4938. pkg syscall (netbsd-arm64), const ETHERTYPE_DCA = 4660
  4939. pkg syscall (netbsd-arm64), const ETHERTYPE_DCA ideal-int
  4940. pkg syscall (netbsd-arm64), const ETHERTYPE_DDE = 32891
  4941. pkg syscall (netbsd-arm64), const ETHERTYPE_DDE ideal-int
  4942. pkg syscall (netbsd-arm64), const ETHERTYPE_DEBNI = 43690
  4943. pkg syscall (netbsd-arm64), const ETHERTYPE_DEBNI ideal-int
  4944. pkg syscall (netbsd-arm64), const ETHERTYPE_DECAM = 32840
  4945. pkg syscall (netbsd-arm64), const ETHERTYPE_DECAM ideal-int
  4946. pkg syscall (netbsd-arm64), const ETHERTYPE_DECCUST = 24582
  4947. pkg syscall (netbsd-arm64), const ETHERTYPE_DECCUST ideal-int
  4948. pkg syscall (netbsd-arm64), const ETHERTYPE_DECDIAG = 24581
  4949. pkg syscall (netbsd-arm64), const ETHERTYPE_DECDIAG ideal-int
  4950. pkg syscall (netbsd-arm64), const ETHERTYPE_DECDNS = 32828
  4951. pkg syscall (netbsd-arm64), const ETHERTYPE_DECDNS ideal-int
  4952. pkg syscall (netbsd-arm64), const ETHERTYPE_DECDTS = 32830
  4953. pkg syscall (netbsd-arm64), const ETHERTYPE_DECDTS ideal-int
  4954. pkg syscall (netbsd-arm64), const ETHERTYPE_DECEXPER = 24576
  4955. pkg syscall (netbsd-arm64), const ETHERTYPE_DECEXPER ideal-int
  4956. pkg syscall (netbsd-arm64), const ETHERTYPE_DECLAST = 32833
  4957. pkg syscall (netbsd-arm64), const ETHERTYPE_DECLAST ideal-int
  4958. pkg syscall (netbsd-arm64), const ETHERTYPE_DECLTM = 32831
  4959. pkg syscall (netbsd-arm64), const ETHERTYPE_DECLTM ideal-int
  4960. pkg syscall (netbsd-arm64), const ETHERTYPE_DECMUMPS = 24585
  4961. pkg syscall (netbsd-arm64), const ETHERTYPE_DECMUMPS ideal-int
  4962. pkg syscall (netbsd-arm64), const ETHERTYPE_DECNETBIOS = 32832
  4963. pkg syscall (netbsd-arm64), const ETHERTYPE_DECNETBIOS ideal-int
  4964. pkg syscall (netbsd-arm64), const ETHERTYPE_DELTACON = 34526
  4965. pkg syscall (netbsd-arm64), const ETHERTYPE_DELTACON ideal-int
  4966. pkg syscall (netbsd-arm64), const ETHERTYPE_DIDDLE = 17185
  4967. pkg syscall (netbsd-arm64), const ETHERTYPE_DIDDLE ideal-int
  4968. pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG1 = 1632
  4969. pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG1 ideal-int
  4970. pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG2 = 1633
  4971. pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG2 ideal-int
  4972. pkg syscall (netbsd-arm64), const ETHERTYPE_DN = 24579
  4973. pkg syscall (netbsd-arm64), const ETHERTYPE_DN ideal-int
  4974. pkg syscall (netbsd-arm64), const ETHERTYPE_DOGFIGHT = 6537
  4975. pkg syscall (netbsd-arm64), const ETHERTYPE_DOGFIGHT ideal-int
  4976. pkg syscall (netbsd-arm64), const ETHERTYPE_DSMD = 32825
  4977. pkg syscall (netbsd-arm64), const ETHERTYPE_DSMD ideal-int
  4978. pkg syscall (netbsd-arm64), const ETHERTYPE_ECMA = 2051
  4979. pkg syscall (netbsd-arm64), const ETHERTYPE_ECMA ideal-int
  4980. pkg syscall (netbsd-arm64), const ETHERTYPE_ENCRYPT = 32829
  4981. pkg syscall (netbsd-arm64), const ETHERTYPE_ENCRYPT ideal-int
  4982. pkg syscall (netbsd-arm64), const ETHERTYPE_ES = 32861
  4983. pkg syscall (netbsd-arm64), const ETHERTYPE_ES ideal-int
  4984. pkg syscall (netbsd-arm64), const ETHERTYPE_EXCELAN = 32784
  4985. pkg syscall (netbsd-arm64), const ETHERTYPE_EXCELAN ideal-int
  4986. pkg syscall (netbsd-arm64), const ETHERTYPE_EXPERDATA = 32841
  4987. pkg syscall (netbsd-arm64), const ETHERTYPE_EXPERDATA ideal-int
  4988. pkg syscall (netbsd-arm64), const ETHERTYPE_FLIP = 33094
  4989. pkg syscall (netbsd-arm64), const ETHERTYPE_FLIP ideal-int
  4990. pkg syscall (netbsd-arm64), const ETHERTYPE_FLOWCONTROL = 34824
  4991. pkg syscall (netbsd-arm64), const ETHERTYPE_FLOWCONTROL ideal-int
  4992. pkg syscall (netbsd-arm64), const ETHERTYPE_FRARP = 2056
  4993. pkg syscall (netbsd-arm64), const ETHERTYPE_FRARP ideal-int
  4994. pkg syscall (netbsd-arm64), const ETHERTYPE_GENDYN = 32872
  4995. pkg syscall (netbsd-arm64), const ETHERTYPE_GENDYN ideal-int
  4996. pkg syscall (netbsd-arm64), const ETHERTYPE_HAYES = 33072
  4997. pkg syscall (netbsd-arm64), const ETHERTYPE_HAYES ideal-int
  4998. pkg syscall (netbsd-arm64), const ETHERTYPE_HIPPI_FP = 33152
  4999. pkg syscall (netbsd-arm64), const ETHERTYPE_HIPPI_FP ideal-int
  5000. pkg syscall (netbsd-arm64), const ETHERTYPE_HITACHI = 34848
  5001. pkg syscall (netbsd-arm64), const ETHERTYPE_HITACHI ideal-int
  5002. pkg syscall (netbsd-arm64), const ETHERTYPE_HP = 32773
  5003. pkg syscall (netbsd-arm64), const ETHERTYPE_HP ideal-int
  5004. pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUP = 2560
  5005. pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUPAT = 2561
  5006. pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUPAT ideal-int
  5007. pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUP ideal-int
  5008. pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBL = 19522
  5009. pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBLDIAG = 16972
  5010. pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBLDIAG ideal-int
  5011. pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBL ideal-int
  5012. pkg syscall (netbsd-arm64), const ETHERTYPE_IP = 2048
  5013. pkg syscall (netbsd-arm64), const ETHERTYPE_IPAS = 34668
  5014. pkg syscall (netbsd-arm64), const ETHERTYPE_IPAS ideal-int
  5015. pkg syscall (netbsd-arm64), const ETHERTYPE_IP ideal-int
  5016. pkg syscall (netbsd-arm64), const ETHERTYPE_IPV6 = 34525
  5017. pkg syscall (netbsd-arm64), const ETHERTYPE_IPV6 ideal-int
  5018. pkg syscall (netbsd-arm64), const ETHERTYPE_IPX = 33079
  5019. pkg syscall (netbsd-arm64), const ETHERTYPE_IPX ideal-int
  5020. pkg syscall (netbsd-arm64), const ETHERTYPE_IPXNEW = 32823
  5021. pkg syscall (netbsd-arm64), const ETHERTYPE_IPXNEW ideal-int
  5022. pkg syscall (netbsd-arm64), const ETHERTYPE_KALPANA = 34178
  5023. pkg syscall (netbsd-arm64), const ETHERTYPE_KALPANA ideal-int
  5024. pkg syscall (netbsd-arm64), const ETHERTYPE_LANBRIDGE = 32824
  5025. pkg syscall (netbsd-arm64), const ETHERTYPE_LANBRIDGE ideal-int
  5026. pkg syscall (netbsd-arm64), const ETHERTYPE_LANPROBE = 34952
  5027. pkg syscall (netbsd-arm64), const ETHERTYPE_LANPROBE ideal-int
  5028. pkg syscall (netbsd-arm64), const ETHERTYPE_LAT = 24580
  5029. pkg syscall (netbsd-arm64), const ETHERTYPE_LAT ideal-int
  5030. pkg syscall (netbsd-arm64), const ETHERTYPE_LBACK = 36864
  5031. pkg syscall (netbsd-arm64), const ETHERTYPE_LBACK ideal-int
  5032. pkg syscall (netbsd-arm64), const ETHER_TYPE_LEN = 2
  5033. pkg syscall (netbsd-arm64), const ETHER_TYPE_LEN ideal-int
  5034. pkg syscall (netbsd-arm64), const ETHERTYPE_LITTLE = 32864
  5035. pkg syscall (netbsd-arm64), const ETHERTYPE_LITTLE ideal-int
  5036. pkg syscall (netbsd-arm64), const ETHERTYPE_LOGICRAFT = 33096
  5037. pkg syscall (netbsd-arm64), const ETHERTYPE_LOGICRAFT ideal-int
  5038. pkg syscall (netbsd-arm64), const ETHERTYPE_LOOPBACK = 36864
  5039. pkg syscall (netbsd-arm64), const ETHERTYPE_LOOPBACK ideal-int
  5040. pkg syscall (netbsd-arm64), const ETHERTYPE_MATRA = 32890
  5041. pkg syscall (netbsd-arm64), const ETHERTYPE_MATRA ideal-int
  5042. pkg syscall (netbsd-arm64), const ETHERTYPE_MAX = 65535
  5043. pkg syscall (netbsd-arm64), const ETHERTYPE_MAX ideal-int
  5044. pkg syscall (netbsd-arm64), const ETHERTYPE_MERIT = 32892
  5045. pkg syscall (netbsd-arm64), const ETHERTYPE_MERIT ideal-int
  5046. pkg syscall (netbsd-arm64), const ETHERTYPE_MICP = 34618
  5047. pkg syscall (netbsd-arm64), const ETHERTYPE_MICP ideal-int
  5048. pkg syscall (netbsd-arm64), const ETHERTYPE_MOPDL = 24577
  5049. pkg syscall (netbsd-arm64), const ETHERTYPE_MOPDL ideal-int
  5050. pkg syscall (netbsd-arm64), const ETHERTYPE_MOPRC = 24578
  5051. pkg syscall (netbsd-arm64), const ETHERTYPE_MOPRC ideal-int
  5052. pkg syscall (netbsd-arm64), const ETHERTYPE_MOTOROLA = 33165
  5053. pkg syscall (netbsd-arm64), const ETHERTYPE_MOTOROLA ideal-int
  5054. pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS = 34887
  5055. pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS ideal-int
  5056. pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS_MCAST = 34888
  5057. pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS_MCAST ideal-int
  5058. pkg syscall (netbsd-arm64), const ETHERTYPE_MUMPS = 33087
  5059. pkg syscall (netbsd-arm64), const ETHERTYPE_MUMPS ideal-int
  5060. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCC = 15364
  5061. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCC ideal-int
  5062. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLAIM = 15369
  5063. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLAIM ideal-int
  5064. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLREQ = 15365
  5065. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLREQ ideal-int
  5066. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLRSP = 15366
  5067. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLRSP ideal-int
  5068. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCREQ = 15362
  5069. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCREQ ideal-int
  5070. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCRSP = 15363
  5071. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCRSP ideal-int
  5072. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDG = 15367
  5073. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDGB = 15368
  5074. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDGB ideal-int
  5075. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDG ideal-int
  5076. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDLTE = 15370
  5077. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDLTE ideal-int
  5078. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAR = 15372
  5079. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAR ideal-int
  5080. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAS = 15371
  5081. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAS ideal-int
  5082. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRST = 15373
  5083. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRST ideal-int
  5084. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPSCD = 15361
  5085. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPSCD ideal-int
  5086. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPVCD = 15360
  5087. pkg syscall (netbsd-arm64), const ETHERTYPE_NBPVCD ideal-int
  5088. pkg syscall (netbsd-arm64), const ETHERTYPE_NBS = 2050
  5089. pkg syscall (netbsd-arm64), const ETHERTYPE_NBS ideal-int
  5090. pkg syscall (netbsd-arm64), const ETHERTYPE_NCD = 33097
  5091. pkg syscall (netbsd-arm64), const ETHERTYPE_NCD ideal-int
  5092. pkg syscall (netbsd-arm64), const ETHERTYPE_NESTAR = 32774
  5093. pkg syscall (netbsd-arm64), const ETHERTYPE_NESTAR ideal-int
  5094. pkg syscall (netbsd-arm64), const ETHERTYPE_NETBEUI = 33169
  5095. pkg syscall (netbsd-arm64), const ETHERTYPE_NETBEUI ideal-int
  5096. pkg syscall (netbsd-arm64), const ETHERTYPE_NOVELL = 33080
  5097. pkg syscall (netbsd-arm64), const ETHERTYPE_NOVELL ideal-int
  5098. pkg syscall (netbsd-arm64), const ETHERTYPE_NS = 1536
  5099. pkg syscall (netbsd-arm64), const ETHERTYPE_NSAT = 1537
  5100. pkg syscall (netbsd-arm64), const ETHERTYPE_NSAT ideal-int
  5101. pkg syscall (netbsd-arm64), const ETHERTYPE_NSCOMPAT = 2055
  5102. pkg syscall (netbsd-arm64), const ETHERTYPE_NSCOMPAT ideal-int
  5103. pkg syscall (netbsd-arm64), const ETHERTYPE_NS ideal-int
  5104. pkg syscall (netbsd-arm64), const ETHERTYPE_NTRAILER = 16
  5105. pkg syscall (netbsd-arm64), const ETHERTYPE_NTRAILER ideal-int
  5106. pkg syscall (netbsd-arm64), const ETHERTYPE_OS9 = 28679
  5107. pkg syscall (netbsd-arm64), const ETHERTYPE_OS9 ideal-int
  5108. pkg syscall (netbsd-arm64), const ETHERTYPE_OS9NET = 28681
  5109. pkg syscall (netbsd-arm64), const ETHERTYPE_OS9NET ideal-int
  5110. pkg syscall (netbsd-arm64), const ETHERTYPE_PACER = 32966
  5111. pkg syscall (netbsd-arm64), const ETHERTYPE_PACER ideal-int
  5112. pkg syscall (netbsd-arm64), const ETHERTYPE_PAE = 34958
  5113. pkg syscall (netbsd-arm64), const ETHERTYPE_PAE ideal-int
  5114. pkg syscall (netbsd-arm64), const ETHERTYPE_PCS = 16962
  5115. pkg syscall (netbsd-arm64), const ETHERTYPE_PCS ideal-int
  5116. pkg syscall (netbsd-arm64), const ETHERTYPE_PLANNING = 32836
  5117. pkg syscall (netbsd-arm64), const ETHERTYPE_PLANNING ideal-int
  5118. pkg syscall (netbsd-arm64), const ETHERTYPE_PPP = 34827
  5119. pkg syscall (netbsd-arm64), const ETHERTYPE_PPP ideal-int
  5120. pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOE = 34916
  5121. pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOEDISC = 34915
  5122. pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOEDISC ideal-int
  5123. pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOE ideal-int
  5124. pkg syscall (netbsd-arm64), const ETHERTYPE_PRIMENTS = 28721
  5125. pkg syscall (netbsd-arm64), const ETHERTYPE_PRIMENTS ideal-int
  5126. pkg syscall (netbsd-arm64), const ETHERTYPE_PUP = 512
  5127. pkg syscall (netbsd-arm64), const ETHERTYPE_PUPAT = 512
  5128. pkg syscall (netbsd-arm64), const ETHERTYPE_PUPAT ideal-int
  5129. pkg syscall (netbsd-arm64), const ETHERTYPE_PUP ideal-int
  5130. pkg syscall (netbsd-arm64), const ETHERTYPE_RACAL = 28720
  5131. pkg syscall (netbsd-arm64), const ETHERTYPE_RACAL ideal-int
  5132. pkg syscall (netbsd-arm64), const ETHERTYPE_RATIONAL = 33104
  5133. pkg syscall (netbsd-arm64), const ETHERTYPE_RATIONAL ideal-int
  5134. pkg syscall (netbsd-arm64), const ETHERTYPE_RAWFR = 25945
  5135. pkg syscall (netbsd-arm64), const ETHERTYPE_RAWFR ideal-int
  5136. pkg syscall (netbsd-arm64), const ETHERTYPE_RCL = 6549
  5137. pkg syscall (netbsd-arm64), const ETHERTYPE_RCL ideal-int
  5138. pkg syscall (netbsd-arm64), const ETHERTYPE_RDP = 34617
  5139. pkg syscall (netbsd-arm64), const ETHERTYPE_RDP ideal-int
  5140. pkg syscall (netbsd-arm64), const ETHERTYPE_RETIX = 33010
  5141. pkg syscall (netbsd-arm64), const ETHERTYPE_RETIX ideal-int
  5142. pkg syscall (netbsd-arm64), const ETHERTYPE_REVARP = 32821
  5143. pkg syscall (netbsd-arm64), const ETHERTYPE_REVARP ideal-int
  5144. pkg syscall (netbsd-arm64), const ETHERTYPE_SCA = 24583
  5145. pkg syscall (netbsd-arm64), const ETHERTYPE_SCA ideal-int
  5146. pkg syscall (netbsd-arm64), const ETHERTYPE_SECTRA = 34523
  5147. pkg syscall (netbsd-arm64), const ETHERTYPE_SECTRA ideal-int
  5148. pkg syscall (netbsd-arm64), const ETHERTYPE_SECUREDATA = 34669
  5149. pkg syscall (netbsd-arm64), const ETHERTYPE_SECUREDATA ideal-int
  5150. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_BOUNCE = 32790
  5151. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_BOUNCE ideal-int
  5152. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_DIAG = 32787
  5153. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_DIAG ideal-int
  5154. pkg syscall (netbsd-arm64), const ETHERTYPE_SGITW = 33150
  5155. pkg syscall (netbsd-arm64), const ETHERTYPE_SGITW ideal-int
  5156. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_NETGAMES = 32788
  5157. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_NETGAMES ideal-int
  5158. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_RESV = 32789
  5159. pkg syscall (netbsd-arm64), const ETHERTYPE_SG_RESV ideal-int
  5160. pkg syscall (netbsd-arm64), const ETHERTYPE_SIMNET = 21000
  5161. pkg syscall (netbsd-arm64), const ETHERTYPE_SIMNET ideal-int
  5162. pkg syscall (netbsd-arm64), const ETHERTYPE_SLOWPROTOCOLS = 34825
  5163. pkg syscall (netbsd-arm64), const ETHERTYPE_SLOWPROTOCOLS ideal-int
  5164. pkg syscall (netbsd-arm64), const ETHERTYPE_SNA = 32981
  5165. pkg syscall (netbsd-arm64), const ETHERTYPE_SNA ideal-int
  5166. pkg syscall (netbsd-arm64), const ETHERTYPE_SNMP = 33100
  5167. pkg syscall (netbsd-arm64), const ETHERTYPE_SNMP ideal-int
  5168. pkg syscall (netbsd-arm64), const ETHERTYPE_SONIX = 64245
  5169. pkg syscall (netbsd-arm64), const ETHERTYPE_SONIX ideal-int
  5170. pkg syscall (netbsd-arm64), const ETHERTYPE_SPIDER = 32927
  5171. pkg syscall (netbsd-arm64), const ETHERTYPE_SPIDER ideal-int
  5172. pkg syscall (netbsd-arm64), const ETHERTYPE_SPRITE = 1280
  5173. pkg syscall (netbsd-arm64), const ETHERTYPE_SPRITE ideal-int
  5174. pkg syscall (netbsd-arm64), const ETHERTYPE_STP = 33153
  5175. pkg syscall (netbsd-arm64), const ETHERTYPE_STP ideal-int
  5176. pkg syscall (netbsd-arm64), const ETHERTYPE_TALARIS = 33067
  5177. pkg syscall (netbsd-arm64), const ETHERTYPE_TALARIS ideal-int
  5178. pkg syscall (netbsd-arm64), const ETHERTYPE_TALARISMC = 34091
  5179. pkg syscall (netbsd-arm64), const ETHERTYPE_TALARISMC ideal-int
  5180. pkg syscall (netbsd-arm64), const ETHERTYPE_TCPCOMP = 34667
  5181. pkg syscall (netbsd-arm64), const ETHERTYPE_TCPCOMP ideal-int
  5182. pkg syscall (netbsd-arm64), const ETHERTYPE_TCPSM = 36866
  5183. pkg syscall (netbsd-arm64), const ETHERTYPE_TCPSM ideal-int
  5184. pkg syscall (netbsd-arm64), const ETHERTYPE_TEC = 33103
  5185. pkg syscall (netbsd-arm64), const ETHERTYPE_TEC ideal-int
  5186. pkg syscall (netbsd-arm64), const ETHERTYPE_TIGAN = 32815
  5187. pkg syscall (netbsd-arm64), const ETHERTYPE_TIGAN ideal-int
  5188. pkg syscall (netbsd-arm64), const ETHERTYPE_TRAIL = 4096
  5189. pkg syscall (netbsd-arm64), const ETHERTYPE_TRAIL ideal-int
  5190. pkg syscall (netbsd-arm64), const ETHERTYPE_TRANSETHER = 25944
  5191. pkg syscall (netbsd-arm64), const ETHERTYPE_TRANSETHER ideal-int
  5192. pkg syscall (netbsd-arm64), const ETHERTYPE_TYMSHARE = 32814
  5193. pkg syscall (netbsd-arm64), const ETHERTYPE_TYMSHARE ideal-int
  5194. pkg syscall (netbsd-arm64), const ETHERTYPE_UBBST = 28677
  5195. pkg syscall (netbsd-arm64), const ETHERTYPE_UBBST ideal-int
  5196. pkg syscall (netbsd-arm64), const ETHERTYPE_UBDEBUG = 2304
  5197. pkg syscall (netbsd-arm64), const ETHERTYPE_UBDEBUG ideal-int
  5198. pkg syscall (netbsd-arm64), const ETHERTYPE_UBDIAGLOOP = 28674
  5199. pkg syscall (netbsd-arm64), const ETHERTYPE_UBDIAGLOOP ideal-int
  5200. pkg syscall (netbsd-arm64), const ETHERTYPE_UBDL = 28672
  5201. pkg syscall (netbsd-arm64), const ETHERTYPE_UBDL ideal-int
  5202. pkg syscall (netbsd-arm64), const ETHERTYPE_UBNIU = 28673
  5203. pkg syscall (netbsd-arm64), const ETHERTYPE_UBNIU ideal-int
  5204. pkg syscall (netbsd-arm64), const ETHERTYPE_UBNMC = 28675
  5205. pkg syscall (netbsd-arm64), const ETHERTYPE_UBNMC ideal-int
  5206. pkg syscall (netbsd-arm64), const ETHERTYPE_VALID = 5632
  5207. pkg syscall (netbsd-arm64), const ETHERTYPE_VALID ideal-int
  5208. pkg syscall (netbsd-arm64), const ETHERTYPE_VARIAN = 32989
  5209. pkg syscall (netbsd-arm64), const ETHERTYPE_VARIAN ideal-int
  5210. pkg syscall (netbsd-arm64), const ETHERTYPE_VAXELN = 32827
  5211. pkg syscall (netbsd-arm64), const ETHERTYPE_VAXELN ideal-int
  5212. pkg syscall (netbsd-arm64), const ETHERTYPE_VEECO = 32871
  5213. pkg syscall (netbsd-arm64), const ETHERTYPE_VEECO ideal-int
  5214. pkg syscall (netbsd-arm64), const ETHERTYPE_VEXP = 32859
  5215. pkg syscall (netbsd-arm64), const ETHERTYPE_VEXP ideal-int
  5216. pkg syscall (netbsd-arm64), const ETHERTYPE_VGLAB = 33073
  5217. pkg syscall (netbsd-arm64), const ETHERTYPE_VGLAB ideal-int
  5218. pkg syscall (netbsd-arm64), const ETHERTYPE_VINES = 2989
  5219. pkg syscall (netbsd-arm64), const ETHERTYPE_VINESECHO = 2991
  5220. pkg syscall (netbsd-arm64), const ETHERTYPE_VINESECHO ideal-int
  5221. pkg syscall (netbsd-arm64), const ETHERTYPE_VINES ideal-int
  5222. pkg syscall (netbsd-arm64), const ETHERTYPE_VINESLOOP = 2990
  5223. pkg syscall (netbsd-arm64), const ETHERTYPE_VINESLOOP ideal-int
  5224. pkg syscall (netbsd-arm64), const ETHERTYPE_VITAL = 65280
  5225. pkg syscall (netbsd-arm64), const ETHERTYPE_VITAL ideal-int
  5226. pkg syscall (netbsd-arm64), const ETHERTYPE_VLAN = 33024
  5227. pkg syscall (netbsd-arm64), const ETHERTYPE_VLAN ideal-int
  5228. pkg syscall (netbsd-arm64), const ETHERTYPE_VLTLMAN = 32896
  5229. pkg syscall (netbsd-arm64), const ETHERTYPE_VLTLMAN ideal-int
  5230. pkg syscall (netbsd-arm64), const ETHERTYPE_VPROD = 32860
  5231. pkg syscall (netbsd-arm64), const ETHERTYPE_VPROD ideal-int
  5232. pkg syscall (netbsd-arm64), const ETHERTYPE_VURESERVED = 33095
  5233. pkg syscall (netbsd-arm64), const ETHERTYPE_VURESERVED ideal-int
  5234. pkg syscall (netbsd-arm64), const ETHERTYPE_WATERLOO = 33072
  5235. pkg syscall (netbsd-arm64), const ETHERTYPE_WATERLOO ideal-int
  5236. pkg syscall (netbsd-arm64), const ETHERTYPE_WELLFLEET = 33027
  5237. pkg syscall (netbsd-arm64), const ETHERTYPE_WELLFLEET ideal-int
  5238. pkg syscall (netbsd-arm64), const ETHERTYPE_X25 = 2053
  5239. pkg syscall (netbsd-arm64), const ETHERTYPE_X25 ideal-int
  5240. pkg syscall (netbsd-arm64), const ETHERTYPE_X75 = 2049
  5241. pkg syscall (netbsd-arm64), const ETHERTYPE_X75 ideal-int
  5242. pkg syscall (netbsd-arm64), const ETHERTYPE_XNSSM = 36865
  5243. pkg syscall (netbsd-arm64), const ETHERTYPE_XNSSM ideal-int
  5244. pkg syscall (netbsd-arm64), const ETHERTYPE_XTP = 33149
  5245. pkg syscall (netbsd-arm64), const ETHERTYPE_XTP ideal-int
  5246. pkg syscall (netbsd-arm64), const ETHER_VLAN_ENCAP_LEN = 4
  5247. pkg syscall (netbsd-arm64), const ETHER_VLAN_ENCAP_LEN ideal-int
  5248. pkg syscall (netbsd-arm64), const ETIME = 92
  5249. pkg syscall (netbsd-arm64), const ETIMEDOUT = 60
  5250. pkg syscall (netbsd-arm64), const ETIME Errno
  5251. pkg syscall (netbsd-arm64), const ETOOMANYREFS = 59
  5252. pkg syscall (netbsd-arm64), const ETXTBSY = 26
  5253. pkg syscall (netbsd-arm64), const EUSERS = 68
  5254. pkg syscall (netbsd-arm64), const EV_ADD = 1
  5255. pkg syscall (netbsd-arm64), const EV_ADD ideal-int
  5256. pkg syscall (netbsd-arm64), const EV_CLEAR = 32
  5257. pkg syscall (netbsd-arm64), const EV_CLEAR ideal-int
  5258. pkg syscall (netbsd-arm64), const EV_DELETE = 2
  5259. pkg syscall (netbsd-arm64), const EV_DELETE ideal-int
  5260. pkg syscall (netbsd-arm64), const EV_DISABLE = 8
  5261. pkg syscall (netbsd-arm64), const EV_DISABLE ideal-int
  5262. pkg syscall (netbsd-arm64), const EV_ENABLE = 4
  5263. pkg syscall (netbsd-arm64), const EV_ENABLE ideal-int
  5264. pkg syscall (netbsd-arm64), const EV_EOF = 32768
  5265. pkg syscall (netbsd-arm64), const EV_EOF ideal-int
  5266. pkg syscall (netbsd-arm64), const EV_ERROR = 16384
  5267. pkg syscall (netbsd-arm64), const EV_ERROR ideal-int
  5268. pkg syscall (netbsd-arm64), const EVFILT_AIO = 2
  5269. pkg syscall (netbsd-arm64), const EVFILT_AIO ideal-int
  5270. pkg syscall (netbsd-arm64), const EVFILT_PROC = 4
  5271. pkg syscall (netbsd-arm64), const EVFILT_PROC ideal-int
  5272. pkg syscall (netbsd-arm64), const EVFILT_READ = 0
  5273. pkg syscall (netbsd-arm64), const EVFILT_READ ideal-int
  5274. pkg syscall (netbsd-arm64), const EVFILT_SIGNAL = 5
  5275. pkg syscall (netbsd-arm64), const EVFILT_SIGNAL ideal-int
  5276. pkg syscall (netbsd-arm64), const EVFILT_SYSCOUNT = 7
  5277. pkg syscall (netbsd-arm64), const EVFILT_SYSCOUNT ideal-int
  5278. pkg syscall (netbsd-arm64), const EVFILT_TIMER = 6
  5279. pkg syscall (netbsd-arm64), const EVFILT_TIMER ideal-int
  5280. pkg syscall (netbsd-arm64), const EVFILT_VNODE = 3
  5281. pkg syscall (netbsd-arm64), const EVFILT_VNODE ideal-int
  5282. pkg syscall (netbsd-arm64), const EVFILT_WRITE = 1
  5283. pkg syscall (netbsd-arm64), const EVFILT_WRITE ideal-int
  5284. pkg syscall (netbsd-arm64), const EV_FLAG1 = 8192
  5285. pkg syscall (netbsd-arm64), const EV_FLAG1 ideal-int
  5286. pkg syscall (netbsd-arm64), const EV_ONESHOT = 16
  5287. pkg syscall (netbsd-arm64), const EV_ONESHOT ideal-int
  5288. pkg syscall (netbsd-arm64), const EV_SYSFLAGS = 61440
  5289. pkg syscall (netbsd-arm64), const EV_SYSFLAGS ideal-int
  5290. pkg syscall (netbsd-arm64), const EWOULDBLOCK = 35
  5291. pkg syscall (netbsd-arm64), const EXDEV = 18
  5292. pkg syscall (netbsd-arm64), const EXTA = 19200
  5293. pkg syscall (netbsd-arm64), const EXTA ideal-int
  5294. pkg syscall (netbsd-arm64), const EXTB = 38400
  5295. pkg syscall (netbsd-arm64), const EXTB ideal-int
  5296. pkg syscall (netbsd-arm64), const EXTPROC = 2048
  5297. pkg syscall (netbsd-arm64), const EXTPROC ideal-int
  5298. pkg syscall (netbsd-arm64), const F_CLOSEM = 10
  5299. pkg syscall (netbsd-arm64), const F_CLOSEM ideal-int
  5300. pkg syscall (netbsd-arm64), const FD_CLOEXEC = 1
  5301. pkg syscall (netbsd-arm64), const FD_CLOEXEC ideal-int
  5302. pkg syscall (netbsd-arm64), const FD_SETSIZE = 256
  5303. pkg syscall (netbsd-arm64), const FD_SETSIZE ideal-int
  5304. pkg syscall (netbsd-arm64), const F_DUPFD = 0
  5305. pkg syscall (netbsd-arm64), const F_DUPFD_CLOEXEC = 12
  5306. pkg syscall (netbsd-arm64), const F_DUPFD_CLOEXEC ideal-int
  5307. pkg syscall (netbsd-arm64), const F_DUPFD ideal-int
  5308. pkg syscall (netbsd-arm64), const F_FSCTL = -2147483648
  5309. pkg syscall (netbsd-arm64), const F_FSCTL ideal-int
  5310. pkg syscall (netbsd-arm64), const F_FSDIRMASK = 1879048192
  5311. pkg syscall (netbsd-arm64), const F_FSDIRMASK ideal-int
  5312. pkg syscall (netbsd-arm64), const F_FSIN = 268435456
  5313. pkg syscall (netbsd-arm64), const F_FSIN ideal-int
  5314. pkg syscall (netbsd-arm64), const F_FSINOUT = 805306368
  5315. pkg syscall (netbsd-arm64), const F_FSINOUT ideal-int
  5316. pkg syscall (netbsd-arm64), const F_FSOUT = 536870912
  5317. pkg syscall (netbsd-arm64), const F_FSOUT ideal-int
  5318. pkg syscall (netbsd-arm64), const F_FSPRIV = 32768
  5319. pkg syscall (netbsd-arm64), const F_FSPRIV ideal-int
  5320. pkg syscall (netbsd-arm64), const F_FSVOID = 1073741824
  5321. pkg syscall (netbsd-arm64), const F_FSVOID ideal-int
  5322. pkg syscall (netbsd-arm64), const F_GETFD = 1
  5323. pkg syscall (netbsd-arm64), const F_GETFD ideal-int
  5324. pkg syscall (netbsd-arm64), const F_GETFL = 3
  5325. pkg syscall (netbsd-arm64), const F_GETFL ideal-int
  5326. pkg syscall (netbsd-arm64), const F_GETLK = 7
  5327. pkg syscall (netbsd-arm64), const F_GETLK ideal-int
  5328. pkg syscall (netbsd-arm64), const F_GETNOSIGPIPE = 13
  5329. pkg syscall (netbsd-arm64), const F_GETNOSIGPIPE ideal-int
  5330. pkg syscall (netbsd-arm64), const F_GETOWN = 5
  5331. pkg syscall (netbsd-arm64), const F_GETOWN ideal-int
  5332. pkg syscall (netbsd-arm64), const FLUSHO = 8388608
  5333. pkg syscall (netbsd-arm64), const FLUSHO ideal-int
  5334. pkg syscall (netbsd-arm64), const F_MAXFD = 11
  5335. pkg syscall (netbsd-arm64), const F_MAXFD ideal-int
  5336. pkg syscall (netbsd-arm64), const F_OK = 0
  5337. pkg syscall (netbsd-arm64), const F_OK ideal-int
  5338. pkg syscall (netbsd-arm64), const F_PARAM_MASK = 4095
  5339. pkg syscall (netbsd-arm64), const F_PARAM_MASK ideal-int
  5340. pkg syscall (netbsd-arm64), const F_PARAM_MAX = 4095
  5341. pkg syscall (netbsd-arm64), const F_PARAM_MAX ideal-int
  5342. pkg syscall (netbsd-arm64), const F_RDLCK = 1
  5343. pkg syscall (netbsd-arm64), const F_RDLCK ideal-int
  5344. pkg syscall (netbsd-arm64), const F_SETFD = 2
  5345. pkg syscall (netbsd-arm64), const F_SETFD ideal-int
  5346. pkg syscall (netbsd-arm64), const F_SETFL = 4
  5347. pkg syscall (netbsd-arm64), const F_SETFL ideal-int
  5348. pkg syscall (netbsd-arm64), const F_SETLK = 8
  5349. pkg syscall (netbsd-arm64), const F_SETLK ideal-int
  5350. pkg syscall (netbsd-arm64), const F_SETLKW = 9
  5351. pkg syscall (netbsd-arm64), const F_SETLKW ideal-int
  5352. pkg syscall (netbsd-arm64), const F_SETNOSIGPIPE = 14
  5353. pkg syscall (netbsd-arm64), const F_SETNOSIGPIPE ideal-int
  5354. pkg syscall (netbsd-arm64), const F_SETOWN = 6
  5355. pkg syscall (netbsd-arm64), const F_SETOWN ideal-int
  5356. pkg syscall (netbsd-arm64), const F_UNLCK = 2
  5357. pkg syscall (netbsd-arm64), const F_UNLCK ideal-int
  5358. pkg syscall (netbsd-arm64), const F_WRLCK = 3
  5359. pkg syscall (netbsd-arm64), const F_WRLCK ideal-int
  5360. pkg syscall (netbsd-arm64), const HUPCL = 16384
  5361. pkg syscall (netbsd-arm64), const HUPCL ideal-int
  5362. pkg syscall (netbsd-arm64), const ICANON = 256
  5363. pkg syscall (netbsd-arm64), const ICANON ideal-int
  5364. pkg syscall (netbsd-arm64), const ICMP6_FILTER = 18
  5365. pkg syscall (netbsd-arm64), const ICMP6_FILTER ideal-int
  5366. pkg syscall (netbsd-arm64), const ICRNL = 256
  5367. pkg syscall (netbsd-arm64), const ICRNL ideal-int
  5368. pkg syscall (netbsd-arm64), const IEXTEN = 1024
  5369. pkg syscall (netbsd-arm64), const IEXTEN ideal-int
  5370. pkg syscall (netbsd-arm64), const IFAN_ARRIVAL = 0
  5371. pkg syscall (netbsd-arm64), const IFAN_ARRIVAL ideal-int
  5372. pkg syscall (netbsd-arm64), const IFAN_DEPARTURE = 1
  5373. pkg syscall (netbsd-arm64), const IFAN_DEPARTURE ideal-int
  5374. pkg syscall (netbsd-arm64), const IFA_ROUTE = 1
  5375. pkg syscall (netbsd-arm64), const IFA_ROUTE ideal-int
  5376. pkg syscall (netbsd-arm64), const IFF_ALLMULTI = 512
  5377. pkg syscall (netbsd-arm64), const IFF_ALLMULTI ideal-int
  5378. pkg syscall (netbsd-arm64), const IFF_CANTCHANGE = 36690
  5379. pkg syscall (netbsd-arm64), const IFF_CANTCHANGE ideal-int
  5380. pkg syscall (netbsd-arm64), const IFF_DEBUG = 4
  5381. pkg syscall (netbsd-arm64), const IFF_DEBUG ideal-int
  5382. pkg syscall (netbsd-arm64), const IFF_LINK0 = 4096
  5383. pkg syscall (netbsd-arm64), const IFF_LINK0 ideal-int
  5384. pkg syscall (netbsd-arm64), const IFF_LINK1 = 8192
  5385. pkg syscall (netbsd-arm64), const IFF_LINK1 ideal-int
  5386. pkg syscall (netbsd-arm64), const IFF_LINK2 = 16384
  5387. pkg syscall (netbsd-arm64), const IFF_LINK2 ideal-int
  5388. pkg syscall (netbsd-arm64), const IFF_LOOPBACK = 8
  5389. pkg syscall (netbsd-arm64), const IFF_MULTICAST = 32768
  5390. pkg syscall (netbsd-arm64), const IFF_NOARP = 128
  5391. pkg syscall (netbsd-arm64), const IFF_NOARP ideal-int
  5392. pkg syscall (netbsd-arm64), const IFF_NOTRAILERS = 32
  5393. pkg syscall (netbsd-arm64), const IFF_NOTRAILERS ideal-int
  5394. pkg syscall (netbsd-arm64), const IFF_OACTIVE = 1024
  5395. pkg syscall (netbsd-arm64), const IFF_OACTIVE ideal-int
  5396. pkg syscall (netbsd-arm64), const IFF_POINTOPOINT = 16
  5397. pkg syscall (netbsd-arm64), const IFF_POINTOPOINT ideal-int
  5398. pkg syscall (netbsd-arm64), const IFF_PROMISC = 256
  5399. pkg syscall (netbsd-arm64), const IFF_PROMISC ideal-int
  5400. pkg syscall (netbsd-arm64), const IFF_RUNNING = 64
  5401. pkg syscall (netbsd-arm64), const IFF_RUNNING ideal-int
  5402. pkg syscall (netbsd-arm64), const IFF_SIMPLEX = 2048
  5403. pkg syscall (netbsd-arm64), const IFF_SIMPLEX ideal-int
  5404. pkg syscall (netbsd-arm64), const IFNAMSIZ = 16
  5405. pkg syscall (netbsd-arm64), const IFNAMSIZ ideal-int
  5406. pkg syscall (netbsd-arm64), const IFT_1822 = 2
  5407. pkg syscall (netbsd-arm64), const IFT_1822 ideal-int
  5408. pkg syscall (netbsd-arm64), const IFT_A12MPPSWITCH = 130
  5409. pkg syscall (netbsd-arm64), const IFT_A12MPPSWITCH ideal-int
  5410. pkg syscall (netbsd-arm64), const IFT_AAL2 = 187
  5411. pkg syscall (netbsd-arm64), const IFT_AAL2 ideal-int
  5412. pkg syscall (netbsd-arm64), const IFT_AAL5 = 49
  5413. pkg syscall (netbsd-arm64), const IFT_AAL5 ideal-int
  5414. pkg syscall (netbsd-arm64), const IFT_ADSL = 94
  5415. pkg syscall (netbsd-arm64), const IFT_ADSL ideal-int
  5416. pkg syscall (netbsd-arm64), const IFT_AFLANE8023 = 59
  5417. pkg syscall (netbsd-arm64), const IFT_AFLANE8023 ideal-int
  5418. pkg syscall (netbsd-arm64), const IFT_AFLANE8025 = 60
  5419. pkg syscall (netbsd-arm64), const IFT_AFLANE8025 ideal-int
  5420. pkg syscall (netbsd-arm64), const IFT_ARAP = 88
  5421. pkg syscall (netbsd-arm64), const IFT_ARAP ideal-int
  5422. pkg syscall (netbsd-arm64), const IFT_ARCNET = 35
  5423. pkg syscall (netbsd-arm64), const IFT_ARCNET ideal-int
  5424. pkg syscall (netbsd-arm64), const IFT_ARCNETPLUS = 36
  5425. pkg syscall (netbsd-arm64), const IFT_ARCNETPLUS ideal-int
  5426. pkg syscall (netbsd-arm64), const IFT_ASYNC = 84
  5427. pkg syscall (netbsd-arm64), const IFT_ASYNC ideal-int
  5428. pkg syscall (netbsd-arm64), const IFT_ATM = 37
  5429. pkg syscall (netbsd-arm64), const IFT_ATMDXI = 105
  5430. pkg syscall (netbsd-arm64), const IFT_ATMDXI ideal-int
  5431. pkg syscall (netbsd-arm64), const IFT_ATMFUNI = 106
  5432. pkg syscall (netbsd-arm64), const IFT_ATMFUNI ideal-int
  5433. pkg syscall (netbsd-arm64), const IFT_ATM ideal-int
  5434. pkg syscall (netbsd-arm64), const IFT_ATMIMA = 107
  5435. pkg syscall (netbsd-arm64), const IFT_ATMIMA ideal-int
  5436. pkg syscall (netbsd-arm64), const IFT_ATMLOGICAL = 80
  5437. pkg syscall (netbsd-arm64), const IFT_ATMLOGICAL ideal-int
  5438. pkg syscall (netbsd-arm64), const IFT_ATMRADIO = 189
  5439. pkg syscall (netbsd-arm64), const IFT_ATMRADIO ideal-int
  5440. pkg syscall (netbsd-arm64), const IFT_ATMSUBINTERFACE = 134
  5441. pkg syscall (netbsd-arm64), const IFT_ATMSUBINTERFACE ideal-int
  5442. pkg syscall (netbsd-arm64), const IFT_ATMVCIENDPT = 194
  5443. pkg syscall (netbsd-arm64), const IFT_ATMVCIENDPT ideal-int
  5444. pkg syscall (netbsd-arm64), const IFT_ATMVIRTUAL = 149
  5445. pkg syscall (netbsd-arm64), const IFT_ATMVIRTUAL ideal-int
  5446. pkg syscall (netbsd-arm64), const IFT_BGPPOLICYACCOUNTING = 162
  5447. pkg syscall (netbsd-arm64), const IFT_BGPPOLICYACCOUNTING ideal-int
  5448. pkg syscall (netbsd-arm64), const IFT_BRIDGE = 209
  5449. pkg syscall (netbsd-arm64), const IFT_BRIDGE ideal-int
  5450. pkg syscall (netbsd-arm64), const IFT_BSC = 83
  5451. pkg syscall (netbsd-arm64), const IFT_BSC ideal-int
  5452. pkg syscall (netbsd-arm64), const IFT_CARP = 248
  5453. pkg syscall (netbsd-arm64), const IFT_CARP ideal-int
  5454. pkg syscall (netbsd-arm64), const IFT_CCTEMUL = 61
  5455. pkg syscall (netbsd-arm64), const IFT_CCTEMUL ideal-int
  5456. pkg syscall (netbsd-arm64), const IFT_CEPT = 19
  5457. pkg syscall (netbsd-arm64), const IFT_CEPT ideal-int
  5458. pkg syscall (netbsd-arm64), const IFT_CES = 133
  5459. pkg syscall (netbsd-arm64), const IFT_CES ideal-int
  5460. pkg syscall (netbsd-arm64), const IFT_CHANNEL = 70
  5461. pkg syscall (netbsd-arm64), const IFT_CHANNEL ideal-int
  5462. pkg syscall (netbsd-arm64), const IFT_CNR = 85
  5463. pkg syscall (netbsd-arm64), const IFT_CNR ideal-int
  5464. pkg syscall (netbsd-arm64), const IFT_COFFEE = 132
  5465. pkg syscall (netbsd-arm64), const IFT_COFFEE ideal-int
  5466. pkg syscall (netbsd-arm64), const IFT_COMPOSITELINK = 155
  5467. pkg syscall (netbsd-arm64), const IFT_COMPOSITELINK ideal-int
  5468. pkg syscall (netbsd-arm64), const IFT_DCN = 141
  5469. pkg syscall (netbsd-arm64), const IFT_DCN ideal-int
  5470. pkg syscall (netbsd-arm64), const IFT_DIGITALPOWERLINE = 138
  5471. pkg syscall (netbsd-arm64), const IFT_DIGITALPOWERLINE ideal-int
  5472. pkg syscall (netbsd-arm64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186
  5473. pkg syscall (netbsd-arm64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
  5474. pkg syscall (netbsd-arm64), const IFT_DLSW = 74
  5475. pkg syscall (netbsd-arm64), const IFT_DLSW ideal-int
  5476. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEDOWNSTREAM = 128
  5477. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEDOWNSTREAM ideal-int
  5478. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEMACLAYER = 127
  5479. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEMACLAYER ideal-int
  5480. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAM = 129
  5481. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205
  5482. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int
  5483. pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAM ideal-int
  5484. pkg syscall (netbsd-arm64), const IFT_DS0 = 81
  5485. pkg syscall (netbsd-arm64), const IFT_DS0BUNDLE = 82
  5486. pkg syscall (netbsd-arm64), const IFT_DS0BUNDLE ideal-int
  5487. pkg syscall (netbsd-arm64), const IFT_DS0 ideal-int
  5488. pkg syscall (netbsd-arm64), const IFT_DS1FDL = 170
  5489. pkg syscall (netbsd-arm64), const IFT_DS1FDL ideal-int
  5490. pkg syscall (netbsd-arm64), const IFT_DS3 = 30
  5491. pkg syscall (netbsd-arm64), const IFT_DS3 ideal-int
  5492. pkg syscall (netbsd-arm64), const IFT_DTM = 140
  5493. pkg syscall (netbsd-arm64), const IFT_DTM ideal-int
  5494. pkg syscall (netbsd-arm64), const IFT_DVBASILN = 172
  5495. pkg syscall (netbsd-arm64), const IFT_DVBASILN ideal-int
  5496. pkg syscall (netbsd-arm64), const IFT_DVBASIOUT = 173
  5497. pkg syscall (netbsd-arm64), const IFT_DVBASIOUT ideal-int
  5498. pkg syscall (netbsd-arm64), const IFT_DVBRCCDOWNSTREAM = 147
  5499. pkg syscall (netbsd-arm64), const IFT_DVBRCCDOWNSTREAM ideal-int
  5500. pkg syscall (netbsd-arm64), const IFT_DVBRCCMACLAYER = 146
  5501. pkg syscall (netbsd-arm64), const IFT_DVBRCCMACLAYER ideal-int
  5502. pkg syscall (netbsd-arm64), const IFT_DVBRCCUPSTREAM = 148
  5503. pkg syscall (netbsd-arm64), const IFT_DVBRCCUPSTREAM ideal-int
  5504. pkg syscall (netbsd-arm64), const IFT_ECONET = 206
  5505. pkg syscall (netbsd-arm64), const IFT_ECONET ideal-int
  5506. pkg syscall (netbsd-arm64), const IFT_EON = 25
  5507. pkg syscall (netbsd-arm64), const IFT_EON ideal-int
  5508. pkg syscall (netbsd-arm64), const IFT_EPLRS = 87
  5509. pkg syscall (netbsd-arm64), const IFT_EPLRS ideal-int
  5510. pkg syscall (netbsd-arm64), const IFT_ESCON = 73
  5511. pkg syscall (netbsd-arm64), const IFT_ESCON ideal-int
  5512. pkg syscall (netbsd-arm64), const IFT_ETHER = 6
  5513. pkg syscall (netbsd-arm64), const IFT_ETHER ideal-int
  5514. pkg syscall (netbsd-arm64), const IFT_FAITH = 242
  5515. pkg syscall (netbsd-arm64), const IFT_FAITH ideal-int
  5516. pkg syscall (netbsd-arm64), const IFT_FAST = 125
  5517. pkg syscall (netbsd-arm64), const IFT_FASTETHER = 62
  5518. pkg syscall (netbsd-arm64), const IFT_FASTETHERFX = 69
  5519. pkg syscall (netbsd-arm64), const IFT_FASTETHERFX ideal-int
  5520. pkg syscall (netbsd-arm64), const IFT_FASTETHER ideal-int
  5521. pkg syscall (netbsd-arm64), const IFT_FAST ideal-int
  5522. pkg syscall (netbsd-arm64), const IFT_FDDI = 15
  5523. pkg syscall (netbsd-arm64), const IFT_FDDI ideal-int
  5524. pkg syscall (netbsd-arm64), const IFT_FIBRECHANNEL = 56
  5525. pkg syscall (netbsd-arm64), const IFT_FIBRECHANNEL ideal-int
  5526. pkg syscall (netbsd-arm64), const IFT_FRAMERELAYINTERCONNECT = 58
  5527. pkg syscall (netbsd-arm64), const IFT_FRAMERELAYINTERCONNECT ideal-int
  5528. pkg syscall (netbsd-arm64), const IFT_FRAMERELAYMPI = 92
  5529. pkg syscall (netbsd-arm64), const IFT_FRAMERELAYMPI ideal-int
  5530. pkg syscall (netbsd-arm64), const IFT_FRDLCIENDPT = 193
  5531. pkg syscall (netbsd-arm64), const IFT_FRDLCIENDPT ideal-int
  5532. pkg syscall (netbsd-arm64), const IFT_FRELAY = 32
  5533. pkg syscall (netbsd-arm64), const IFT_FRELAYDCE = 44
  5534. pkg syscall (netbsd-arm64), const IFT_FRELAYDCE ideal-int
  5535. pkg syscall (netbsd-arm64), const IFT_FRELAY ideal-int
  5536. pkg syscall (netbsd-arm64), const IFT_FRF16MFRBUNDLE = 163
  5537. pkg syscall (netbsd-arm64), const IFT_FRF16MFRBUNDLE ideal-int
  5538. pkg syscall (netbsd-arm64), const IFT_FRFORWARD = 158
  5539. pkg syscall (netbsd-arm64), const IFT_FRFORWARD ideal-int
  5540. pkg syscall (netbsd-arm64), const IFT_G703AT2MB = 67
  5541. pkg syscall (netbsd-arm64), const IFT_G703AT2MB ideal-int
  5542. pkg syscall (netbsd-arm64), const IFT_G703AT64K = 66
  5543. pkg syscall (netbsd-arm64), const IFT_G703AT64K ideal-int
  5544. pkg syscall (netbsd-arm64), const IFT_GIF = 240
  5545. pkg syscall (netbsd-arm64), const IFT_GIF ideal-int
  5546. pkg syscall (netbsd-arm64), const IFT_GIGABITETHERNET = 117
  5547. pkg syscall (netbsd-arm64), const IFT_GIGABITETHERNET ideal-int
  5548. pkg syscall (netbsd-arm64), const IFT_GR303IDT = 178
  5549. pkg syscall (netbsd-arm64), const IFT_GR303IDT ideal-int
  5550. pkg syscall (netbsd-arm64), const IFT_GR303RDT = 177
  5551. pkg syscall (netbsd-arm64), const IFT_GR303RDT ideal-int
  5552. pkg syscall (netbsd-arm64), const IFT_H323GATEKEEPER = 164
  5553. pkg syscall (netbsd-arm64), const IFT_H323GATEKEEPER ideal-int
  5554. pkg syscall (netbsd-arm64), const IFT_H323PROXY = 165
  5555. pkg syscall (netbsd-arm64), const IFT_H323PROXY ideal-int
  5556. pkg syscall (netbsd-arm64), const IFT_HDH1822 = 3
  5557. pkg syscall (netbsd-arm64), const IFT_HDH1822 ideal-int
  5558. pkg syscall (netbsd-arm64), const IFT_HDLC = 118
  5559. pkg syscall (netbsd-arm64), const IFT_HDLC ideal-int
  5560. pkg syscall (netbsd-arm64), const IFT_HDSL2 = 168
  5561. pkg syscall (netbsd-arm64), const IFT_HDSL2 ideal-int
  5562. pkg syscall (netbsd-arm64), const IFT_HIPERLAN2 = 183
  5563. pkg syscall (netbsd-arm64), const IFT_HIPERLAN2 ideal-int
  5564. pkg syscall (netbsd-arm64), const IFT_HIPPI = 47
  5565. pkg syscall (netbsd-arm64), const IFT_HIPPI ideal-int
  5566. pkg syscall (netbsd-arm64), const IFT_HIPPIINTERFACE = 57
  5567. pkg syscall (netbsd-arm64), const IFT_HIPPIINTERFACE ideal-int
  5568. pkg syscall (netbsd-arm64), const IFT_HOSTPAD = 90
  5569. pkg syscall (netbsd-arm64), const IFT_HOSTPAD ideal-int
  5570. pkg syscall (netbsd-arm64), const IFT_HSSI = 46
  5571. pkg syscall (netbsd-arm64), const IFT_HSSI ideal-int
  5572. pkg syscall (netbsd-arm64), const IFT_HY = 14
  5573. pkg syscall (netbsd-arm64), const IFT_HY ideal-int
  5574. pkg syscall (netbsd-arm64), const IFT_IBM370PARCHAN = 72
  5575. pkg syscall (netbsd-arm64), const IFT_IBM370PARCHAN ideal-int
  5576. pkg syscall (netbsd-arm64), const IFT_IDSL = 154
  5577. pkg syscall (netbsd-arm64), const IFT_IDSL ideal-int
  5578. pkg syscall (netbsd-arm64), const IFT_IEEE1394 = 144
  5579. pkg syscall (netbsd-arm64), const IFT_IEEE1394 ideal-int
  5580. pkg syscall (netbsd-arm64), const IFT_IEEE80211 = 71
  5581. pkg syscall (netbsd-arm64), const IFT_IEEE80211 ideal-int
  5582. pkg syscall (netbsd-arm64), const IFT_IEEE80212 = 55
  5583. pkg syscall (netbsd-arm64), const IFT_IEEE80212 ideal-int
  5584. pkg syscall (netbsd-arm64), const IFT_IEEE8023ADLAG = 161
  5585. pkg syscall (netbsd-arm64), const IFT_IEEE8023ADLAG ideal-int
  5586. pkg syscall (netbsd-arm64), const IFT_IFGSN = 145
  5587. pkg syscall (netbsd-arm64), const IFT_IFGSN ideal-int
  5588. pkg syscall (netbsd-arm64), const IFT_IMT = 190
  5589. pkg syscall (netbsd-arm64), const IFT_IMT ideal-int
  5590. pkg syscall (netbsd-arm64), const IFT_INFINIBAND = 199
  5591. pkg syscall (netbsd-arm64), const IFT_INFINIBAND ideal-int
  5592. pkg syscall (netbsd-arm64), const IFT_INTERLEAVE = 124
  5593. pkg syscall (netbsd-arm64), const IFT_INTERLEAVE ideal-int
  5594. pkg syscall (netbsd-arm64), const IFT_IP = 126
  5595. pkg syscall (netbsd-arm64), const IFT_IPFORWARD = 142
  5596. pkg syscall (netbsd-arm64), const IFT_IPFORWARD ideal-int
  5597. pkg syscall (netbsd-arm64), const IFT_IP ideal-int
  5598. pkg syscall (netbsd-arm64), const IFT_IPOVERATM = 114
  5599. pkg syscall (netbsd-arm64), const IFT_IPOVERATM ideal-int
  5600. pkg syscall (netbsd-arm64), const IFT_IPOVERCDLC = 109
  5601. pkg syscall (netbsd-arm64), const IFT_IPOVERCDLC ideal-int
  5602. pkg syscall (netbsd-arm64), const IFT_IPOVERCLAW = 110
  5603. pkg syscall (netbsd-arm64), const IFT_IPOVERCLAW ideal-int
  5604. pkg syscall (netbsd-arm64), const IFT_IPSWITCH = 78
  5605. pkg syscall (netbsd-arm64), const IFT_IPSWITCH ideal-int
  5606. pkg syscall (netbsd-arm64), const IFT_ISDN = 63
  5607. pkg syscall (netbsd-arm64), const IFT_ISDNBASIC = 20
  5608. pkg syscall (netbsd-arm64), const IFT_ISDNBASIC ideal-int
  5609. pkg syscall (netbsd-arm64), const IFT_ISDN ideal-int
  5610. pkg syscall (netbsd-arm64), const IFT_ISDNPRIMARY = 21
  5611. pkg syscall (netbsd-arm64), const IFT_ISDNPRIMARY ideal-int
  5612. pkg syscall (netbsd-arm64), const IFT_ISDNS = 75
  5613. pkg syscall (netbsd-arm64), const IFT_ISDNS ideal-int
  5614. pkg syscall (netbsd-arm64), const IFT_ISDNU = 76
  5615. pkg syscall (netbsd-arm64), const IFT_ISDNU ideal-int
  5616. pkg syscall (netbsd-arm64), const IFT_ISO88022LLC = 41
  5617. pkg syscall (netbsd-arm64), const IFT_ISO88022LLC ideal-int
  5618. pkg syscall (netbsd-arm64), const IFT_ISO88023 = 7
  5619. pkg syscall (netbsd-arm64), const IFT_ISO88023 ideal-int
  5620. pkg syscall (netbsd-arm64), const IFT_ISO88024 = 8
  5621. pkg syscall (netbsd-arm64), const IFT_ISO88024 ideal-int
  5622. pkg syscall (netbsd-arm64), const IFT_ISO88025 = 9
  5623. pkg syscall (netbsd-arm64), const IFT_ISO88025CRFPINT = 98
  5624. pkg syscall (netbsd-arm64), const IFT_ISO88025CRFPINT ideal-int
  5625. pkg syscall (netbsd-arm64), const IFT_ISO88025DTR = 86
  5626. pkg syscall (netbsd-arm64), const IFT_ISO88025DTR ideal-int
  5627. pkg syscall (netbsd-arm64), const IFT_ISO88025FIBER = 115
  5628. pkg syscall (netbsd-arm64), const IFT_ISO88025FIBER ideal-int
  5629. pkg syscall (netbsd-arm64), const IFT_ISO88025 ideal-int
  5630. pkg syscall (netbsd-arm64), const IFT_ISO88026 = 10
  5631. pkg syscall (netbsd-arm64), const IFT_ISO88026 ideal-int
  5632. pkg syscall (netbsd-arm64), const IFT_ISUP = 179
  5633. pkg syscall (netbsd-arm64), const IFT_ISUP ideal-int
  5634. pkg syscall (netbsd-arm64), const IFT_L2VLAN = 135
  5635. pkg syscall (netbsd-arm64), const IFT_L2VLAN ideal-int
  5636. pkg syscall (netbsd-arm64), const IFT_L3IPVLAN = 136
  5637. pkg syscall (netbsd-arm64), const IFT_L3IPVLAN ideal-int
  5638. pkg syscall (netbsd-arm64), const IFT_L3IPXVLAN = 137
  5639. pkg syscall (netbsd-arm64), const IFT_L3IPXVLAN ideal-int
  5640. pkg syscall (netbsd-arm64), const IFT_LAPB = 16
  5641. pkg syscall (netbsd-arm64), const IFT_LAPB ideal-int
  5642. pkg syscall (netbsd-arm64), const IFT_LAPD = 77
  5643. pkg syscall (netbsd-arm64), const IFT_LAPD ideal-int
  5644. pkg syscall (netbsd-arm64), const IFT_LAPF = 119
  5645. pkg syscall (netbsd-arm64), const IFT_LAPF ideal-int
  5646. pkg syscall (netbsd-arm64), const IFT_LINEGROUP = 210
  5647. pkg syscall (netbsd-arm64), const IFT_LINEGROUP ideal-int
  5648. pkg syscall (netbsd-arm64), const IFT_LOCALTALK = 42
  5649. pkg syscall (netbsd-arm64), const IFT_LOCALTALK ideal-int
  5650. pkg syscall (netbsd-arm64), const IFT_LOOP = 24
  5651. pkg syscall (netbsd-arm64), const IFT_LOOP ideal-int
  5652. pkg syscall (netbsd-arm64), const IFT_MEDIAMAILOVERIP = 139
  5653. pkg syscall (netbsd-arm64), const IFT_MEDIAMAILOVERIP ideal-int
  5654. pkg syscall (netbsd-arm64), const IFT_MFSIGLINK = 167
  5655. pkg syscall (netbsd-arm64), const IFT_MFSIGLINK ideal-int
  5656. pkg syscall (netbsd-arm64), const IFT_MIOX25 = 38
  5657. pkg syscall (netbsd-arm64), const IFT_MIOX25 ideal-int
  5658. pkg syscall (netbsd-arm64), const IFT_MODEM = 48
  5659. pkg syscall (netbsd-arm64), const IFT_MODEM ideal-int
  5660. pkg syscall (netbsd-arm64), const IFT_MPC = 113
  5661. pkg syscall (netbsd-arm64), const IFT_MPC ideal-int
  5662. pkg syscall (netbsd-arm64), const IFT_MPLS = 166
  5663. pkg syscall (netbsd-arm64), const IFT_MPLS ideal-int
  5664. pkg syscall (netbsd-arm64), const IFT_MPLSTUNNEL = 150
  5665. pkg syscall (netbsd-arm64), const IFT_MPLSTUNNEL ideal-int
  5666. pkg syscall (netbsd-arm64), const IFT_MSDSL = 143
  5667. pkg syscall (netbsd-arm64), const IFT_MSDSL ideal-int
  5668. pkg syscall (netbsd-arm64), const IFT_MVL = 191
  5669. pkg syscall (netbsd-arm64), const IFT_MVL ideal-int
  5670. pkg syscall (netbsd-arm64), const IFT_MYRINET = 99
  5671. pkg syscall (netbsd-arm64), const IFT_MYRINET ideal-int
  5672. pkg syscall (netbsd-arm64), const IFT_NFAS = 175
  5673. pkg syscall (netbsd-arm64), const IFT_NFAS ideal-int
  5674. pkg syscall (netbsd-arm64), const IFT_NSIP = 27
  5675. pkg syscall (netbsd-arm64), const IFT_NSIP ideal-int
  5676. pkg syscall (netbsd-arm64), const IFT_OPTICALCHANNEL = 195
  5677. pkg syscall (netbsd-arm64), const IFT_OPTICALCHANNEL ideal-int
  5678. pkg syscall (netbsd-arm64), const IFT_OPTICALTRANSPORT = 196
  5679. pkg syscall (netbsd-arm64), const IFT_OPTICALTRANSPORT ideal-int
  5680. pkg syscall (netbsd-arm64), const IFT_OTHER = 1
  5681. pkg syscall (netbsd-arm64), const IFT_OTHER ideal-int
  5682. pkg syscall (netbsd-arm64), const IFT_P10 = 12
  5683. pkg syscall (netbsd-arm64), const IFT_P10 ideal-int
  5684. pkg syscall (netbsd-arm64), const IFT_P80 = 13
  5685. pkg syscall (netbsd-arm64), const IFT_P80 ideal-int
  5686. pkg syscall (netbsd-arm64), const IFT_PARA = 34
  5687. pkg syscall (netbsd-arm64), const IFT_PARA ideal-int
  5688. pkg syscall (netbsd-arm64), const IFT_PFLOG = 245
  5689. pkg syscall (netbsd-arm64), const IFT_PFLOG ideal-int
  5690. pkg syscall (netbsd-arm64), const IFT_PFSYNC = 246
  5691. pkg syscall (netbsd-arm64), const IFT_PFSYNC ideal-int
  5692. pkg syscall (netbsd-arm64), const IFT_PLC = 174
  5693. pkg syscall (netbsd-arm64), const IFT_PLC ideal-int
  5694. pkg syscall (netbsd-arm64), const IFT_PON155 = 207
  5695. pkg syscall (netbsd-arm64), const IFT_PON155 ideal-int
  5696. pkg syscall (netbsd-arm64), const IFT_PON622 = 208
  5697. pkg syscall (netbsd-arm64), const IFT_PON622 ideal-int
  5698. pkg syscall (netbsd-arm64), const IFT_POS = 171
  5699. pkg syscall (netbsd-arm64), const IFT_POS ideal-int
  5700. pkg syscall (netbsd-arm64), const IFT_PPP = 23
  5701. pkg syscall (netbsd-arm64), const IFT_PPP ideal-int
  5702. pkg syscall (netbsd-arm64), const IFT_PPPMULTILINKBUNDLE = 108
  5703. pkg syscall (netbsd-arm64), const IFT_PPPMULTILINKBUNDLE ideal-int
  5704. pkg syscall (netbsd-arm64), const IFT_PROPATM = 197
  5705. pkg syscall (netbsd-arm64), const IFT_PROPATM ideal-int
  5706. pkg syscall (netbsd-arm64), const IFT_PROPBWAP2MP = 184
  5707. pkg syscall (netbsd-arm64), const IFT_PROPBWAP2MP ideal-int
  5708. pkg syscall (netbsd-arm64), const IFT_PROPCNLS = 89
  5709. pkg syscall (netbsd-arm64), const IFT_PROPCNLS ideal-int
  5710. pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181
  5711. pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
  5712. pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSMACLAYER = 180
  5713. pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
  5714. pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182
  5715. pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
  5716. pkg syscall (netbsd-arm64), const IFT_PROPMUX = 54
  5717. pkg syscall (netbsd-arm64), const IFT_PROPMUX ideal-int
  5718. pkg syscall (netbsd-arm64), const IFT_PROPVIRTUAL = 53
  5719. pkg syscall (netbsd-arm64), const IFT_PROPVIRTUAL ideal-int
  5720. pkg syscall (netbsd-arm64), const IFT_PROPWIRELESSP2P = 157
  5721. pkg syscall (netbsd-arm64), const IFT_PROPWIRELESSP2P ideal-int
  5722. pkg syscall (netbsd-arm64), const IFT_PTPSERIAL = 22
  5723. pkg syscall (netbsd-arm64), const IFT_PTPSERIAL ideal-int
  5724. pkg syscall (netbsd-arm64), const IFT_PVC = 241
  5725. pkg syscall (netbsd-arm64), const IFT_PVC ideal-int
  5726. pkg syscall (netbsd-arm64), const IFT_Q2931 = 201
  5727. pkg syscall (netbsd-arm64), const IFT_Q2931 ideal-int
  5728. pkg syscall (netbsd-arm64), const IFT_QLLC = 68
  5729. pkg syscall (netbsd-arm64), const IFT_QLLC ideal-int
  5730. pkg syscall (netbsd-arm64), const IFT_RADIOMAC = 188
  5731. pkg syscall (netbsd-arm64), const IFT_RADIOMAC ideal-int
  5732. pkg syscall (netbsd-arm64), const IFT_RADSL = 95
  5733. pkg syscall (netbsd-arm64), const IFT_RADSL ideal-int
  5734. pkg syscall (netbsd-arm64), const IFT_REACHDSL = 192
  5735. pkg syscall (netbsd-arm64), const IFT_REACHDSL ideal-int
  5736. pkg syscall (netbsd-arm64), const IFT_RFC1483 = 159
  5737. pkg syscall (netbsd-arm64), const IFT_RFC1483 ideal-int
  5738. pkg syscall (netbsd-arm64), const IFT_RS232 = 33
  5739. pkg syscall (netbsd-arm64), const IFT_RS232 ideal-int
  5740. pkg syscall (netbsd-arm64), const IFT_RSRB = 79
  5741. pkg syscall (netbsd-arm64), const IFT_RSRB ideal-int
  5742. pkg syscall (netbsd-arm64), const IFT_SDLC = 17
  5743. pkg syscall (netbsd-arm64), const IFT_SDLC ideal-int
  5744. pkg syscall (netbsd-arm64), const IFT_SDSL = 96
  5745. pkg syscall (netbsd-arm64), const IFT_SDSL ideal-int
  5746. pkg syscall (netbsd-arm64), const IFT_SHDSL = 169
  5747. pkg syscall (netbsd-arm64), const IFT_SHDSL ideal-int
  5748. pkg syscall (netbsd-arm64), const IFT_SIP = 31
  5749. pkg syscall (netbsd-arm64), const IFT_SIP ideal-int
  5750. pkg syscall (netbsd-arm64), const IFT_SIPSIG = 204
  5751. pkg syscall (netbsd-arm64), const IFT_SIPSIG ideal-int
  5752. pkg syscall (netbsd-arm64), const IFT_SIPTG = 203
  5753. pkg syscall (netbsd-arm64), const IFT_SIPTG ideal-int
  5754. pkg syscall (netbsd-arm64), const IFT_SLIP = 28
  5755. pkg syscall (netbsd-arm64), const IFT_SLIP ideal-int
  5756. pkg syscall (netbsd-arm64), const IFT_SMDSDXI = 43
  5757. pkg syscall (netbsd-arm64), const IFT_SMDSDXI ideal-int
  5758. pkg syscall (netbsd-arm64), const IFT_SMDSICIP = 52
  5759. pkg syscall (netbsd-arm64), const IFT_SMDSICIP ideal-int
  5760. pkg syscall (netbsd-arm64), const IFT_SONET = 39
  5761. pkg syscall (netbsd-arm64), const IFT_SONET ideal-int
  5762. pkg syscall (netbsd-arm64), const IFT_SONETOVERHEADCHANNEL = 185
  5763. pkg syscall (netbsd-arm64), const IFT_SONETOVERHEADCHANNEL ideal-int
  5764. pkg syscall (netbsd-arm64), const IFT_SONETPATH = 50
  5765. pkg syscall (netbsd-arm64), const IFT_SONETPATH ideal-int
  5766. pkg syscall (netbsd-arm64), const IFT_SONETVT = 51
  5767. pkg syscall (netbsd-arm64), const IFT_SONETVT ideal-int
  5768. pkg syscall (netbsd-arm64), const IFT_SRP = 151
  5769. pkg syscall (netbsd-arm64), const IFT_SRP ideal-int
  5770. pkg syscall (netbsd-arm64), const IFT_SS7SIGLINK = 156
  5771. pkg syscall (netbsd-arm64), const IFT_SS7SIGLINK ideal-int
  5772. pkg syscall (netbsd-arm64), const IFT_STACKTOSTACK = 111
  5773. pkg syscall (netbsd-arm64), const IFT_STACKTOSTACK ideal-int
  5774. pkg syscall (netbsd-arm64), const IFT_STARLAN = 11
  5775. pkg syscall (netbsd-arm64), const IFT_STARLAN ideal-int
  5776. pkg syscall (netbsd-arm64), const IFT_STF = 215
  5777. pkg syscall (netbsd-arm64), const IFT_STF ideal-int
  5778. pkg syscall (netbsd-arm64), const IFT_T1 = 18
  5779. pkg syscall (netbsd-arm64), const IFT_T1 ideal-int
  5780. pkg syscall (netbsd-arm64), const IFT_TDLC = 116
  5781. pkg syscall (netbsd-arm64), const IFT_TDLC ideal-int
  5782. pkg syscall (netbsd-arm64), const IFT_TELINK = 200
  5783. pkg syscall (netbsd-arm64), const IFT_TELINK ideal-int
  5784. pkg syscall (netbsd-arm64), const IFT_TERMPAD = 91
  5785. pkg syscall (netbsd-arm64), const IFT_TERMPAD ideal-int
  5786. pkg syscall (netbsd-arm64), const IFT_TR008 = 176
  5787. pkg syscall (netbsd-arm64), const IFT_TR008 ideal-int
  5788. pkg syscall (netbsd-arm64), const IFT_TRANSPHDLC = 123
  5789. pkg syscall (netbsd-arm64), const IFT_TRANSPHDLC ideal-int
  5790. pkg syscall (netbsd-arm64), const IFT_TUNNEL = 131
  5791. pkg syscall (netbsd-arm64), const IFT_TUNNEL ideal-int
  5792. pkg syscall (netbsd-arm64), const IFT_ULTRA = 29
  5793. pkg syscall (netbsd-arm64), const IFT_ULTRA ideal-int
  5794. pkg syscall (netbsd-arm64), const IFT_USB = 160
  5795. pkg syscall (netbsd-arm64), const IFT_USB ideal-int
  5796. pkg syscall (netbsd-arm64), const IFT_V11 = 64
  5797. pkg syscall (netbsd-arm64), const IFT_V11 ideal-int
  5798. pkg syscall (netbsd-arm64), const IFT_V35 = 45
  5799. pkg syscall (netbsd-arm64), const IFT_V35 ideal-int
  5800. pkg syscall (netbsd-arm64), const IFT_V36 = 65
  5801. pkg syscall (netbsd-arm64), const IFT_V36 ideal-int
  5802. pkg syscall (netbsd-arm64), const IFT_V37 = 120
  5803. pkg syscall (netbsd-arm64), const IFT_V37 ideal-int
  5804. pkg syscall (netbsd-arm64), const IFT_VDSL = 97
  5805. pkg syscall (netbsd-arm64), const IFT_VDSL ideal-int
  5806. pkg syscall (netbsd-arm64), const IFT_VIRTUALIPADDRESS = 112
  5807. pkg syscall (netbsd-arm64), const IFT_VIRTUALIPADDRESS ideal-int
  5808. pkg syscall (netbsd-arm64), const IFT_VIRTUALTG = 202
  5809. pkg syscall (netbsd-arm64), const IFT_VIRTUALTG ideal-int
  5810. pkg syscall (netbsd-arm64), const IFT_VOICEDID = 213
  5811. pkg syscall (netbsd-arm64), const IFT_VOICEDID ideal-int
  5812. pkg syscall (netbsd-arm64), const IFT_VOICEEM = 100
  5813. pkg syscall (netbsd-arm64), const IFT_VOICEEMFGD = 211
  5814. pkg syscall (netbsd-arm64), const IFT_VOICEEMFGD ideal-int
  5815. pkg syscall (netbsd-arm64), const IFT_VOICEEM ideal-int
  5816. pkg syscall (netbsd-arm64), const IFT_VOICEENCAP = 103
  5817. pkg syscall (netbsd-arm64), const IFT_VOICEENCAP ideal-int
  5818. pkg syscall (netbsd-arm64), const IFT_VOICEFGDEANA = 212
  5819. pkg syscall (netbsd-arm64), const IFT_VOICEFGDEANA ideal-int
  5820. pkg syscall (netbsd-arm64), const IFT_VOICEFXO = 101
  5821. pkg syscall (netbsd-arm64), const IFT_VOICEFXO ideal-int
  5822. pkg syscall (netbsd-arm64), const IFT_VOICEFXS = 102
  5823. pkg syscall (netbsd-arm64), const IFT_VOICEFXS ideal-int
  5824. pkg syscall (netbsd-arm64), const IFT_VOICEOVERATM = 152
  5825. pkg syscall (netbsd-arm64), const IFT_VOICEOVERATM ideal-int
  5826. pkg syscall (netbsd-arm64), const IFT_VOICEOVERCABLE = 198
  5827. pkg syscall (netbsd-arm64), const IFT_VOICEOVERCABLE ideal-int
  5828. pkg syscall (netbsd-arm64), const IFT_VOICEOVERFRAMERELAY = 153
  5829. pkg syscall (netbsd-arm64), const IFT_VOICEOVERFRAMERELAY ideal-int
  5830. pkg syscall (netbsd-arm64), const IFT_VOICEOVERIP = 104
  5831. pkg syscall (netbsd-arm64), const IFT_VOICEOVERIP ideal-int
  5832. pkg syscall (netbsd-arm64), const IFT_X213 = 93
  5833. pkg syscall (netbsd-arm64), const IFT_X213 ideal-int
  5834. pkg syscall (netbsd-arm64), const IFT_X25 = 5
  5835. pkg syscall (netbsd-arm64), const IFT_X25DDN = 4
  5836. pkg syscall (netbsd-arm64), const IFT_X25DDN ideal-int
  5837. pkg syscall (netbsd-arm64), const IFT_X25HUNTGROUP = 122
  5838. pkg syscall (netbsd-arm64), const IFT_X25HUNTGROUP ideal-int
  5839. pkg syscall (netbsd-arm64), const IFT_X25 ideal-int
  5840. pkg syscall (netbsd-arm64), const IFT_X25MLP = 121
  5841. pkg syscall (netbsd-arm64), const IFT_X25MLP ideal-int
  5842. pkg syscall (netbsd-arm64), const IFT_X25PLE = 40
  5843. pkg syscall (netbsd-arm64), const IFT_X25PLE ideal-int
  5844. pkg syscall (netbsd-arm64), const IFT_XETHER = 26
  5845. pkg syscall (netbsd-arm64), const IFT_XETHER ideal-int
  5846. pkg syscall (netbsd-arm64), const IGNBRK = 1
  5847. pkg syscall (netbsd-arm64), const IGNBRK ideal-int
  5848. pkg syscall (netbsd-arm64), const IGNCR = 128
  5849. pkg syscall (netbsd-arm64), const IGNCR ideal-int
  5850. pkg syscall (netbsd-arm64), const IGNPAR = 4
  5851. pkg syscall (netbsd-arm64), const IGNPAR ideal-int
  5852. pkg syscall (netbsd-arm64), const IMAXBEL = 8192
  5853. pkg syscall (netbsd-arm64), const IMAXBEL ideal-int
  5854. pkg syscall (netbsd-arm64), const IN_CLASSA_HOST = 16777215
  5855. pkg syscall (netbsd-arm64), const IN_CLASSA_HOST ideal-int
  5856. pkg syscall (netbsd-arm64), const IN_CLASSA_MAX = 128
  5857. pkg syscall (netbsd-arm64), const IN_CLASSA_MAX ideal-int
  5858. pkg syscall (netbsd-arm64), const IN_CLASSA_NET = 4278190080
  5859. pkg syscall (netbsd-arm64), const IN_CLASSA_NET ideal-int
  5860. pkg syscall (netbsd-arm64), const IN_CLASSA_NSHIFT = 24
  5861. pkg syscall (netbsd-arm64), const IN_CLASSA_NSHIFT ideal-int
  5862. pkg syscall (netbsd-arm64), const IN_CLASSB_HOST = 65535
  5863. pkg syscall (netbsd-arm64), const IN_CLASSB_HOST ideal-int
  5864. pkg syscall (netbsd-arm64), const IN_CLASSB_MAX = 65536
  5865. pkg syscall (netbsd-arm64), const IN_CLASSB_MAX ideal-int
  5866. pkg syscall (netbsd-arm64), const IN_CLASSB_NET = 4294901760
  5867. pkg syscall (netbsd-arm64), const IN_CLASSB_NET ideal-int
  5868. pkg syscall (netbsd-arm64), const IN_CLASSB_NSHIFT = 16
  5869. pkg syscall (netbsd-arm64), const IN_CLASSB_NSHIFT ideal-int
  5870. pkg syscall (netbsd-arm64), const IN_CLASSC_HOST = 255
  5871. pkg syscall (netbsd-arm64), const IN_CLASSC_HOST ideal-int
  5872. pkg syscall (netbsd-arm64), const IN_CLASSC_NET = 4294967040
  5873. pkg syscall (netbsd-arm64), const IN_CLASSC_NET ideal-int
  5874. pkg syscall (netbsd-arm64), const IN_CLASSC_NSHIFT = 8
  5875. pkg syscall (netbsd-arm64), const IN_CLASSC_NSHIFT ideal-int
  5876. pkg syscall (netbsd-arm64), const IN_CLASSD_HOST = 268435455
  5877. pkg syscall (netbsd-arm64), const IN_CLASSD_HOST ideal-int
  5878. pkg syscall (netbsd-arm64), const IN_CLASSD_NET = 4026531840
  5879. pkg syscall (netbsd-arm64), const IN_CLASSD_NET ideal-int
  5880. pkg syscall (netbsd-arm64), const IN_CLASSD_NSHIFT = 28
  5881. pkg syscall (netbsd-arm64), const IN_CLASSD_NSHIFT ideal-int
  5882. pkg syscall (netbsd-arm64), const INLCR = 64
  5883. pkg syscall (netbsd-arm64), const INLCR ideal-int
  5884. pkg syscall (netbsd-arm64), const IN_LOOPBACKNET = 127
  5885. pkg syscall (netbsd-arm64), const IN_LOOPBACKNET ideal-int
  5886. pkg syscall (netbsd-arm64), const INPCK = 16
  5887. pkg syscall (netbsd-arm64), const INPCK ideal-int
  5888. pkg syscall (netbsd-arm64), const IP_ADD_MEMBERSHIP = 12
  5889. pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_LOOP = 1
  5890. pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
  5891. pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_TTL = 1
  5892. pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_TTL ideal-int
  5893. pkg syscall (netbsd-arm64), const IP_DF = 16384
  5894. pkg syscall (netbsd-arm64), const IP_DF ideal-int
  5895. pkg syscall (netbsd-arm64), const IP_DROP_MEMBERSHIP = 13
  5896. pkg syscall (netbsd-arm64), const IP_EF = 32768
  5897. pkg syscall (netbsd-arm64), const IP_EF ideal-int
  5898. pkg syscall (netbsd-arm64), const IP_ERRORMTU = 21
  5899. pkg syscall (netbsd-arm64), const IP_ERRORMTU ideal-int
  5900. pkg syscall (netbsd-arm64), const IP_HDRINCL = 2
  5901. pkg syscall (netbsd-arm64), const IP_HDRINCL ideal-int
  5902. pkg syscall (netbsd-arm64), const IP_IPSEC_POLICY = 22
  5903. pkg syscall (netbsd-arm64), const IP_IPSEC_POLICY ideal-int
  5904. pkg syscall (netbsd-arm64), const IP_MAX_MEMBERSHIPS = 20
  5905. pkg syscall (netbsd-arm64), const IP_MAX_MEMBERSHIPS ideal-int
  5906. pkg syscall (netbsd-arm64), const IP_MAXPACKET = 65535
  5907. pkg syscall (netbsd-arm64), const IP_MAXPACKET ideal-int
  5908. pkg syscall (netbsd-arm64), const IP_MF = 8192
  5909. pkg syscall (netbsd-arm64), const IP_MF ideal-int
  5910. pkg syscall (netbsd-arm64), const IP_MINFRAGSIZE = 69
  5911. pkg syscall (netbsd-arm64), const IP_MINFRAGSIZE ideal-int
  5912. pkg syscall (netbsd-arm64), const IP_MINTTL = 24
  5913. pkg syscall (netbsd-arm64), const IP_MINTTL ideal-int
  5914. pkg syscall (netbsd-arm64), const IP_MSS = 576
  5915. pkg syscall (netbsd-arm64), const IP_MSS ideal-int
  5916. pkg syscall (netbsd-arm64), const IP_MULTICAST_IF = 9
  5917. pkg syscall (netbsd-arm64), const IP_MULTICAST_LOOP = 11
  5918. pkg syscall (netbsd-arm64), const IP_MULTICAST_TTL = 10
  5919. pkg syscall (netbsd-arm64), const IP_OFFMASK = 8191
  5920. pkg syscall (netbsd-arm64), const IP_OFFMASK ideal-int
  5921. pkg syscall (netbsd-arm64), const IP_OPTIONS = 1
  5922. pkg syscall (netbsd-arm64), const IP_OPTIONS ideal-int
  5923. pkg syscall (netbsd-arm64), const IP_PORTRANGE = 19
  5924. pkg syscall (netbsd-arm64), const IP_PORTRANGE_DEFAULT = 0
  5925. pkg syscall (netbsd-arm64), const IP_PORTRANGE_DEFAULT ideal-int
  5926. pkg syscall (netbsd-arm64), const IP_PORTRANGE_HIGH = 1
  5927. pkg syscall (netbsd-arm64), const IP_PORTRANGE_HIGH ideal-int
  5928. pkg syscall (netbsd-arm64), const IP_PORTRANGE ideal-int
  5929. pkg syscall (netbsd-arm64), const IP_PORTRANGE_LOW = 2
  5930. pkg syscall (netbsd-arm64), const IP_PORTRANGE_LOW ideal-int
  5931. pkg syscall (netbsd-arm64), const IPPROTO_AH = 51
  5932. pkg syscall (netbsd-arm64), const IPPROTO_AH ideal-int
  5933. pkg syscall (netbsd-arm64), const IPPROTO_CARP = 112
  5934. pkg syscall (netbsd-arm64), const IPPROTO_CARP ideal-int
  5935. pkg syscall (netbsd-arm64), const IPPROTO_DONE = 257
  5936. pkg syscall (netbsd-arm64), const IPPROTO_DONE ideal-int
  5937. pkg syscall (netbsd-arm64), const IPPROTO_DSTOPTS = 60
  5938. pkg syscall (netbsd-arm64), const IPPROTO_DSTOPTS ideal-int
  5939. pkg syscall (netbsd-arm64), const IPPROTO_EGP = 8
  5940. pkg syscall (netbsd-arm64), const IPPROTO_EGP ideal-int
  5941. pkg syscall (netbsd-arm64), const IPPROTO_ENCAP = 98
  5942. pkg syscall (netbsd-arm64), const IPPROTO_ENCAP ideal-int
  5943. pkg syscall (netbsd-arm64), const IPPROTO_EON = 80
  5944. pkg syscall (netbsd-arm64), const IPPROTO_EON ideal-int
  5945. pkg syscall (netbsd-arm64), const IPPROTO_ESP = 50
  5946. pkg syscall (netbsd-arm64), const IPPROTO_ESP ideal-int
  5947. pkg syscall (netbsd-arm64), const IPPROTO_ETHERIP = 97
  5948. pkg syscall (netbsd-arm64), const IPPROTO_ETHERIP ideal-int
  5949. pkg syscall (netbsd-arm64), const IPPROTO_FRAGMENT = 44
  5950. pkg syscall (netbsd-arm64), const IPPROTO_FRAGMENT ideal-int
  5951. pkg syscall (netbsd-arm64), const IPPROTO_GGP = 3
  5952. pkg syscall (netbsd-arm64), const IPPROTO_GGP ideal-int
  5953. pkg syscall (netbsd-arm64), const IPPROTO_GRE = 47
  5954. pkg syscall (netbsd-arm64), const IPPROTO_GRE ideal-int
  5955. pkg syscall (netbsd-arm64), const IPPROTO_HOPOPTS = 0
  5956. pkg syscall (netbsd-arm64), const IPPROTO_HOPOPTS ideal-int
  5957. pkg syscall (netbsd-arm64), const IPPROTO_ICMP = 1
  5958. pkg syscall (netbsd-arm64), const IPPROTO_ICMP ideal-int
  5959. pkg syscall (netbsd-arm64), const IPPROTO_ICMPV6 = 58
  5960. pkg syscall (netbsd-arm64), const IPPROTO_ICMPV6 ideal-int
  5961. pkg syscall (netbsd-arm64), const IPPROTO_IDP = 22
  5962. pkg syscall (netbsd-arm64), const IPPROTO_IDP ideal-int
  5963. pkg syscall (netbsd-arm64), const IPPROTO_IGMP = 2
  5964. pkg syscall (netbsd-arm64), const IPPROTO_IGMP ideal-int
  5965. pkg syscall (netbsd-arm64), const IPPROTO_IPCOMP = 108
  5966. pkg syscall (netbsd-arm64), const IPPROTO_IPCOMP ideal-int
  5967. pkg syscall (netbsd-arm64), const IPPROTO_IPIP = 4
  5968. pkg syscall (netbsd-arm64), const IPPROTO_IPIP ideal-int
  5969. pkg syscall (netbsd-arm64), const IPPROTO_IPV4 = 4
  5970. pkg syscall (netbsd-arm64), const IPPROTO_IPV4 ideal-int
  5971. pkg syscall (netbsd-arm64), const IPPROTO_IPV6_ICMP = 58
  5972. pkg syscall (netbsd-arm64), const IPPROTO_IPV6_ICMP ideal-int
  5973. pkg syscall (netbsd-arm64), const IPPROTO_MAX = 256
  5974. pkg syscall (netbsd-arm64), const IPPROTO_MAXID = 52
  5975. pkg syscall (netbsd-arm64), const IPPROTO_MAX ideal-int
  5976. pkg syscall (netbsd-arm64), const IPPROTO_MAXID ideal-int
  5977. pkg syscall (netbsd-arm64), const IPPROTO_MOBILE = 55
  5978. pkg syscall (netbsd-arm64), const IPPROTO_MOBILE ideal-int
  5979. pkg syscall (netbsd-arm64), const IPPROTO_NONE = 59
  5980. pkg syscall (netbsd-arm64), const IPPROTO_NONE ideal-int
  5981. pkg syscall (netbsd-arm64), const IPPROTO_PFSYNC = 240
  5982. pkg syscall (netbsd-arm64), const IPPROTO_PFSYNC ideal-int
  5983. pkg syscall (netbsd-arm64), const IPPROTO_PIM = 103
  5984. pkg syscall (netbsd-arm64), const IPPROTO_PIM ideal-int
  5985. pkg syscall (netbsd-arm64), const IPPROTO_PUP = 12
  5986. pkg syscall (netbsd-arm64), const IPPROTO_PUP ideal-int
  5987. pkg syscall (netbsd-arm64), const IPPROTO_RAW = 255
  5988. pkg syscall (netbsd-arm64), const IPPROTO_RAW ideal-int
  5989. pkg syscall (netbsd-arm64), const IPPROTO_ROUTING = 43
  5990. pkg syscall (netbsd-arm64), const IPPROTO_ROUTING ideal-int
  5991. pkg syscall (netbsd-arm64), const IPPROTO_RSVP = 46
  5992. pkg syscall (netbsd-arm64), const IPPROTO_RSVP ideal-int
  5993. pkg syscall (netbsd-arm64), const IPPROTO_TP = 29
  5994. pkg syscall (netbsd-arm64), const IPPROTO_TP ideal-int
  5995. pkg syscall (netbsd-arm64), const IPPROTO_VRRP = 112
  5996. pkg syscall (netbsd-arm64), const IPPROTO_VRRP ideal-int
  5997. pkg syscall (netbsd-arm64), const IP_RECVDSTADDR = 7
  5998. pkg syscall (netbsd-arm64), const IP_RECVDSTADDR ideal-int
  5999. pkg syscall (netbsd-arm64), const IP_RECVIF = 20
  6000. pkg syscall (netbsd-arm64), const IP_RECVIF ideal-int
  6001. pkg syscall (netbsd-arm64), const IP_RECVOPTS = 5
  6002. pkg syscall (netbsd-arm64), const IP_RECVOPTS ideal-int
  6003. pkg syscall (netbsd-arm64), const IP_RECVRETOPTS = 6
  6004. pkg syscall (netbsd-arm64), const IP_RECVRETOPTS ideal-int
  6005. pkg syscall (netbsd-arm64), const IP_RECVTTL = 23
  6006. pkg syscall (netbsd-arm64), const IP_RECVTTL ideal-int
  6007. pkg syscall (netbsd-arm64), const IP_RETOPTS = 8
  6008. pkg syscall (netbsd-arm64), const IP_RETOPTS ideal-int
  6009. pkg syscall (netbsd-arm64), const IP_RF = 32768
  6010. pkg syscall (netbsd-arm64), const IP_RF ideal-int
  6011. pkg syscall (netbsd-arm64), const IP_TOS = 3
  6012. pkg syscall (netbsd-arm64), const IP_TTL = 4
  6013. pkg syscall (netbsd-arm64), const IPV6_CHECKSUM = 26
  6014. pkg syscall (netbsd-arm64), const IPV6_CHECKSUM ideal-int
  6015. pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_HOPS = 1
  6016. pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
  6017. pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_LOOP = 1
  6018. pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
  6019. pkg syscall (netbsd-arm64), const IPV6_DEFHLIM = 64
  6020. pkg syscall (netbsd-arm64), const IPV6_DEFHLIM ideal-int
  6021. pkg syscall (netbsd-arm64), const IPV6_DONTFRAG = 62
  6022. pkg syscall (netbsd-arm64), const IPV6_DONTFRAG ideal-int
  6023. pkg syscall (netbsd-arm64), const IPV6_DSTOPTS = 50
  6024. pkg syscall (netbsd-arm64), const IPV6_DSTOPTS ideal-int
  6025. pkg syscall (netbsd-arm64), const IPV6_FAITH = 29
  6026. pkg syscall (netbsd-arm64), const IPV6_FAITH ideal-int
  6027. pkg syscall (netbsd-arm64), const IPV6_FLOWINFO_MASK = 4294967055
  6028. pkg syscall (netbsd-arm64), const IPV6_FLOWINFO_MASK ideal-int
  6029. pkg syscall (netbsd-arm64), const IPV6_FLOWLABEL_MASK = 4294905600
  6030. pkg syscall (netbsd-arm64), const IPV6_FLOWLABEL_MASK ideal-int
  6031. pkg syscall (netbsd-arm64), const IPV6_FRAGTTL = 120
  6032. pkg syscall (netbsd-arm64), const IPV6_FRAGTTL ideal-int
  6033. pkg syscall (netbsd-arm64), const IPV6_HLIMDEC = 1
  6034. pkg syscall (netbsd-arm64), const IPV6_HLIMDEC ideal-int
  6035. pkg syscall (netbsd-arm64), const IPV6_HOPLIMIT = 47
  6036. pkg syscall (netbsd-arm64), const IPV6_HOPLIMIT ideal-int
  6037. pkg syscall (netbsd-arm64), const IPV6_HOPOPTS = 49
  6038. pkg syscall (netbsd-arm64), const IPV6_HOPOPTS ideal-int
  6039. pkg syscall (netbsd-arm64), const IPV6_IPSEC_POLICY = 28
  6040. pkg syscall (netbsd-arm64), const IPV6_IPSEC_POLICY ideal-int
  6041. pkg syscall (netbsd-arm64), const IPV6_JOIN_GROUP = 12
  6042. pkg syscall (netbsd-arm64), const IPV6_LEAVE_GROUP = 13
  6043. pkg syscall (netbsd-arm64), const IPV6_MAXHLIM = 255
  6044. pkg syscall (netbsd-arm64), const IPV6_MAXHLIM ideal-int
  6045. pkg syscall (netbsd-arm64), const IPV6_MAXPACKET = 65535
  6046. pkg syscall (netbsd-arm64), const IPV6_MAXPACKET ideal-int
  6047. pkg syscall (netbsd-arm64), const IPV6_MMTU = 1280
  6048. pkg syscall (netbsd-arm64), const IPV6_MMTU ideal-int
  6049. pkg syscall (netbsd-arm64), const IPV6_MULTICAST_HOPS = 10
  6050. pkg syscall (netbsd-arm64), const IPV6_MULTICAST_IF = 9
  6051. pkg syscall (netbsd-arm64), const IPV6_MULTICAST_LOOP = 11
  6052. pkg syscall (netbsd-arm64), const IPV6_NEXTHOP = 48
  6053. pkg syscall (netbsd-arm64), const IPV6_NEXTHOP ideal-int
  6054. pkg syscall (netbsd-arm64), const IPV6_PATHMTU = 44
  6055. pkg syscall (netbsd-arm64), const IPV6_PATHMTU ideal-int
  6056. pkg syscall (netbsd-arm64), const IPV6_PKTINFO = 46
  6057. pkg syscall (netbsd-arm64), const IPV6_PKTINFO ideal-int
  6058. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE = 14
  6059. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_DEFAULT = 0
  6060. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_DEFAULT ideal-int
  6061. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_HIGH = 1
  6062. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_HIGH ideal-int
  6063. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE ideal-int
  6064. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_LOW = 2
  6065. pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_LOW ideal-int
  6066. pkg syscall (netbsd-arm64), const IPV6_RECVDSTOPTS = 40
  6067. pkg syscall (netbsd-arm64), const IPV6_RECVDSTOPTS ideal-int
  6068. pkg syscall (netbsd-arm64), const IPV6_RECVHOPLIMIT = 37
  6069. pkg syscall (netbsd-arm64), const IPV6_RECVHOPLIMIT ideal-int
  6070. pkg syscall (netbsd-arm64), const IPV6_RECVHOPOPTS = 39
  6071. pkg syscall (netbsd-arm64), const IPV6_RECVHOPOPTS ideal-int
  6072. pkg syscall (netbsd-arm64), const IPV6_RECVPATHMTU = 43
  6073. pkg syscall (netbsd-arm64), const IPV6_RECVPATHMTU ideal-int
  6074. pkg syscall (netbsd-arm64), const IPV6_RECVPKTINFO = 36
  6075. pkg syscall (netbsd-arm64), const IPV6_RECVPKTINFO ideal-int
  6076. pkg syscall (netbsd-arm64), const IPV6_RECVRTHDR = 38
  6077. pkg syscall (netbsd-arm64), const IPV6_RECVRTHDR ideal-int
  6078. pkg syscall (netbsd-arm64), const IPV6_RECVTCLASS = 57
  6079. pkg syscall (netbsd-arm64), const IPV6_RECVTCLASS ideal-int
  6080. pkg syscall (netbsd-arm64), const IPV6_RTHDR = 51
  6081. pkg syscall (netbsd-arm64), const IPV6_RTHDRDSTOPTS = 35
  6082. pkg syscall (netbsd-arm64), const IPV6_RTHDRDSTOPTS ideal-int
  6083. pkg syscall (netbsd-arm64), const IPV6_RTHDR ideal-int
  6084. pkg syscall (netbsd-arm64), const IPV6_RTHDR_LOOSE = 0
  6085. pkg syscall (netbsd-arm64), const IPV6_RTHDR_LOOSE ideal-int
  6086. pkg syscall (netbsd-arm64), const IPV6_RTHDR_STRICT = 1
  6087. pkg syscall (netbsd-arm64), const IPV6_RTHDR_STRICT ideal-int
  6088. pkg syscall (netbsd-arm64), const IPV6_RTHDR_TYPE_0 = 0
  6089. pkg syscall (netbsd-arm64), const IPV6_RTHDR_TYPE_0 ideal-int
  6090. pkg syscall (netbsd-arm64), const IPV6_SOCKOPT_RESERVED1 = 3
  6091. pkg syscall (netbsd-arm64), const IPV6_SOCKOPT_RESERVED1 ideal-int
  6092. pkg syscall (netbsd-arm64), const IPV6_TCLASS = 61
  6093. pkg syscall (netbsd-arm64), const IPV6_TCLASS ideal-int
  6094. pkg syscall (netbsd-arm64), const IPV6_UNICAST_HOPS = 4
  6095. pkg syscall (netbsd-arm64), const IPV6_USE_MIN_MTU = 42
  6096. pkg syscall (netbsd-arm64), const IPV6_USE_MIN_MTU ideal-int
  6097. pkg syscall (netbsd-arm64), const IPV6_V6ONLY = 27
  6098. pkg syscall (netbsd-arm64), const IPV6_VERSION = 96
  6099. pkg syscall (netbsd-arm64), const IPV6_VERSION ideal-int
  6100. pkg syscall (netbsd-arm64), const IPV6_VERSION_MASK = 240
  6101. pkg syscall (netbsd-arm64), const IPV6_VERSION_MASK ideal-int
  6102. pkg syscall (netbsd-arm64), const ISIG = 128
  6103. pkg syscall (netbsd-arm64), const ISIG ideal-int
  6104. pkg syscall (netbsd-arm64), const ISTRIP = 32
  6105. pkg syscall (netbsd-arm64), const ISTRIP ideal-int
  6106. pkg syscall (netbsd-arm64), const IXANY = 2048
  6107. pkg syscall (netbsd-arm64), const IXANY ideal-int
  6108. pkg syscall (netbsd-arm64), const IXOFF = 1024
  6109. pkg syscall (netbsd-arm64), const IXOFF ideal-int
  6110. pkg syscall (netbsd-arm64), const IXON = 512
  6111. pkg syscall (netbsd-arm64), const IXON ideal-int
  6112. pkg syscall (netbsd-arm64), const LOCK_EX = 2
  6113. pkg syscall (netbsd-arm64), const LOCK_EX ideal-int
  6114. pkg syscall (netbsd-arm64), const LOCK_NB = 4
  6115. pkg syscall (netbsd-arm64), const LOCK_NB ideal-int
  6116. pkg syscall (netbsd-arm64), const LOCK_SH = 1
  6117. pkg syscall (netbsd-arm64), const LOCK_SH ideal-int
  6118. pkg syscall (netbsd-arm64), const LOCK_UN = 8
  6119. pkg syscall (netbsd-arm64), const LOCK_UN ideal-int
  6120. pkg syscall (netbsd-arm64), const MADV_DONTNEED = 4
  6121. pkg syscall (netbsd-arm64), const MADV_DONTNEED ideal-int
  6122. pkg syscall (netbsd-arm64), const MADV_FREE = 6
  6123. pkg syscall (netbsd-arm64), const MADV_FREE ideal-int
  6124. pkg syscall (netbsd-arm64), const MADV_NORMAL = 0
  6125. pkg syscall (netbsd-arm64), const MADV_NORMAL ideal-int
  6126. pkg syscall (netbsd-arm64), const MADV_RANDOM = 1
  6127. pkg syscall (netbsd-arm64), const MADV_RANDOM ideal-int
  6128. pkg syscall (netbsd-arm64), const MADV_SEQUENTIAL = 2
  6129. pkg syscall (netbsd-arm64), const MADV_SEQUENTIAL ideal-int
  6130. pkg syscall (netbsd-arm64), const MADV_SPACEAVAIL = 5
  6131. pkg syscall (netbsd-arm64), const MADV_SPACEAVAIL ideal-int
  6132. pkg syscall (netbsd-arm64), const MADV_WILLNEED = 3
  6133. pkg syscall (netbsd-arm64), const MADV_WILLNEED ideal-int
  6134. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_16MB = 402653184
  6135. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_16MB ideal-int
  6136. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_1TB = 671088640
  6137. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_1TB ideal-int
  6138. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_256TB = 805306368
  6139. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_256TB ideal-int
  6140. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_4GB = 536870912
  6141. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_4GB ideal-int
  6142. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64KB = 268435456
  6143. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64KB ideal-int
  6144. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64PB = 939524096
  6145. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64PB ideal-int
  6146. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_MASK = -16777216
  6147. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_MASK ideal-int
  6148. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_SHIFT = 24
  6149. pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_SHIFT ideal-int
  6150. pkg syscall (netbsd-arm64), const MAP_ANON = 4096
  6151. pkg syscall (netbsd-arm64), const MAP_ANON ideal-int
  6152. pkg syscall (netbsd-arm64), const MAP_FILE = 0
  6153. pkg syscall (netbsd-arm64), const MAP_FILE ideal-int
  6154. pkg syscall (netbsd-arm64), const MAP_FIXED = 16
  6155. pkg syscall (netbsd-arm64), const MAP_FIXED ideal-int
  6156. pkg syscall (netbsd-arm64), const MAP_HASSEMAPHORE = 512
  6157. pkg syscall (netbsd-arm64), const MAP_HASSEMAPHORE ideal-int
  6158. pkg syscall (netbsd-arm64), const MAP_INHERIT = 128
  6159. pkg syscall (netbsd-arm64), const MAP_INHERIT_COPY = 1
  6160. pkg syscall (netbsd-arm64), const MAP_INHERIT_COPY ideal-int
  6161. pkg syscall (netbsd-arm64), const MAP_INHERIT_DEFAULT = 1
  6162. pkg syscall (netbsd-arm64), const MAP_INHERIT_DEFAULT ideal-int
  6163. pkg syscall (netbsd-arm64), const MAP_INHERIT_DONATE_COPY = 3
  6164. pkg syscall (netbsd-arm64), const MAP_INHERIT_DONATE_COPY ideal-int
  6165. pkg syscall (netbsd-arm64), const MAP_INHERIT ideal-int
  6166. pkg syscall (netbsd-arm64), const MAP_INHERIT_NONE = 2
  6167. pkg syscall (netbsd-arm64), const MAP_INHERIT_NONE ideal-int
  6168. pkg syscall (netbsd-arm64), const MAP_INHERIT_SHARE = 0
  6169. pkg syscall (netbsd-arm64), const MAP_INHERIT_SHARE ideal-int
  6170. pkg syscall (netbsd-arm64), const MAP_NORESERVE = 64
  6171. pkg syscall (netbsd-arm64), const MAP_NORESERVE ideal-int
  6172. pkg syscall (netbsd-arm64), const MAP_PRIVATE = 2
  6173. pkg syscall (netbsd-arm64), const MAP_PRIVATE ideal-int
  6174. pkg syscall (netbsd-arm64), const MAP_RENAME = 32
  6175. pkg syscall (netbsd-arm64), const MAP_RENAME ideal-int
  6176. pkg syscall (netbsd-arm64), const MAP_SHARED = 1
  6177. pkg syscall (netbsd-arm64), const MAP_SHARED ideal-int
  6178. pkg syscall (netbsd-arm64), const MAP_STACK = 8192
  6179. pkg syscall (netbsd-arm64), const MAP_STACK ideal-int
  6180. pkg syscall (netbsd-arm64), const MAP_TRYFIXED = 1024
  6181. pkg syscall (netbsd-arm64), const MAP_TRYFIXED ideal-int
  6182. pkg syscall (netbsd-arm64), const MAP_WIRED = 2048
  6183. pkg syscall (netbsd-arm64), const MAP_WIRED ideal-int
  6184. pkg syscall (netbsd-arm64), const MCL_CURRENT = 1
  6185. pkg syscall (netbsd-arm64), const MCL_CURRENT ideal-int
  6186. pkg syscall (netbsd-arm64), const MCL_FUTURE = 2
  6187. pkg syscall (netbsd-arm64), const MCL_FUTURE ideal-int
  6188. pkg syscall (netbsd-arm64), const MS_ASYNC = 1
  6189. pkg syscall (netbsd-arm64), const MS_ASYNC ideal-int
  6190. pkg syscall (netbsd-arm64), const MSG_BCAST = 256
  6191. pkg syscall (netbsd-arm64), const MSG_BCAST ideal-int
  6192. pkg syscall (netbsd-arm64), const MSG_CMSG_CLOEXEC = 2048
  6193. pkg syscall (netbsd-arm64), const MSG_CMSG_CLOEXEC ideal-int
  6194. pkg syscall (netbsd-arm64), const MSG_CONTROLMBUF = 33554432
  6195. pkg syscall (netbsd-arm64), const MSG_CONTROLMBUF ideal-int
  6196. pkg syscall (netbsd-arm64), const MSG_CTRUNC = 32
  6197. pkg syscall (netbsd-arm64), const MSG_CTRUNC ideal-int
  6198. pkg syscall (netbsd-arm64), const MSG_DONTROUTE = 4
  6199. pkg syscall (netbsd-arm64), const MSG_DONTROUTE ideal-int
  6200. pkg syscall (netbsd-arm64), const MSG_DONTWAIT = 128
  6201. pkg syscall (netbsd-arm64), const MSG_DONTWAIT ideal-int
  6202. pkg syscall (netbsd-arm64), const MSG_EOR = 8
  6203. pkg syscall (netbsd-arm64), const MSG_EOR ideal-int
  6204. pkg syscall (netbsd-arm64), const MSG_IOVUSRSPACE = 67108864
  6205. pkg syscall (netbsd-arm64), const MSG_IOVUSRSPACE ideal-int
  6206. pkg syscall (netbsd-arm64), const MSG_LENUSRSPACE = 134217728
  6207. pkg syscall (netbsd-arm64), const MSG_LENUSRSPACE ideal-int
  6208. pkg syscall (netbsd-arm64), const MSG_MCAST = 512
  6209. pkg syscall (netbsd-arm64), const MSG_MCAST ideal-int
  6210. pkg syscall (netbsd-arm64), const MSG_NAMEMBUF = 16777216
  6211. pkg syscall (netbsd-arm64), const MSG_NAMEMBUF ideal-int
  6212. pkg syscall (netbsd-arm64), const MSG_NBIO = 4096
  6213. pkg syscall (netbsd-arm64), const MSG_NBIO ideal-int
  6214. pkg syscall (netbsd-arm64), const MSG_NOSIGNAL = 1024
  6215. pkg syscall (netbsd-arm64), const MSG_NOSIGNAL ideal-int
  6216. pkg syscall (netbsd-arm64), const MSG_OOB = 1
  6217. pkg syscall (netbsd-arm64), const MSG_OOB ideal-int
  6218. pkg syscall (netbsd-arm64), const MSG_PEEK = 2
  6219. pkg syscall (netbsd-arm64), const MSG_PEEK ideal-int
  6220. pkg syscall (netbsd-arm64), const MSG_TRUNC = 16
  6221. pkg syscall (netbsd-arm64), const MSG_TRUNC ideal-int
  6222. pkg syscall (netbsd-arm64), const MSG_USERFLAGS = 16777215
  6223. pkg syscall (netbsd-arm64), const MSG_USERFLAGS ideal-int
  6224. pkg syscall (netbsd-arm64), const MSG_WAITALL = 64
  6225. pkg syscall (netbsd-arm64), const MSG_WAITALL ideal-int
  6226. pkg syscall (netbsd-arm64), const MS_INVALIDATE = 2
  6227. pkg syscall (netbsd-arm64), const MS_INVALIDATE ideal-int
  6228. pkg syscall (netbsd-arm64), const MS_SYNC = 4
  6229. pkg syscall (netbsd-arm64), const MS_SYNC ideal-int
  6230. pkg syscall (netbsd-arm64), const NAME_MAX = 511
  6231. pkg syscall (netbsd-arm64), const NAME_MAX ideal-int
  6232. pkg syscall (netbsd-arm64), const NET_RT_DUMP = 1
  6233. pkg syscall (netbsd-arm64), const NET_RT_DUMP ideal-int
  6234. pkg syscall (netbsd-arm64), const NET_RT_FLAGS = 2
  6235. pkg syscall (netbsd-arm64), const NET_RT_FLAGS ideal-int
  6236. pkg syscall (netbsd-arm64), const NET_RT_IFLIST = 5
  6237. pkg syscall (netbsd-arm64), const NET_RT_IFLIST ideal-int
  6238. pkg syscall (netbsd-arm64), const NET_RT_MAXID = 6
  6239. pkg syscall (netbsd-arm64), const NET_RT_MAXID ideal-int
  6240. pkg syscall (netbsd-arm64), const NET_RT_OIFLIST = 4
  6241. pkg syscall (netbsd-arm64), const NET_RT_OIFLIST ideal-int
  6242. pkg syscall (netbsd-arm64), const NET_RT_OOIFLIST = 3
  6243. pkg syscall (netbsd-arm64), const NET_RT_OOIFLIST ideal-int
  6244. pkg syscall (netbsd-arm64), const NOFLSH = 2147483648
  6245. pkg syscall (netbsd-arm64), const NOFLSH ideal-int
  6246. pkg syscall (netbsd-arm64), const NOTE_ATTRIB = 8
  6247. pkg syscall (netbsd-arm64), const NOTE_ATTRIB ideal-int
  6248. pkg syscall (netbsd-arm64), const NOTE_CHILD = 4
  6249. pkg syscall (netbsd-arm64), const NOTE_CHILD ideal-int
  6250. pkg syscall (netbsd-arm64), const NOTE_DELETE = 1
  6251. pkg syscall (netbsd-arm64), const NOTE_DELETE ideal-int
  6252. pkg syscall (netbsd-arm64), const NOTE_EXEC = 536870912
  6253. pkg syscall (netbsd-arm64), const NOTE_EXEC ideal-int
  6254. pkg syscall (netbsd-arm64), const NOTE_EXIT = 2147483648
  6255. pkg syscall (netbsd-arm64), const NOTE_EXIT ideal-int
  6256. pkg syscall (netbsd-arm64), const NOTE_EXTEND = 4
  6257. pkg syscall (netbsd-arm64), const NOTE_EXTEND ideal-int
  6258. pkg syscall (netbsd-arm64), const NOTE_FORK = 1073741824
  6259. pkg syscall (netbsd-arm64), const NOTE_FORK ideal-int
  6260. pkg syscall (netbsd-arm64), const NOTE_LINK = 16
  6261. pkg syscall (netbsd-arm64), const NOTE_LINK ideal-int
  6262. pkg syscall (netbsd-arm64), const NOTE_LOWAT = 1
  6263. pkg syscall (netbsd-arm64), const NOTE_LOWAT ideal-int
  6264. pkg syscall (netbsd-arm64), const NOTE_PCTRLMASK = 4026531840
  6265. pkg syscall (netbsd-arm64), const NOTE_PCTRLMASK ideal-int
  6266. pkg syscall (netbsd-arm64), const NOTE_PDATAMASK = 1048575
  6267. pkg syscall (netbsd-arm64), const NOTE_PDATAMASK ideal-int
  6268. pkg syscall (netbsd-arm64), const NOTE_RENAME = 32
  6269. pkg syscall (netbsd-arm64), const NOTE_RENAME ideal-int
  6270. pkg syscall (netbsd-arm64), const NOTE_REVOKE = 64
  6271. pkg syscall (netbsd-arm64), const NOTE_REVOKE ideal-int
  6272. pkg syscall (netbsd-arm64), const NOTE_TRACK = 1
  6273. pkg syscall (netbsd-arm64), const NOTE_TRACKERR = 2
  6274. pkg syscall (netbsd-arm64), const NOTE_TRACKERR ideal-int
  6275. pkg syscall (netbsd-arm64), const NOTE_TRACK ideal-int
  6276. pkg syscall (netbsd-arm64), const NOTE_WRITE = 2
  6277. pkg syscall (netbsd-arm64), const NOTE_WRITE ideal-int
  6278. pkg syscall (netbsd-arm64), const O_ACCMODE = 3
  6279. pkg syscall (netbsd-arm64), const O_ACCMODE ideal-int
  6280. pkg syscall (netbsd-arm64), const O_ALT_IO = 262144
  6281. pkg syscall (netbsd-arm64), const O_ALT_IO ideal-int
  6282. pkg syscall (netbsd-arm64), const O_APPEND = 8
  6283. pkg syscall (netbsd-arm64), const O_ASYNC = 64
  6284. pkg syscall (netbsd-arm64), const O_CLOEXEC = 4194304
  6285. pkg syscall (netbsd-arm64), const O_CREAT = 512
  6286. pkg syscall (netbsd-arm64), const OCRNL = 16
  6287. pkg syscall (netbsd-arm64), const OCRNL ideal-int
  6288. pkg syscall (netbsd-arm64), const O_DIRECT = 524288
  6289. pkg syscall (netbsd-arm64), const O_DIRECT ideal-int
  6290. pkg syscall (netbsd-arm64), const O_DIRECTORY = 2097152
  6291. pkg syscall (netbsd-arm64), const O_DIRECTORY ideal-int
  6292. pkg syscall (netbsd-arm64), const O_DSYNC = 65536
  6293. pkg syscall (netbsd-arm64), const O_DSYNC ideal-int
  6294. pkg syscall (netbsd-arm64), const O_EXCL = 2048
  6295. pkg syscall (netbsd-arm64), const O_EXLOCK = 32
  6296. pkg syscall (netbsd-arm64), const O_EXLOCK ideal-int
  6297. pkg syscall (netbsd-arm64), const OFIOGETBMAP = 3221513850
  6298. pkg syscall (netbsd-arm64), const OFIOGETBMAP ideal-int
  6299. pkg syscall (netbsd-arm64), const O_FSYNC = 128
  6300. pkg syscall (netbsd-arm64), const O_FSYNC ideal-int
  6301. pkg syscall (netbsd-arm64), const O_NDELAY = 4
  6302. pkg syscall (netbsd-arm64), const O_NDELAY ideal-int
  6303. pkg syscall (netbsd-arm64), const ONLCR = 2
  6304. pkg syscall (netbsd-arm64), const ONLCR ideal-int
  6305. pkg syscall (netbsd-arm64), const ONLRET = 64
  6306. pkg syscall (netbsd-arm64), const ONLRET ideal-int
  6307. pkg syscall (netbsd-arm64), const ONOCR = 32
  6308. pkg syscall (netbsd-arm64), const ONOCR ideal-int
  6309. pkg syscall (netbsd-arm64), const O_NOCTTY = 32768
  6310. pkg syscall (netbsd-arm64), const ONOEOT = 8
  6311. pkg syscall (netbsd-arm64), const ONOEOT ideal-int
  6312. pkg syscall (netbsd-arm64), const O_NOFOLLOW = 256
  6313. pkg syscall (netbsd-arm64), const O_NOFOLLOW ideal-int
  6314. pkg syscall (netbsd-arm64), const O_NONBLOCK = 4
  6315. pkg syscall (netbsd-arm64), const O_NOSIGPIPE = 16777216
  6316. pkg syscall (netbsd-arm64), const O_NOSIGPIPE ideal-int
  6317. pkg syscall (netbsd-arm64), const OPOST = 1
  6318. pkg syscall (netbsd-arm64), const OPOST ideal-int
  6319. pkg syscall (netbsd-arm64), const O_RSYNC = 131072
  6320. pkg syscall (netbsd-arm64), const O_RSYNC ideal-int
  6321. pkg syscall (netbsd-arm64), const O_SHLOCK = 16
  6322. pkg syscall (netbsd-arm64), const O_SHLOCK ideal-int
  6323. pkg syscall (netbsd-arm64), const O_SYNC = 128
  6324. pkg syscall (netbsd-arm64), const O_TRUNC = 1024
  6325. pkg syscall (netbsd-arm64), const PARENB = 4096
  6326. pkg syscall (netbsd-arm64), const PARENB ideal-int
  6327. pkg syscall (netbsd-arm64), const PARMRK = 8
  6328. pkg syscall (netbsd-arm64), const PARMRK ideal-int
  6329. pkg syscall (netbsd-arm64), const PARODD = 8192
  6330. pkg syscall (netbsd-arm64), const PARODD ideal-int
  6331. pkg syscall (netbsd-arm64), const PENDIN = 536870912
  6332. pkg syscall (netbsd-arm64), const PENDIN ideal-int
  6333. pkg syscall (netbsd-arm64), const PRI_IOFLUSH = 124
  6334. pkg syscall (netbsd-arm64), const PRI_IOFLUSH ideal-int
  6335. pkg syscall (netbsd-arm64), const PRIO_PGRP = 1
  6336. pkg syscall (netbsd-arm64), const PRIO_PGRP ideal-int
  6337. pkg syscall (netbsd-arm64), const PRIO_PROCESS = 0
  6338. pkg syscall (netbsd-arm64), const PRIO_PROCESS ideal-int
  6339. pkg syscall (netbsd-arm64), const PRIO_USER = 2
  6340. pkg syscall (netbsd-arm64), const PRIO_USER ideal-int
  6341. pkg syscall (netbsd-arm64), const PROT_EXEC = 4
  6342. pkg syscall (netbsd-arm64), const PROT_EXEC ideal-int
  6343. pkg syscall (netbsd-arm64), const PROT_NONE = 0
  6344. pkg syscall (netbsd-arm64), const PROT_NONE ideal-int
  6345. pkg syscall (netbsd-arm64), const PROT_READ = 1
  6346. pkg syscall (netbsd-arm64), const PROT_READ ideal-int
  6347. pkg syscall (netbsd-arm64), const PROT_WRITE = 2
  6348. pkg syscall (netbsd-arm64), const PROT_WRITE ideal-int
  6349. pkg syscall (netbsd-arm64), const PTRACE_CONT = 7
  6350. pkg syscall (netbsd-arm64), const PTRACE_CONT ideal-int
  6351. pkg syscall (netbsd-arm64), const PTRACE_KILL = 8
  6352. pkg syscall (netbsd-arm64), const PTRACE_KILL ideal-int
  6353. pkg syscall (netbsd-arm64), const PTRACE_TRACEME = 0
  6354. pkg syscall (netbsd-arm64), const PTRACE_TRACEME ideal-int
  6355. pkg syscall (netbsd-arm64), const RLIM_INFINITY = 9223372036854775807
  6356. pkg syscall (netbsd-arm64), const RLIM_INFINITY ideal-int
  6357. pkg syscall (netbsd-arm64), const RLIMIT_AS = 10
  6358. pkg syscall (netbsd-arm64), const RLIMIT_AS ideal-int
  6359. pkg syscall (netbsd-arm64), const RLIMIT_CORE = 4
  6360. pkg syscall (netbsd-arm64), const RLIMIT_CORE ideal-int
  6361. pkg syscall (netbsd-arm64), const RLIMIT_CPU = 0
  6362. pkg syscall (netbsd-arm64), const RLIMIT_CPU ideal-int
  6363. pkg syscall (netbsd-arm64), const RLIMIT_DATA = 2
  6364. pkg syscall (netbsd-arm64), const RLIMIT_DATA ideal-int
  6365. pkg syscall (netbsd-arm64), const RLIMIT_FSIZE = 1
  6366. pkg syscall (netbsd-arm64), const RLIMIT_FSIZE ideal-int
  6367. pkg syscall (netbsd-arm64), const RLIMIT_NOFILE = 8
  6368. pkg syscall (netbsd-arm64), const RLIMIT_NOFILE ideal-int
  6369. pkg syscall (netbsd-arm64), const RLIMIT_STACK = 3
  6370. pkg syscall (netbsd-arm64), const RLIMIT_STACK ideal-int
  6371. pkg syscall (netbsd-arm64), const RTA_AUTHOR = 64
  6372. pkg syscall (netbsd-arm64), const RTA_AUTHOR ideal-int
  6373. pkg syscall (netbsd-arm64), const RTA_BRD = 128
  6374. pkg syscall (netbsd-arm64), const RTA_BRD ideal-int
  6375. pkg syscall (netbsd-arm64), const RTA_DST = 1
  6376. pkg syscall (netbsd-arm64), const RTA_DST ideal-int
  6377. pkg syscall (netbsd-arm64), const RTA_GATEWAY = 2
  6378. pkg syscall (netbsd-arm64), const RTA_GATEWAY ideal-int
  6379. pkg syscall (netbsd-arm64), const RTA_GENMASK = 8
  6380. pkg syscall (netbsd-arm64), const RTA_GENMASK ideal-int
  6381. pkg syscall (netbsd-arm64), const RTA_IFA = 32
  6382. pkg syscall (netbsd-arm64), const RTA_IFA ideal-int
  6383. pkg syscall (netbsd-arm64), const RTA_IFP = 16
  6384. pkg syscall (netbsd-arm64), const RTA_IFP ideal-int
  6385. pkg syscall (netbsd-arm64), const RTA_NETMASK = 4
  6386. pkg syscall (netbsd-arm64), const RTA_NETMASK ideal-int
  6387. pkg syscall (netbsd-arm64), const RTA_TAG = 256
  6388. pkg syscall (netbsd-arm64), const RTA_TAG ideal-int
  6389. pkg syscall (netbsd-arm64), const RTAX_AUTHOR = 6
  6390. pkg syscall (netbsd-arm64), const RTAX_AUTHOR ideal-int
  6391. pkg syscall (netbsd-arm64), const RTAX_BRD = 7
  6392. pkg syscall (netbsd-arm64), const RTAX_BRD ideal-int
  6393. pkg syscall (netbsd-arm64), const RTAX_DST = 0
  6394. pkg syscall (netbsd-arm64), const RTAX_DST ideal-int
  6395. pkg syscall (netbsd-arm64), const RTAX_GATEWAY = 1
  6396. pkg syscall (netbsd-arm64), const RTAX_GATEWAY ideal-int
  6397. pkg syscall (netbsd-arm64), const RTAX_GENMASK = 3
  6398. pkg syscall (netbsd-arm64), const RTAX_GENMASK ideal-int
  6399. pkg syscall (netbsd-arm64), const RTAX_IFA = 5
  6400. pkg syscall (netbsd-arm64), const RTAX_IFA ideal-int
  6401. pkg syscall (netbsd-arm64), const RTAX_IFP = 4
  6402. pkg syscall (netbsd-arm64), const RTAX_IFP ideal-int
  6403. pkg syscall (netbsd-arm64), const RTAX_MAX = 9
  6404. pkg syscall (netbsd-arm64), const RTAX_MAX ideal-int
  6405. pkg syscall (netbsd-arm64), const RTAX_NETMASK = 2
  6406. pkg syscall (netbsd-arm64), const RTAX_NETMASK ideal-int
  6407. pkg syscall (netbsd-arm64), const RTAX_TAG = 8
  6408. pkg syscall (netbsd-arm64), const RTAX_TAG ideal-int
  6409. pkg syscall (netbsd-arm64), const RTF_ANNOUNCE = 131072
  6410. pkg syscall (netbsd-arm64), const RTF_ANNOUNCE ideal-int
  6411. pkg syscall (netbsd-arm64), const RTF_BLACKHOLE = 4096
  6412. pkg syscall (netbsd-arm64), const RTF_BLACKHOLE ideal-int
  6413. pkg syscall (netbsd-arm64), const RTF_CLONED = 8192
  6414. pkg syscall (netbsd-arm64), const RTF_CLONED ideal-int
  6415. pkg syscall (netbsd-arm64), const RTF_CLONING = 256
  6416. pkg syscall (netbsd-arm64), const RTF_CLONING ideal-int
  6417. pkg syscall (netbsd-arm64), const RTF_DONE = 64
  6418. pkg syscall (netbsd-arm64), const RTF_DONE ideal-int
  6419. pkg syscall (netbsd-arm64), const RTF_DYNAMIC = 16
  6420. pkg syscall (netbsd-arm64), const RTF_DYNAMIC ideal-int
  6421. pkg syscall (netbsd-arm64), const RTF_GATEWAY = 2
  6422. pkg syscall (netbsd-arm64), const RTF_GATEWAY ideal-int
  6423. pkg syscall (netbsd-arm64), const RTF_HOST = 4
  6424. pkg syscall (netbsd-arm64), const RTF_HOST ideal-int
  6425. pkg syscall (netbsd-arm64), const RTF_LLINFO = 1024
  6426. pkg syscall (netbsd-arm64), const RTF_LLINFO ideal-int
  6427. pkg syscall (netbsd-arm64), const RTF_MASK = 128
  6428. pkg syscall (netbsd-arm64), const RTF_MASK ideal-int
  6429. pkg syscall (netbsd-arm64), const RTF_MODIFIED = 32
  6430. pkg syscall (netbsd-arm64), const RTF_MODIFIED ideal-int
  6431. pkg syscall (netbsd-arm64), const RTF_PROTO1 = 32768
  6432. pkg syscall (netbsd-arm64), const RTF_PROTO1 ideal-int
  6433. pkg syscall (netbsd-arm64), const RTF_PROTO2 = 16384
  6434. pkg syscall (netbsd-arm64), const RTF_PROTO2 ideal-int
  6435. pkg syscall (netbsd-arm64), const RTF_REJECT = 8
  6436. pkg syscall (netbsd-arm64), const RTF_REJECT ideal-int
  6437. pkg syscall (netbsd-arm64), const RTF_SRC = 65536
  6438. pkg syscall (netbsd-arm64), const RTF_SRC ideal-int
  6439. pkg syscall (netbsd-arm64), const RTF_STATIC = 2048
  6440. pkg syscall (netbsd-arm64), const RTF_STATIC ideal-int
  6441. pkg syscall (netbsd-arm64), const RTF_UP = 1
  6442. pkg syscall (netbsd-arm64), const RTF_UP ideal-int
  6443. pkg syscall (netbsd-arm64), const RTF_XRESOLVE = 512
  6444. pkg syscall (netbsd-arm64), const RTF_XRESOLVE ideal-int
  6445. pkg syscall (netbsd-arm64), const RTM_ADD = 1
  6446. pkg syscall (netbsd-arm64), const RTM_ADD ideal-int
  6447. pkg syscall (netbsd-arm64), const RTM_CHANGE = 3
  6448. pkg syscall (netbsd-arm64), const RTM_CHANGE ideal-int
  6449. pkg syscall (netbsd-arm64), const RTM_CHGADDR = 21
  6450. pkg syscall (netbsd-arm64), const RTM_CHGADDR ideal-int
  6451. pkg syscall (netbsd-arm64), const RTM_DELADDR = 13
  6452. pkg syscall (netbsd-arm64), const RTM_DELADDR ideal-int
  6453. pkg syscall (netbsd-arm64), const RTM_DELETE = 2
  6454. pkg syscall (netbsd-arm64), const RTM_DELETE ideal-int
  6455. pkg syscall (netbsd-arm64), const RTM_GET = 4
  6456. pkg syscall (netbsd-arm64), const RTM_GET ideal-int
  6457. pkg syscall (netbsd-arm64), const RTM_IEEE80211 = 17
  6458. pkg syscall (netbsd-arm64), const RTM_IEEE80211 ideal-int
  6459. pkg syscall (netbsd-arm64), const RTM_IFANNOUNCE = 16
  6460. pkg syscall (netbsd-arm64), const RTM_IFANNOUNCE ideal-int
  6461. pkg syscall (netbsd-arm64), const RTM_IFINFO = 20
  6462. pkg syscall (netbsd-arm64), const RTM_IFINFO ideal-int
  6463. pkg syscall (netbsd-arm64), const RTM_LLINFO_UPD = 19
  6464. pkg syscall (netbsd-arm64), const RTM_LLINFO_UPD ideal-int
  6465. pkg syscall (netbsd-arm64), const RTM_LOCK = 8
  6466. pkg syscall (netbsd-arm64), const RTM_LOCK ideal-int
  6467. pkg syscall (netbsd-arm64), const RTM_LOSING = 5
  6468. pkg syscall (netbsd-arm64), const RTM_LOSING ideal-int
  6469. pkg syscall (netbsd-arm64), const RTM_MISS = 7
  6470. pkg syscall (netbsd-arm64), const RTM_MISS ideal-int
  6471. pkg syscall (netbsd-arm64), const RTM_NEWADDR = 12
  6472. pkg syscall (netbsd-arm64), const RTM_NEWADDR ideal-int
  6473. pkg syscall (netbsd-arm64), const RTM_OIFINFO = 15
  6474. pkg syscall (netbsd-arm64), const RTM_OIFINFO ideal-int
  6475. pkg syscall (netbsd-arm64), const RTM_OLDADD = 9
  6476. pkg syscall (netbsd-arm64), const RTM_OLDADD ideal-int
  6477. pkg syscall (netbsd-arm64), const RTM_OLDDEL = 10
  6478. pkg syscall (netbsd-arm64), const RTM_OLDDEL ideal-int
  6479. pkg syscall (netbsd-arm64), const RTM_OOIFINFO = 14
  6480. pkg syscall (netbsd-arm64), const RTM_OOIFINFO ideal-int
  6481. pkg syscall (netbsd-arm64), const RTM_REDIRECT = 6
  6482. pkg syscall (netbsd-arm64), const RTM_REDIRECT ideal-int
  6483. pkg syscall (netbsd-arm64), const RTM_RESOLVE = 11
  6484. pkg syscall (netbsd-arm64), const RTM_RESOLVE ideal-int
  6485. pkg syscall (netbsd-arm64), const RTM_RTTUNIT = 1000000
  6486. pkg syscall (netbsd-arm64), const RTM_RTTUNIT ideal-int
  6487. pkg syscall (netbsd-arm64), const RTM_SETGATE = 18
  6488. pkg syscall (netbsd-arm64), const RTM_SETGATE ideal-int
  6489. pkg syscall (netbsd-arm64), const RTM_VERSION = 4
  6490. pkg syscall (netbsd-arm64), const RTM_VERSION ideal-int
  6491. pkg syscall (netbsd-arm64), const RTV_EXPIRE = 4
  6492. pkg syscall (netbsd-arm64), const RTV_EXPIRE ideal-int
  6493. pkg syscall (netbsd-arm64), const RTV_HOPCOUNT = 2
  6494. pkg syscall (netbsd-arm64), const RTV_HOPCOUNT ideal-int
  6495. pkg syscall (netbsd-arm64), const RTV_MTU = 1
  6496. pkg syscall (netbsd-arm64), const RTV_MTU ideal-int
  6497. pkg syscall (netbsd-arm64), const RTV_RPIPE = 8
  6498. pkg syscall (netbsd-arm64), const RTV_RPIPE ideal-int
  6499. pkg syscall (netbsd-arm64), const RTV_RTT = 64
  6500. pkg syscall (netbsd-arm64), const RTV_RTT ideal-int
  6501. pkg syscall (netbsd-arm64), const RTV_RTTVAR = 128
  6502. pkg syscall (netbsd-arm64), const RTV_RTTVAR ideal-int
  6503. pkg syscall (netbsd-arm64), const RTV_SPIPE = 16
  6504. pkg syscall (netbsd-arm64), const RTV_SPIPE ideal-int
  6505. pkg syscall (netbsd-arm64), const RTV_SSTHRESH = 32
  6506. pkg syscall (netbsd-arm64), const RTV_SSTHRESH ideal-int
  6507. pkg syscall (netbsd-arm64), const RUSAGE_CHILDREN = -1
  6508. pkg syscall (netbsd-arm64), const RUSAGE_CHILDREN ideal-int
  6509. pkg syscall (netbsd-arm64), const RUSAGE_SELF = 0
  6510. pkg syscall (netbsd-arm64), const RUSAGE_SELF ideal-int
  6511. pkg syscall (netbsd-arm64), const S_ARCH1 = 65536
  6512. pkg syscall (netbsd-arm64), const S_ARCH1 ideal-int
  6513. pkg syscall (netbsd-arm64), const S_ARCH2 = 131072
  6514. pkg syscall (netbsd-arm64), const S_ARCH2 ideal-int
  6515. pkg syscall (netbsd-arm64), const S_BLKSIZE = 512
  6516. pkg syscall (netbsd-arm64), const S_BLKSIZE ideal-int
  6517. pkg syscall (netbsd-arm64), const SCM_CREDS = 4
  6518. pkg syscall (netbsd-arm64), const SCM_CREDS ideal-int
  6519. pkg syscall (netbsd-arm64), const SCM_RIGHTS = 1
  6520. pkg syscall (netbsd-arm64), const SCM_RIGHTS ideal-int
  6521. pkg syscall (netbsd-arm64), const SCM_TIMESTAMP = 8
  6522. pkg syscall (netbsd-arm64), const SCM_TIMESTAMP ideal-int
  6523. pkg syscall (netbsd-arm64), const S_IEXEC = 64
  6524. pkg syscall (netbsd-arm64), const S_IEXEC ideal-int
  6525. pkg syscall (netbsd-arm64), const S_IFMT = 61440
  6526. pkg syscall (netbsd-arm64), const S_IFWHT = 57344
  6527. pkg syscall (netbsd-arm64), const S_IFWHT ideal-int
  6528. pkg syscall (netbsd-arm64), const SIGBUS = 10
  6529. pkg syscall (netbsd-arm64), const SIGCHLD = 20
  6530. pkg syscall (netbsd-arm64), const SIGCHLD Signal
  6531. pkg syscall (netbsd-arm64), const SIGCONT = 19
  6532. pkg syscall (netbsd-arm64), const SIGCONT Signal
  6533. pkg syscall (netbsd-arm64), const SIGEMT = 7
  6534. pkg syscall (netbsd-arm64), const SIGEMT Signal
  6535. pkg syscall (netbsd-arm64), const SIGINFO = 29
  6536. pkg syscall (netbsd-arm64), const SIGINFO Signal
  6537. pkg syscall (netbsd-arm64), const SIGIO = 23
  6538. pkg syscall (netbsd-arm64), const SIGIO Signal
  6539. pkg syscall (netbsd-arm64), const SIGIOT = 6
  6540. pkg syscall (netbsd-arm64), const SIGIOT Signal
  6541. pkg syscall (netbsd-arm64), const SIGPROF = 27
  6542. pkg syscall (netbsd-arm64), const SIGPROF Signal
  6543. pkg syscall (netbsd-arm64), const SIGPWR = 32
  6544. pkg syscall (netbsd-arm64), const SIGPWR Signal
  6545. pkg syscall (netbsd-arm64), const SIGSTOP = 17
  6546. pkg syscall (netbsd-arm64), const SIGSTOP Signal
  6547. pkg syscall (netbsd-arm64), const SIGSYS = 12
  6548. pkg syscall (netbsd-arm64), const SIGSYS Signal
  6549. pkg syscall (netbsd-arm64), const SIGTSTP = 18
  6550. pkg syscall (netbsd-arm64), const SIGTSTP Signal
  6551. pkg syscall (netbsd-arm64), const SIGTTIN = 21
  6552. pkg syscall (netbsd-arm64), const SIGTTIN Signal
  6553. pkg syscall (netbsd-arm64), const SIGTTOU = 22
  6554. pkg syscall (netbsd-arm64), const SIGTTOU Signal
  6555. pkg syscall (netbsd-arm64), const SIGURG = 16
  6556. pkg syscall (netbsd-arm64), const SIGURG Signal
  6557. pkg syscall (netbsd-arm64), const SIGUSR1 = 30
  6558. pkg syscall (netbsd-arm64), const SIGUSR1 Signal
  6559. pkg syscall (netbsd-arm64), const SIGUSR2 = 31
  6560. pkg syscall (netbsd-arm64), const SIGUSR2 Signal
  6561. pkg syscall (netbsd-arm64), const SIGVTALRM = 26
  6562. pkg syscall (netbsd-arm64), const SIGVTALRM Signal
  6563. pkg syscall (netbsd-arm64), const SIGWINCH = 28
  6564. pkg syscall (netbsd-arm64), const SIGWINCH Signal
  6565. pkg syscall (netbsd-arm64), const SIGXCPU = 24
  6566. pkg syscall (netbsd-arm64), const SIGXCPU Signal
  6567. pkg syscall (netbsd-arm64), const SIGXFSZ = 25
  6568. pkg syscall (netbsd-arm64), const SIGXFSZ Signal
  6569. pkg syscall (netbsd-arm64), const SIOCADDMULTI = 2156947761
  6570. pkg syscall (netbsd-arm64), const SIOCADDMULTI ideal-int
  6571. pkg syscall (netbsd-arm64), const SIOCADDRT = 2151182858
  6572. pkg syscall (netbsd-arm64), const SIOCADDRT ideal-int
  6573. pkg syscall (netbsd-arm64), const SIOCAIFADDR = 2151704858
  6574. pkg syscall (netbsd-arm64), const SIOCAIFADDR ideal-int
  6575. pkg syscall (netbsd-arm64), const SIOCALIFADDR = 2165860636
  6576. pkg syscall (netbsd-arm64), const SIOCALIFADDR ideal-int
  6577. pkg syscall (netbsd-arm64), const SIOCATMARK = 1074033415
  6578. pkg syscall (netbsd-arm64), const SIOCATMARK ideal-int
  6579. pkg syscall (netbsd-arm64), const SIOCDELMULTI = 2156947762
  6580. pkg syscall (netbsd-arm64), const SIOCDELMULTI ideal-int
  6581. pkg syscall (netbsd-arm64), const SIOCDELRT = 2151182859
  6582. pkg syscall (netbsd-arm64), const SIOCDELRT ideal-int
  6583. pkg syscall (netbsd-arm64), const SIOCDIFADDR = 2156947737
  6584. pkg syscall (netbsd-arm64), const SIOCDIFADDR ideal-int
  6585. pkg syscall (netbsd-arm64), const SIOCDIFPHYADDR = 2156947785
  6586. pkg syscall (netbsd-arm64), const SIOCDIFPHYADDR ideal-int
  6587. pkg syscall (netbsd-arm64), const SIOCDLIFADDR = 2165860638
  6588. pkg syscall (netbsd-arm64), const SIOCDLIFADDR ideal-int
  6589. pkg syscall (netbsd-arm64), const SIOCGDRVSPEC = 3223873915
  6590. pkg syscall (netbsd-arm64), const SIOCGDRVSPEC ideal-int
  6591. pkg syscall (netbsd-arm64), const SIOCGETPFSYNC = 3230689784
  6592. pkg syscall (netbsd-arm64), const SIOCGETPFSYNC ideal-int
  6593. pkg syscall (netbsd-arm64), const SIOCGETSGCNT = 3223352628
  6594. pkg syscall (netbsd-arm64), const SIOCGETSGCNT ideal-int
  6595. pkg syscall (netbsd-arm64), const SIOCGETVIFCNT = 3223876915
  6596. pkg syscall (netbsd-arm64), const SIOCGETVIFCNT ideal-int
  6597. pkg syscall (netbsd-arm64), const SIOCGHIWAT = 1074033409
  6598. pkg syscall (netbsd-arm64), const SIOCGHIWAT ideal-int
  6599. pkg syscall (netbsd-arm64), const SIOCGIFADDR = 3230689569
  6600. pkg syscall (netbsd-arm64), const SIOCGIFADDR ideal-int
  6601. pkg syscall (netbsd-arm64), const SIOCGIFADDRPREF = 3231213856
  6602. pkg syscall (netbsd-arm64), const SIOCGIFADDRPREF ideal-int
  6603. pkg syscall (netbsd-arm64), const SIOCGIFALIAS = 3225446683
  6604. pkg syscall (netbsd-arm64), const SIOCGIFALIAS ideal-int
  6605. pkg syscall (netbsd-arm64), const SIOCGIFBRDADDR = 3230689571
  6606. pkg syscall (netbsd-arm64), const SIOCGIFBRDADDR ideal-int
  6607. pkg syscall (netbsd-arm64), const SIOCGIFCAP = 3223349622
  6608. pkg syscall (netbsd-arm64), const SIOCGIFCAP ideal-int
  6609. pkg syscall (netbsd-arm64), const SIOCGIFCONF = 3222300966
  6610. pkg syscall (netbsd-arm64), const SIOCGIFCONF ideal-int
  6611. pkg syscall (netbsd-arm64), const SIOCGIFDATA = 3231213957
  6612. pkg syscall (netbsd-arm64), const SIOCGIFDATA ideal-int
  6613. pkg syscall (netbsd-arm64), const SIOCGIFDLT = 3230689655
  6614. pkg syscall (netbsd-arm64), const SIOCGIFDLT ideal-int
  6615. pkg syscall (netbsd-arm64), const SIOCGIFDSTADDR = 3230689570
  6616. pkg syscall (netbsd-arm64), const SIOCGIFDSTADDR ideal-int
  6617. pkg syscall (netbsd-arm64), const SIOCGIFFLAGS = 3230689553
  6618. pkg syscall (netbsd-arm64), const SIOCGIFFLAGS ideal-int
  6619. pkg syscall (netbsd-arm64), const SIOCGIFGENERIC = 3230689594
  6620. pkg syscall (netbsd-arm64), const SIOCGIFGENERIC ideal-int
  6621. pkg syscall (netbsd-arm64), const SIOCGIFMEDIA = 3224398134
  6622. pkg syscall (netbsd-arm64), const SIOCGIFMEDIA ideal-int
  6623. pkg syscall (netbsd-arm64), const SIOCGIFMETRIC = 3230689559
  6624. pkg syscall (netbsd-arm64), const SIOCGIFMETRIC ideal-int
  6625. pkg syscall (netbsd-arm64), const SIOCGIFMTU = 3230689662
  6626. pkg syscall (netbsd-arm64), const SIOCGIFMTU ideal-int
  6627. pkg syscall (netbsd-arm64), const SIOCGIFNETMASK = 3230689573
  6628. pkg syscall (netbsd-arm64), const SIOCGIFNETMASK ideal-int
  6629. pkg syscall (netbsd-arm64), const SIOCGIFPDSTADDR = 3230689608
  6630. pkg syscall (netbsd-arm64), const SIOCGIFPDSTADDR ideal-int
  6631. pkg syscall (netbsd-arm64), const SIOCGIFPSRCADDR = 3230689607
  6632. pkg syscall (netbsd-arm64), const SIOCGIFPSRCADDR ideal-int
  6633. pkg syscall (netbsd-arm64), const SIOCGLIFADDR = 3239602461
  6634. pkg syscall (netbsd-arm64), const SIOCGLIFADDR ideal-int
  6635. pkg syscall (netbsd-arm64), const SIOCGLIFPHYADDR = 3239602507
  6636. pkg syscall (netbsd-arm64), const SIOCGLIFPHYADDR ideal-int
  6637. pkg syscall (netbsd-arm64), const SIOCGLINKSTR = 3223873927
  6638. pkg syscall (netbsd-arm64), const SIOCGLINKSTR ideal-int
  6639. pkg syscall (netbsd-arm64), const SIOCGLOWAT = 1074033411
  6640. pkg syscall (netbsd-arm64), const SIOCGLOWAT ideal-int
  6641. pkg syscall (netbsd-arm64), const SIOCGPGRP = 1074033417
  6642. pkg syscall (netbsd-arm64), const SIOCGPGRP ideal-int
  6643. pkg syscall (netbsd-arm64), const SIOCGVH = 3230689667
  6644. pkg syscall (netbsd-arm64), const SIOCGVH ideal-int
  6645. pkg syscall (netbsd-arm64), const SIOCIFCREATE = 2156947834
  6646. pkg syscall (netbsd-arm64), const SIOCIFCREATE ideal-int
  6647. pkg syscall (netbsd-arm64), const SIOCIFDESTROY = 2156947833
  6648. pkg syscall (netbsd-arm64), const SIOCIFDESTROY ideal-int
  6649. pkg syscall (netbsd-arm64), const SIOCIFGCLONERS = 3222301048
  6650. pkg syscall (netbsd-arm64), const SIOCIFGCLONERS ideal-int
  6651. pkg syscall (netbsd-arm64), const SIOCINITIFADDR = 3228592516
  6652. pkg syscall (netbsd-arm64), const SIOCINITIFADDR ideal-int
  6653. pkg syscall (netbsd-arm64), const SIOCSDRVSPEC = 2150132091
  6654. pkg syscall (netbsd-arm64), const SIOCSDRVSPEC ideal-int
  6655. pkg syscall (netbsd-arm64), const SIOCSETPFSYNC = 2156947959
  6656. pkg syscall (netbsd-arm64), const SIOCSETPFSYNC ideal-int
  6657. pkg syscall (netbsd-arm64), const SIOCSHIWAT = 2147775232
  6658. pkg syscall (netbsd-arm64), const SIOCSHIWAT ideal-int
  6659. pkg syscall (netbsd-arm64), const SIOCSIFADDR = 2156947724
  6660. pkg syscall (netbsd-arm64), const SIOCSIFADDR ideal-int
  6661. pkg syscall (netbsd-arm64), const SIOCSIFADDRPREF = 2157472031
  6662. pkg syscall (netbsd-arm64), const SIOCSIFADDRPREF ideal-int
  6663. pkg syscall (netbsd-arm64), const SIOCSIFBRDADDR = 2156947731
  6664. pkg syscall (netbsd-arm64), const SIOCSIFBRDADDR ideal-int
  6665. pkg syscall (netbsd-arm64), const SIOCSIFCAP = 2149607797
  6666. pkg syscall (netbsd-arm64), const SIOCSIFCAP ideal-int
  6667. pkg syscall (netbsd-arm64), const SIOCSIFDSTADDR = 2156947726
  6668. pkg syscall (netbsd-arm64), const SIOCSIFDSTADDR ideal-int
  6669. pkg syscall (netbsd-arm64), const SIOCSIFFLAGS = 2156947728
  6670. pkg syscall (netbsd-arm64), const SIOCSIFFLAGS ideal-int
  6671. pkg syscall (netbsd-arm64), const SIOCSIFGENERIC = 2156947769
  6672. pkg syscall (netbsd-arm64), const SIOCSIFGENERIC ideal-int
  6673. pkg syscall (netbsd-arm64), const SIOCSIFMEDIA = 3230689589
  6674. pkg syscall (netbsd-arm64), const SIOCSIFMEDIA ideal-int
  6675. pkg syscall (netbsd-arm64), const SIOCSIFMETRIC = 2156947736
  6676. pkg syscall (netbsd-arm64), const SIOCSIFMETRIC ideal-int
  6677. pkg syscall (netbsd-arm64), const SIOCSIFMTU = 2156947839
  6678. pkg syscall (netbsd-arm64), const SIOCSIFMTU ideal-int
  6679. pkg syscall (netbsd-arm64), const SIOCSIFNETMASK = 2156947734
  6680. pkg syscall (netbsd-arm64), const SIOCSIFNETMASK ideal-int
  6681. pkg syscall (netbsd-arm64), const SIOCSIFPHYADDR = 2151704902
  6682. pkg syscall (netbsd-arm64), const SIOCSIFPHYADDR ideal-int
  6683. pkg syscall (netbsd-arm64), const SIOCSLIFPHYADDR = 2165860682
  6684. pkg syscall (netbsd-arm64), const SIOCSLIFPHYADDR ideal-int
  6685. pkg syscall (netbsd-arm64), const SIOCSLINKSTR = 2150132104
  6686. pkg syscall (netbsd-arm64), const SIOCSLINKSTR ideal-int
  6687. pkg syscall (netbsd-arm64), const SIOCSLOWAT = 2147775234
  6688. pkg syscall (netbsd-arm64), const SIOCSLOWAT ideal-int
  6689. pkg syscall (netbsd-arm64), const SIOCSPGRP = 2147775240
  6690. pkg syscall (netbsd-arm64), const SIOCSPGRP ideal-int
  6691. pkg syscall (netbsd-arm64), const SIOCSVH = 3230689666
  6692. pkg syscall (netbsd-arm64), const SIOCSVH ideal-int
  6693. pkg syscall (netbsd-arm64), const SIOCZIFDATA = 3231213958
  6694. pkg syscall (netbsd-arm64), const SIOCZIFDATA ideal-int
  6695. pkg syscall (netbsd-arm64), const S_IREAD = 256
  6696. pkg syscall (netbsd-arm64), const S_IREAD ideal-int
  6697. pkg syscall (netbsd-arm64), const S_IRGRP = 32
  6698. pkg syscall (netbsd-arm64), const S_IRGRP ideal-int
  6699. pkg syscall (netbsd-arm64), const S_IROTH = 4
  6700. pkg syscall (netbsd-arm64), const S_IROTH ideal-int
  6701. pkg syscall (netbsd-arm64), const S_IRWXG = 56
  6702. pkg syscall (netbsd-arm64), const S_IRWXG ideal-int
  6703. pkg syscall (netbsd-arm64), const S_IRWXO = 7
  6704. pkg syscall (netbsd-arm64), const S_IRWXO ideal-int
  6705. pkg syscall (netbsd-arm64), const S_IRWXU = 448
  6706. pkg syscall (netbsd-arm64), const S_IRWXU ideal-int
  6707. pkg syscall (netbsd-arm64), const S_ISTXT = 512
  6708. pkg syscall (netbsd-arm64), const S_ISTXT ideal-int
  6709. pkg syscall (netbsd-arm64), const S_IWGRP = 16
  6710. pkg syscall (netbsd-arm64), const S_IWGRP ideal-int
  6711. pkg syscall (netbsd-arm64), const S_IWOTH = 2
  6712. pkg syscall (netbsd-arm64), const S_IWOTH ideal-int
  6713. pkg syscall (netbsd-arm64), const S_IWRITE = 128
  6714. pkg syscall (netbsd-arm64), const S_IWRITE ideal-int
  6715. pkg syscall (netbsd-arm64), const S_IXGRP = 8
  6716. pkg syscall (netbsd-arm64), const S_IXGRP ideal-int
  6717. pkg syscall (netbsd-arm64), const S_IXOTH = 1
  6718. pkg syscall (netbsd-arm64), const S_IXOTH ideal-int
  6719. pkg syscall (netbsd-arm64), const SizeofBpfHdr = 32
  6720. pkg syscall (netbsd-arm64), const SizeofBpfHdr ideal-int
  6721. pkg syscall (netbsd-arm64), const SizeofBpfInsn = 8
  6722. pkg syscall (netbsd-arm64), const SizeofBpfInsn ideal-int
  6723. pkg syscall (netbsd-arm64), const SizeofBpfProgram = 16
  6724. pkg syscall (netbsd-arm64), const SizeofBpfProgram ideal-int
  6725. pkg syscall (netbsd-arm64), const SizeofBpfStat = 128
  6726. pkg syscall (netbsd-arm64), const SizeofBpfStat ideal-int
  6727. pkg syscall (netbsd-arm64), const SizeofBpfVersion = 4
  6728. pkg syscall (netbsd-arm64), const SizeofBpfVersion ideal-int
  6729. pkg syscall (netbsd-arm64), const SizeofCmsghdr = 12
  6730. pkg syscall (netbsd-arm64), const SizeofCmsghdr ideal-int
  6731. pkg syscall (netbsd-arm64), const SizeofICMPv6Filter = 32
  6732. pkg syscall (netbsd-arm64), const SizeofICMPv6Filter ideal-int
  6733. pkg syscall (netbsd-arm64), const SizeofIfaMsghdr = 24
  6734. pkg syscall (netbsd-arm64), const SizeofIfaMsghdr ideal-int
  6735. pkg syscall (netbsd-arm64), const SizeofIfAnnounceMsghdr = 24
  6736. pkg syscall (netbsd-arm64), const SizeofIfAnnounceMsghdr ideal-int
  6737. pkg syscall (netbsd-arm64), const SizeofIfData = 136
  6738. pkg syscall (netbsd-arm64), const SizeofIfData ideal-int
  6739. pkg syscall (netbsd-arm64), const SizeofIfMsghdr = 152
  6740. pkg syscall (netbsd-arm64), const SizeofIfMsghdr ideal-int
  6741. pkg syscall (netbsd-arm64), const SizeofInet6Pktinfo = 20
  6742. pkg syscall (netbsd-arm64), const SizeofInet6Pktinfo ideal-int
  6743. pkg syscall (netbsd-arm64), const SizeofIPMreq = 8
  6744. pkg syscall (netbsd-arm64), const SizeofIPMreq ideal-int
  6745. pkg syscall (netbsd-arm64), const SizeofIPv6Mreq = 20
  6746. pkg syscall (netbsd-arm64), const SizeofIPv6Mreq ideal-int
  6747. pkg syscall (netbsd-arm64), const SizeofIPv6MTUInfo = 32
  6748. pkg syscall (netbsd-arm64), const SizeofIPv6MTUInfo ideal-int
  6749. pkg syscall (netbsd-arm64), const SizeofLinger = 8
  6750. pkg syscall (netbsd-arm64), const SizeofLinger ideal-int
  6751. pkg syscall (netbsd-arm64), const SizeofMsghdr = 48
  6752. pkg syscall (netbsd-arm64), const SizeofMsghdr ideal-int
  6753. pkg syscall (netbsd-arm64), const SizeofRtMetrics = 80
  6754. pkg syscall (netbsd-arm64), const SizeofRtMetrics ideal-int
  6755. pkg syscall (netbsd-arm64), const SizeofRtMsghdr = 120
  6756. pkg syscall (netbsd-arm64), const SizeofRtMsghdr ideal-int
  6757. pkg syscall (netbsd-arm64), const SizeofSockaddrAny = 108
  6758. pkg syscall (netbsd-arm64), const SizeofSockaddrAny ideal-int
  6759. pkg syscall (netbsd-arm64), const SizeofSockaddrDatalink = 20
  6760. pkg syscall (netbsd-arm64), const SizeofSockaddrDatalink ideal-int
  6761. pkg syscall (netbsd-arm64), const SizeofSockaddrInet4 = 16
  6762. pkg syscall (netbsd-arm64), const SizeofSockaddrInet4 ideal-int
  6763. pkg syscall (netbsd-arm64), const SizeofSockaddrInet6 = 28
  6764. pkg syscall (netbsd-arm64), const SizeofSockaddrInet6 ideal-int
  6765. pkg syscall (netbsd-arm64), const SizeofSockaddrUnix = 106
  6766. pkg syscall (netbsd-arm64), const SizeofSockaddrUnix ideal-int
  6767. pkg syscall (netbsd-arm64), const S_LOGIN_SET = 1
  6768. pkg syscall (netbsd-arm64), const S_LOGIN_SET ideal-int
  6769. pkg syscall (netbsd-arm64), const SO_ACCEPTCONN = 2
  6770. pkg syscall (netbsd-arm64), const SO_ACCEPTCONN ideal-int
  6771. pkg syscall (netbsd-arm64), const SO_ACCEPTFILTER = 4096
  6772. pkg syscall (netbsd-arm64), const SO_ACCEPTFILTER ideal-int
  6773. pkg syscall (netbsd-arm64), const SO_BROADCAST = 32
  6774. pkg syscall (netbsd-arm64), const SOCK_CLOEXEC = 268435456
  6775. pkg syscall (netbsd-arm64), const SOCK_CLOEXEC ideal-int
  6776. pkg syscall (netbsd-arm64), const SOCK_FLAGS_MASK = 4026531840
  6777. pkg syscall (netbsd-arm64), const SOCK_FLAGS_MASK ideal-int
  6778. pkg syscall (netbsd-arm64), const SOCK_NONBLOCK = 536870912
  6779. pkg syscall (netbsd-arm64), const SOCK_NONBLOCK ideal-int
  6780. pkg syscall (netbsd-arm64), const SOCK_NOSIGPIPE = 1073741824
  6781. pkg syscall (netbsd-arm64), const SOCK_NOSIGPIPE ideal-int
  6782. pkg syscall (netbsd-arm64), const SOCK_RDM = 4
  6783. pkg syscall (netbsd-arm64), const SOCK_RDM ideal-int
  6784. pkg syscall (netbsd-arm64), const SO_DEBUG = 1
  6785. pkg syscall (netbsd-arm64), const SO_DEBUG ideal-int
  6786. pkg syscall (netbsd-arm64), const SO_DONTROUTE = 16
  6787. pkg syscall (netbsd-arm64), const SO_ERROR = 4103
  6788. pkg syscall (netbsd-arm64), const SO_ERROR ideal-int
  6789. pkg syscall (netbsd-arm64), const SO_KEEPALIVE = 8
  6790. pkg syscall (netbsd-arm64), const SO_LINGER = 128
  6791. pkg syscall (netbsd-arm64), const SOL_SOCKET = 65535
  6792. pkg syscall (netbsd-arm64), const SOMAXCONN = 128
  6793. pkg syscall (netbsd-arm64), const SO_NOHEADER = 4106
  6794. pkg syscall (netbsd-arm64), const SO_NOHEADER ideal-int
  6795. pkg syscall (netbsd-arm64), const SO_NOSIGPIPE = 2048
  6796. pkg syscall (netbsd-arm64), const SO_NOSIGPIPE ideal-int
  6797. pkg syscall (netbsd-arm64), const SO_OOBINLINE = 256
  6798. pkg syscall (netbsd-arm64), const SO_OOBINLINE ideal-int
  6799. pkg syscall (netbsd-arm64), const SO_OVERFLOWED = 4105
  6800. pkg syscall (netbsd-arm64), const SO_OVERFLOWED ideal-int
  6801. pkg syscall (netbsd-arm64), const SO_RCVBUF = 4098
  6802. pkg syscall (netbsd-arm64), const SO_RCVLOWAT = 4100
  6803. pkg syscall (netbsd-arm64), const SO_RCVLOWAT ideal-int
  6804. pkg syscall (netbsd-arm64), const SO_RCVTIMEO = 4108
  6805. pkg syscall (netbsd-arm64), const SO_RCVTIMEO ideal-int
  6806. pkg syscall (netbsd-arm64), const SO_REUSEADDR = 4
  6807. pkg syscall (netbsd-arm64), const SO_REUSEPORT = 512
  6808. pkg syscall (netbsd-arm64), const SO_REUSEPORT ideal-int
  6809. pkg syscall (netbsd-arm64), const SO_SNDBUF = 4097
  6810. pkg syscall (netbsd-arm64), const SO_SNDLOWAT = 4099
  6811. pkg syscall (netbsd-arm64), const SO_SNDLOWAT ideal-int
  6812. pkg syscall (netbsd-arm64), const SO_SNDTIMEO = 4107
  6813. pkg syscall (netbsd-arm64), const SO_SNDTIMEO ideal-int
  6814. pkg syscall (netbsd-arm64), const SO_TIMESTAMP = 8192
  6815. pkg syscall (netbsd-arm64), const SO_TIMESTAMP ideal-int
  6816. pkg syscall (netbsd-arm64), const SO_TYPE = 4104
  6817. pkg syscall (netbsd-arm64), const SO_TYPE ideal-int
  6818. pkg syscall (netbsd-arm64), const SO_USELOOPBACK = 64
  6819. pkg syscall (netbsd-arm64), const SO_USELOOPBACK ideal-int
  6820. pkg syscall (netbsd-arm64), const SYS_ACCEPT = 30
  6821. pkg syscall (netbsd-arm64), const SYS_ACCEPT ideal-int
  6822. pkg syscall (netbsd-arm64), const SYS_ACCESS = 33
  6823. pkg syscall (netbsd-arm64), const SYS_ACCESS ideal-int
  6824. pkg syscall (netbsd-arm64), const SYS_ACCT = 51
  6825. pkg syscall (netbsd-arm64), const SYS_ACCT ideal-int
  6826. pkg syscall (netbsd-arm64), const SYS_ADJTIME = 421
  6827. pkg syscall (netbsd-arm64), const SYS_ADJTIME ideal-int
  6828. pkg syscall (netbsd-arm64), const SYS_BIND = 104
  6829. pkg syscall (netbsd-arm64), const SYS_BIND ideal-int
  6830. pkg syscall (netbsd-arm64), const SYS_BREAK = 17
  6831. pkg syscall (netbsd-arm64), const SYS_BREAK ideal-int
  6832. pkg syscall (netbsd-arm64), const SYS_CHDIR = 12
  6833. pkg syscall (netbsd-arm64), const SYS_CHDIR ideal-int
  6834. pkg syscall (netbsd-arm64), const SYS_CHFLAGS = 34
  6835. pkg syscall (netbsd-arm64), const SYS_CHFLAGS ideal-int
  6836. pkg syscall (netbsd-arm64), const SYS_CHMOD = 15
  6837. pkg syscall (netbsd-arm64), const SYS_CHMOD ideal-int
  6838. pkg syscall (netbsd-arm64), const SYS_CHOWN = 16
  6839. pkg syscall (netbsd-arm64), const SYS_CHOWN ideal-int
  6840. pkg syscall (netbsd-arm64), const SYS_CHROOT = 61
  6841. pkg syscall (netbsd-arm64), const SYS_CHROOT ideal-int
  6842. pkg syscall (netbsd-arm64), const SYS_CLOCK_GETRES = 429
  6843. pkg syscall (netbsd-arm64), const SYS_CLOCK_GETRES ideal-int
  6844. pkg syscall (netbsd-arm64), const SYS_CLOCK_GETTIME = 427
  6845. pkg syscall (netbsd-arm64), const SYS_CLOCK_GETTIME ideal-int
  6846. pkg syscall (netbsd-arm64), const SYS_CLOCK_SETTIME = 428
  6847. pkg syscall (netbsd-arm64), const SYS_CLOCK_SETTIME ideal-int
  6848. pkg syscall (netbsd-arm64), const SYS___CLONE = 287
  6849. pkg syscall (netbsd-arm64), const SYS___CLONE ideal-int
  6850. pkg syscall (netbsd-arm64), const SYS_CLOSE = 6
  6851. pkg syscall (netbsd-arm64), const SYS_CLOSE ideal-int
  6852. pkg syscall (netbsd-arm64), const SYS_CONNECT = 98
  6853. pkg syscall (netbsd-arm64), const SYS_CONNECT ideal-int
  6854. pkg syscall (netbsd-arm64), const SYSCTL_VERS_0 = 0
  6855. pkg syscall (netbsd-arm64), const SYSCTL_VERS_0 ideal-int
  6856. pkg syscall (netbsd-arm64), const SYSCTL_VERS_1 = 16777216
  6857. pkg syscall (netbsd-arm64), const SYSCTL_VERS_1 ideal-int
  6858. pkg syscall (netbsd-arm64), const SYSCTL_VERSION = 16777216
  6859. pkg syscall (netbsd-arm64), const SYSCTL_VERSION ideal-int
  6860. pkg syscall (netbsd-arm64), const SYSCTL_VERS_MASK = 4278190080
  6861. pkg syscall (netbsd-arm64), const SYSCTL_VERS_MASK ideal-int
  6862. pkg syscall (netbsd-arm64), const SYS_DUP2 = 90
  6863. pkg syscall (netbsd-arm64), const SYS_DUP2 ideal-int
  6864. pkg syscall (netbsd-arm64), const SYS_DUP3 = 454
  6865. pkg syscall (netbsd-arm64), const SYS_DUP3 ideal-int
  6866. pkg syscall (netbsd-arm64), const SYS_DUP = 41
  6867. pkg syscall (netbsd-arm64), const SYS_DUP ideal-int
  6868. pkg syscall (netbsd-arm64), const SYS_EXECVE = 59
  6869. pkg syscall (netbsd-arm64), const SYS_EXECVE ideal-int
  6870. pkg syscall (netbsd-arm64), const SYS_EXIT = 1
  6871. pkg syscall (netbsd-arm64), const SYS_EXIT ideal-int
  6872. pkg syscall (netbsd-arm64), const SYS_EXTATTRCTL = 360
  6873. pkg syscall (netbsd-arm64), const SYS_EXTATTRCTL ideal-int
  6874. pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FD = 366
  6875. pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FD ideal-int
  6876. pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FILE = 363
  6877. pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FILE ideal-int
  6878. pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_LINK = 369
  6879. pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_LINK ideal-int
  6880. pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FD = 365
  6881. pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FD ideal-int
  6882. pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FILE = 362
  6883. pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FILE ideal-int
  6884. pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_LINK = 368
  6885. pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_LINK ideal-int
  6886. pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FD = 370
  6887. pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FD ideal-int
  6888. pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FILE = 371
  6889. pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FILE ideal-int
  6890. pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_LINK = 372
  6891. pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_LINK ideal-int
  6892. pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FD = 364
  6893. pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FD ideal-int
  6894. pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FILE = 361
  6895. pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FILE ideal-int
  6896. pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_LINK = 367
  6897. pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_LINK ideal-int
  6898. pkg syscall (netbsd-arm64), const SYS_FACCESSAT = 462
  6899. pkg syscall (netbsd-arm64), const SYS_FACCESSAT ideal-int
  6900. pkg syscall (netbsd-arm64), const SYS_FCHDIR = 13
  6901. pkg syscall (netbsd-arm64), const SYS_FCHDIR ideal-int
  6902. pkg syscall (netbsd-arm64), const SYS_FCHFLAGS = 35
  6903. pkg syscall (netbsd-arm64), const SYS_FCHFLAGS ideal-int
  6904. pkg syscall (netbsd-arm64), const SYS_FCHMOD = 124
  6905. pkg syscall (netbsd-arm64), const SYS_FCHMODAT = 463
  6906. pkg syscall (netbsd-arm64), const SYS_FCHMODAT ideal-int
  6907. pkg syscall (netbsd-arm64), const SYS_FCHMOD ideal-int
  6908. pkg syscall (netbsd-arm64), const SYS_FCHOWN = 123
  6909. pkg syscall (netbsd-arm64), const SYS_FCHOWNAT = 464
  6910. pkg syscall (netbsd-arm64), const SYS_FCHOWNAT ideal-int
  6911. pkg syscall (netbsd-arm64), const SYS_FCHOWN ideal-int
  6912. pkg syscall (netbsd-arm64), const SYS_FCHROOT = 297
  6913. pkg syscall (netbsd-arm64), const SYS_FCHROOT ideal-int
  6914. pkg syscall (netbsd-arm64), const SYS_FCNTL = 92
  6915. pkg syscall (netbsd-arm64), const SYS_FCNTL ideal-int
  6916. pkg syscall (netbsd-arm64), const SYS_FDATASYNC = 241
  6917. pkg syscall (netbsd-arm64), const SYS_FDATASYNC ideal-int
  6918. pkg syscall (netbsd-arm64), const SYS_FEXECVE = 465
  6919. pkg syscall (netbsd-arm64), const SYS_FEXECVE ideal-int
  6920. pkg syscall (netbsd-arm64), const SYS_FGETXATTR = 380
  6921. pkg syscall (netbsd-arm64), const SYS_FGETXATTR ideal-int
  6922. pkg syscall (netbsd-arm64), const SYS_FHSTAT = 451
  6923. pkg syscall (netbsd-arm64), const SYS_FHSTAT ideal-int
  6924. pkg syscall (netbsd-arm64), const SYS_FKTRACE = 288
  6925. pkg syscall (netbsd-arm64), const SYS_FKTRACE ideal-int
  6926. pkg syscall (netbsd-arm64), const SYS_FLISTXATTR = 383
  6927. pkg syscall (netbsd-arm64), const SYS_FLISTXATTR ideal-int
  6928. pkg syscall (netbsd-arm64), const SYS_FLOCK = 131
  6929. pkg syscall (netbsd-arm64), const SYS_FLOCK ideal-int
  6930. pkg syscall (netbsd-arm64), const SYS_FORK = 2
  6931. pkg syscall (netbsd-arm64), const SYS_FORK ideal-int
  6932. pkg syscall (netbsd-arm64), const SYS_FPATHCONF = 192
  6933. pkg syscall (netbsd-arm64), const SYS_FPATHCONF ideal-int
  6934. pkg syscall (netbsd-arm64), const SYS_FREMOVEXATTR = 386
  6935. pkg syscall (netbsd-arm64), const SYS_FREMOVEXATTR ideal-int
  6936. pkg syscall (netbsd-arm64), const SYS_FSETXATTR = 377
  6937. pkg syscall (netbsd-arm64), const SYS_FSETXATTR ideal-int
  6938. pkg syscall (netbsd-arm64), const SYS_FSTAT = 440
  6939. pkg syscall (netbsd-arm64), const SYS_FSTATAT = 466
  6940. pkg syscall (netbsd-arm64), const SYS_FSTATAT ideal-int
  6941. pkg syscall (netbsd-arm64), const SYS_FSTAT ideal-int
  6942. pkg syscall (netbsd-arm64), const SYS_FSTATVFS1 = 358
  6943. pkg syscall (netbsd-arm64), const SYS_FSTATVFS1 ideal-int
  6944. pkg syscall (netbsd-arm64), const SYS_FSYNC = 95
  6945. pkg syscall (netbsd-arm64), const SYS_FSYNC ideal-int
  6946. pkg syscall (netbsd-arm64), const SYS_FSYNC_RANGE = 354
  6947. pkg syscall (netbsd-arm64), const SYS_FSYNC_RANGE ideal-int
  6948. pkg syscall (netbsd-arm64), const SYS_FTRUNCATE = 201
  6949. pkg syscall (netbsd-arm64), const SYS_FTRUNCATE ideal-int
  6950. pkg syscall (netbsd-arm64), const SYS_FUTIMENS = 472
  6951. pkg syscall (netbsd-arm64), const SYS_FUTIMENS ideal-int
  6952. pkg syscall (netbsd-arm64), const SYS_FUTIMES = 423
  6953. pkg syscall (netbsd-arm64), const SYS_FUTIMES ideal-int
  6954. pkg syscall (netbsd-arm64), const SYS_GETCONTEXT = 307
  6955. pkg syscall (netbsd-arm64), const SYS_GETCONTEXT ideal-int
  6956. pkg syscall (netbsd-arm64), const SYS___GETCWD = 296
  6957. pkg syscall (netbsd-arm64), const SYS___GETCWD ideal-int
  6958. pkg syscall (netbsd-arm64), const SYS_GETDENTS = 390
  6959. pkg syscall (netbsd-arm64), const SYS_GETDENTS ideal-int
  6960. pkg syscall (netbsd-arm64), const SYS_GETEGID = 43
  6961. pkg syscall (netbsd-arm64), const SYS_GETEGID ideal-int
  6962. pkg syscall (netbsd-arm64), const SYS_GETEUID = 25
  6963. pkg syscall (netbsd-arm64), const SYS_GETEUID ideal-int
  6964. pkg syscall (netbsd-arm64), const SYS_GETFH = 395
  6965. pkg syscall (netbsd-arm64), const SYS_GETFH ideal-int
  6966. pkg syscall (netbsd-arm64), const SYS_GETGID = 47
  6967. pkg syscall (netbsd-arm64), const SYS_GETGID ideal-int
  6968. pkg syscall (netbsd-arm64), const SYS_GETGROUPS = 79
  6969. pkg syscall (netbsd-arm64), const SYS_GETGROUPS ideal-int
  6970. pkg syscall (netbsd-arm64), const SYS_GETITIMER = 426
  6971. pkg syscall (netbsd-arm64), const SYS_GETITIMER ideal-int
  6972. pkg syscall (netbsd-arm64), const SYS___GETLOGIN = 49
  6973. pkg syscall (netbsd-arm64), const SYS___GETLOGIN ideal-int
  6974. pkg syscall (netbsd-arm64), const SYS_GETPEERNAME = 31
  6975. pkg syscall (netbsd-arm64), const SYS_GETPEERNAME ideal-int
  6976. pkg syscall (netbsd-arm64), const SYS_GETPGID = 207
  6977. pkg syscall (netbsd-arm64), const SYS_GETPGID ideal-int
  6978. pkg syscall (netbsd-arm64), const SYS_GETPGRP = 81
  6979. pkg syscall (netbsd-arm64), const SYS_GETPGRP ideal-int
  6980. pkg syscall (netbsd-arm64), const SYS_GETPID = 20
  6981. pkg syscall (netbsd-arm64), const SYS_GETPID ideal-int
  6982. pkg syscall (netbsd-arm64), const SYS_GETPPID = 39
  6983. pkg syscall (netbsd-arm64), const SYS_GETPPID ideal-int
  6984. pkg syscall (netbsd-arm64), const SYS_GETPRIORITY = 100
  6985. pkg syscall (netbsd-arm64), const SYS_GETPRIORITY ideal-int
  6986. pkg syscall (netbsd-arm64), const SYS_GETRLIMIT = 194
  6987. pkg syscall (netbsd-arm64), const SYS_GETRLIMIT ideal-int
  6988. pkg syscall (netbsd-arm64), const SYS_GETRUSAGE = 445
  6989. pkg syscall (netbsd-arm64), const SYS_GETRUSAGE ideal-int
  6990. pkg syscall (netbsd-arm64), const SYS_GETSID = 286
  6991. pkg syscall (netbsd-arm64), const SYS_GETSID ideal-int
  6992. pkg syscall (netbsd-arm64), const SYS_GETSOCKNAME = 32
  6993. pkg syscall (netbsd-arm64), const SYS_GETSOCKNAME ideal-int
  6994. pkg syscall (netbsd-arm64), const SYS_GETSOCKOPT = 118
  6995. pkg syscall (netbsd-arm64), const SYS_GETSOCKOPT ideal-int
  6996. pkg syscall (netbsd-arm64), const SYS_GETTIMEOFDAY = 418
  6997. pkg syscall (netbsd-arm64), const SYS_GETTIMEOFDAY ideal-int
  6998. pkg syscall (netbsd-arm64), const SYS_GETUID = 24
  6999. pkg syscall (netbsd-arm64), const SYS_GETUID ideal-int
  7000. pkg syscall (netbsd-arm64), const SYS_GETVFSSTAT = 356
  7001. pkg syscall (netbsd-arm64), const SYS_GETVFSSTAT ideal-int
  7002. pkg syscall (netbsd-arm64), const SYS_GETXATTR = 378
  7003. pkg syscall (netbsd-arm64), const SYS_GETXATTR ideal-int
  7004. pkg syscall (netbsd-arm64), const SYS_IOCTL = 54
  7005. pkg syscall (netbsd-arm64), const SYS_IOCTL ideal-int
  7006. pkg syscall (netbsd-arm64), const SYS_ISSETUGID = 305
  7007. pkg syscall (netbsd-arm64), const SYS_ISSETUGID ideal-int
  7008. pkg syscall (netbsd-arm64), const SYS_KEVENT = 435
  7009. pkg syscall (netbsd-arm64), const SYS_KEVENT ideal-int
  7010. pkg syscall (netbsd-arm64), const SYS_KILL = 37
  7011. pkg syscall (netbsd-arm64), const SYS_KILL ideal-int
  7012. pkg syscall (netbsd-arm64), const SYS_KQUEUE1 = 455
  7013. pkg syscall (netbsd-arm64), const SYS_KQUEUE1 ideal-int
  7014. pkg syscall (netbsd-arm64), const SYS_KQUEUE = 344
  7015. pkg syscall (netbsd-arm64), const SYS_KQUEUE ideal-int
  7016. pkg syscall (netbsd-arm64), const SYS_KTRACE = 45
  7017. pkg syscall (netbsd-arm64), const SYS_KTRACE ideal-int
  7018. pkg syscall (netbsd-arm64), const SYS_LCHFLAGS = 304
  7019. pkg syscall (netbsd-arm64), const SYS_LCHFLAGS ideal-int
  7020. pkg syscall (netbsd-arm64), const SYS_LCHMOD = 274
  7021. pkg syscall (netbsd-arm64), const SYS_LCHMOD ideal-int
  7022. pkg syscall (netbsd-arm64), const SYS_LCHOWN = 275
  7023. pkg syscall (netbsd-arm64), const SYS_LCHOWN ideal-int
  7024. pkg syscall (netbsd-arm64), const SYS_LGETXATTR = 379
  7025. pkg syscall (netbsd-arm64), const SYS_LGETXATTR ideal-int
  7026. pkg syscall (netbsd-arm64), const SYS_LINK = 9
  7027. pkg syscall (netbsd-arm64), const SYS_LINKAT = 457
  7028. pkg syscall (netbsd-arm64), const SYS_LINKAT ideal-int
  7029. pkg syscall (netbsd-arm64), const SYS_LINK ideal-int
  7030. pkg syscall (netbsd-arm64), const SYS_LISTEN = 106
  7031. pkg syscall (netbsd-arm64), const SYS_LISTEN ideal-int
  7032. pkg syscall (netbsd-arm64), const SYS_LISTXATTR = 381
  7033. pkg syscall (netbsd-arm64), const SYS_LISTXATTR ideal-int
  7034. pkg syscall (netbsd-arm64), const SYS_LLISTXATTR = 382
  7035. pkg syscall (netbsd-arm64), const SYS_LLISTXATTR ideal-int
  7036. pkg syscall (netbsd-arm64), const SYS_LREMOVEXATTR = 385
  7037. pkg syscall (netbsd-arm64), const SYS_LREMOVEXATTR ideal-int
  7038. pkg syscall (netbsd-arm64), const SYS_LSEEK = 199
  7039. pkg syscall (netbsd-arm64), const SYS_LSEEK ideal-int
  7040. pkg syscall (netbsd-arm64), const SYS_LSETXATTR = 376
  7041. pkg syscall (netbsd-arm64), const SYS_LSETXATTR ideal-int
  7042. pkg syscall (netbsd-arm64), const SYS_LSTAT = 441
  7043. pkg syscall (netbsd-arm64), const SYS_LSTAT ideal-int
  7044. pkg syscall (netbsd-arm64), const SYS_LUTIMES = 424
  7045. pkg syscall (netbsd-arm64), const SYS_LUTIMES ideal-int
  7046. pkg syscall (netbsd-arm64), const SYS__LWP_CONTINUE = 314
  7047. pkg syscall (netbsd-arm64), const SYS__LWP_CONTINUE ideal-int
  7048. pkg syscall (netbsd-arm64), const SYS__LWP_CREATE = 309
  7049. pkg syscall (netbsd-arm64), const SYS__LWP_CREATE ideal-int
  7050. pkg syscall (netbsd-arm64), const SYS__LWP_CTL = 325
  7051. pkg syscall (netbsd-arm64), const SYS__LWP_CTL ideal-int
  7052. pkg syscall (netbsd-arm64), const SYS__LWP_DETACH = 319
  7053. pkg syscall (netbsd-arm64), const SYS__LWP_DETACH ideal-int
  7054. pkg syscall (netbsd-arm64), const SYS__LWP_EXIT = 310
  7055. pkg syscall (netbsd-arm64), const SYS__LWP_EXIT ideal-int
  7056. pkg syscall (netbsd-arm64), const SYS__LWP_GETNAME = 324
  7057. pkg syscall (netbsd-arm64), const SYS__LWP_GETNAME ideal-int
  7058. pkg syscall (netbsd-arm64), const SYS__LWP_GETPRIVATE = 316
  7059. pkg syscall (netbsd-arm64), const SYS__LWP_GETPRIVATE ideal-int
  7060. pkg syscall (netbsd-arm64), const SYS__LWP_KILL = 318
  7061. pkg syscall (netbsd-arm64), const SYS__LWP_KILL ideal-int
  7062. pkg syscall (netbsd-arm64), const SYS__LWP_PARK = 434
  7063. pkg syscall (netbsd-arm64), const SYS__LWP_PARK ideal-int
  7064. pkg syscall (netbsd-arm64), const SYS__LWP_SELF = 311
  7065. pkg syscall (netbsd-arm64), const SYS__LWP_SELF ideal-int
  7066. pkg syscall (netbsd-arm64), const SYS__LWP_SETNAME = 323
  7067. pkg syscall (netbsd-arm64), const SYS__LWP_SETNAME ideal-int
  7068. pkg syscall (netbsd-arm64), const SYS__LWP_SETPRIVATE = 317
  7069. pkg syscall (netbsd-arm64), const SYS__LWP_SETPRIVATE ideal-int
  7070. pkg syscall (netbsd-arm64), const SYS__LWP_SUSPEND = 313
  7071. pkg syscall (netbsd-arm64), const SYS__LWP_SUSPEND ideal-int
  7072. pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK = 321
  7073. pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK_ALL = 322
  7074. pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK_ALL ideal-int
  7075. pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK ideal-int
  7076. pkg syscall (netbsd-arm64), const SYS__LWP_WAIT = 312
  7077. pkg syscall (netbsd-arm64), const SYS__LWP_WAIT ideal-int
  7078. pkg syscall (netbsd-arm64), const SYS__LWP_WAKEUP = 315
  7079. pkg syscall (netbsd-arm64), const SYS__LWP_WAKEUP ideal-int
  7080. pkg syscall (netbsd-arm64), const SYS_MADVISE = 75
  7081. pkg syscall (netbsd-arm64), const SYS_MADVISE ideal-int
  7082. pkg syscall (netbsd-arm64), const SYS_MINCORE = 78
  7083. pkg syscall (netbsd-arm64), const SYS_MINCORE ideal-int
  7084. pkg syscall (netbsd-arm64), const SYS_MINHERIT = 273
  7085. pkg syscall (netbsd-arm64), const SYS_MINHERIT ideal-int
  7086. pkg syscall (netbsd-arm64), const SYS_MKDIR = 136
  7087. pkg syscall (netbsd-arm64), const SYS_MKDIRAT = 461
  7088. pkg syscall (netbsd-arm64), const SYS_MKDIRAT ideal-int
  7089. pkg syscall (netbsd-arm64), const SYS_MKDIR ideal-int
  7090. pkg syscall (netbsd-arm64), const SYS_MKFIFO = 132
  7091. pkg syscall (netbsd-arm64), const SYS_MKFIFOAT = 459
  7092. pkg syscall (netbsd-arm64), const SYS_MKFIFOAT ideal-int
  7093. pkg syscall (netbsd-arm64), const SYS_MKFIFO ideal-int
  7094. pkg syscall (netbsd-arm64), const SYS_MKNOD = 450
  7095. pkg syscall (netbsd-arm64), const SYS_MKNODAT = 460
  7096. pkg syscall (netbsd-arm64), const SYS_MKNODAT ideal-int
  7097. pkg syscall (netbsd-arm64), const SYS_MKNOD ideal-int
  7098. pkg syscall (netbsd-arm64), const SYS_MLOCK = 203
  7099. pkg syscall (netbsd-arm64), const SYS_MLOCKALL = 242
  7100. pkg syscall (netbsd-arm64), const SYS_MLOCKALL ideal-int
  7101. pkg syscall (netbsd-arm64), const SYS_MLOCK ideal-int
  7102. pkg syscall (netbsd-arm64), const SYS_MMAP = 197
  7103. pkg syscall (netbsd-arm64), const SYS_MMAP ideal-int
  7104. pkg syscall (netbsd-arm64), const SYS_MODCTL = 246
  7105. pkg syscall (netbsd-arm64), const SYS_MODCTL ideal-int
  7106. pkg syscall (netbsd-arm64), const SYS_MOUNT = 410
  7107. pkg syscall (netbsd-arm64), const SYS_MOUNT ideal-int
  7108. pkg syscall (netbsd-arm64), const SYS_MPROTECT = 74
  7109. pkg syscall (netbsd-arm64), const SYS_MPROTECT ideal-int
  7110. pkg syscall (netbsd-arm64), const SYS_MREMAP = 411
  7111. pkg syscall (netbsd-arm64), const SYS_MREMAP ideal-int
  7112. pkg syscall (netbsd-arm64), const SYS_MSGCTL = 444
  7113. pkg syscall (netbsd-arm64), const SYS_MSGCTL ideal-int
  7114. pkg syscall (netbsd-arm64), const SYS_MSGGET = 225
  7115. pkg syscall (netbsd-arm64), const SYS_MSGGET ideal-int
  7116. pkg syscall (netbsd-arm64), const SYS_MSGRCV = 227
  7117. pkg syscall (netbsd-arm64), const SYS_MSGRCV ideal-int
  7118. pkg syscall (netbsd-arm64), const SYS_MSGSND = 226
  7119. pkg syscall (netbsd-arm64), const SYS_MSGSND ideal-int
  7120. pkg syscall (netbsd-arm64), const SYS_MUNLOCK = 204
  7121. pkg syscall (netbsd-arm64), const SYS_MUNLOCKALL = 243
  7122. pkg syscall (netbsd-arm64), const SYS_MUNLOCKALL ideal-int
  7123. pkg syscall (netbsd-arm64), const SYS_MUNLOCK ideal-int
  7124. pkg syscall (netbsd-arm64), const SYS_MUNMAP = 73
  7125. pkg syscall (netbsd-arm64), const SYS_MUNMAP ideal-int
  7126. pkg syscall (netbsd-arm64), const SYS_NANOSLEEP = 430
  7127. pkg syscall (netbsd-arm64), const SYS_NANOSLEEP ideal-int
  7128. pkg syscall (netbsd-arm64), const SYS_NTP_ADJTIME = 176
  7129. pkg syscall (netbsd-arm64), const SYS_NTP_ADJTIME ideal-int
  7130. pkg syscall (netbsd-arm64), const SYS_NTP_GETTIME = 448
  7131. pkg syscall (netbsd-arm64), const SYS_NTP_GETTIME ideal-int
  7132. pkg syscall (netbsd-arm64), const SYS_OPEN = 5
  7133. pkg syscall (netbsd-arm64), const SYS_OPENAT = 468
  7134. pkg syscall (netbsd-arm64), const SYS_OPENAT ideal-int
  7135. pkg syscall (netbsd-arm64), const SYS_OPEN ideal-int
  7136. pkg syscall (netbsd-arm64), const SYS_PACCEPT = 456
  7137. pkg syscall (netbsd-arm64), const SYS_PACCEPT ideal-int
  7138. pkg syscall (netbsd-arm64), const SYS_PATHCONF = 191
  7139. pkg syscall (netbsd-arm64), const SYS_PATHCONF ideal-int
  7140. pkg syscall (netbsd-arm64), const SYS_PIPE2 = 453
  7141. pkg syscall (netbsd-arm64), const SYS_PIPE2 ideal-int
  7142. pkg syscall (netbsd-arm64), const SYS_PIPE = 42
  7143. pkg syscall (netbsd-arm64), const SYS_PIPE ideal-int
  7144. pkg syscall (netbsd-arm64), const SYS_PMC_CONTROL = 342
  7145. pkg syscall (netbsd-arm64), const SYS_PMC_CONTROL ideal-int
  7146. pkg syscall (netbsd-arm64), const SYS_PMC_GET_INFO = 341
  7147. pkg syscall (netbsd-arm64), const SYS_PMC_GET_INFO ideal-int
  7148. pkg syscall (netbsd-arm64), const SYS_POLL = 209
  7149. pkg syscall (netbsd-arm64), const SYS_POLL ideal-int
  7150. pkg syscall (netbsd-arm64), const SYS_POLLTS = 437
  7151. pkg syscall (netbsd-arm64), const SYS_POLLTS ideal-int
  7152. pkg syscall (netbsd-arm64), const SYS___POSIX_CHOWN = 283
  7153. pkg syscall (netbsd-arm64), const SYS___POSIX_CHOWN ideal-int
  7154. pkg syscall (netbsd-arm64), const SYS_POSIX_FADVISE = 416
  7155. pkg syscall (netbsd-arm64), const SYS_POSIX_FADVISE ideal-int
  7156. pkg syscall (netbsd-arm64), const SYS___POSIX_FCHOWN = 284
  7157. pkg syscall (netbsd-arm64), const SYS___POSIX_FCHOWN ideal-int
  7158. pkg syscall (netbsd-arm64), const SYS___POSIX_LCHOWN = 285
  7159. pkg syscall (netbsd-arm64), const SYS___POSIX_LCHOWN ideal-int
  7160. pkg syscall (netbsd-arm64), const SYS___POSIX_RENAME = 270
  7161. pkg syscall (netbsd-arm64), const SYS___POSIX_RENAME ideal-int
  7162. pkg syscall (netbsd-arm64), const SYS_POSIX_SPAWN = 474
  7163. pkg syscall (netbsd-arm64), const SYS_POSIX_SPAWN ideal-int
  7164. pkg syscall (netbsd-arm64), const SYS_PREAD = 173
  7165. pkg syscall (netbsd-arm64), const SYS_PREAD ideal-int
  7166. pkg syscall (netbsd-arm64), const SYS_PREADV = 289
  7167. pkg syscall (netbsd-arm64), const SYS_PREADV ideal-int
  7168. pkg syscall (netbsd-arm64), const SYS_PROFIL = 44
  7169. pkg syscall (netbsd-arm64), const SYS_PROFIL ideal-int
  7170. pkg syscall (netbsd-arm64), const SYS_PSELECT = 436
  7171. pkg syscall (netbsd-arm64), const SYS_PSELECT ideal-int
  7172. pkg syscall (netbsd-arm64), const SYS_PSET_ASSIGN = 414
  7173. pkg syscall (netbsd-arm64), const SYS_PSET_ASSIGN ideal-int
  7174. pkg syscall (netbsd-arm64), const SYS__PSET_BIND = 415
  7175. pkg syscall (netbsd-arm64), const SYS__PSET_BIND ideal-int
  7176. pkg syscall (netbsd-arm64), const SYS_PSET_CREATE = 412
  7177. pkg syscall (netbsd-arm64), const SYS_PSET_CREATE ideal-int
  7178. pkg syscall (netbsd-arm64), const SYS_PSET_DESTROY = 413
  7179. pkg syscall (netbsd-arm64), const SYS_PSET_DESTROY ideal-int
  7180. pkg syscall (netbsd-arm64), const SYS_PTRACE = 26
  7181. pkg syscall (netbsd-arm64), const SYS_PTRACE ideal-int
  7182. pkg syscall (netbsd-arm64), const SYS_PWRITE = 174
  7183. pkg syscall (netbsd-arm64), const SYS_PWRITE ideal-int
  7184. pkg syscall (netbsd-arm64), const SYS_PWRITEV = 290
  7185. pkg syscall (netbsd-arm64), const SYS_PWRITEV ideal-int
  7186. pkg syscall (netbsd-arm64), const SYS___QUOTACTL = 473
  7187. pkg syscall (netbsd-arm64), const SYS___QUOTACTL ideal-int
  7188. pkg syscall (netbsd-arm64), const SYS_RASCTL = 343
  7189. pkg syscall (netbsd-arm64), const SYS_RASCTL ideal-int
  7190. pkg syscall (netbsd-arm64), const SYS_READ = 3
  7191. pkg syscall (netbsd-arm64), const SYS_READ ideal-int
  7192. pkg syscall (netbsd-arm64), const SYS_READLINK = 58
  7193. pkg syscall (netbsd-arm64), const SYS_READLINKAT = 469
  7194. pkg syscall (netbsd-arm64), const SYS_READLINKAT ideal-int
  7195. pkg syscall (netbsd-arm64), const SYS_READLINK ideal-int
  7196. pkg syscall (netbsd-arm64), const SYS_READV = 120
  7197. pkg syscall (netbsd-arm64), const SYS_READV ideal-int
  7198. pkg syscall (netbsd-arm64), const SYS_REBOOT = 208
  7199. pkg syscall (netbsd-arm64), const SYS_REBOOT ideal-int
  7200. pkg syscall (netbsd-arm64), const SYS_RECVFROM = 29
  7201. pkg syscall (netbsd-arm64), const SYS_RECVFROM ideal-int
  7202. pkg syscall (netbsd-arm64), const SYS_RECVMMSG = 475
  7203. pkg syscall (netbsd-arm64), const SYS_RECVMMSG ideal-int
  7204. pkg syscall (netbsd-arm64), const SYS_RECVMSG = 27
  7205. pkg syscall (netbsd-arm64), const SYS_RECVMSG ideal-int
  7206. pkg syscall (netbsd-arm64), const SYS_REMOVEXATTR = 384
  7207. pkg syscall (netbsd-arm64), const SYS_REMOVEXATTR ideal-int
  7208. pkg syscall (netbsd-arm64), const SYS_RENAME = 128
  7209. pkg syscall (netbsd-arm64), const SYS_RENAMEAT = 458
  7210. pkg syscall (netbsd-arm64), const SYS_RENAMEAT ideal-int
  7211. pkg syscall (netbsd-arm64), const SYS_RENAME ideal-int
  7212. pkg syscall (netbsd-arm64), const SYS_REVOKE = 56
  7213. pkg syscall (netbsd-arm64), const SYS_REVOKE ideal-int
  7214. pkg syscall (netbsd-arm64), const SYS_RMDIR = 137
  7215. pkg syscall (netbsd-arm64), const SYS_RMDIR ideal-int
  7216. pkg syscall (netbsd-arm64), const SYS_SBRK = 69
  7217. pkg syscall (netbsd-arm64), const SYS_SBRK ideal-int
  7218. pkg syscall (netbsd-arm64), const SYS__SCHED_GETAFFINITY = 349
  7219. pkg syscall (netbsd-arm64), const SYS__SCHED_GETAFFINITY ideal-int
  7220. pkg syscall (netbsd-arm64), const SYS__SCHED_GETPARAM = 347
  7221. pkg syscall (netbsd-arm64), const SYS__SCHED_GETPARAM ideal-int
  7222. pkg syscall (netbsd-arm64), const SYS__SCHED_SETAFFINITY = 348
  7223. pkg syscall (netbsd-arm64), const SYS__SCHED_SETAFFINITY ideal-int
  7224. pkg syscall (netbsd-arm64), const SYS__SCHED_SETPARAM = 346
  7225. pkg syscall (netbsd-arm64), const SYS__SCHED_SETPARAM ideal-int
  7226. pkg syscall (netbsd-arm64), const SYS_SCHED_YIELD = 350
  7227. pkg syscall (netbsd-arm64), const SYS_SCHED_YIELD ideal-int
  7228. pkg syscall (netbsd-arm64), const SYS_SELECT = 417
  7229. pkg syscall (netbsd-arm64), const SYS_SELECT ideal-int
  7230. pkg syscall (netbsd-arm64), const SYS_SEMCONFIG = 223
  7231. pkg syscall (netbsd-arm64), const SYS_SEMCONFIG ideal-int
  7232. pkg syscall (netbsd-arm64), const SYS___SEMCTL = 442
  7233. pkg syscall (netbsd-arm64), const SYS___SEMCTL ideal-int
  7234. pkg syscall (netbsd-arm64), const SYS_SEMGET = 221
  7235. pkg syscall (netbsd-arm64), const SYS_SEMGET ideal-int
  7236. pkg syscall (netbsd-arm64), const SYS_SEMOP = 222
  7237. pkg syscall (netbsd-arm64), const SYS_SEMOP ideal-int
  7238. pkg syscall (netbsd-arm64), const SYS_SENDMMSG = 476
  7239. pkg syscall (netbsd-arm64), const SYS_SENDMMSG ideal-int
  7240. pkg syscall (netbsd-arm64), const SYS_SENDMSG = 28
  7241. pkg syscall (netbsd-arm64), const SYS_SENDMSG ideal-int
  7242. pkg syscall (netbsd-arm64), const SYS_SENDTO = 133
  7243. pkg syscall (netbsd-arm64), const SYS_SENDTO ideal-int
  7244. pkg syscall (netbsd-arm64), const SYS_SETCONTEXT = 308
  7245. pkg syscall (netbsd-arm64), const SYS_SETCONTEXT ideal-int
  7246. pkg syscall (netbsd-arm64), const SYS_SETEGID = 182
  7247. pkg syscall (netbsd-arm64), const SYS_SETEGID ideal-int
  7248. pkg syscall (netbsd-arm64), const SYS_SETEUID = 183
  7249. pkg syscall (netbsd-arm64), const SYS_SETEUID ideal-int
  7250. pkg syscall (netbsd-arm64), const SYS_SETGID = 181
  7251. pkg syscall (netbsd-arm64), const SYS_SETGID ideal-int
  7252. pkg syscall (netbsd-arm64), const SYS_SETGROUPS = 80
  7253. pkg syscall (netbsd-arm64), const SYS_SETGROUPS ideal-int
  7254. pkg syscall (netbsd-arm64), const SYS_SETITIMER = 425
  7255. pkg syscall (netbsd-arm64), const SYS_SETITIMER ideal-int
  7256. pkg syscall (netbsd-arm64), const SYS___SETLOGIN = 50
  7257. pkg syscall (netbsd-arm64), const SYS___SETLOGIN ideal-int
  7258. pkg syscall (netbsd-arm64), const SYS_SETPGID = 82
  7259. pkg syscall (netbsd-arm64), const SYS_SETPGID ideal-int
  7260. pkg syscall (netbsd-arm64), const SYS_SETPRIORITY = 96
  7261. pkg syscall (netbsd-arm64), const SYS_SETPRIORITY ideal-int
  7262. pkg syscall (netbsd-arm64), const SYS_SETREGID = 127
  7263. pkg syscall (netbsd-arm64), const SYS_SETREGID ideal-int
  7264. pkg syscall (netbsd-arm64), const SYS_SETREUID = 126
  7265. pkg syscall (netbsd-arm64), const SYS_SETREUID ideal-int
  7266. pkg syscall (netbsd-arm64), const SYS_SETRLIMIT = 195
  7267. pkg syscall (netbsd-arm64), const SYS_SETRLIMIT ideal-int
  7268. pkg syscall (netbsd-arm64), const SYS_SETSID = 147
  7269. pkg syscall (netbsd-arm64), const SYS_SETSID ideal-int
  7270. pkg syscall (netbsd-arm64), const SYS_SETSOCKOPT = 105
  7271. pkg syscall (netbsd-arm64), const SYS_SETSOCKOPT ideal-int
  7272. pkg syscall (netbsd-arm64), const SYS_SETTIMEOFDAY = 419
  7273. pkg syscall (netbsd-arm64), const SYS_SETTIMEOFDAY ideal-int
  7274. pkg syscall (netbsd-arm64), const SYS_SETUID = 23
  7275. pkg syscall (netbsd-arm64), const SYS_SETUID ideal-int
  7276. pkg syscall (netbsd-arm64), const SYS_SETXATTR = 375
  7277. pkg syscall (netbsd-arm64), const SYS_SETXATTR ideal-int
  7278. pkg syscall (netbsd-arm64), const SYS_SHMAT = 228
  7279. pkg syscall (netbsd-arm64), const SYS_SHMAT ideal-int
  7280. pkg syscall (netbsd-arm64), const SYS_SHMCTL = 443
  7281. pkg syscall (netbsd-arm64), const SYS_SHMCTL ideal-int
  7282. pkg syscall (netbsd-arm64), const SYS_SHMDT = 230
  7283. pkg syscall (netbsd-arm64), const SYS_SHMDT ideal-int
  7284. pkg syscall (netbsd-arm64), const SYS_SHMGET = 231
  7285. pkg syscall (netbsd-arm64), const SYS_SHMGET ideal-int
  7286. pkg syscall (netbsd-arm64), const SYS_SHUTDOWN = 134
  7287. pkg syscall (netbsd-arm64), const SYS_SHUTDOWN ideal-int
  7288. pkg syscall (netbsd-arm64), const SYS___SIGACTION_SIGTRAMP = 340
  7289. pkg syscall (netbsd-arm64), const SYS___SIGACTION_SIGTRAMP ideal-int
  7290. pkg syscall (netbsd-arm64), const SYS_SIGQUEUEINFO = 245
  7291. pkg syscall (netbsd-arm64), const SYS_SIGQUEUEINFO ideal-int
  7292. pkg syscall (netbsd-arm64), const SYS___SIGTIMEDWAIT = 431
  7293. pkg syscall (netbsd-arm64), const SYS___SIGTIMEDWAIT ideal-int
  7294. pkg syscall (netbsd-arm64), const SYS_SOCKET = 394
  7295. pkg syscall (netbsd-arm64), const SYS_SOCKET ideal-int
  7296. pkg syscall (netbsd-arm64), const SYS_SOCKETPAIR = 135
  7297. pkg syscall (netbsd-arm64), const SYS_SOCKETPAIR ideal-int
  7298. pkg syscall (netbsd-arm64), const SYS_SSTK = 70
  7299. pkg syscall (netbsd-arm64), const SYS_SSTK ideal-int
  7300. pkg syscall (netbsd-arm64), const SYS_STAT = 439
  7301. pkg syscall (netbsd-arm64), const SYS_STAT ideal-int
  7302. pkg syscall (netbsd-arm64), const SYS_STATVFS1 = 357
  7303. pkg syscall (netbsd-arm64), const SYS_STATVFS1 ideal-int
  7304. pkg syscall (netbsd-arm64), const SYS_SWAPCTL = 271
  7305. pkg syscall (netbsd-arm64), const SYS_SWAPCTL ideal-int
  7306. pkg syscall (netbsd-arm64), const SYS_SYMLINK = 57
  7307. pkg syscall (netbsd-arm64), const SYS_SYMLINKAT = 470
  7308. pkg syscall (netbsd-arm64), const SYS_SYMLINKAT ideal-int
  7309. pkg syscall (netbsd-arm64), const SYS_SYMLINK ideal-int
  7310. pkg syscall (netbsd-arm64), const SYS_SYNC = 36
  7311. pkg syscall (netbsd-arm64), const SYS_SYNC ideal-int
  7312. pkg syscall (netbsd-arm64), const SYS_SYSARCH = 165
  7313. pkg syscall (netbsd-arm64), const SYS_SYSARCH ideal-int
  7314. pkg syscall (netbsd-arm64), const SYS___SYSCTL = 202
  7315. pkg syscall (netbsd-arm64), const SYS___SYSCTL ideal-int
  7316. pkg syscall (netbsd-arm64), const SYS_TIMER_CREATE = 235
  7317. pkg syscall (netbsd-arm64), const SYS_TIMER_CREATE ideal-int
  7318. pkg syscall (netbsd-arm64), const SYS_TIMER_DELETE = 236
  7319. pkg syscall (netbsd-arm64), const SYS_TIMER_DELETE ideal-int
  7320. pkg syscall (netbsd-arm64), const SYS_TIMER_GETOVERRUN = 239
  7321. pkg syscall (netbsd-arm64), const SYS_TIMER_GETOVERRUN ideal-int
  7322. pkg syscall (netbsd-arm64), const SYS_TIMER_GETTIME = 447
  7323. pkg syscall (netbsd-arm64), const SYS_TIMER_GETTIME ideal-int
  7324. pkg syscall (netbsd-arm64), const SYS_TIMER_SETTIME = 446
  7325. pkg syscall (netbsd-arm64), const SYS_TIMER_SETTIME ideal-int
  7326. pkg syscall (netbsd-arm64), const SYS_TRUNCATE = 200
  7327. pkg syscall (netbsd-arm64), const SYS_TRUNCATE ideal-int
  7328. pkg syscall (netbsd-arm64), const SYS_UMASK = 60
  7329. pkg syscall (netbsd-arm64), const SYS_UMASK ideal-int
  7330. pkg syscall (netbsd-arm64), const SYS_UNDELETE = 205
  7331. pkg syscall (netbsd-arm64), const SYS_UNDELETE ideal-int
  7332. pkg syscall (netbsd-arm64), const SYS_UNLINK = 10
  7333. pkg syscall (netbsd-arm64), const SYS_UNLINKAT = 471
  7334. pkg syscall (netbsd-arm64), const SYS_UNLINKAT ideal-int
  7335. pkg syscall (netbsd-arm64), const SYS_UNLINK ideal-int
  7336. pkg syscall (netbsd-arm64), const SYS_UNMOUNT = 22
  7337. pkg syscall (netbsd-arm64), const SYS_UNMOUNT ideal-int
  7338. pkg syscall (netbsd-arm64), const SYS_UTIMENSAT = 467
  7339. pkg syscall (netbsd-arm64), const SYS_UTIMENSAT ideal-int
  7340. pkg syscall (netbsd-arm64), const SYS_UTIMES = 420
  7341. pkg syscall (netbsd-arm64), const SYS_UTIMES ideal-int
  7342. pkg syscall (netbsd-arm64), const SYS_UTRACE = 306
  7343. pkg syscall (netbsd-arm64), const SYS_UTRACE ideal-int
  7344. pkg syscall (netbsd-arm64), const SYS_UUIDGEN = 355
  7345. pkg syscall (netbsd-arm64), const SYS_UUIDGEN ideal-int
  7346. pkg syscall (netbsd-arm64), const SYS_VADVISE = 72
  7347. pkg syscall (netbsd-arm64), const SYS_VADVISE ideal-int
  7348. pkg syscall (netbsd-arm64), const SYS_VFORK = 66
  7349. pkg syscall (netbsd-arm64), const SYS_VFORK ideal-int
  7350. pkg syscall (netbsd-arm64), const SYS_WAIT4 = 449
  7351. pkg syscall (netbsd-arm64), const SYS_WAIT4 ideal-int
  7352. pkg syscall (netbsd-arm64), const SYS_WRITE = 4
  7353. pkg syscall (netbsd-arm64), const SYS_WRITE ideal-int
  7354. pkg syscall (netbsd-arm64), const SYS_WRITEV = 121
  7355. pkg syscall (netbsd-arm64), const SYS_WRITEV ideal-int
  7356. pkg syscall (netbsd-arm64), const TCIFLUSH = 1
  7357. pkg syscall (netbsd-arm64), const TCIFLUSH ideal-int
  7358. pkg syscall (netbsd-arm64), const TCIOFLUSH = 3
  7359. pkg syscall (netbsd-arm64), const TCIOFLUSH ideal-int
  7360. pkg syscall (netbsd-arm64), const TCOFLUSH = 2
  7361. pkg syscall (netbsd-arm64), const TCOFLUSH ideal-int
  7362. pkg syscall (netbsd-arm64), const TCP_CONGCTL = 32
  7363. pkg syscall (netbsd-arm64), const TCP_CONGCTL ideal-int
  7364. pkg syscall (netbsd-arm64), const TCP_KEEPCNT = 6
  7365. pkg syscall (netbsd-arm64), const TCP_KEEPCNT ideal-int
  7366. pkg syscall (netbsd-arm64), const TCP_KEEPIDLE = 3
  7367. pkg syscall (netbsd-arm64), const TCP_KEEPIDLE ideal-int
  7368. pkg syscall (netbsd-arm64), const TCP_KEEPINIT = 7
  7369. pkg syscall (netbsd-arm64), const TCP_KEEPINIT ideal-int
  7370. pkg syscall (netbsd-arm64), const TCP_KEEPINTVL = 5
  7371. pkg syscall (netbsd-arm64), const TCP_KEEPINTVL ideal-int
  7372. pkg syscall (netbsd-arm64), const TCP_MAXBURST = 4
  7373. pkg syscall (netbsd-arm64), const TCP_MAXBURST ideal-int
  7374. pkg syscall (netbsd-arm64), const TCP_MAXSEG = 2
  7375. pkg syscall (netbsd-arm64), const TCP_MAXSEG ideal-int
  7376. pkg syscall (netbsd-arm64), const TCP_MAXWIN = 65535
  7377. pkg syscall (netbsd-arm64), const TCP_MAXWIN ideal-int
  7378. pkg syscall (netbsd-arm64), const TCP_MAX_WINSHIFT = 14
  7379. pkg syscall (netbsd-arm64), const TCP_MAX_WINSHIFT ideal-int
  7380. pkg syscall (netbsd-arm64), const TCP_MD5SIG = 16
  7381. pkg syscall (netbsd-arm64), const TCP_MD5SIG ideal-int
  7382. pkg syscall (netbsd-arm64), const TCP_MINMSS = 216
  7383. pkg syscall (netbsd-arm64), const TCP_MINMSS ideal-int
  7384. pkg syscall (netbsd-arm64), const TCP_MSS = 536
  7385. pkg syscall (netbsd-arm64), const TCP_MSS ideal-int
  7386. pkg syscall (netbsd-arm64), const TCSAFLUSH = 2
  7387. pkg syscall (netbsd-arm64), const TCSAFLUSH ideal-int
  7388. pkg syscall (netbsd-arm64), const TIOCCBRK = 536900730
  7389. pkg syscall (netbsd-arm64), const TIOCCBRK ideal-int
  7390. pkg syscall (netbsd-arm64), const TIOCCDTR = 536900728
  7391. pkg syscall (netbsd-arm64), const TIOCCDTR ideal-int
  7392. pkg syscall (netbsd-arm64), const TIOCCONS = 2147775586
  7393. pkg syscall (netbsd-arm64), const TIOCCONS ideal-int
  7394. pkg syscall (netbsd-arm64), const TIOCDCDTIMESTAMP = 1074820184
  7395. pkg syscall (netbsd-arm64), const TIOCDCDTIMESTAMP ideal-int
  7396. pkg syscall (netbsd-arm64), const TIOCDRAIN = 536900702
  7397. pkg syscall (netbsd-arm64), const TIOCDRAIN ideal-int
  7398. pkg syscall (netbsd-arm64), const TIOCEXCL = 536900621
  7399. pkg syscall (netbsd-arm64), const TIOCEXCL ideal-int
  7400. pkg syscall (netbsd-arm64), const TIOCEXT = 2147775584
  7401. pkg syscall (netbsd-arm64), const TIOCEXT ideal-int
  7402. pkg syscall (netbsd-arm64), const TIOCFLAG_CDTRCTS = 16
  7403. pkg syscall (netbsd-arm64), const TIOCFLAG_CDTRCTS ideal-int
  7404. pkg syscall (netbsd-arm64), const TIOCFLAG_CLOCAL = 2
  7405. pkg syscall (netbsd-arm64), const TIOCFLAG_CLOCAL ideal-int
  7406. pkg syscall (netbsd-arm64), const TIOCFLAG_CRTSCTS = 4
  7407. pkg syscall (netbsd-arm64), const TIOCFLAG_CRTSCTS ideal-int
  7408. pkg syscall (netbsd-arm64), const TIOCFLAG_MDMBUF = 8
  7409. pkg syscall (netbsd-arm64), const TIOCFLAG_MDMBUF ideal-int
  7410. pkg syscall (netbsd-arm64), const TIOCFLAG_SOFTCAR = 1
  7411. pkg syscall (netbsd-arm64), const TIOCFLAG_SOFTCAR ideal-int
  7412. pkg syscall (netbsd-arm64), const TIOCFLUSH = 2147775504
  7413. pkg syscall (netbsd-arm64), const TIOCFLUSH ideal-int
  7414. pkg syscall (netbsd-arm64), const TIOCGETA = 1076655123
  7415. pkg syscall (netbsd-arm64), const TIOCGETA ideal-int
  7416. pkg syscall (netbsd-arm64), const TIOCGETD = 1074033690
  7417. pkg syscall (netbsd-arm64), const TIOCGETD ideal-int
  7418. pkg syscall (netbsd-arm64), const TIOCGFLAGS = 1074033757
  7419. pkg syscall (netbsd-arm64), const TIOCGFLAGS ideal-int
  7420. pkg syscall (netbsd-arm64), const TIOCGLINED = 1075868738
  7421. pkg syscall (netbsd-arm64), const TIOCGLINED ideal-int
  7422. pkg syscall (netbsd-arm64), const TIOCGPGRP = 1074033783
  7423. pkg syscall (netbsd-arm64), const TIOCGPGRP ideal-int
  7424. pkg syscall (netbsd-arm64), const TIOCGQSIZE = 1074033793
  7425. pkg syscall (netbsd-arm64), const TIOCGQSIZE ideal-int
  7426. pkg syscall (netbsd-arm64), const TIOCGRANTPT = 536900679
  7427. pkg syscall (netbsd-arm64), const TIOCGRANTPT ideal-int
  7428. pkg syscall (netbsd-arm64), const TIOCGSID = 1074033763
  7429. pkg syscall (netbsd-arm64), const TIOCGSID ideal-int
  7430. pkg syscall (netbsd-arm64), const TIOCGSIZE = 1074295912
  7431. pkg syscall (netbsd-arm64), const TIOCGSIZE ideal-int
  7432. pkg syscall (netbsd-arm64), const TIOCGWINSZ = 1074295912
  7433. pkg syscall (netbsd-arm64), const TIOCGWINSZ ideal-int
  7434. pkg syscall (netbsd-arm64), const TIOCMBIC = 2147775595
  7435. pkg syscall (netbsd-arm64), const TIOCMBIC ideal-int
  7436. pkg syscall (netbsd-arm64), const TIOCMBIS = 2147775596
  7437. pkg syscall (netbsd-arm64), const TIOCMBIS ideal-int
  7438. pkg syscall (netbsd-arm64), const TIOCM_CAR = 64
  7439. pkg syscall (netbsd-arm64), const TIOCM_CAR ideal-int
  7440. pkg syscall (netbsd-arm64), const TIOCM_CD = 64
  7441. pkg syscall (netbsd-arm64), const TIOCM_CD ideal-int
  7442. pkg syscall (netbsd-arm64), const TIOCM_CTS = 32
  7443. pkg syscall (netbsd-arm64), const TIOCM_CTS ideal-int
  7444. pkg syscall (netbsd-arm64), const TIOCM_DSR = 256
  7445. pkg syscall (netbsd-arm64), const TIOCM_DSR ideal-int
  7446. pkg syscall (netbsd-arm64), const TIOCM_DTR = 2
  7447. pkg syscall (netbsd-arm64), const TIOCM_DTR ideal-int
  7448. pkg syscall (netbsd-arm64), const TIOCMGET = 1074033770
  7449. pkg syscall (netbsd-arm64), const TIOCMGET ideal-int
  7450. pkg syscall (netbsd-arm64), const TIOCM_LE = 1
  7451. pkg syscall (netbsd-arm64), const TIOCM_LE ideal-int
  7452. pkg syscall (netbsd-arm64), const TIOCM_RI = 128
  7453. pkg syscall (netbsd-arm64), const TIOCM_RI ideal-int
  7454. pkg syscall (netbsd-arm64), const TIOCM_RNG = 128
  7455. pkg syscall (netbsd-arm64), const TIOCM_RNG ideal-int
  7456. pkg syscall (netbsd-arm64), const TIOCM_RTS = 4
  7457. pkg syscall (netbsd-arm64), const TIOCM_RTS ideal-int
  7458. pkg syscall (netbsd-arm64), const TIOCMSET = 2147775597
  7459. pkg syscall (netbsd-arm64), const TIOCMSET ideal-int
  7460. pkg syscall (netbsd-arm64), const TIOCM_SR = 16
  7461. pkg syscall (netbsd-arm64), const TIOCM_SR ideal-int
  7462. pkg syscall (netbsd-arm64), const TIOCM_ST = 8
  7463. pkg syscall (netbsd-arm64), const TIOCM_ST ideal-int
  7464. pkg syscall (netbsd-arm64), const TIOCNOTTY = 536900721
  7465. pkg syscall (netbsd-arm64), const TIOCNOTTY ideal-int
  7466. pkg syscall (netbsd-arm64), const TIOCNXCL = 536900622
  7467. pkg syscall (netbsd-arm64), const TIOCNXCL ideal-int
  7468. pkg syscall (netbsd-arm64), const TIOCOUTQ = 1074033779
  7469. pkg syscall (netbsd-arm64), const TIOCOUTQ ideal-int
  7470. pkg syscall (netbsd-arm64), const TIOCPKT = 2147775600
  7471. pkg syscall (netbsd-arm64), const TIOCPKT_DATA = 0
  7472. pkg syscall (netbsd-arm64), const TIOCPKT_DATA ideal-int
  7473. pkg syscall (netbsd-arm64), const TIOCPKT_DOSTOP = 32
  7474. pkg syscall (netbsd-arm64), const TIOCPKT_DOSTOP ideal-int
  7475. pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHREAD = 1
  7476. pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHREAD ideal-int
  7477. pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHWRITE = 2
  7478. pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHWRITE ideal-int
  7479. pkg syscall (netbsd-arm64), const TIOCPKT ideal-int
  7480. pkg syscall (netbsd-arm64), const TIOCPKT_IOCTL = 64
  7481. pkg syscall (netbsd-arm64), const TIOCPKT_IOCTL ideal-int
  7482. pkg syscall (netbsd-arm64), const TIOCPKT_NOSTOP = 16
  7483. pkg syscall (netbsd-arm64), const TIOCPKT_NOSTOP ideal-int
  7484. pkg syscall (netbsd-arm64), const TIOCPKT_START = 8
  7485. pkg syscall (netbsd-arm64), const TIOCPKT_START ideal-int
  7486. pkg syscall (netbsd-arm64), const TIOCPKT_STOP = 4
  7487. pkg syscall (netbsd-arm64), const TIOCPKT_STOP ideal-int
  7488. pkg syscall (netbsd-arm64), const TIOCPTMGET = 1076393030
  7489. pkg syscall (netbsd-arm64), const TIOCPTMGET ideal-int
  7490. pkg syscall (netbsd-arm64), const TIOCPTSNAME = 1076393032
  7491. pkg syscall (netbsd-arm64), const TIOCPTSNAME ideal-int
  7492. pkg syscall (netbsd-arm64), const TIOCRCVFRAME = 2148037701
  7493. pkg syscall (netbsd-arm64), const TIOCRCVFRAME ideal-int
  7494. pkg syscall (netbsd-arm64), const TIOCREMOTE = 2147775593
  7495. pkg syscall (netbsd-arm64), const TIOCREMOTE ideal-int
  7496. pkg syscall (netbsd-arm64), const TIOCSBRK = 536900731
  7497. pkg syscall (netbsd-arm64), const TIOCSBRK ideal-int
  7498. pkg syscall (netbsd-arm64), const TIOCSCTTY = 536900705
  7499. pkg syscall (netbsd-arm64), const TIOCSCTTY ideal-int
  7500. pkg syscall (netbsd-arm64), const TIOCSDTR = 536900729
  7501. pkg syscall (netbsd-arm64), const TIOCSDTR ideal-int
  7502. pkg syscall (netbsd-arm64), const TIOCSETA = 2150396948
  7503. pkg syscall (netbsd-arm64), const TIOCSETAF = 2150396950
  7504. pkg syscall (netbsd-arm64), const TIOCSETAF ideal-int
  7505. pkg syscall (netbsd-arm64), const TIOCSETA ideal-int
  7506. pkg syscall (netbsd-arm64), const TIOCSETAW = 2150396949
  7507. pkg syscall (netbsd-arm64), const TIOCSETAW ideal-int
  7508. pkg syscall (netbsd-arm64), const TIOCSETD = 2147775515
  7509. pkg syscall (netbsd-arm64), const TIOCSETD ideal-int
  7510. pkg syscall (netbsd-arm64), const TIOCSFLAGS = 2147775580
  7511. pkg syscall (netbsd-arm64), const TIOCSFLAGS ideal-int
  7512. pkg syscall (netbsd-arm64), const TIOCSIG = 536900703
  7513. pkg syscall (netbsd-arm64), const TIOCSIG ideal-int
  7514. pkg syscall (netbsd-arm64), const TIOCSLINED = 2149610563
  7515. pkg syscall (netbsd-arm64), const TIOCSLINED ideal-int
  7516. pkg syscall (netbsd-arm64), const TIOCSPGRP = 2147775606
  7517. pkg syscall (netbsd-arm64), const TIOCSPGRP ideal-int
  7518. pkg syscall (netbsd-arm64), const TIOCSQSIZE = 2147775616
  7519. pkg syscall (netbsd-arm64), const TIOCSQSIZE ideal-int
  7520. pkg syscall (netbsd-arm64), const TIOCSSIZE = 2148037735
  7521. pkg syscall (netbsd-arm64), const TIOCSSIZE ideal-int
  7522. pkg syscall (netbsd-arm64), const TIOCSTART = 536900718
  7523. pkg syscall (netbsd-arm64), const TIOCSTART ideal-int
  7524. pkg syscall (netbsd-arm64), const TIOCSTAT = 2147775589
  7525. pkg syscall (netbsd-arm64), const TIOCSTAT ideal-int
  7526. pkg syscall (netbsd-arm64), const TIOCSTI = 2147578994
  7527. pkg syscall (netbsd-arm64), const TIOCSTI ideal-int
  7528. pkg syscall (netbsd-arm64), const TIOCSTOP = 536900719
  7529. pkg syscall (netbsd-arm64), const TIOCSTOP ideal-int
  7530. pkg syscall (netbsd-arm64), const TIOCSWINSZ = 2148037735
  7531. pkg syscall (netbsd-arm64), const TIOCSWINSZ ideal-int
  7532. pkg syscall (netbsd-arm64), const TIOCUCNTL = 2147775590
  7533. pkg syscall (netbsd-arm64), const TIOCUCNTL ideal-int
  7534. pkg syscall (netbsd-arm64), const TIOCXMTFRAME = 2148037700
  7535. pkg syscall (netbsd-arm64), const TIOCXMTFRAME ideal-int
  7536. pkg syscall (netbsd-arm64), const TOSTOP = 4194304
  7537. pkg syscall (netbsd-arm64), const TOSTOP ideal-int
  7538. pkg syscall (netbsd-arm64), const VDISCARD = 15
  7539. pkg syscall (netbsd-arm64), const VDISCARD ideal-int
  7540. pkg syscall (netbsd-arm64), const VDSUSP = 11
  7541. pkg syscall (netbsd-arm64), const VDSUSP ideal-int
  7542. pkg syscall (netbsd-arm64), const VEOF = 0
  7543. pkg syscall (netbsd-arm64), const VEOF ideal-int
  7544. pkg syscall (netbsd-arm64), const VEOL = 1
  7545. pkg syscall (netbsd-arm64), const VEOL2 = 2
  7546. pkg syscall (netbsd-arm64), const VEOL2 ideal-int
  7547. pkg syscall (netbsd-arm64), const VEOL ideal-int
  7548. pkg syscall (netbsd-arm64), const VERASE = 3
  7549. pkg syscall (netbsd-arm64), const VERASE ideal-int
  7550. pkg syscall (netbsd-arm64), const VINTR = 8
  7551. pkg syscall (netbsd-arm64), const VINTR ideal-int
  7552. pkg syscall (netbsd-arm64), const VKILL = 5
  7553. pkg syscall (netbsd-arm64), const VKILL ideal-int
  7554. pkg syscall (netbsd-arm64), const VLNEXT = 14
  7555. pkg syscall (netbsd-arm64), const VLNEXT ideal-int
  7556. pkg syscall (netbsd-arm64), const VMIN = 16
  7557. pkg syscall (netbsd-arm64), const VMIN ideal-int
  7558. pkg syscall (netbsd-arm64), const VQUIT = 9
  7559. pkg syscall (netbsd-arm64), const VQUIT ideal-int
  7560. pkg syscall (netbsd-arm64), const VREPRINT = 6
  7561. pkg syscall (netbsd-arm64), const VREPRINT ideal-int
  7562. pkg syscall (netbsd-arm64), const VSTART = 12
  7563. pkg syscall (netbsd-arm64), const VSTART ideal-int
  7564. pkg syscall (netbsd-arm64), const VSTATUS = 18
  7565. pkg syscall (netbsd-arm64), const VSTATUS ideal-int
  7566. pkg syscall (netbsd-arm64), const VSTOP = 13
  7567. pkg syscall (netbsd-arm64), const VSTOP ideal-int
  7568. pkg syscall (netbsd-arm64), const VSUSP = 10
  7569. pkg syscall (netbsd-arm64), const VSUSP ideal-int
  7570. pkg syscall (netbsd-arm64), const VTIME = 17
  7571. pkg syscall (netbsd-arm64), const VTIME ideal-int
  7572. pkg syscall (netbsd-arm64), const VWERASE = 4
  7573. pkg syscall (netbsd-arm64), const VWERASE ideal-int
  7574. pkg syscall (netbsd-arm64), const WALL = 8
  7575. pkg syscall (netbsd-arm64), const WALL ideal-int
  7576. pkg syscall (netbsd-arm64), const WALLSIG = 8
  7577. pkg syscall (netbsd-arm64), const WALLSIG ideal-int
  7578. pkg syscall (netbsd-arm64), const WALTSIG = 4
  7579. pkg syscall (netbsd-arm64), const WALTSIG ideal-int
  7580. pkg syscall (netbsd-arm64), const WCLONE = 4
  7581. pkg syscall (netbsd-arm64), const WCLONE ideal-int
  7582. pkg syscall (netbsd-arm64), const WCOREFLAG = 128
  7583. pkg syscall (netbsd-arm64), const WCOREFLAG ideal-int
  7584. pkg syscall (netbsd-arm64), const WNOHANG = 1
  7585. pkg syscall (netbsd-arm64), const WNOHANG ideal-int
  7586. pkg syscall (netbsd-arm64), const WNOWAIT = 65536
  7587. pkg syscall (netbsd-arm64), const WNOWAIT ideal-int
  7588. pkg syscall (netbsd-arm64), const WNOZOMBIE = 131072
  7589. pkg syscall (netbsd-arm64), const WNOZOMBIE ideal-int
  7590. pkg syscall (netbsd-arm64), const WOPTSCHECKED = 262144
  7591. pkg syscall (netbsd-arm64), const WOPTSCHECKED ideal-int
  7592. pkg syscall (netbsd-arm64), const WSTOPPED = 127
  7593. pkg syscall (netbsd-arm64), const WSTOPPED ideal-int
  7594. pkg syscall (netbsd-arm64), const WUNTRACED = 2
  7595. pkg syscall (netbsd-arm64), const WUNTRACED ideal-int
  7596. pkg syscall (netbsd-arm64), func Accept4(int, int) (int, Sockaddr, error)
  7597. pkg syscall (netbsd-arm64), func Accept(int) (int, Sockaddr, error)
  7598. pkg syscall (netbsd-arm64), func Access(string, uint32) error
  7599. pkg syscall (netbsd-arm64), func Adjtime(*Timeval, *Timeval) error
  7600. pkg syscall (netbsd-arm64), func Bind(int, Sockaddr) error
  7601. pkg syscall (netbsd-arm64), func BpfBuflen(int) (int, error)
  7602. pkg syscall (netbsd-arm64), func BpfDatalink(int) (int, error)
  7603. pkg syscall (netbsd-arm64), func BpfHeadercmpl(int) (int, error)
  7604. pkg syscall (netbsd-arm64), func BpfInterface(int, string) (string, error)
  7605. pkg syscall (netbsd-arm64), func BpfJump(int, int, int, int) *BpfInsn
  7606. pkg syscall (netbsd-arm64), func BpfStats(int) (*BpfStat, error)
  7607. pkg syscall (netbsd-arm64), func BpfStmt(int, int) *BpfInsn
  7608. pkg syscall (netbsd-arm64), func BpfTimeout(int) (*Timeval, error)
  7609. pkg syscall (netbsd-arm64), func CheckBpfVersion(int) error
  7610. pkg syscall (netbsd-arm64), func Chflags(string, int) error
  7611. pkg syscall (netbsd-arm64), func Chroot(string) error
  7612. pkg syscall (netbsd-arm64), func Close(int) error
  7613. pkg syscall (netbsd-arm64), func CloseOnExec(int)
  7614. pkg syscall (netbsd-arm64), func CmsgLen(int) int
  7615. pkg syscall (netbsd-arm64), func CmsgSpace(int) int
  7616. pkg syscall (netbsd-arm64), func Connect(int, Sockaddr) error
  7617. pkg syscall (netbsd-arm64), func Dup2(int, int) error
  7618. pkg syscall (netbsd-arm64), func Dup(int) (int, error)
  7619. pkg syscall (netbsd-arm64), func Fchdir(int) error
  7620. pkg syscall (netbsd-arm64), func Fchflags(int, int) error
  7621. pkg syscall (netbsd-arm64), func Fchmod(int, uint32) error
  7622. pkg syscall (netbsd-arm64), func Fchown(int, int, int) error
  7623. pkg syscall (netbsd-arm64), func FcntlFlock(uintptr, int, *Flock_t) error
  7624. pkg syscall (netbsd-arm64), func Flock(int, int) error
  7625. pkg syscall (netbsd-arm64), func FlushBpf(int) error
  7626. pkg syscall (netbsd-arm64), func ForkExec(string, []string, *ProcAttr) (int, error)
  7627. pkg syscall (netbsd-arm64), func Fpathconf(int, int) (int, error)
  7628. pkg syscall (netbsd-arm64), func Fstat(int, *Stat_t) error
  7629. pkg syscall (netbsd-arm64), func Fsync(int) error
  7630. pkg syscall (netbsd-arm64), func Ftruncate(int, int64) error
  7631. pkg syscall (netbsd-arm64), func Futimes(int, []Timeval) error
  7632. pkg syscall (netbsd-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error)
  7633. pkg syscall (netbsd-arm64), func Getpeername(int) (Sockaddr, error)
  7634. pkg syscall (netbsd-arm64), func Getpgid(int) (int, error)
  7635. pkg syscall (netbsd-arm64), func Getpgrp() int
  7636. pkg syscall (netbsd-arm64), func Getpriority(int, int) (int, error)
  7637. pkg syscall (netbsd-arm64), func Getrlimit(int, *Rlimit) error
  7638. pkg syscall (netbsd-arm64), func Getrusage(int, *Rusage) error
  7639. pkg syscall (netbsd-arm64), func Getsid(int) (int, error)
  7640. pkg syscall (netbsd-arm64), func Getsockname(int) (Sockaddr, error)
  7641. pkg syscall (netbsd-arm64), func GetsockoptByte(int, int, int) (uint8, error)
  7642. pkg syscall (netbsd-arm64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error)
  7643. pkg syscall (netbsd-arm64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
  7644. pkg syscall (netbsd-arm64), func GetsockoptInt(int, int, int) (int, error)
  7645. pkg syscall (netbsd-arm64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
  7646. pkg syscall (netbsd-arm64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
  7647. pkg syscall (netbsd-arm64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error)
  7648. pkg syscall (netbsd-arm64), func Issetugid() bool
  7649. pkg syscall (netbsd-arm64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
  7650. pkg syscall (netbsd-arm64), func Kill(int, Signal) error
  7651. pkg syscall (netbsd-arm64), func Kqueue() (int, error)
  7652. pkg syscall (netbsd-arm64), func Listen(int, int) error
  7653. pkg syscall (netbsd-arm64), func Lstat(string, *Stat_t) error
  7654. pkg syscall (netbsd-arm64), func Mkfifo(string, uint32) error
  7655. pkg syscall (netbsd-arm64), func Mknod(string, uint32, int) error
  7656. pkg syscall (netbsd-arm64), func Mmap(int, int64, int, int, int) ([]uint8, error)
  7657. pkg syscall (netbsd-arm64), func Munmap([]uint8) error
  7658. pkg syscall (netbsd-arm64), func Nanosleep(*Timespec, *Timespec) error
  7659. pkg syscall (netbsd-arm64), func Open(string, int, uint32) (int, error)
  7660. pkg syscall (netbsd-arm64), func ParseDirent([]uint8, int, []string) (int, int, []string)
  7661. pkg syscall (netbsd-arm64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
  7662. pkg syscall (netbsd-arm64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
  7663. pkg syscall (netbsd-arm64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
  7664. pkg syscall (netbsd-arm64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
  7665. pkg syscall (netbsd-arm64), func Pathconf(string, int) (int, error)
  7666. pkg syscall (netbsd-arm64), func Pipe2([]int, int) error
  7667. pkg syscall (netbsd-arm64), func Pipe([]int) error
  7668. pkg syscall (netbsd-arm64), func Pread(int, []uint8, int64) (int, error)
  7669. pkg syscall (netbsd-arm64), func Pwrite(int, []uint8, int64) (int, error)
  7670. pkg syscall (netbsd-arm64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7671. pkg syscall (netbsd-arm64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7672. pkg syscall (netbsd-arm64), func ReadDirent(int, []uint8) (int, error)
  7673. pkg syscall (netbsd-arm64), func Read(int, []uint8) (int, error)
  7674. pkg syscall (netbsd-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
  7675. pkg syscall (netbsd-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
  7676. pkg syscall (netbsd-arm64), func Revoke(string) error
  7677. pkg syscall (netbsd-arm64), func RouteRIB(int, int) ([]uint8, error)
  7678. pkg syscall (netbsd-arm64), func Seek(int, int64, int) (int64, error)
  7679. pkg syscall (netbsd-arm64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
  7680. pkg syscall (netbsd-arm64), func Sendfile(int, int, *int64, int) (int, error)
  7681. pkg syscall (netbsd-arm64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
  7682. pkg syscall (netbsd-arm64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
  7683. pkg syscall (netbsd-arm64), func Sendto(int, []uint8, int, Sockaddr) error
  7684. pkg syscall (netbsd-arm64), func SetBpfBuflen(int, int) (int, error)
  7685. pkg syscall (netbsd-arm64), func SetBpfDatalink(int, int) (int, error)
  7686. pkg syscall (netbsd-arm64), func SetBpfHeadercmpl(int, int) error
  7687. pkg syscall (netbsd-arm64), func SetBpfImmediate(int, int) error
  7688. pkg syscall (netbsd-arm64), func SetBpf(int, []BpfInsn) error
  7689. pkg syscall (netbsd-arm64), func SetBpfInterface(int, string) error
  7690. pkg syscall (netbsd-arm64), func SetBpfPromisc(int, int) error
  7691. pkg syscall (netbsd-arm64), func SetBpfTimeout(int, *Timeval) error
  7692. pkg syscall (netbsd-arm64), func Setegid(int) error
  7693. pkg syscall (netbsd-arm64), func Seteuid(int) error
  7694. pkg syscall (netbsd-arm64), func Setgid(int) error
  7695. pkg syscall (netbsd-arm64), func Setgroups([]int) error
  7696. pkg syscall (netbsd-arm64), func SetKevent(*Kevent_t, int, int, int)
  7697. pkg syscall (netbsd-arm64), func SetNonblock(int, bool) error
  7698. pkg syscall (netbsd-arm64), func Setpgid(int, int) error
  7699. pkg syscall (netbsd-arm64), func Setpriority(int, int, int) error
  7700. pkg syscall (netbsd-arm64), func Setregid(int, int) error
  7701. pkg syscall (netbsd-arm64), func Setreuid(int, int) error
  7702. pkg syscall (netbsd-arm64), func Setrlimit(int, *Rlimit) error
  7703. pkg syscall (netbsd-arm64), func Setsid() (int, error)
  7704. pkg syscall (netbsd-arm64), func SetsockoptByte(int, int, int, uint8) error
  7705. pkg syscall (netbsd-arm64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error
  7706. pkg syscall (netbsd-arm64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
  7707. pkg syscall (netbsd-arm64), func SetsockoptInt(int, int, int, int) error
  7708. pkg syscall (netbsd-arm64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
  7709. pkg syscall (netbsd-arm64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
  7710. pkg syscall (netbsd-arm64), func SetsockoptLinger(int, int, int, *Linger) error
  7711. pkg syscall (netbsd-arm64), func SetsockoptString(int, int, int, string) error
  7712. pkg syscall (netbsd-arm64), func SetsockoptTimeval(int, int, int, *Timeval) error
  7713. pkg syscall (netbsd-arm64), func Settimeofday(*Timeval) error
  7714. pkg syscall (netbsd-arm64), func Setuid(int) error
  7715. pkg syscall (netbsd-arm64), func Shutdown(int, int) error
  7716. pkg syscall (netbsd-arm64), func SlicePtrFromStrings([]string) ([]*uint8, error)
  7717. pkg syscall (netbsd-arm64), func Socket(int, int, int) (int, error)
  7718. pkg syscall (netbsd-arm64), func Socketpair(int, int, int) ([2]int, error)
  7719. pkg syscall (netbsd-arm64), func Stat(string, *Stat_t) error
  7720. pkg syscall (netbsd-arm64), func StringSlicePtr([]string) []*uint8
  7721. pkg syscall (netbsd-arm64), func Sync() error
  7722. pkg syscall (netbsd-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7723. pkg syscall (netbsd-arm64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7724. pkg syscall (netbsd-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7725. pkg syscall (netbsd-arm64), func Sysctl(string) (string, error)
  7726. pkg syscall (netbsd-arm64), func SysctlUint32(string) (uint32, error)
  7727. pkg syscall (netbsd-arm64), func TimevalToNsec(Timeval) int64
  7728. pkg syscall (netbsd-arm64), func Truncate(string, int64) error
  7729. pkg syscall (netbsd-arm64), func Umask(int) int
  7730. pkg syscall (netbsd-arm64), func UnixRights(...int) []uint8
  7731. pkg syscall (netbsd-arm64), func Unmount(string, int) error
  7732. pkg syscall (netbsd-arm64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
  7733. pkg syscall (netbsd-arm64), func Write(int, []uint8) (int, error)
  7734. pkg syscall (netbsd-arm64), method (*Cmsghdr) SetLen(int)
  7735. pkg syscall (netbsd-arm64), method (*Iovec) SetLen(int)
  7736. pkg syscall (netbsd-arm64), method (*Msghdr) SetControllen(int)
  7737. pkg syscall (netbsd-arm64), type BpfHdr struct
  7738. pkg syscall (netbsd-arm64), type BpfHdr struct, Caplen uint32
  7739. pkg syscall (netbsd-arm64), type BpfHdr struct, Datalen uint32
  7740. pkg syscall (netbsd-arm64), type BpfHdr struct, Hdrlen uint16
  7741. pkg syscall (netbsd-arm64), type BpfHdr struct, Pad_cgo_0 [6]uint8
  7742. pkg syscall (netbsd-arm64), type BpfHdr struct, Tstamp BpfTimeval
  7743. pkg syscall (netbsd-arm64), type BpfInsn struct
  7744. pkg syscall (netbsd-arm64), type BpfInsn struct, Code uint16
  7745. pkg syscall (netbsd-arm64), type BpfInsn struct, Jf uint8
  7746. pkg syscall (netbsd-arm64), type BpfInsn struct, Jt uint8
  7747. pkg syscall (netbsd-arm64), type BpfInsn struct, K uint32
  7748. pkg syscall (netbsd-arm64), type BpfProgram struct
  7749. pkg syscall (netbsd-arm64), type BpfProgram struct, Insns *BpfInsn
  7750. pkg syscall (netbsd-arm64), type BpfProgram struct, Len uint32
  7751. pkg syscall (netbsd-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8
  7752. pkg syscall (netbsd-arm64), type BpfStat struct
  7753. pkg syscall (netbsd-arm64), type BpfStat struct, Capt uint64
  7754. pkg syscall (netbsd-arm64), type BpfStat struct, Drop uint64
  7755. pkg syscall (netbsd-arm64), type BpfStat struct, Padding [13]uint64
  7756. pkg syscall (netbsd-arm64), type BpfStat struct, Recv uint64
  7757. pkg syscall (netbsd-arm64), type BpfTimeval struct
  7758. pkg syscall (netbsd-arm64), type BpfTimeval struct, Sec int64
  7759. pkg syscall (netbsd-arm64), type BpfTimeval struct, Usec int64
  7760. pkg syscall (netbsd-arm64), type BpfVersion struct
  7761. pkg syscall (netbsd-arm64), type BpfVersion struct, Major uint16
  7762. pkg syscall (netbsd-arm64), type BpfVersion struct, Minor uint16
  7763. pkg syscall (netbsd-arm64), type Cmsghdr struct
  7764. pkg syscall (netbsd-arm64), type Cmsghdr struct, Len uint32
  7765. pkg syscall (netbsd-arm64), type Cmsghdr struct, Level int32
  7766. pkg syscall (netbsd-arm64), type Cmsghdr struct, Type int32
  7767. pkg syscall (netbsd-arm64), type Credential struct
  7768. pkg syscall (netbsd-arm64), type Credential struct, Gid uint32
  7769. pkg syscall (netbsd-arm64), type Credential struct, Groups []uint32
  7770. pkg syscall (netbsd-arm64), type Credential struct, NoSetGroups bool
  7771. pkg syscall (netbsd-arm64), type Credential struct, Uid uint32
  7772. pkg syscall (netbsd-arm64), type Dirent struct
  7773. pkg syscall (netbsd-arm64), type Dirent struct, Fileno uint64
  7774. pkg syscall (netbsd-arm64), type Dirent struct, Name [512]int8
  7775. pkg syscall (netbsd-arm64), type Dirent struct, Namlen uint16
  7776. pkg syscall (netbsd-arm64), type Dirent struct, Pad_cgo_0 [3]uint8
  7777. pkg syscall (netbsd-arm64), type Dirent struct, Reclen uint16
  7778. pkg syscall (netbsd-arm64), type Dirent struct, Type uint8
  7779. pkg syscall (netbsd-arm64), type FdSet struct
  7780. pkg syscall (netbsd-arm64), type FdSet struct, Bits [8]uint32
  7781. pkg syscall (netbsd-arm64), type Flock_t struct
  7782. pkg syscall (netbsd-arm64), type Flock_t struct, Len int64
  7783. pkg syscall (netbsd-arm64), type Flock_t struct, Pid int32
  7784. pkg syscall (netbsd-arm64), type Flock_t struct, Start int64
  7785. pkg syscall (netbsd-arm64), type Flock_t struct, Type int16
  7786. pkg syscall (netbsd-arm64), type Flock_t struct, Whence int16
  7787. pkg syscall (netbsd-arm64), type Fsid struct
  7788. pkg syscall (netbsd-arm64), type Fsid struct, X__fsid_val [2]int32
  7789. pkg syscall (netbsd-arm64), type ICMPv6Filter struct
  7790. pkg syscall (netbsd-arm64), type ICMPv6Filter struct, Filt [8]uint32
  7791. pkg syscall (netbsd-arm64), type IfaMsghdr struct
  7792. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Addrs int32
  7793. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Flags int32
  7794. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Index uint16
  7795. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Metric int32
  7796. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Msglen uint16
  7797. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Pad_cgo_0 [6]uint8
  7798. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Type uint8
  7799. pkg syscall (netbsd-arm64), type IfaMsghdr struct, Version uint8
  7800. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct
  7801. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Index uint16
  7802. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Msglen uint16
  7803. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Name [16]int8
  7804. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Type uint8
  7805. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Version uint8
  7806. pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, What uint16
  7807. pkg syscall (netbsd-arm64), type IfData struct
  7808. pkg syscall (netbsd-arm64), type IfData struct, Addrlen uint8
  7809. pkg syscall (netbsd-arm64), type IfData struct, Baudrate uint64
  7810. pkg syscall (netbsd-arm64), type IfData struct, Collisions uint64
  7811. pkg syscall (netbsd-arm64), type IfData struct, Hdrlen uint8
  7812. pkg syscall (netbsd-arm64), type IfData struct, Ibytes uint64
  7813. pkg syscall (netbsd-arm64), type IfData struct, Ierrors uint64
  7814. pkg syscall (netbsd-arm64), type IfData struct, Imcasts uint64
  7815. pkg syscall (netbsd-arm64), type IfData struct, Ipackets uint64
  7816. pkg syscall (netbsd-arm64), type IfData struct, Iqdrops uint64
  7817. pkg syscall (netbsd-arm64), type IfData struct, Lastchange Timespec
  7818. pkg syscall (netbsd-arm64), type IfData struct, Link_state int32
  7819. pkg syscall (netbsd-arm64), type IfData struct, Metric uint64
  7820. pkg syscall (netbsd-arm64), type IfData struct, Mtu uint64
  7821. pkg syscall (netbsd-arm64), type IfData struct, Noproto uint64
  7822. pkg syscall (netbsd-arm64), type IfData struct, Obytes uint64
  7823. pkg syscall (netbsd-arm64), type IfData struct, Oerrors uint64
  7824. pkg syscall (netbsd-arm64), type IfData struct, Omcasts uint64
  7825. pkg syscall (netbsd-arm64), type IfData struct, Opackets uint64
  7826. pkg syscall (netbsd-arm64), type IfData struct, Pad_cgo_0 [1]uint8
  7827. pkg syscall (netbsd-arm64), type IfData struct, Type uint8
  7828. pkg syscall (netbsd-arm64), type IfMsghdr struct
  7829. pkg syscall (netbsd-arm64), type IfMsghdr struct, Addrs int32
  7830. pkg syscall (netbsd-arm64), type IfMsghdr struct, Data IfData
  7831. pkg syscall (netbsd-arm64), type IfMsghdr struct, Flags int32
  7832. pkg syscall (netbsd-arm64), type IfMsghdr struct, Index uint16
  7833. pkg syscall (netbsd-arm64), type IfMsghdr struct, Msglen uint16
  7834. pkg syscall (netbsd-arm64), type IfMsghdr struct, Pad_cgo_0 [2]uint8
  7835. pkg syscall (netbsd-arm64), type IfMsghdr struct, Type uint8
  7836. pkg syscall (netbsd-arm64), type IfMsghdr struct, Version uint8
  7837. pkg syscall (netbsd-arm64), type Inet6Pktinfo struct
  7838. pkg syscall (netbsd-arm64), type Inet6Pktinfo struct, Addr [16]uint8
  7839. pkg syscall (netbsd-arm64), type Inet6Pktinfo struct, Ifindex uint32
  7840. pkg syscall (netbsd-arm64), type InterfaceAddrMessage struct
  7841. pkg syscall (netbsd-arm64), type InterfaceAddrMessage struct, Data []uint8
  7842. pkg syscall (netbsd-arm64), type InterfaceAddrMessage struct, Header IfaMsghdr
  7843. pkg syscall (netbsd-arm64), type InterfaceAnnounceMessage struct
  7844. pkg syscall (netbsd-arm64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr
  7845. pkg syscall (netbsd-arm64), type InterfaceMessage struct
  7846. pkg syscall (netbsd-arm64), type InterfaceMessage struct, Data []uint8
  7847. pkg syscall (netbsd-arm64), type InterfaceMessage struct, Header IfMsghdr
  7848. pkg syscall (netbsd-arm64), type Iovec struct
  7849. pkg syscall (netbsd-arm64), type Iovec struct, Base *uint8
  7850. pkg syscall (netbsd-arm64), type Iovec struct, Len uint64
  7851. pkg syscall (netbsd-arm64), type IPv6MTUInfo struct
  7852. pkg syscall (netbsd-arm64), type IPv6MTUInfo struct, Addr RawSockaddrInet6
  7853. pkg syscall (netbsd-arm64), type IPv6MTUInfo struct, Mtu uint32
  7854. pkg syscall (netbsd-arm64), type Kevent_t struct
  7855. pkg syscall (netbsd-arm64), type Kevent_t struct, Data int64
  7856. pkg syscall (netbsd-arm64), type Kevent_t struct, Fflags uint32
  7857. pkg syscall (netbsd-arm64), type Kevent_t struct, Filter uint32
  7858. pkg syscall (netbsd-arm64), type Kevent_t struct, Flags uint32
  7859. pkg syscall (netbsd-arm64), type Kevent_t struct, Ident uint64
  7860. pkg syscall (netbsd-arm64), type Kevent_t struct, Pad_cgo_0 [4]uint8
  7861. pkg syscall (netbsd-arm64), type Kevent_t struct, Udata int64
  7862. pkg syscall (netbsd-arm64), type Mclpool [0]uint8
  7863. pkg syscall (netbsd-arm64), type Msghdr struct
  7864. pkg syscall (netbsd-arm64), type Msghdr struct, Controllen uint32
  7865. pkg syscall (netbsd-arm64), type Msghdr struct, Control *uint8
  7866. pkg syscall (netbsd-arm64), type Msghdr struct, Flags int32
  7867. pkg syscall (netbsd-arm64), type Msghdr struct, Iov *Iovec
  7868. pkg syscall (netbsd-arm64), type Msghdr struct, Iovlen int32
  7869. pkg syscall (netbsd-arm64), type Msghdr struct, Namelen uint32
  7870. pkg syscall (netbsd-arm64), type Msghdr struct, Name *uint8
  7871. pkg syscall (netbsd-arm64), type Msghdr struct, Pad_cgo_0 [4]uint8
  7872. pkg syscall (netbsd-arm64), type Msghdr struct, Pad_cgo_1 [4]uint8
  7873. pkg syscall (netbsd-arm64), type RawSockaddrAny struct, Pad [92]int8
  7874. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct
  7875. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Alen uint8
  7876. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Data [12]int8
  7877. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Family uint8
  7878. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Index uint16
  7879. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Len uint8
  7880. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Nlen uint8
  7881. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Slen uint8
  7882. pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Type uint8
  7883. pkg syscall (netbsd-arm64), type RawSockaddrInet4 struct, Family uint8
  7884. pkg syscall (netbsd-arm64), type RawSockaddrInet4 struct, Len uint8
  7885. pkg syscall (netbsd-arm64), type RawSockaddrInet4 struct, Zero [8]int8
  7886. pkg syscall (netbsd-arm64), type RawSockaddrInet6 struct, Family uint8
  7887. pkg syscall (netbsd-arm64), type RawSockaddrInet6 struct, Len uint8
  7888. pkg syscall (netbsd-arm64), type RawSockaddr struct, Data [14]int8
  7889. pkg syscall (netbsd-arm64), type RawSockaddr struct, Family uint8
  7890. pkg syscall (netbsd-arm64), type RawSockaddr struct, Len uint8
  7891. pkg syscall (netbsd-arm64), type RawSockaddrUnix struct, Family uint8
  7892. pkg syscall (netbsd-arm64), type RawSockaddrUnix struct, Len uint8
  7893. pkg syscall (netbsd-arm64), type RawSockaddrUnix struct, Path [104]int8
  7894. pkg syscall (netbsd-arm64), type Rlimit struct
  7895. pkg syscall (netbsd-arm64), type Rlimit struct, Cur uint64
  7896. pkg syscall (netbsd-arm64), type Rlimit struct, Max uint64
  7897. pkg syscall (netbsd-arm64), type RouteMessage struct
  7898. pkg syscall (netbsd-arm64), type RouteMessage struct, Data []uint8
  7899. pkg syscall (netbsd-arm64), type RouteMessage struct, Header RtMsghdr
  7900. pkg syscall (netbsd-arm64), type RoutingMessage interface, unexported methods
  7901. pkg syscall (netbsd-arm64), type RtMetrics struct
  7902. pkg syscall (netbsd-arm64), type RtMetrics struct, Expire int64
  7903. pkg syscall (netbsd-arm64), type RtMetrics struct, Hopcount uint64
  7904. pkg syscall (netbsd-arm64), type RtMetrics struct, Locks uint64
  7905. pkg syscall (netbsd-arm64), type RtMetrics struct, Mtu uint64
  7906. pkg syscall (netbsd-arm64), type RtMetrics struct, Pksent int64
  7907. pkg syscall (netbsd-arm64), type RtMetrics struct, Recvpipe uint64
  7908. pkg syscall (netbsd-arm64), type RtMetrics struct, Rtt uint64
  7909. pkg syscall (netbsd-arm64), type RtMetrics struct, Rttvar uint64
  7910. pkg syscall (netbsd-arm64), type RtMetrics struct, Sendpipe uint64
  7911. pkg syscall (netbsd-arm64), type RtMetrics struct, Ssthresh uint64
  7912. pkg syscall (netbsd-arm64), type RtMsghdr struct
  7913. pkg syscall (netbsd-arm64), type RtMsghdr struct, Addrs int32
  7914. pkg syscall (netbsd-arm64), type RtMsghdr struct, Errno int32
  7915. pkg syscall (netbsd-arm64), type RtMsghdr struct, Flags int32
  7916. pkg syscall (netbsd-arm64), type RtMsghdr struct, Index uint16
  7917. pkg syscall (netbsd-arm64), type RtMsghdr struct, Inits int32
  7918. pkg syscall (netbsd-arm64), type RtMsghdr struct, Msglen uint16
  7919. pkg syscall (netbsd-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
  7920. pkg syscall (netbsd-arm64), type RtMsghdr struct, Pad_cgo_1 [4]uint8
  7921. pkg syscall (netbsd-arm64), type RtMsghdr struct, Pid int32
  7922. pkg syscall (netbsd-arm64), type RtMsghdr struct, Rmx RtMetrics
  7923. pkg syscall (netbsd-arm64), type RtMsghdr struct, Seq int32
  7924. pkg syscall (netbsd-arm64), type RtMsghdr struct, Type uint8
  7925. pkg syscall (netbsd-arm64), type RtMsghdr struct, Use int32
  7926. pkg syscall (netbsd-arm64), type RtMsghdr struct, Version uint8
  7927. pkg syscall (netbsd-arm64), type Rusage struct, Idrss int64
  7928. pkg syscall (netbsd-arm64), type Rusage struct, Inblock int64
  7929. pkg syscall (netbsd-arm64), type Rusage struct, Isrss int64
  7930. pkg syscall (netbsd-arm64), type Rusage struct, Ixrss int64
  7931. pkg syscall (netbsd-arm64), type Rusage struct, Majflt int64
  7932. pkg syscall (netbsd-arm64), type Rusage struct, Maxrss int64
  7933. pkg syscall (netbsd-arm64), type Rusage struct, Minflt int64
  7934. pkg syscall (netbsd-arm64), type Rusage struct, Msgrcv int64
  7935. pkg syscall (netbsd-arm64), type Rusage struct, Msgsnd int64
  7936. pkg syscall (netbsd-arm64), type Rusage struct, Nivcsw int64
  7937. pkg syscall (netbsd-arm64), type Rusage struct, Nsignals int64
  7938. pkg syscall (netbsd-arm64), type Rusage struct, Nswap int64
  7939. pkg syscall (netbsd-arm64), type Rusage struct, Nvcsw int64
  7940. pkg syscall (netbsd-arm64), type Rusage struct, Oublock int64
  7941. pkg syscall (netbsd-arm64), type Rusage struct, Stime Timeval
  7942. pkg syscall (netbsd-arm64), type Rusage struct, Utime Timeval
  7943. pkg syscall (netbsd-arm64), type SockaddrDatalink struct
  7944. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Alen uint8
  7945. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Data [12]int8
  7946. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Family uint8
  7947. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Index uint16
  7948. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Len uint8
  7949. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Nlen uint8
  7950. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Slen uint8
  7951. pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Type uint8
  7952. pkg syscall (netbsd-arm64), type SocketControlMessage struct
  7953. pkg syscall (netbsd-arm64), type SocketControlMessage struct, Data []uint8
  7954. pkg syscall (netbsd-arm64), type SocketControlMessage struct, Header Cmsghdr
  7955. pkg syscall (netbsd-arm64), type Statfs_t [0]uint8
  7956. pkg syscall (netbsd-arm64), type Stat_t struct
  7957. pkg syscall (netbsd-arm64), type Stat_t struct, Atimespec Timespec
  7958. pkg syscall (netbsd-arm64), type Stat_t struct, Birthtimespec Timespec
  7959. pkg syscall (netbsd-arm64), type Stat_t struct, Blksize uint32
  7960. pkg syscall (netbsd-arm64), type Stat_t struct, Blocks int64
  7961. pkg syscall (netbsd-arm64), type Stat_t struct, Ctimespec Timespec
  7962. pkg syscall (netbsd-arm64), type Stat_t struct, Dev uint64
  7963. pkg syscall (netbsd-arm64), type Stat_t struct, Flags uint32
  7964. pkg syscall (netbsd-arm64), type Stat_t struct, Gen uint32
  7965. pkg syscall (netbsd-arm64), type Stat_t struct, Gid uint32
  7966. pkg syscall (netbsd-arm64), type Stat_t struct, Ino uint64
  7967. pkg syscall (netbsd-arm64), type Stat_t struct, Mode uint32
  7968. pkg syscall (netbsd-arm64), type Stat_t struct, Mtimespec Timespec
  7969. pkg syscall (netbsd-arm64), type Stat_t struct, Nlink uint32
  7970. pkg syscall (netbsd-arm64), type Stat_t struct, Pad_cgo_0 [4]uint8
  7971. pkg syscall (netbsd-arm64), type Stat_t struct, Pad_cgo_1 [4]uint8
  7972. pkg syscall (netbsd-arm64), type Stat_t struct, Pad_cgo_2 [4]uint8
  7973. pkg syscall (netbsd-arm64), type Stat_t struct, Rdev uint64
  7974. pkg syscall (netbsd-arm64), type Stat_t struct, Size int64
  7975. pkg syscall (netbsd-arm64), type Stat_t struct, Spare [2]uint32
  7976. pkg syscall (netbsd-arm64), type Stat_t struct, Uid uint32
  7977. pkg syscall (netbsd-arm64), type Sysctlnode struct
  7978. pkg syscall (netbsd-arm64), type Sysctlnode struct, Flags uint32
  7979. pkg syscall (netbsd-arm64), type Sysctlnode struct, Name [32]int8
  7980. pkg syscall (netbsd-arm64), type Sysctlnode struct, Num int32
  7981. pkg syscall (netbsd-arm64), type Sysctlnode struct, Un [16]uint8
  7982. pkg syscall (netbsd-arm64), type Sysctlnode struct, Ver uint32
  7983. pkg syscall (netbsd-arm64), type Sysctlnode struct, X__rsvd uint32
  7984. pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_desc [8]uint8
  7985. pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_func [8]uint8
  7986. pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_parent [8]uint8
  7987. pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_size [8]uint8
  7988. pkg syscall (netbsd-arm64), type SysProcAttr struct, Chroot string
  7989. pkg syscall (netbsd-arm64), type SysProcAttr struct, Credential *Credential
  7990. pkg syscall (netbsd-arm64), type SysProcAttr struct, Ctty int
  7991. pkg syscall (netbsd-arm64), type SysProcAttr struct, Foreground bool
  7992. pkg syscall (netbsd-arm64), type SysProcAttr struct, Noctty bool
  7993. pkg syscall (netbsd-arm64), type SysProcAttr struct, Pgid int
  7994. pkg syscall (netbsd-arm64), type SysProcAttr struct, Ptrace bool
  7995. pkg syscall (netbsd-arm64), type SysProcAttr struct, Setctty bool
  7996. pkg syscall (netbsd-arm64), type SysProcAttr struct, Setpgid bool
  7997. pkg syscall (netbsd-arm64), type SysProcAttr struct, Setsid bool
  7998. pkg syscall (netbsd-arm64), type Termios struct
  7999. pkg syscall (netbsd-arm64), type Termios struct, Cc [20]uint8
  8000. pkg syscall (netbsd-arm64), type Termios struct, Cflag uint32
  8001. pkg syscall (netbsd-arm64), type Termios struct, Iflag uint32
  8002. pkg syscall (netbsd-arm64), type Termios struct, Ispeed int32
  8003. pkg syscall (netbsd-arm64), type Termios struct, Lflag uint32
  8004. pkg syscall (netbsd-arm64), type Termios struct, Oflag uint32
  8005. pkg syscall (netbsd-arm64), type Termios struct, Ospeed int32
  8006. pkg syscall (netbsd-arm64), type Timespec struct, Nsec int64
  8007. pkg syscall (netbsd-arm64), type Timespec struct, Sec int64
  8008. pkg syscall (netbsd-arm64), type Timeval struct, Pad_cgo_0 [4]uint8
  8009. pkg syscall (netbsd-arm64), type Timeval struct, Sec int64
  8010. pkg syscall (netbsd-arm64), type Timeval struct, Usec int32
  8011. pkg syscall (netbsd-arm64), type WaitStatus uint32
  8012. pkg syscall (netbsd-arm64), var Stderr int
  8013. pkg syscall (netbsd-arm64), var Stdin int
  8014. pkg syscall (netbsd-arm64), var Stdout int
  8015. pkg syscall (windows-386), type SysProcAttr struct, ProcessAttributes *SecurityAttributes
  8016. pkg syscall (windows-386), type SysProcAttr struct, ThreadAttributes *SecurityAttributes
  8017. pkg syscall (windows-amd64), type SysProcAttr struct, ProcessAttributes *SecurityAttributes
  8018. pkg syscall (windows-amd64), type SysProcAttr struct, ThreadAttributes *SecurityAttributes
  8019. pkg testing, func Init()
  8020. pkg testing, method (*B) ReportMetric(float64, string)
  8021. pkg testing, type BenchmarkResult struct, Extra map[string]float64
  8022. pkg text/template, method (ExecError) Unwrap() error
  8023. pkg time, method (Duration) Microseconds() int64
  8024. pkg time, method (Duration) Milliseconds() int64
  8025. pkg unicode, const Version = "11.0.0"
  8026. pkg unicode, var Dogra *RangeTable
  8027. pkg unicode, var Gunjala_Gondi *RangeTable
  8028. pkg unicode, var Hanifi_Rohingya *RangeTable
  8029. pkg unicode, var Makasar *RangeTable
  8030. pkg unicode, var Medefaidrin *RangeTable
  8031. pkg unicode, var Old_Sogdian *RangeTable
  8032. pkg unicode, var Sogdian *RangeTable