summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/libc/asm_linux_amd64.go
blob: 1dc208092bf9a93e28d0e17ee1f3942bf5b3a44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
// Code generated for linux/amd64 by 'genasm', DO NOT EDIT.

package libc

func Ya64l(p0 *TLS, p1 uintptr) (ret int64)
func Yabort(p0 *TLS)
func Yabs(p0 *TLS, p1 int32) (ret int32)
func Yaccept(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Yaccept4(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 int32) (ret int32)
func Yaccess(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yacct(p0 *TLS, p1 uintptr) (ret int32)
func Yacos(p0 *TLS, p1 float64) (ret float64)
func Yacosf(p0 *TLS, p1 float32) (ret float32)
func Yacosh(p0 *TLS, p1 float64) (ret float64)
func Yacoshf(p0 *TLS, p1 float32) (ret float32)
func Yacoshl(p0 *TLS, p1 float64) (ret float64)
func Yacosl(p0 *TLS, p1 float64) (ret float64)
func Yaddmntent(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yadjtime(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yadjtimex(p0 *TLS, p1 uintptr) (ret int32)
func Yalarm(p0 *TLS, p1 uint32) (ret uint32)
func Yalloca(p0 *TLS, p1 Tsize_t) (ret uintptr)
func Yalphasort(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yarch_prctl(p0 *TLS, p1 int32, p2 uint64) (ret int32)
func Yasctime(p0 *TLS, p1 uintptr) (ret uintptr)
func Yasctime_r(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yasin(p0 *TLS, p1 float64) (ret float64)
func Yasinf(p0 *TLS, p1 float32) (ret float32)
func Yasinh(p0 *TLS, p1 float64) (ret float64)
func Yasinhf(p0 *TLS, p1 float32) (ret float32)
func Yasinhl(p0 *TLS, p1 float64) (ret float64)
func Yasinl(p0 *TLS, p1 float64) (ret float64)
func Yasprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yat_quick_exit(p0 *TLS, p1 uintptr) (ret int32)
func Yatan(p0 *TLS, p1 float64) (ret float64)
func Yatan2(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yatan2f(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yatan2l(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yatanf(p0 *TLS, p1 float32) (ret float32)
func Yatanh(p0 *TLS, p1 float64) (ret float64)
func Yatanhf(p0 *TLS, p1 float32) (ret float32)
func Yatanhl(p0 *TLS, p1 float64) (ret float64)
func Yatanl(p0 *TLS, p1 float64) (ret float64)
func Yatexit(p0 *TLS, p1 uintptr) (ret int32)
func Yatof(p0 *TLS, p1 uintptr) (ret float64)
func Yatoi(p0 *TLS, p1 uintptr) (ret int32)
func Yatol(p0 *TLS, p1 uintptr) (ret int64)
func Yatoll(p0 *TLS, p1 uintptr) (ret int64)
func Ybacktrace(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ybacktrace_symbols_fd(p0 *TLS, p1 uintptr, p2 int32)
func Ybasename(p0 *TLS, p1 uintptr) (ret uintptr)
func Ybcmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ybcopy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t)
func Ybind(p0 *TLS, p1 int32, p2 uintptr, p3 Tsocklen_t) (ret int32)
func Ybind_textdomain_codeset(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ybindtextdomain(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ybrk(p0 *TLS, p1 uintptr) (ret int32)
func Ybsearch(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tsize_t, p5 uintptr) (ret uintptr)
func Ybtowc(p0 *TLS, p1 int32) (ret Twint_t)
func Ybzero(p0 *TLS, p1 uintptr, p2 Tsize_t)
func Yc16rtomb(p0 *TLS, p1 uintptr, p2 Tchar16_t, p3 uintptr) (ret Tsize_t)
func Yc32rtomb(p0 *TLS, p1 uintptr, p2 Tchar32_t, p3 uintptr) (ret Tsize_t)
func Ycabs(p0 *TLS, p1 complex128) (ret float64)
func Ycabsf(p0 *TLS, p1 complex64) (ret float32)
func Ycabsl(p0 *TLS, p1 complex128) (ret float64)
func Ycacos(p0 *TLS, p1 complex128) (ret complex128)
func Ycacosf(p0 *TLS, p1 complex64) (ret complex64)
func Ycacosh(p0 *TLS, p1 complex128) (ret complex128)
func Ycacoshf(p0 *TLS, p1 complex64) (ret complex64)
func Ycacoshl(p0 *TLS, p1 complex128) (ret complex128)
func Ycacosl(p0 *TLS, p1 complex128) (ret complex128)
func Ycalloc(p0 *TLS, p1 Tsize_t, p2 Tsize_t) (ret uintptr)
func Ycapget(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ycapset(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ycarg(p0 *TLS, p1 complex128) (ret float64)
func Ycargf(p0 *TLS, p1 complex64) (ret float32)
func Ycargl(p0 *TLS, p1 complex128) (ret float64)
func Ycasin(p0 *TLS, p1 complex128) (ret complex128)
func Ycasinf(p0 *TLS, p1 complex64) (ret complex64)
func Ycasinh(p0 *TLS, p1 complex128) (ret complex128)
func Ycasinhf(p0 *TLS, p1 complex64) (ret complex64)
func Ycasinhl(p0 *TLS, p1 complex128) (ret complex128)
func Ycasinl(p0 *TLS, p1 complex128) (ret complex128)
func Ycatan(p0 *TLS, p1 complex128) (ret complex128)
func Ycatanf(p0 *TLS, p1 complex64) (ret complex64)
func Ycatanh(p0 *TLS, p1 complex128) (ret complex128)
func Ycatanhf(p0 *TLS, p1 complex64) (ret complex64)
func Ycatanhl(p0 *TLS, p1 complex128) (ret complex128)
func Ycatanl(p0 *TLS, p1 complex128) (ret complex128)
func Ycatclose(p0 *TLS, p1 Tnl_catd) (ret int32)
func Ycatgets(p0 *TLS, p1 Tnl_catd, p2 int32, p3 int32, p4 uintptr) (ret uintptr)
func Ycatopen(p0 *TLS, p1 uintptr, p2 int32) (ret Tnl_catd)
func Ycbrt(p0 *TLS, p1 float64) (ret float64)
func Ycbrtf(p0 *TLS, p1 float32) (ret float32)
func Ycbrtl(p0 *TLS, p1 float64) (ret float64)
func Yccos(p0 *TLS, p1 complex128) (ret complex128)
func Yccosf(p0 *TLS, p1 complex64) (ret complex64)
func Yccosh(p0 *TLS, p1 complex128) (ret complex128)
func Yccoshf(p0 *TLS, p1 complex64) (ret complex64)
func Yccoshl(p0 *TLS, p1 complex128) (ret complex128)
func Yccosl(p0 *TLS, p1 complex128) (ret complex128)
func Yceil(p0 *TLS, p1 float64) (ret float64)
func Yceilf(p0 *TLS, p1 float32) (ret float32)
func Yceill(p0 *TLS, p1 float64) (ret float64)
func Ycexp(p0 *TLS, p1 complex128) (ret complex128)
func Ycexpf(p0 *TLS, p1 complex64) (ret complex64)
func Ycexpl(p0 *TLS, p1 complex128) (ret complex128)
func Ycfgetispeed(p0 *TLS, p1 uintptr) (ret Tspeed_t)
func Ycfgetospeed(p0 *TLS, p1 uintptr) (ret Tspeed_t)
func Ycfmakeraw(p0 *TLS, p1 uintptr)
func Ycfsetispeed(p0 *TLS, p1 uintptr, p2 Tspeed_t) (ret int32)
func Ycfsetospeed(p0 *TLS, p1 uintptr, p2 Tspeed_t) (ret int32)
func Ycfsetspeed(p0 *TLS, p1 uintptr, p2 Tspeed_t) (ret int32)
func Ychdir(p0 *TLS, p1 uintptr) (ret int32)
func Ychmod(p0 *TLS, p1 uintptr, p2 Tmode_t) (ret int32)
func Ychown(p0 *TLS, p1 uintptr, p2 Tuid_t, p3 Tgid_t) (ret int32)
func Ychroot(p0 *TLS, p1 uintptr) (ret int32)
func Ycimag(p0 *TLS, p1 complex128) (ret float64)
func Ycimagf(p0 *TLS, p1 complex64) (ret float32)
func Ycimagl(p0 *TLS, p1 complex128) (ret float64)
func Yclearenv(p0 *TLS) (ret int32)
func Yclearerr(p0 *TLS, p1 uintptr)
func Yclearerr_unlocked(p0 *TLS, p1 uintptr)
func Yclock(p0 *TLS) (ret Tclock_t)
func Yclock_adjtime(p0 *TLS, p1 Tclockid_t, p2 uintptr) (ret int32)
func Yclock_getcpuclockid(p0 *TLS, p1 Tpid_t, p2 uintptr) (ret int32)
func Yclock_getres(p0 *TLS, p1 Tclockid_t, p2 uintptr) (ret int32)
func Yclock_gettime(p0 *TLS, p1 Tclockid_t, p2 uintptr) (ret int32)
func Yclock_nanosleep(p0 *TLS, p1 Tclockid_t, p2 int32, p3 uintptr, p4 uintptr) (ret int32)
func Yclock_settime(p0 *TLS, p1 Tclockid_t, p2 uintptr) (ret int32)
func Yclog(p0 *TLS, p1 complex128) (ret complex128)
func Yclogf(p0 *TLS, p1 complex64) (ret complex64)
func Yclogl(p0 *TLS, p1 complex128) (ret complex128)
func Yclose(p0 *TLS, p1 int32) (ret int32)
func Yclosedir(p0 *TLS, p1 uintptr) (ret int32)
func Ycloselog(p0 *TLS)
func Yconfstr(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Yconj(p0 *TLS, p1 complex128) (ret complex128)
func Yconjf(p0 *TLS, p1 complex64) (ret complex64)
func Yconjl(p0 *TLS, p1 complex128) (ret complex128)
func Yconnect(p0 *TLS, p1 int32, p2 uintptr, p3 Tsocklen_t) (ret int32)
func Ycopy_file_range(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr, p5 Tsize_t, p6 uint32) (ret Tssize_t)
func Ycopysign(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ycopysignf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Ycopysignl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ycos(p0 *TLS, p1 float64) (ret float64)
func Ycosf(p0 *TLS, p1 float32) (ret float32)
func Ycosh(p0 *TLS, p1 float64) (ret float64)
func Ycoshf(p0 *TLS, p1 float32) (ret float32)
func Ycoshl(p0 *TLS, p1 float64) (ret float64)
func Ycosl(p0 *TLS, p1 float64) (ret float64)
func Ycpow(p0 *TLS, p1 complex128, p2 complex128) (ret complex128)
func Ycpowf(p0 *TLS, p1 complex64, p2 complex64) (ret complex64)
func Ycpowl(p0 *TLS, p1 complex128, p2 complex128) (ret complex128)
func Ycproj(p0 *TLS, p1 complex128) (ret complex128)
func Ycprojf(p0 *TLS, p1 complex64) (ret complex64)
func Ycprojl(p0 *TLS, p1 complex128) (ret complex128)
func Ycreal(p0 *TLS, p1 complex128) (ret float64)
func Ycrealf(p0 *TLS, p1 complex64) (ret float32)
func Ycreall(p0 *TLS, p1 complex128) (ret float64)
func Ycreat(p0 *TLS, p1 uintptr, p2 Tmode_t) (ret int32)
func Ycrypt(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ycrypt_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Ycsin(p0 *TLS, p1 complex128) (ret complex128)
func Ycsinf(p0 *TLS, p1 complex64) (ret complex64)
func Ycsinh(p0 *TLS, p1 complex128) (ret complex128)
func Ycsinhf(p0 *TLS, p1 complex64) (ret complex64)
func Ycsinhl(p0 *TLS, p1 complex128) (ret complex128)
func Ycsinl(p0 *TLS, p1 complex128) (ret complex128)
func Ycsqrt(p0 *TLS, p1 complex128) (ret complex128)
func Ycsqrtf(p0 *TLS, p1 complex64) (ret complex64)
func Ycsqrtl(p0 *TLS, p1 complex128) (ret complex128)
func Yctan(p0 *TLS, p1 complex128) (ret complex128)
func Yctanf(p0 *TLS, p1 complex64) (ret complex64)
func Yctanh(p0 *TLS, p1 complex128) (ret complex128)
func Yctanhf(p0 *TLS, p1 complex64) (ret complex64)
func Yctanhl(p0 *TLS, p1 complex128) (ret complex128)
func Yctanl(p0 *TLS, p1 complex128) (ret complex128)
func Yctermid(p0 *TLS, p1 uintptr) (ret uintptr)
func Yctime(p0 *TLS, p1 uintptr) (ret uintptr)
func Yctime_r(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ycuserid(p0 *TLS, p1 uintptr) (ret uintptr)
func Ydcgettext(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret uintptr)
func Ydcngettext(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uint64, p5 int32) (ret uintptr)
func Ydelete_module(p0 *TLS, p1 uintptr, p2 uint32) (ret int32)
func Ydgettext(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ydifftime(p0 *TLS, p1 Ttime_t, p2 Ttime_t) (ret float64)
func Ydirfd(p0 *TLS, p1 uintptr) (ret int32)
func Ydirname(p0 *TLS, p1 uintptr) (ret uintptr)
func Ydiv(p0 *TLS, p1 int32, p2 int32) (ret Tdiv_t)
func Ydlclose(p0 *TLS, p1 uintptr) (ret int32)
func Ydlerror(p0 *TLS) (ret uintptr)
func Ydlopen(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Ydlsym(p0 *TLS, p1 uintptr) (ret uintptr)
func Ydn_comp(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32, p4 uintptr, p5 uintptr) (ret int32)
func Ydn_expand(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uintptr, p5 int32) (ret int32)
func Ydn_skipname(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ydngettext(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uint64) (ret uintptr)
func Ydprintf(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ydrand48(p0 *TLS) (ret float64)
func Ydrem(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ydremf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Ydup(p0 *TLS, p1 int32) (ret int32)
func Ydup2(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ydup3(p0 *TLS, p1 int32, p2 int32, p3 int32) (ret int32)
func Yduplocale(p0 *TLS, p1 Tlocale_t) (ret Tlocale_t)
func Yeaccess(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yecvt(p0 *TLS, p1 float64, p2 int32, p3 uintptr, p4 uintptr) (ret uintptr)
func Yencrypt(p0 *TLS, p1 uintptr, p2 int32)
func Yendgrent(p0 *TLS)
func Yendhostent(p0 *TLS)
func Yendmntent(p0 *TLS, p1 uintptr) (ret int32)
func Yendnetent(p0 *TLS)
func Yendprotoent(p0 *TLS)
func Yendpwent(p0 *TLS)
func Yendservent(p0 *TLS)
func Yendspent(p0 *TLS)
func Yendusershell(p0 *TLS)
func Yendutent(p0 *TLS)
func Yendutxent(p0 *TLS)
func Yepoll_create(p0 *TLS, p1 int32) (ret int32)
func Yepoll_create1(p0 *TLS, p1 int32) (ret int32)
func Yepoll_ctl(p0 *TLS, p1 int32, p2 int32, p3 int32, p4 uintptr) (ret int32)
func Yepoll_pwait(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 int32, p5 uintptr) (ret int32)
func Yepoll_wait(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 int32) (ret int32)
func Yerand48(p0 *TLS, p1 uintptr) (ret float64)
func Yerf(p0 *TLS, p1 float64) (ret float64)
func Yerfc(p0 *TLS, p1 float64) (ret float64)
func Yerfcf(p0 *TLS, p1 float32) (ret float32)
func Yerfcl(p0 *TLS, p1 float64) (ret float64)
func Yerff(p0 *TLS, p1 float32) (ret float32)
func Yerfl(p0 *TLS, p1 float64) (ret float64)
func Yerr(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr)
func Yerrx(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr)
func Yether_aton(p0 *TLS, p1 uintptr) (ret uintptr)
func Yether_aton_r(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yether_hostton(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yether_line(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yether_ntoa(p0 *TLS, p1 uintptr) (ret uintptr)
func Yether_ntoa_r(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yether_ntohost(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yeuidaccess(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yeventfd(p0 *TLS, p1 uint32, p2 int32) (ret int32)
func Yeventfd_read(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yeventfd_write(p0 *TLS, p1 int32, p2 Teventfd_t) (ret int32)
func Yexecl(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yexecle(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yexeclp(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yexecv(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yexecve(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yexecvp(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yexecvpe(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yexit(p0 *TLS, p1 int32)
func Yexp(p0 *TLS, p1 float64) (ret float64)
func Yexp10(p0 *TLS, p1 float64) (ret float64)
func Yexp10f(p0 *TLS, p1 float32) (ret float32)
func Yexp10l(p0 *TLS, p1 float64) (ret float64)
func Yexp2(p0 *TLS, p1 float64) (ret float64)
func Yexp2f(p0 *TLS, p1 float32) (ret float32)
func Yexp2l(p0 *TLS, p1 float64) (ret float64)
func Yexpf(p0 *TLS, p1 float32) (ret float32)
func Yexpl(p0 *TLS, p1 float64) (ret float64)
func Yexplicit_bzero(p0 *TLS, p1 uintptr, p2 Tsize_t)
func Yexpm1(p0 *TLS, p1 float64) (ret float64)
func Yexpm1f(p0 *TLS, p1 float32) (ret float32)
func Yexpm1l(p0 *TLS, p1 float64) (ret float64)
func Yfabs(p0 *TLS, p1 float64) (ret float64)
func Yfabsf(p0 *TLS, p1 float32) (ret float32)
func Yfabsl(p0 *TLS, p1 float64) (ret float64)
func Yfaccessat(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 int32) (ret int32)
func Yfallocate(p0 *TLS, p1 int32, p2 int32, p3 Toff_t, p4 Toff_t) (ret int32)
func Yfanotify_init(p0 *TLS, p1 uint32, p2 uint32) (ret int32)
func Yfanotify_mark(p0 *TLS, p1 int32, p2 uint32, p3 uint64, p4 int32, p5 uintptr) (ret int32)
func Yfchdir(p0 *TLS, p1 int32) (ret int32)
func Yfchmod(p0 *TLS, p1 int32, p2 Tmode_t) (ret int32)
func Yfchmodat(p0 *TLS, p1 int32, p2 uintptr, p3 Tmode_t, p4 int32) (ret int32)
func Yfchown(p0 *TLS, p1 int32, p2 Tuid_t, p3 Tgid_t) (ret int32)
func Yfchownat(p0 *TLS, p1 int32, p2 uintptr, p3 Tuid_t, p4 Tgid_t, p5 int32) (ret int32)
func Yfclose(p0 *TLS, p1 uintptr) (ret int32)
func Yfcntl(p0 *TLS, p1 int32, p2 int32, p3 uintptr) (ret int32)
func Yfcntl64(p0 *TLS, p1 int32, p2 int32, p3 uintptr) (ret int32)
func Yfcvt(p0 *TLS, p1 float64, p2 int32, p3 uintptr, p4 uintptr) (ret uintptr)
func Yfdatasync(p0 *TLS, p1 int32) (ret int32)
func Yfdim(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfdimf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yfdiml(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfdopen(p0 *TLS, p1 int32, p2 uintptr) (ret uintptr)
func Yfdopendir(p0 *TLS, p1 int32) (ret uintptr)
func Yfeclearexcept(p0 *TLS, p1 int32) (ret int32)
func Yfegetenv(p0 *TLS, p1 uintptr) (ret int32)
func Yfegetround(p0 *TLS) (ret int32)
func Yfeof(p0 *TLS, p1 uintptr) (ret int32)
func Yfeof_unlocked(p0 *TLS, p1 uintptr) (ret int32)
func Yferaiseexcept(p0 *TLS, p1 int32) (ret int32)
func Yferror(p0 *TLS, p1 uintptr) (ret int32)
func Yferror_unlocked(p0 *TLS, p1 uintptr) (ret int32)
func Yfesetenv(p0 *TLS, p1 uintptr) (ret int32)
func Yfetestexcept(p0 *TLS, p1 int32) (ret int32)
func Yfexecve(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Yfflush(p0 *TLS, p1 uintptr) (ret int32)
func Yfflush_unlocked(p0 *TLS, p1 uintptr) (ret int32)
func Yffs(p0 *TLS, p1 int32) (ret int32)
func Yffsl(p0 *TLS, p1 int64) (ret int32)
func Yffsll(p0 *TLS, p1 int64) (ret int32)
func Yfgetc(p0 *TLS, p1 uintptr) (ret int32)
func Yfgetc_unlocked(p0 *TLS, p1 uintptr) (ret int32)
func Yfgetgrent(p0 *TLS, p1 uintptr) (ret uintptr)
func Yfgetln(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yfgetpos(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yfgetpwent(p0 *TLS, p1 uintptr) (ret uintptr)
func Yfgets(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret uintptr)
func Yfgets_unlocked(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret uintptr)
func Yfgetwc(p0 *TLS, p1 uintptr) (ret Twint_t)
func Yfgetwc_unlocked(p0 *TLS, p1 uintptr) (ret Twint_t)
func Yfgetws(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret uintptr)
func Yfgetws_unlocked(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret uintptr)
func Yfgetxattr(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 Tsize_t) (ret Tssize_t)
func Yfileno(p0 *TLS, p1 uintptr) (ret int32)
func Yfileno_unlocked(p0 *TLS, p1 uintptr) (ret int32)
func Yfinite(p0 *TLS, p1 float64) (ret int32)
func Yfinitef(p0 *TLS, p1 float32) (ret int32)
func Yflistxattr(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret Tssize_t)
func Yflock(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Yflockfile(p0 *TLS, p1 uintptr)
func Yfloor(p0 *TLS, p1 float64) (ret float64)
func Yfloorf(p0 *TLS, p1 float32) (ret float32)
func Yfloorl(p0 *TLS, p1 float64) (ret float64)
func Yfma(p0 *TLS, p1 float64, p2 float64, p3 float64) (ret float64)
func Yfmal(p0 *TLS, p1 float64, p2 float64, p3 float64) (ret float64)
func Yfmax(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfmaxf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yfmaxl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfmemopen(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr) (ret uintptr)
func Yfmin(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfminf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yfminl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfmod(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfmodf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yfmodl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yfmtmsg(p0 *TLS, p1 int64, p2 uintptr, p3 int32, p4 uintptr, p5 uintptr, p6 uintptr) (ret int32)
func Yfnmatch(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int32)
func Yfopen(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yfopen64(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yfopencookie(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tcookie_io_functions_t) (ret uintptr)
func Yfork(p0 *TLS) (ret int32)
func Yfpathconf(p0 *TLS, p1 int32, p2 int32) (ret int64)
func Yfprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yfpurge(p0 *TLS, p1 uintptr) (ret int32)
func Yfputc(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfputc_unlocked(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfputs(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yfputs_unlocked(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yfputwc(p0 *TLS, p1 Twchar_t, p2 uintptr) (ret Twint_t)
func Yfputwc_unlocked(p0 *TLS, p1 Twchar_t, p2 uintptr) (ret Twint_t)
func Yfputws(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yfputws_unlocked(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yfread(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Yfread_unlocked(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Yfree(p0 *TLS, p1 uintptr)
func Yfreeaddrinfo(p0 *TLS, p1 uintptr)
func Yfreeifaddrs(p0 *TLS, p1 uintptr)
func Yfreelocale(p0 *TLS, p1 Tlocale_t)
func Yfremovexattr(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfreopen(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Yfrexp(p0 *TLS, p1 float64, p2 uintptr) (ret float64)
func Yfrexpf(p0 *TLS, p1 float32, p2 uintptr) (ret float32)
func Yfrexpl(p0 *TLS, p1 float64, p2 uintptr) (ret float64)
func Yfscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yfseek(p0 *TLS, p1 uintptr, p2 int64, p3 int32) (ret int32)
func Yfseeko(p0 *TLS, p1 uintptr, p2 Toff_t, p3 int32) (ret int32)
func Yfsetpos(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yfsetxattr(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 int32) (ret int32)
func Yfstat(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfstat64(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfstatat(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 int32) (ret int32)
func Yfstatfs(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfstatvfs(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfsync(p0 *TLS, p1 int32) (ret int32)
func Yftell(p0 *TLS, p1 uintptr) (ret int64)
func Yftello(p0 *TLS, p1 uintptr) (ret Toff_t)
func Yftime(p0 *TLS, p1 uintptr) (ret int32)
func Yftok(p0 *TLS, p1 uintptr, p2 int32) (ret Tkey_t)
func Yftruncate(p0 *TLS, p1 int32, p2 Toff_t) (ret int32)
func Yftruncate64(p0 *TLS, p1 int32, p2 Toff_t) (ret int32)
func Yftrylockfile(p0 *TLS, p1 uintptr) (ret int32)
func Yfts64_close(p0 *TLS, p1 uintptr) (ret int32)
func Yfts64_open(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret uintptr)
func Yfts64_read(p0 *TLS, p1 uintptr) (ret uintptr)
func Yfts_close(p0 *TLS, p1 uintptr) (ret int32)
func Yfts_open(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret uintptr)
func Yfts_read(p0 *TLS, p1 uintptr) (ret uintptr)
func Yftw(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int32)
func Yfunlockfile(p0 *TLS, p1 uintptr)
func Yfutimens(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfutimes(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yfutimesat(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Yfwide(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yfwprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yfwrite(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Yfwrite_unlocked(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Yfwscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ygai_strerror(p0 *TLS, p1 int32) (ret uintptr)
func Ygcvt(p0 *TLS, p1 float64, p2 int32, p3 uintptr) (ret uintptr)
func Yget_avphys_pages(p0 *TLS) (ret int64)
func Yget_current_dir_name(p0 *TLS) (ret uintptr)
func Yget_nprocs(p0 *TLS) (ret int32)
func Yget_nprocs_conf(p0 *TLS) (ret int32)
func Yget_phys_pages(p0 *TLS) (ret int64)
func Ygetaddrinfo(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uintptr) (ret int32)
func Ygetauxval(p0 *TLS, p1 uint64) (ret uint64)
func Ygetc(p0 *TLS, p1 uintptr) (ret int32)
func Ygetc_unlocked(p0 *TLS, p1 uintptr) (ret int32)
func Ygetchar(p0 *TLS) (ret int32)
func Ygetchar_unlocked(p0 *TLS) (ret int32)
func Ygetcwd(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret uintptr)
func Ygetdate(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetdelim(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32, p4 uintptr) (ret Tssize_t)
func Ygetdents(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret int32)
func Ygetdomainname(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ygetdtablesize(p0 *TLS) (ret int32)
func Ygetegid(p0 *TLS) (ret Tgid_t)
func Ygetentropy(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ygetenv(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygeteuid(p0 *TLS) (ret Tuid_t)
func Ygetgid(p0 *TLS) (ret Tgid_t)
func Ygetgrent(p0 *TLS) (ret uintptr)
func Ygetgrgid(p0 *TLS, p1 Tgid_t) (ret uintptr)
func Ygetgrgid_r(p0 *TLS, p1 Tgid_t, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr) (ret int32)
func Ygetgrnam(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetgrnam_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr) (ret int32)
func Ygetgrouplist(p0 *TLS, p1 uintptr, p2 Tgid_t, p3 uintptr, p4 uintptr) (ret int32)
func Ygetgroups(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ygethostbyaddr(p0 *TLS, p1 uintptr, p2 Tsocklen_t, p3 int32) (ret uintptr)
func Ygethostbyaddr_r(p0 *TLS, p1 uintptr, p2 Tsocklen_t, p3 int32, p4 uintptr, p5 uintptr, p6 Tsize_t, p7 uintptr, p8 uintptr) (ret int32)
func Ygethostbyname(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygethostbyname2(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Ygethostbyname2_r(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr, p4 uintptr, p5 Tsize_t, p6 uintptr, p7 uintptr) (ret int32)
func Ygethostbyname_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr, p6 uintptr) (ret int32)
func Ygethostent(p0 *TLS) (ret uintptr)
func Ygethostid(p0 *TLS) (ret int64)
func Ygethostname(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ygetifaddrs(p0 *TLS, p1 uintptr) (ret int32)
func Ygetitimer(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ygetline(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret Tssize_t)
func Ygetloadavg(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ygetlogin(p0 *TLS) (ret uintptr)
func Ygetlogin_r(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ygetmntent(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetmntent_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 int32) (ret uintptr)
func Ygetnameinfo(p0 *TLS, p1 uintptr, p2 Tsocklen_t, p3 uintptr, p4 Tsocklen_t, p5 uintptr, p6 Tsocklen_t, p7 int32) (ret int32)
func Ygetnetbyaddr(p0 *TLS, p1 Tuint32_t, p2 int32) (ret uintptr)
func Ygetnetbyname(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetnetent(p0 *TLS) (ret uintptr)
func Ygetopt(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ygetopt_long(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 uintptr, p5 uintptr) (ret int32)
func Ygetopt_long_only(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 uintptr, p5 uintptr) (ret int32)
func Ygetpagesize(p0 *TLS) (ret int32)
func Ygetpass(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetpeername(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ygetpgid(p0 *TLS, p1 Tpid_t) (ret Tpid_t)
func Ygetpgrp(p0 *TLS) (ret Tpid_t)
func Ygetpid(p0 *TLS) (ret Tpid_t)
func Ygetppid(p0 *TLS) (ret Tpid_t)
func Ygetpriority(p0 *TLS, p1 int32, p2 Tid_t) (ret int32)
func Ygetprotobyname(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetprotobynumber(p0 *TLS, p1 int32) (ret uintptr)
func Ygetprotoent(p0 *TLS) (ret uintptr)
func Ygetpwent(p0 *TLS) (ret uintptr)
func Ygetpwnam(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetpwnam_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr) (ret int32)
func Ygetpwuid(p0 *TLS, p1 Tuid_t) (ret uintptr)
func Ygetpwuid_r(p0 *TLS, p1 Tuid_t, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr) (ret int32)
func Ygetrandom(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uint32) (ret Tssize_t)
func Ygetresgid(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ygetresuid(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ygetrlimit(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ygetrlimit64(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ygetrusage(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ygets(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetservbyname(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ygetservbyname_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uintptr, p5 Tsize_t, p6 uintptr) (ret int32)
func Ygetservent(p0 *TLS) (ret uintptr)
func Ygetsid(p0 *TLS, p1 Tpid_t) (ret Tpid_t)
func Ygetsockname(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ygetsockopt(p0 *TLS, p1 int32, p2 int32, p3 int32, p4 uintptr, p5 uintptr) (ret int32)
func Ygetspent(p0 *TLS) (ret uintptr)
func Ygetsubopt(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ygettext(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygettimeofday(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ygetuid(p0 *TLS) (ret Tuid_t)
func Ygetusershell(p0 *TLS) (ret uintptr)
func Ygetutent(p0 *TLS) (ret uintptr)
func Ygetutid(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetutline(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetutxent(p0 *TLS) (ret uintptr)
func Ygetutxid(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetutxline(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygetw(p0 *TLS, p1 uintptr) (ret int32)
func Ygetwc(p0 *TLS, p1 uintptr) (ret Twint_t)
func Ygetwc_unlocked(p0 *TLS, p1 uintptr) (ret Twint_t)
func Ygetwchar(p0 *TLS) (ret Twint_t)
func Ygetwchar_unlocked(p0 *TLS) (ret Twint_t)
func Ygetxattr(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t) (ret Tssize_t)
func Yglob(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr, p4 uintptr) (ret int32)
func Yglobfree(p0 *TLS, p1 uintptr)
func Ygmtime(p0 *TLS, p1 uintptr) (ret uintptr)
func Ygmtime_r(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ygrantpt(p0 *TLS, p1 int32) (ret int32)
func Yhasmntopt(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yhcreate(p0 *TLS, p1 Tsize_t) (ret int32)
func Yhdestroy(p0 *TLS)
func Yherror(p0 *TLS, p1 uintptr)
func Yhsearch(p0 *TLS, p1 TENTRY, p2 TACTION) (ret uintptr)
func Yhstrerror(p0 *TLS, p1 int32) (ret uintptr)
func Yhtonl(p0 *TLS, p1 Tuint32_t) (ret Tuint32_t)
func Yhtons(p0 *TLS, p1 Tuint16_t) (ret Tuint16_t)
func Yhypot(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yhypotf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yhypotl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yiconv(p0 *TLS, p1 Ticonv_t, p2 uintptr, p3 uintptr, p4 uintptr, p5 uintptr) (ret Tsize_t)
func Yiconv_close(p0 *TLS, p1 Ticonv_t) (ret int32)
func Yiconv_open(p0 *TLS, p1 uintptr, p2 uintptr) (ret Ticonv_t)
func Yif_freenameindex(p0 *TLS, p1 uintptr)
func Yif_indextoname(p0 *TLS, p1 uint32, p2 uintptr) (ret uintptr)
func Yif_nameindex(p0 *TLS) (ret uintptr)
func Yif_nametoindex(p0 *TLS, p1 uintptr) (ret uint32)
func Yilogb(p0 *TLS, p1 float64) (ret int32)
func Yilogbf(p0 *TLS, p1 float32) (ret int32)
func Yilogbl(p0 *TLS, p1 float64) (ret int32)
func Yimaxabs(p0 *TLS, p1 Tintmax_t) (ret Tintmax_t)
func Yimaxdiv(p0 *TLS, p1 Tintmax_t, p2 Tintmax_t) (ret Timaxdiv_t)
func Yindex(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Yinet_addr(p0 *TLS, p1 uintptr) (ret Tin_addr_t)
func Yinet_aton(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yinet_lnaof(p0 *TLS, p1 Tin_addr) (ret Tin_addr_t)
func Yinet_makeaddr(p0 *TLS, p1 Tin_addr_t, p2 Tin_addr_t) (ret Tin_addr)
func Yinet_netof(p0 *TLS, p1 Tin_addr) (ret Tin_addr_t)
func Yinet_network(p0 *TLS, p1 uintptr) (ret Tin_addr_t)
func Yinet_ntoa(p0 *TLS, p1 Tin_addr) (ret uintptr)
func Yinet_ntop(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 Tsocklen_t) (ret uintptr)
func Yinet_pton(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Yinit_module(p0 *TLS, p1 uintptr, p2 uint64, p3 uintptr) (ret int32)
func Yinitstate(p0 *TLS, p1 uint32, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Yinitstate_r(p0 *TLS, p1 uint32, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret int32)
func Yinotify_add_watch(p0 *TLS, p1 int32, p2 uintptr, p3 Tuint32_t) (ret int32)
func Yinotify_init(p0 *TLS) (ret int32)
func Yinotify_init1(p0 *TLS, p1 int32) (ret int32)
func Yinotify_rm_watch(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Yinsque(p0 *TLS, p1 uintptr, p2 uintptr)
func Yioctl(p0 *TLS, p1 int32, p2 int32, p3 uintptr) (ret int32)
func Yioperm(p0 *TLS, p1 uint64, p2 uint64, p3 int32) (ret int32)
func Yiopl(p0 *TLS, p1 int32) (ret int32)
func Yisalnum(p0 *TLS, p1 int32) (ret int32)
func Yisalnum_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yisalpha(p0 *TLS, p1 int32) (ret int32)
func Yisalpha_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yisascii(p0 *TLS, p1 int32) (ret int32)
func Yisastream(p0 *TLS, p1 int32) (ret int32)
func Yisatty(p0 *TLS, p1 int32) (ret int32)
func Yisblank(p0 *TLS, p1 int32) (ret int32)
func Yisblank_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yiscntrl(p0 *TLS, p1 int32) (ret int32)
func Yiscntrl_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yisdigit(p0 *TLS, p1 int32) (ret int32)
func Yisdigit_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yisgraph(p0 *TLS, p1 int32) (ret int32)
func Yisgraph_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yislower(p0 *TLS, p1 int32) (ret int32)
func Yislower_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yisnan(p0 *TLS, p1 float64) (ret int32)
func Yisnanf(p0 *TLS, p1 float32) (ret int32)
func Yisnanl(p0 *TLS, p1 float64) (ret int32)
func Yisprint(p0 *TLS, p1 int32) (ret int32)
func Yisprint_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yispunct(p0 *TLS, p1 int32) (ret int32)
func Yispunct_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yissetugid(p0 *TLS) (ret int32)
func Yisspace(p0 *TLS, p1 int32) (ret int32)
func Yisspace_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yisupper(p0 *TLS, p1 int32) (ret int32)
func Yisupper_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yiswalnum(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswalnum_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswalpha(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswalpha_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswblank(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswblank_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswcntrl(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswcntrl_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswctype(p0 *TLS, p1 Twint_t, p2 Twctype_t) (ret int32)
func Yiswctype_l(p0 *TLS, p1 Twint_t, p2 Twctype_t, p3 Tlocale_t) (ret int32)
func Yiswdigit(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswdigit_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswgraph(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswgraph_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswlower(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswlower_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswprint(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswprint_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswpunct(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswpunct_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswspace(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswspace_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswupper(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswupper_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yiswxdigit(p0 *TLS, p1 Twint_t) (ret int32)
func Yiswxdigit_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret int32)
func Yisxdigit(p0 *TLS, p1 int32) (ret int32)
func Yisxdigit_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Yj0(p0 *TLS, p1 float64) (ret float64)
func Yj0f(p0 *TLS, p1 float32) (ret float32)
func Yj1(p0 *TLS, p1 float64) (ret float64)
func Yj1f(p0 *TLS, p1 float32) (ret float32)
func Yjn(p0 *TLS, p1 int32, p2 float64) (ret float64)
func Yjnf(p0 *TLS, p1 int32, p2 float32) (ret float32)
func Yjrand48(p0 *TLS, p1 uintptr) (ret int64)
func Ykill(p0 *TLS, p1 Tpid_t, p2 int32) (ret int32)
func Ykillpg(p0 *TLS, p1 Tpid_t, p2 int32) (ret int32)
func Yklogctl(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret int32)
func Yl64a(p0 *TLS, p1 int64) (ret uintptr)
func Ylabs(p0 *TLS, p1 int64) (ret int64)
func Ylchmod(p0 *TLS, p1 uintptr, p2 Tmode_t) (ret int32)
func Ylchown(p0 *TLS, p1 uintptr, p2 Tuid_t, p3 Tgid_t) (ret int32)
func Ylckpwdf(p0 *TLS) (ret int32)
func Ylcong48(p0 *TLS, p1 uintptr)
func Yldexp(p0 *TLS, p1 float64, p2 int32) (ret float64)
func Yldexpf(p0 *TLS, p1 float32, p2 int32) (ret float32)
func Yldexpl(p0 *TLS, p1 float64, p2 int32) (ret float64)
func Yldiv(p0 *TLS, p1 int64, p2 int64) (ret Tldiv_t)
func Ylfind(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr) (ret uintptr)
func Ylgamma(p0 *TLS, p1 float64) (ret float64)
func Ylgamma_r(p0 *TLS, p1 float64, p2 uintptr) (ret float64)
func Ylgammaf(p0 *TLS, p1 float32) (ret float32)
func Ylgammaf_r(p0 *TLS, p1 float32, p2 uintptr) (ret float32)
func Ylgammal(p0 *TLS, p1 float64) (ret float64)
func Ylgammal_r(p0 *TLS, p1 float64, p2 uintptr) (ret float64)
func Ylgetxattr(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t) (ret Tssize_t)
func Ylink(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ylinkat(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr, p5 int32) (ret int32)
func Ylisten(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ylistxattr(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tssize_t)
func Yllabs(p0 *TLS, p1 int64) (ret int64)
func Ylldiv(p0 *TLS, p1 int64, p2 int64) (ret Tlldiv_t)
func Yllistxattr(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tssize_t)
func Yllrint(p0 *TLS, p1 float64) (ret int64)
func Yllrintf(p0 *TLS, p1 float32) (ret int64)
func Yllrintl(p0 *TLS, p1 float64) (ret int64)
func Yllround(p0 *TLS, p1 float64) (ret int64)
func Yllroundf(p0 *TLS, p1 float32) (ret int64)
func Yllroundl(p0 *TLS, p1 float64) (ret int64)
func Ylocaleconv(p0 *TLS) (ret uintptr)
func Ylocaltime(p0 *TLS, p1 uintptr) (ret uintptr)
func Ylocaltime_r(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ylockf(p0 *TLS, p1 int32, p2 int32, p3 Toff_t) (ret int32)
func Ylog(p0 *TLS, p1 float64) (ret float64)
func Ylog10(p0 *TLS, p1 float64) (ret float64)
func Ylog10f(p0 *TLS, p1 float32) (ret float32)
func Ylog10l(p0 *TLS, p1 float64) (ret float64)
func Ylog1p(p0 *TLS, p1 float64) (ret float64)
func Ylog1pf(p0 *TLS, p1 float32) (ret float32)
func Ylog1pl(p0 *TLS, p1 float64) (ret float64)
func Ylog2(p0 *TLS, p1 float64) (ret float64)
func Ylog2f(p0 *TLS, p1 float32) (ret float32)
func Ylog2l(p0 *TLS, p1 float64) (ret float64)
func Ylogb(p0 *TLS, p1 float64) (ret float64)
func Ylogbf(p0 *TLS, p1 float32) (ret float32)
func Ylogbl(p0 *TLS, p1 float64) (ret float64)
func Ylogf(p0 *TLS, p1 float32) (ret float32)
func Ylogin_tty(p0 *TLS, p1 int32) (ret int32)
func Ylogl(p0 *TLS, p1 float64) (ret float64)
func Ylongjmp(p0 *TLS, p1 uintptr, p2 int32)
func Ylrand48(p0 *TLS) (ret int64)
func Ylremovexattr(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ylrint(p0 *TLS, p1 float64) (ret int64)
func Ylrintf(p0 *TLS, p1 float32) (ret int64)
func Ylrintl(p0 *TLS, p1 float64) (ret int64)
func Ylround(p0 *TLS, p1 float64) (ret int64)
func Ylroundf(p0 *TLS, p1 float32) (ret int64)
func Ylroundl(p0 *TLS, p1 float64) (ret int64)
func Ylsearch(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 uintptr) (ret uintptr)
func Ylseek(p0 *TLS, p1 int32, p2 Toff_t, p3 int32) (ret Toff_t)
func Ylseek64(p0 *TLS, p1 int32, p2 Toff_t, p3 int32) (ret Toff_t)
func Ylsetxattr(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 int32) (ret int32)
func Ylstat(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ylstat64(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ylutimes(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ymadvise(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32) (ret int32)
func Ymalloc(p0 *TLS, p1 Tsize_t) (ret uintptr)
func Ymalloc_usable_size(p0 *TLS, p1 uintptr) (ret Tsize_t)
func Ymblen(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ymbrlen(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr) (ret Tsize_t)
func Ymbrtoc16(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Ymbrtoc32(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Ymbrtowc(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Ymbsinit(p0 *TLS, p1 uintptr) (ret int32)
func Ymbsnrtowcs(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tsize_t, p5 uintptr) (ret Tsize_t)
func Ymbsrtowcs(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Ymbstowcs(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Ymbtowc(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ymemccpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32, p4 Tsize_t) (ret uintptr)
func Ymemchr(p0 *TLS, p1 uintptr, p2 int32, p3 Tsize_t) (ret uintptr)
func Ymemcmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ymemcpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ymemfd_create(p0 *TLS, p1 uintptr, p2 uint32) (ret int32)
func Ymemmem(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 Tsize_t) (ret uintptr)
func Ymemmove(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ymempcpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ymemrchr(p0 *TLS, p1 uintptr, p2 int32, p3 Tsize_t) (ret uintptr)
func Ymemset(p0 *TLS, p1 uintptr, p2 int32, p3 Tsize_t) (ret uintptr)
func Ymincore(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr) (ret int32)
func Ymkdir(p0 *TLS, p1 uintptr, p2 Tmode_t) (ret int32)
func Ymkdirat(p0 *TLS, p1 int32, p2 uintptr, p3 Tmode_t) (ret int32)
func Ymkdtemp(p0 *TLS, p1 uintptr) (ret uintptr)
func Ymkfifo(p0 *TLS, p1 uintptr, p2 Tmode_t) (ret int32)
func Ymkfifoat(p0 *TLS, p1 int32, p2 uintptr, p3 Tmode_t) (ret int32)
func Ymknod(p0 *TLS, p1 uintptr, p2 Tmode_t, p3 Tdev_t) (ret int32)
func Ymknodat(p0 *TLS, p1 int32, p2 uintptr, p3 Tmode_t, p4 Tdev_t) (ret int32)
func Ymkostemp(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ymkostemps(p0 *TLS, p1 uintptr, p2 int32, p3 int32) (ret int32)
func Ymkstemp(p0 *TLS, p1 uintptr) (ret int32)
func Ymkstemp64(p0 *TLS, p1 uintptr) (ret int32)
func Ymkstemps(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ymkstemps64(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ymktemp(p0 *TLS, p1 uintptr) (ret uintptr)
func Ymktime(p0 *TLS, p1 uintptr) (ret Ttime_t)
func Ymlock(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ymlock2(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uint32) (ret int32)
func Ymlockall(p0 *TLS, p1 int32) (ret int32)
func Ymmap(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32, p4 int32, p5 int32, p6 Toff_t) (ret uintptr)
func Ymmap64(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32, p4 int32, p5 int32, p6 Toff_t) (ret uintptr)
func Ymodf(p0 *TLS, p1 float64, p2 uintptr) (ret float64)
func Ymodff(p0 *TLS, p1 float32, p2 uintptr) (ret float32)
func Ymodfl(p0 *TLS, p1 float64, p2 uintptr) (ret float64)
func Ymount(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uint64, p5 uintptr) (ret int32)
func Ymprotect(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32) (ret int32)
func Ymrand48(p0 *TLS) (ret int64)
func Ymremap(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 int32, p5 uintptr) (ret uintptr)
func Ymsgctl(p0 *TLS, p1 int32, p2 int32, p3 uintptr) (ret int32)
func Ymsgget(p0 *TLS, p1 Tkey_t, p2 int32) (ret int32)
func Ymsgrcv(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 int64, p5 int32) (ret Tssize_t)
func Ymsgsnd(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 int32) (ret int32)
func Ymsync(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32) (ret int32)
func Ymunlock(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ymunlockall(p0 *TLS) (ret int32)
func Ymunmap(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Yname_to_handle_at(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 uintptr, p5 int32) (ret int32)
func Ynan(p0 *TLS, p1 uintptr) (ret float64)
func Ynanf(p0 *TLS, p1 uintptr) (ret float32)
func Ynanl(p0 *TLS, p1 uintptr) (ret float64)
func Ynanosleep(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ynewlocale(p0 *TLS, p1 int32, p2 uintptr, p3 Tlocale_t) (ret Tlocale_t)
func Ynextafter(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ynextafterf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Ynextafterl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ynexttoward(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ynexttowardf(p0 *TLS, p1 float32, p2 float64) (ret float32)
func Ynexttowardl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ynftw(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32, p4 int32) (ret int32)
func Yngettext(p0 *TLS, p1 uintptr, p2 uintptr, p3 uint64) (ret uintptr)
func Ynice(p0 *TLS, p1 int32) (ret int32)
func Ynl_langinfo(p0 *TLS, p1 Tnl_item) (ret uintptr)
func Ynl_langinfo_l(p0 *TLS, p1 Tnl_item, p2 Tlocale_t) (ret uintptr)
func Ynrand48(p0 *TLS, p1 uintptr) (ret int64)
func Yns_get16(p0 *TLS, p1 uintptr) (ret uint32)
func Yns_get32(p0 *TLS, p1 uintptr) (ret uint64)
func Yns_initparse(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret int32)
func Yns_name_uncompress(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uintptr, p5 Tsize_t) (ret int32)
func Yns_parserr(p0 *TLS, p1 uintptr, p2 Tns_sect, p3 int32, p4 uintptr) (ret int32)
func Yns_put16(p0 *TLS, p1 uint32, p2 uintptr)
func Yns_put32(p0 *TLS, p1 uint64, p2 uintptr)
func Yns_skiprr(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tns_sect, p4 int32) (ret int32)
func Yntohl(p0 *TLS, p1 Tuint32_t) (ret Tuint32_t)
func Yntohs(p0 *TLS, p1 Tuint16_t) (ret Tuint16_t)
func Yobstack_free(p0 *TLS, p1 uintptr)
func Yobstack_vprintf(p0 *TLS, p1 uintptr) (ret int32)
func Yopen(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret int32)
func Yopen64(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret int32)
func Yopen_by_handle_at(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret int32)
func Yopen_memstream(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yopen_wmemstream(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yopenat(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr) (ret int32)
func Yopendir(p0 *TLS, p1 uintptr) (ret uintptr)
func Yopenlog(p0 *TLS, p1 uintptr, p2 int32, p3 int32)
func Yopenpty(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uintptr, p5 uintptr) (ret int32)
func Ypathconf(p0 *TLS, p1 uintptr, p2 int32) (ret int64)
func Ypause(p0 *TLS) (ret int32)
func Ypclose(p0 *TLS, p1 uintptr) (ret int32)
func Yperror(p0 *TLS, p1 uintptr)
func Ypersonality(p0 *TLS, p1 uint64) (ret int32)
func Ypipe(p0 *TLS, p1 uintptr) (ret int32)
func Ypipe2(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ypivot_root(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ypoll(p0 *TLS, p1 uintptr, p2 Tnfds_t, p3 int32) (ret int32)
func Ypopen(p0 *TLS, p1 uintptr) (ret uintptr)
func Yposix_close(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Yposix_fadvise(p0 *TLS, p1 int32, p2 Toff_t, p3 Toff_t, p4 int32) (ret int32)
func Yposix_fallocate(p0 *TLS, p1 int32, p2 Toff_t, p3 Toff_t) (ret int32)
func Yposix_madvise(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32) (ret int32)
func Yposix_openpt(p0 *TLS, p1 int32) (ret int32)
func Yposix_spawn_file_actions_addchdir_np(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawn_file_actions_addclose(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yposix_spawn_file_actions_adddup2(p0 *TLS, p1 uintptr, p2 int32, p3 int32) (ret int32)
func Yposix_spawn_file_actions_addfchdir_np(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yposix_spawn_file_actions_addopen(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr, p4 int32, p5 Tmode_t) (ret int32)
func Yposix_spawn_file_actions_destroy(p0 *TLS, p1 uintptr) (ret int32)
func Yposix_spawn_file_actions_init(p0 *TLS, p1 uintptr) (ret int32)
func Yposix_spawnattr_destroy(p0 *TLS, p1 uintptr) (ret int32)
func Yposix_spawnattr_getflags(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_getpgroup(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_getschedparam(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_getschedpolicy(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_getsigdefault(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_getsigmask(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_init(p0 *TLS, p1 uintptr) (ret int32)
func Yposix_spawnattr_setflags(p0 *TLS, p1 uintptr, p2 int16) (ret int32)
func Yposix_spawnattr_setpgroup(p0 *TLS, p1 uintptr, p2 Tpid_t) (ret int32)
func Yposix_spawnattr_setschedparam(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_setschedpolicy(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yposix_spawnattr_setsigdefault(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yposix_spawnattr_setsigmask(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ypow(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Ypow10(p0 *TLS, p1 float64) (ret float64)
func Ypow10f(p0 *TLS, p1 float32) (ret float32)
func Ypow10l(p0 *TLS, p1 float64) (ret float64)
func Ypowf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Ypowl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yppoll(p0 *TLS, p1 uintptr, p2 Tnfds_t, p3 uintptr, p4 uintptr) (ret int32)
func Yprctl(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ypread(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 Toff_t) (ret Tssize_t)
func Ypreadv(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 Toff_t) (ret Tssize_t)
func Ypreadv2(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 Toff_t, p5 int32) (ret Tssize_t)
func Yprintf(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yprlimit(p0 *TLS, p1 Tpid_t, p2 int32, p3 uintptr, p4 uintptr) (ret int32)
func Yprocess_vm_readv(p0 *TLS, p1 Tpid_t, p2 uintptr, p3 uint64, p4 uintptr, p5 uint64, p6 uint64) (ret Tssize_t)
func Yprocess_vm_writev(p0 *TLS, p1 Tpid_t, p2 uintptr, p3 uint64, p4 uintptr, p5 uint64, p6 uint64) (ret Tssize_t)
func Ypselect(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 uintptr, p5 uintptr, p6 uintptr) (ret int32)
func Ypsiginfo(p0 *TLS, p1 uintptr, p2 uintptr)
func Ypsignal(p0 *TLS, p1 int32, p2 uintptr)
func Ypthread_atfork(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_attr_destroy(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_attr_getdetachstate(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ypthread_attr_init(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_attr_setdetachstate(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ypthread_attr_setscope(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ypthread_attr_setstacksize(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ypthread_cleanup_pop(p0 *TLS, p1 int32)
func Ypthread_cleanup_push(p0 *TLS, p1 uintptr)
func Ypthread_cond_broadcast(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_cond_destroy(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_cond_init(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_cond_signal(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_cond_timedwait(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_cond_wait(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_create(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_detach(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_equal(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_exit(p0 *TLS, p1 uintptr)
func Ypthread_getspecific(p0 *TLS, p1 Tpthread_key_t) (ret uintptr)
func Ypthread_join(p0 *TLS, p1 Tpthread_t, p2 uintptr) (ret int32)
func Ypthread_key_create(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ypthread_key_delete(p0 *TLS, p1 Tpthread_key_t) (ret int32)
func Ypthread_mutex_destroy(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutex_init(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutex_lock(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutex_trylock(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutex_unlock(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutexattr_destroy(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutexattr_init(p0 *TLS, p1 uintptr) (ret int32)
func Ypthread_mutexattr_settype(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ypthread_self(p0 *TLS) (ret uintptr)
func Ypthread_setcancelstate(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ypthread_setspecific(p0 *TLS, p1 Tpthread_key_t, p2 uintptr) (ret int32)
func Ypthread_sigmask(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yptrace(p0 *TLS, p1 int32, p2 uintptr) (ret int64)
func Yptsname(p0 *TLS, p1 int32) (ret uintptr)
func Yptsname_r(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret int32)
func Yputc(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yputc_unlocked(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yputchar(p0 *TLS, p1 int32) (ret int32)
func Yputchar_unlocked(p0 *TLS, p1 int32) (ret int32)
func Yputenv(p0 *TLS, p1 uintptr) (ret int32)
func Yputgrent(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yputpwent(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yputs(p0 *TLS, p1 uintptr) (ret int32)
func Yputspent(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ypututline(p0 *TLS, p1 uintptr) (ret uintptr)
func Ypututxline(p0 *TLS, p1 uintptr) (ret uintptr)
func Yputw(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yputwc(p0 *TLS, p1 Twchar_t, p2 uintptr) (ret Twint_t)
func Yputwc_unlocked(p0 *TLS, p1 Twchar_t, p2 uintptr) (ret Twint_t)
func Yputwchar(p0 *TLS, p1 Twchar_t) (ret Twint_t)
func Yputwchar_unlocked(p0 *TLS, p1 Twchar_t) (ret Twint_t)
func Ypwrite(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 Toff_t) (ret Tssize_t)
func Ypwritev(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 Toff_t) (ret Tssize_t)
func Ypwritev2(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 Toff_t, p5 int32) (ret Tssize_t)
func Yqsort(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 Tcmpfun)
func Yqsort_r(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t, p4 Tcmpfun, p5 uintptr)
func Yquick_exit(p0 *TLS, p1 int32)
func Yquotactl(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr) (ret int32)
func Yraise(p0 *TLS, p1 int32) (ret int32)
func Yrand(p0 *TLS) (ret int32)
func Yrand_r(p0 *TLS, p1 uintptr) (ret int32)
func Yrandom(p0 *TLS) (ret int64)
func Yrandom_r(p0 *TLS, p1 uintptr) (ret int32)
func Yread(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret Tssize_t)
func Yreadahead(p0 *TLS, p1 int32, p2 Toff_t, p3 Tsize_t) (ret Tssize_t)
func Yreaddir(p0 *TLS, p1 uintptr) (ret uintptr)
func Yreaddir64(p0 *TLS, p1 uintptr) (ret uintptr)
func Yreaddir_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Yreadlink(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tssize_t)
func Yreadlinkat(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 Tsize_t) (ret Tssize_t)
func Yreadv(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret Tssize_t)
func Yrealloc(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret uintptr)
func Yreallocarray(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tsize_t) (ret uintptr)
func Yrealpath(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Yreboot(p0 *TLS, p1 int32) (ret int32)
func Yrecv(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 int32) (ret Tssize_t)
func Yrecvfrom(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 int32, p5 uintptr, p6 uintptr) (ret Tssize_t)
func Yrecvmmsg(p0 *TLS, p1 int32, p2 uintptr, p3 uint32, p4 uint32, p5 uintptr) (ret int32)
func Yrecvmsg(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret Tssize_t)
func Yregcomp(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int32)
func Yregerror(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 Tsize_t) (ret Tsize_t)
func Yregexec(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 uintptr, p5 int32) (ret int32)
func Yregfree(p0 *TLS, p1 uintptr)
func Yremainder(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yremainderf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yremainderl(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yremap_file_pages(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 int32, p4 Tsize_t, p5 int32) (ret int32)
func Yremove(p0 *TLS, p1 uintptr) (ret int32)
func Yremovexattr(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yremque(p0 *TLS, p1 uintptr)
func Yremquo(p0 *TLS, p1 float64, p2 float64, p3 uintptr) (ret float64)
func Yremquof(p0 *TLS, p1 float32, p2 float32, p3 uintptr) (ret float32)
func Yremquol(p0 *TLS, p1 float64, p2 float64, p3 uintptr) (ret float64)
func Yrename(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yrenameat(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr) (ret int32)
func Yrenameat2(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr, p5 int32) (ret int32)
func Yres_init(p0 *TLS) (ret int32)
func Yres_mkquery(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 int32, p5 uintptr, p6 int32, p7 uintptr, p8 uintptr, p9 int32) (ret int32)
func Yres_send(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr, p4 int32) (ret int32)
func Yrewind(p0 *TLS, p1 uintptr)
func Yrewinddir(p0 *TLS, p1 uintptr)
func Yrindex(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Yrint(p0 *TLS, p1 float64) (ret float64)
func Yrintf(p0 *TLS, p1 float32) (ret float32)
func Yrintl(p0 *TLS, p1 float64) (ret float64)
func Yrmdir(p0 *TLS, p1 uintptr) (ret int32)
func Yround(p0 *TLS, p1 float64) (ret float64)
func Yroundf(p0 *TLS, p1 float32) (ret float32)
func Yroundl(p0 *TLS, p1 float64) (ret float64)
func Ysbrk(p0 *TLS, p1 Tintptr_t) (ret uintptr)
func Yscalb(p0 *TLS, p1 float64, p2 float64) (ret float64)
func Yscalbf(p0 *TLS, p1 float32, p2 float32) (ret float32)
func Yscalbln(p0 *TLS, p1 float64, p2 int64) (ret float64)
func Yscalblnf(p0 *TLS, p1 float32, p2 int64) (ret float32)
func Yscalblnl(p0 *TLS, p1 float64, p2 int64) (ret float64)
func Yscalbn(p0 *TLS, p1 float64, p2 int32) (ret float64)
func Yscalbnf(p0 *TLS, p1 float32, p2 int32) (ret float32)
func Yscalbnl(p0 *TLS, p1 float64, p2 int32) (ret float64)
func Yscandir(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 uintptr) (ret int32)
func Yscanf(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ysched_yield(p0 *TLS) (ret int32)
func Ysecure_getenv(p0 *TLS, p1 uintptr) (ret uintptr)
func Yseed48(p0 *TLS, p1 uintptr) (ret uintptr)
func Yseekdir(p0 *TLS, p1 uintptr, p2 int64)
func Yselect(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 uintptr, p5 uintptr) (ret int32)
func Ysemctl(p0 *TLS, p1 int32, p2 int32, p3 int32, p4 uintptr) (ret int32)
func Ysemget(p0 *TLS, p1 Tkey_t, p2 int32, p3 int32) (ret int32)
func Ysemop(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret int32)
func Ysemtimedop(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret int32)
func Ysend(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 int32) (ret Tssize_t)
func Ysendfile(p0 *TLS, p1 int32, p2 int32, p3 uintptr, p4 Tsize_t) (ret Tssize_t)
func Ysendmmsg(p0 *TLS, p1 int32, p2 uintptr, p3 uint32, p4 uint32) (ret int32)
func Ysendmsg(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret Tssize_t)
func Ysendto(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 int32, p5 uintptr, p6 Tsocklen_t) (ret Tssize_t)
func Ysetbuf(p0 *TLS, p1 uintptr, p2 uintptr)
func Ysetbuffer(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t)
func Ysetdomainname(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ysetenv(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int32)
func Ysetfsgid(p0 *TLS, p1 Tgid_t) (ret int32)
func Ysetfsuid(p0 *TLS, p1 Tuid_t) (ret int32)
func Ysetgid(p0 *TLS, p1 Tgid_t) (ret int32)
func Ysetgrent(p0 *TLS)
func Ysethostent(p0 *TLS, p1 int32)
func Ysethostname(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ysetitimer(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ysetjmp(p0 *TLS, p1 uintptr) (ret int32)
func Ysetkey(p0 *TLS, p1 uintptr)
func Ysetlinebuf(p0 *TLS, p1 uintptr)
func Ysetlocale(p0 *TLS, p1 int32, p2 uintptr) (ret uintptr)
func Ysetlogmask(p0 *TLS, p1 int32) (ret int32)
func Ysetmntent(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ysetnetent(p0 *TLS, p1 int32)
func Ysetns(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ysetpgid(p0 *TLS, p1 Tpid_t, p2 Tpid_t) (ret int32)
func Ysetpgrp(p0 *TLS) (ret Tpid_t)
func Ysetpriority(p0 *TLS, p1 int32, p2 Tid_t, p3 int32) (ret int32)
func Ysetprotoent(p0 *TLS, p1 int32)
func Ysetpwent(p0 *TLS)
func Ysetrlimit(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ysetrlimit64(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ysetservent(p0 *TLS, p1 int32)
func Ysetsid(p0 *TLS) (ret Tpid_t)
func Ysetsockopt(p0 *TLS, p1 int32, p2 int32, p3 int32, p4 uintptr, p5 Tsocklen_t) (ret int32)
func Ysetspent(p0 *TLS)
func Ysetstate(p0 *TLS, p1 uintptr) (ret uintptr)
func Ysettimeofday(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ysetuid(p0 *TLS, p1 Tuid_t) (ret int32)
func Ysetusershell(p0 *TLS)
func Ysetutent(p0 *TLS)
func Ysetutxent(p0 *TLS)
func Ysetvbuf(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32, p4 Tsize_t) (ret int32)
func Ysetxattr(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr, p4 Tsize_t, p5 int32) (ret int32)
func Yshm_open(p0 *TLS, p1 uintptr, p2 int32, p3 Tmode_t) (ret int32)
func Yshm_unlink(p0 *TLS, p1 uintptr) (ret int32)
func Yshmat(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret uintptr)
func Yshmctl(p0 *TLS, p1 int32, p2 int32, p3 uintptr) (ret int32)
func Yshmdt(p0 *TLS, p1 uintptr) (ret int32)
func Yshmget(p0 *TLS, p1 Tkey_t, p2 Tsize_t, p3 int32) (ret int32)
func Yshutdown(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ysigaction(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ysigaddset(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ysigaltstack(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ysigandset(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ysigdelset(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ysigemptyset(p0 *TLS, p1 uintptr) (ret int32)
func Ysigfillset(p0 *TLS, p1 uintptr) (ret int32)
func Ysigisemptyset(p0 *TLS, p1 uintptr) (ret int32)
func Ysigismember(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ysignal(p0 *TLS, p1 int32, p2 uintptr) (ret uintptr)
func Ysignalfd(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret int32)
func Ysignificand(p0 *TLS, p1 float64) (ret float64)
func Ysignificandf(p0 *TLS, p1 float32) (ret float32)
func Ysigorset(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ysigpending(p0 *TLS, p1 uintptr) (ret int32)
func Ysigprocmask(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr) (ret int32)
func Ysigqueue(p0 *TLS, p1 Tpid_t, p2 int32, p3 Tsigval) (ret int32)
func Ysigsuspend(p0 *TLS, p1 uintptr) (ret int32)
func Ysigtimedwait(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ysigwait(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ysigwaitinfo(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ysin(p0 *TLS, p1 float64) (ret float64)
func Ysincos(p0 *TLS, p1 float64, p2 uintptr, p3 uintptr)
func Ysincosf(p0 *TLS, p1 float32, p2 uintptr, p3 uintptr)
func Ysincosl(p0 *TLS, p1 float64, p2 uintptr, p3 uintptr)
func Ysinf(p0 *TLS, p1 float32) (ret float32)
func Ysinh(p0 *TLS, p1 float64) (ret float64)
func Ysinhf(p0 *TLS, p1 float32) (ret float32)
func Ysinhl(p0 *TLS, p1 float64) (ret float64)
func Ysinl(p0 *TLS, p1 float64) (ret float64)
func Ysleep(p0 *TLS, p1 uint32) (ret uint32)
func Ysnprintf(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr) (ret int32)
func Ysockatmark(p0 *TLS, p1 int32) (ret int32)
func Ysocket(p0 *TLS, p1 int32, p2 int32, p3 int32) (ret int32)
func Ysocketpair(p0 *TLS, p1 int32, p2 int32, p3 int32, p4 uintptr) (ret int32)
func Ysplice(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uintptr, p5 Tsize_t, p6 uint32) (ret Tssize_t)
func Ysprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ysqrt(p0 *TLS, p1 float64) (ret float64)
func Ysqrtf(p0 *TLS, p1 float32) (ret float32)
func Ysqrtl(p0 *TLS, p1 float64) (ret float64)
func Ysrand(p0 *TLS, p1 uint32)
func Ysrand48(p0 *TLS, p1 int64)
func Ysrandom(p0 *TLS, p1 uint32)
func Ysscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ystat(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystat64(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystatvfs(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystatx(p0 *TLS, p1 int32, p2 uintptr, p3 int32, p4 uint32, p5 uintptr) (ret int32)
func Ystime(p0 *TLS, p1 uintptr) (ret int32)
func Ystpcpy(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystpncpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ystrcasecmp(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystrcasecmp_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret int32)
func Ystrcasestr(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrcat(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrchr(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Ystrchrnul(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Ystrcmp(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystrcoll(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystrcoll_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret int32)
func Ystrcpy(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrcspn(p0 *TLS, p1 uintptr, p2 uintptr) (ret Tsize_t)
func Ystrdup(p0 *TLS, p1 uintptr) (ret uintptr)
func Ystrerror(p0 *TLS, p1 int32) (ret uintptr)
func Ystrerror_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret uintptr)
func Ystrerror_r(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret int32)
func Ystrfmon(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr) (ret Tssize_t)
func Ystrfmon_l(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 Tlocale_t, p4 uintptr, p5 uintptr) (ret Tssize_t)
func Ystrftime(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr) (ret Tsize_t)
func Ystrftime_l(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr, p5 Tlocale_t) (ret Tsize_t)
func Ystrlcat(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Ystrlcpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Ystrlen(p0 *TLS, p1 uintptr) (ret Tsize_t)
func Ystrncasecmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ystrncasecmp_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tlocale_t) (ret int32)
func Ystrncat(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ystrncmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ystrncpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ystrndup(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret uintptr)
func Ystrnlen(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret Tsize_t)
func Ystrpbrk(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrptime(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Ystrrchr(p0 *TLS, p1 uintptr, p2 int32) (ret uintptr)
func Ystrsep(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrsignal(p0 *TLS, p1 int32) (ret uintptr)
func Ystrspn(p0 *TLS, p1 uintptr, p2 uintptr) (ret Tsize_t)
func Ystrstr(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrtod(p0 *TLS, p1 uintptr, p2 uintptr) (ret float64)
func Ystrtod_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret float64)
func Ystrtof(p0 *TLS, p1 uintptr, p2 uintptr) (ret float32)
func Ystrtof_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret float32)
func Ystrtoimax(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret Tintmax_t)
func Ystrtok(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ystrtok_r(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Ystrtol(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int64)
func Ystrtold(p0 *TLS, p1 uintptr, p2 uintptr) (ret float64)
func Ystrtold_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret float64)
func Ystrtoll(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int64)
func Ystrtoul(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret uint64)
func Ystrtoull(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret uint64)
func Ystrtoumax(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret Tuintmax_t)
func Ystrverscmp(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ystrxfrm(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Ystrxfrm_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tlocale_t) (ret Tsize_t)
func Yswab(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tssize_t)
func Yswapoff(p0 *TLS, p1 uintptr) (ret int32)
func Yswapon(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yswprintf(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr) (ret int32)
func Yswscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret int32)
func Ysymlink(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ysymlinkat(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret int32)
func Ysync(p0 *TLS)
func Ysync_file_range(p0 *TLS, p1 int32, p2 Toff_t, p3 Toff_t, p4 uint32) (ret int32)
func Ysyncfs(p0 *TLS, p1 int32) (ret int32)
func Ysyscall(p0 *TLS, p1 int64, p2 uintptr) (ret int64)
func Ysysconf(p0 *TLS, p1 int32) (ret int64)
func Ysysctlbyname(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ysysinfo(p0 *TLS, p1 uintptr) (ret int32)
func Ysyslog(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr)
func Ysystem(p0 *TLS, p1 uintptr) (ret int32)
func Ytan(p0 *TLS, p1 float64) (ret float64)
func Ytanf(p0 *TLS, p1 float32) (ret float32)
func Ytanh(p0 *TLS, p1 float64) (ret float64)
func Ytanhf(p0 *TLS, p1 float32) (ret float32)
func Ytanhl(p0 *TLS, p1 float64) (ret float64)
func Ytanl(p0 *TLS, p1 float64) (ret float64)
func Ytcdrain(p0 *TLS, p1 int32) (ret int32)
func Ytcflow(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ytcflush(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ytcgetattr(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ytcgetpgrp(p0 *TLS, p1 int32) (ret Tpid_t)
func Ytcgetsid(p0 *TLS, p1 int32) (ret Tpid_t)
func Ytcgetwinsize(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ytcsendbreak(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ytcsetattr(p0 *TLS, p1 int32, p2 int32, p3 uintptr) (ret int32)
func Ytcsetpgrp(p0 *TLS, p1 int32, p2 Tpid_t) (ret int32)
func Ytcsetwinsize(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ytdelete(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Ytdestroy(p0 *TLS, p1 uintptr, p2 uintptr)
func Ytee(p0 *TLS, p1 int32, p2 int32, p3 Tsize_t, p4 uint32) (ret Tssize_t)
func Ytelldir(p0 *TLS, p1 uintptr) (ret int64)
func Ytempnam(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ytextdomain(p0 *TLS, p1 uintptr) (ret uintptr)
func Ytfind(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Ytgamma(p0 *TLS, p1 float64) (ret float64)
func Ytgammaf(p0 *TLS, p1 float32) (ret float32)
func Ytgammal(p0 *TLS, p1 float64) (ret float64)
func Ytime(p0 *TLS, p1 uintptr) (ret Ttime_t)
func Ytimegm(p0 *TLS, p1 uintptr) (ret Ttime_t)
func Ytimer_delete(p0 *TLS, p1 Ttimer_t) (ret int32)
func Ytimer_getoverrun(p0 *TLS, p1 Ttimer_t) (ret int32)
func Ytimer_gettime(p0 *TLS, p1 Ttimer_t, p2 uintptr) (ret int32)
func Ytimer_settime(p0 *TLS, p1 Ttimer_t, p2 int32, p3 uintptr, p4 uintptr) (ret int32)
func Ytimerfd_create(p0 *TLS, p1 int32, p2 int32) (ret int32)
func Ytimerfd_gettime(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Ytimerfd_settime(p0 *TLS, p1 int32, p2 int32, p3 uintptr, p4 uintptr) (ret int32)
func Ytimes(p0 *TLS, p1 uintptr) (ret Tclock_t)
func Ytimespec_get(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Ytmpfile(p0 *TLS) (ret uintptr)
func Ytmpnam(p0 *TLS, p1 uintptr) (ret uintptr)
func Ytoascii(p0 *TLS, p1 int32) (ret int32)
func Ytolower(p0 *TLS, p1 int32) (ret int32)
func Ytolower_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Ytoupper(p0 *TLS, p1 int32) (ret int32)
func Ytoupper_l(p0 *TLS, p1 int32, p2 Tlocale_t) (ret int32)
func Ytowctrans(p0 *TLS, p1 Twint_t, p2 Twctrans_t) (ret Twint_t)
func Ytowctrans_l(p0 *TLS, p1 Twint_t, p2 Twctrans_t, p3 Tlocale_t) (ret Twint_t)
func Ytowlower(p0 *TLS, p1 Twint_t) (ret Twint_t)
func Ytowlower_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret Twint_t)
func Ytowupper(p0 *TLS, p1 Twint_t) (ret Twint_t)
func Ytowupper_l(p0 *TLS, p1 Twint_t, p2 Tlocale_t) (ret Twint_t)
func Ytrunc(p0 *TLS, p1 float64) (ret float64)
func Ytruncate(p0 *TLS, p1 uintptr, p2 Toff_t) (ret int32)
func Ytruncf(p0 *TLS, p1 float32) (ret float32)
func Ytruncl(p0 *TLS, p1 float64) (ret float64)
func Ytsearch(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Yttyname(p0 *TLS, p1 int32) (ret uintptr)
func Yttyname_r(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret int32)
func Ytwalk(p0 *TLS, p1 uintptr, p2 uintptr)
func Ytzset(p0 *TLS)
func Yualarm(p0 *TLS, p1 uint32, p2 uint32) (ret uint32)
func Yulckpwdf(p0 *TLS) (ret int32)
func Yulimit(p0 *TLS, p1 int32, p2 uintptr) (ret int64)
func Yumask(p0 *TLS, p1 Tmode_t) (ret Tmode_t)
func Yumount(p0 *TLS, p1 uintptr) (ret int32)
func Yumount2(p0 *TLS, p1 uintptr, p2 int32) (ret int32)
func Yuname(p0 *TLS, p1 uintptr) (ret int32)
func Yungetc(p0 *TLS, p1 int32, p2 uintptr) (ret int32)
func Yungetwc(p0 *TLS, p1 Twint_t, p2 uintptr) (ret Twint_t)
func Yunlink(p0 *TLS, p1 uintptr) (ret int32)
func Yunlinkat(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret int32)
func Yunlockpt(p0 *TLS, p1 int32) (ret int32)
func Yunsetenv(p0 *TLS, p1 uintptr) (ret int32)
func Yunshare(p0 *TLS, p1 int32) (ret int32)
func Yupdwtmp(p0 *TLS, p1 uintptr, p2 uintptr)
func Yupdwtmpx(p0 *TLS, p1 uintptr, p2 uintptr)
func Yuselocale(p0 *TLS, p1 Tlocale_t) (ret Tlocale_t)
func Yusleep(p0 *TLS, p1 uint32) (ret int32)
func Yutime(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yutimensat(p0 *TLS, p1 int32, p2 uintptr, p3 uintptr, p4 int32) (ret int32)
func Yutimes(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yuuid_copy(p0 *TLS, p1 uintptr)
func Yuuid_generate_random(p0 *TLS, p1 uintptr)
func Yuuid_parse(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yuuid_unparse(p0 *TLS, p1 uintptr)
func Yvasprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvdprintf(p0 *TLS, p1 int32, p2 uintptr, p3 Tva_list) (ret int32)
func Yverr(p0 *TLS, p1 int32, p2 uintptr, p3 Tva_list)
func Yverrx(p0 *TLS, p1 int32, p2 uintptr, p3 Tva_list)
func Yversionsort(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yvfork(p0 *TLS) (ret Tpid_t)
func Yvfprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvfscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvfwprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvfwscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvhangup(p0 *TLS) (ret int32)
func Yvmsplice(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t, p4 uint32) (ret Tssize_t)
func Yvprintf(p0 *TLS, p1 uintptr, p2 Tva_list) (ret int32)
func Yvscanf(p0 *TLS, p1 uintptr, p2 Tva_list) (ret int32)
func Yvsnprintf(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 Tva_list) (ret int32)
func Yvsprintf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvsscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvswprintf(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 Tva_list) (ret int32)
func Yvswscanf(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tva_list) (ret int32)
func Yvwarn(p0 *TLS, p1 uintptr, p2 Tva_list)
func Yvwarnx(p0 *TLS, p1 uintptr, p2 Tva_list)
func Yvwprintf(p0 *TLS, p1 uintptr, p2 Tva_list) (ret int32)
func Yvwscanf(p0 *TLS, p1 uintptr, p2 Tva_list) (ret int32)
func Ywait(p0 *TLS, p1 uintptr) (ret Tpid_t)
func Ywait3(p0 *TLS, p1 uintptr, p2 int32, p3 uintptr) (ret Tpid_t)
func Ywait4(p0 *TLS, p1 Tpid_t, p2 uintptr, p3 int32, p4 uintptr) (ret Tpid_t)
func Ywaitid(p0 *TLS, p1 Tidtype_t, p2 Tid_t, p3 uintptr, p4 int32) (ret int32)
func Ywaitpid(p0 *TLS, p1 Tpid_t, p2 uintptr, p3 int32) (ret Tpid_t)
func Ywarn(p0 *TLS, p1 uintptr, p2 uintptr)
func Ywarnx(p0 *TLS, p1 uintptr, p2 uintptr)
func Ywcpcpy(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ywcpncpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ywcrtomb(p0 *TLS, p1 uintptr, p2 Twchar_t, p3 uintptr) (ret Tsize_t)
func Ywcscasecmp(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ywcscasecmp_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret int32)
func Ywcscat(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ywcschr(p0 *TLS, p1 uintptr, p2 Twchar_t) (ret uintptr)
func Ywcscmp(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ywcscoll(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ywcscoll_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tlocale_t) (ret int32)
func Ywcscpy(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ywcscspn(p0 *TLS, p1 uintptr, p2 uintptr) (ret Tsize_t)
func Ywcsdup(p0 *TLS, p1 uintptr) (ret uintptr)
func Ywcsftime(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr) (ret Tsize_t)
func Ywcsftime_l(p0 *TLS, p1 uintptr, p2 Tsize_t, p3 uintptr, p4 uintptr, p5 Tlocale_t) (ret Tsize_t)
func Ywcslen(p0 *TLS, p1 uintptr) (ret Tsize_t)
func Ywcsncasecmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ywcsncasecmp_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tlocale_t) (ret int32)
func Ywcsncat(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ywcsncmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ywcsncpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ywcsnlen(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret Tsize_t)
func Ywcsnrtombs(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tsize_t, p5 uintptr) (ret Tsize_t)
func Ywcspbrk(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ywcsrchr(p0 *TLS, p1 uintptr, p2 Twchar_t) (ret uintptr)
func Ywcsrtombs(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 uintptr) (ret Tsize_t)
func Ywcsspn(p0 *TLS, p1 uintptr, p2 uintptr) (ret Tsize_t)
func Ywcsstr(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ywcstod(p0 *TLS, p1 uintptr, p2 uintptr) (ret float64)
func Ywcstof(p0 *TLS, p1 uintptr, p2 uintptr) (ret float32)
func Ywcstoimax(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret Tintmax_t)
func Ywcstok(p0 *TLS, p1 uintptr, p2 uintptr, p3 uintptr) (ret uintptr)
func Ywcstol(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int64)
func Ywcstold(p0 *TLS, p1 uintptr, p2 uintptr) (ret float64)
func Ywcstoll(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret int64)
func Ywcstombs(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Ywcstoul(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret uint64)
func Ywcstoull(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret uint64)
func Ywcstoumax(p0 *TLS, p1 uintptr, p2 uintptr, p3 int32) (ret Tuintmax_t)
func Ywcswcs(p0 *TLS, p1 uintptr, p2 uintptr) (ret uintptr)
func Ywcswidth(p0 *TLS, p1 uintptr, p2 Tsize_t) (ret int32)
func Ywcsxfrm(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret Tsize_t)
func Ywcsxfrm_l(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t, p4 Tlocale_t) (ret Tsize_t)
func Ywctob(p0 *TLS, p1 Twint_t) (ret int32)
func Ywctomb(p0 *TLS, p1 uintptr, p2 Twchar_t) (ret int32)
func Ywctrans(p0 *TLS, p1 uintptr) (ret Twctrans_t)
func Ywctrans_l(p0 *TLS, p1 uintptr, p2 Tlocale_t) (ret Twctrans_t)
func Ywctype(p0 *TLS, p1 uintptr) (ret Twctype_t)
func Ywctype_l(p0 *TLS, p1 uintptr, p2 Tlocale_t) (ret Twctype_t)
func Ywcwidth(p0 *TLS, p1 Twchar_t) (ret int32)
func Ywmemchr(p0 *TLS, p1 uintptr, p2 Twchar_t, p3 Tsize_t) (ret uintptr)
func Ywmemcmp(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret int32)
func Ywmemcpy(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ywmemmove(p0 *TLS, p1 uintptr, p2 uintptr, p3 Tsize_t) (ret uintptr)
func Ywmemset(p0 *TLS, p1 uintptr, p2 Twchar_t, p3 Tsize_t) (ret uintptr)
func Ywprintf(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Ywrite(p0 *TLS, p1 int32, p2 uintptr, p3 Tsize_t) (ret Tssize_t)
func Ywritev(p0 *TLS, p1 int32, p2 uintptr, p3 int32) (ret Tssize_t)
func Ywscanf(p0 *TLS, p1 uintptr, p2 uintptr) (ret int32)
func Yy0(p0 *TLS, p1 float64) (ret float64)
func Yy0f(p0 *TLS, p1 float32) (ret float32)
func Yy1(p0 *TLS, p1 float64) (ret float64)
func Yy1f(p0 *TLS, p1 float32) (ret float32)
func Yyn(p0 *TLS, p1 int32, p2 float64) (ret float64)
func Yynf(p0 *TLS, p1 int32, p2 float32) (ret float32)