aboutsummaryrefslogtreecommitdiff
path: root/man/man3/INDEX
blob: 6654ea7c2209304d515e9dce888cb10bb4b6ed9b (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
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
0intro 0intro.3
intro 0intro.3
9p-cmdbuf 9p-cmdbuf.3
Cmdbuf 9p-cmdbuf.3
lookupcmd 9p-cmdbuf.3
parsecmd 9p-cmdbuf.3
respondcmderror 9p-cmdbuf.3
9p-fid 9p-fid.3
Fid 9p-fid.3
Fidpool 9p-fid.3
Req 9p-fid.3
Reqpool 9p-fid.3
allocfid 9p-fid.3
allocfidpool 9p-fid.3
allocreq 9p-fid.3
allocreqpool 9p-fid.3
closefid 9p-fid.3
closereq 9p-fid.3
freefidpool 9p-fid.3
freereqpool 9p-fid.3
lookupfid 9p-fid.3
lookupreq 9p-fid.3
removefid 9p-fid.3
removereq 9p-fid.3
9p-file 9p-file.3
File 9p-file.3
Tree 9p-file.3
alloctree 9p-file.3
closedirfile 9p-file.3
closefile 9p-file.3
createfile 9p-file.3
freetree 9p-file.3
hasperm 9p-file.3
opendirfile 9p-file.3
readdirfile 9p-file.3
removefile 9p-file.3
walkfile 9p-file.3
9p-intmap 9p-intmap.3
Intmap 9p-intmap.3
allocmap 9p-intmap.3
caninsertkey 9p-intmap.3
deletekey 9p-intmap.3
freemap 9p-intmap.3
insertkey 9p-intmap.3
lookupkey 9p-intmap.3
9p 9p.3
Srv 9p.3
dirread9p 9p.3
emalloc9p 9p.3
erealloc9p 9p.3
estrdup9p 9p.3
postfd 9p.3
postmountsrv 9p.3
readbuf 9p.3
readstr 9p.3
respond 9p.3
srv 9p.3
threadpostmountsrv 9p.3
walkandclone 9p.3
9pclient 9pclient.3
CFid 9pclient.3
CFsys 9pclient.3
fsaccess 9pclient.3
fsattach 9pclient.3
fsauth 9pclient.3
fsclose 9pclient.3
fscreate 9pclient.3
fsdirfstat 9pclient.3
fsdirfwstat 9pclient.3
fsdirread 9pclient.3
fsdirreadall 9pclient.3
fsdirstat 9pclient.3
fsdirwstat 9pclient.3
fsfcreate 9pclient.3
fsfopen 9pclient.3
fsfremove 9pclient.3
fsinit 9pclient.3
fsmount 9pclient.3
fsopen 9pclient.3
fsopenfd 9pclient.3
fspread 9pclient.3
fsprint 9pclient.3
fspwrite 9pclient.3
fsread 9pclient.3
fsreadn 9pclient.3
fsremove 9pclient.3
fsroot 9pclient.3
fsseek 9pclient.3
fssetroot 9pclient.3
fsunmount 9pclient.3
fsversion 9pclient.3
fsvprint 9pclient.3
fswrite 9pclient.3
nsinit 9pclient.3
nsmount 9pclient.3
nsopen 9pclient.3
Event acme.3
Win acme.3
acme acme.3
eventfmt acme.3
newwin acme.3
pipetowin acme.3
pipewinto acme.3
sysrun acme.3
winaddr acme.3
winclosefiles acme.3
winctl acme.3
windel acme.3
windeleteall acme.3
windows acme.3
wineventchan acme.3
winfd acme.3
winfree acme.3
winmread acme.3
winname acme.3
winopenfd acme.3
winprint acme.3
winread acme.3
winreadaddr acme.3
winreadevent acme.3
winseek acme.3
winwrite acme.3
winwriteevent acme.3
Dx addpt.3
Dy addpt.3
Pt addpt.3
Rect addpt.3
Rpt addpt.3
addpt addpt.3
canonrect addpt.3
combinerect addpt.3
divpt addpt.3
eqpt addpt.3
eqrect addpt.3
insetrect addpt.3
mulpt addpt.3
ptinrect addpt.3
rectXrect addpt.3
rectaddpt addpt.3
rectclip addpt.3
rectinrect addpt.3
rectsubpt addpt.3
subpt addpt.3
aes aes.3
aesCBCdecrypt aes.3
aesCBCencrypt aes.3
setupAESstate aes.3
allocimage allocimage.3
allocimagemix allocimage.3
bytesperline allocimage.3
cloadimage allocimage.3
freeimage allocimage.3
loadimage allocimage.3
namedimage allocimage.3
nameimage allocimage.3
readimage allocimage.3
setalpha allocimage.3
unloadimage allocimage.3
wordsperline allocimage.3
writeimage allocimage.3
ARGBEGIN arg.3
ARGC arg.3
ARGEND arg.3
ARGF arg.3
EARGF arg.3
arg arg.3
arginit arg.3
argopt arg.3
add3 arith3.3
add4 arith3.3
arith3 arith3.3
closept3 arith3.3
cross3 arith3.3
dist3 arith3.3
div3 arith3.3
dot3 arith3.3
eqpt3 arith3.3
fff2p3 arith3.3
len3 arith3.3
lerp3 arith3.3
midpt3 arith3.3
mul3 arith3.3
nearseg3 arith3.3
neg3 arith3.3
pdiv4 arith3.3
pldist3 arith3.3
pn2f3 arith3.3
ppp2f3 arith3.3
reflect3 arith3.3
sub3 arith3.3
sub4 arith3.3
unit3 arith3.3
vdiv3 arith3.3
vrem3 arith3.3
atof atof.3
atoi atof.3
atol atof.3
atoll atof.3
charstod atof.3
strtod atof.3
strtol atof.3
strtoll atof.3
strtoul atof.3
strtoull atof.3
amount_getkey auth.3
auth auth.3
auth_allocrpc auth.3
auth_challenge auth.3
auth_chuid auth.3
auth_freeAI auth.3
auth_freechal auth.3
auth_freerpc auth.3
auth_getinfo auth.3
auth_getkey auth.3
auth_getuserpasswd auth.3
auth_proxy auth.3
auth_respond auth.3
auth_response auth.3
auth_rpc auth.3
auth_userpasswd auth.3
fauth_proxy auth.3
fsamount auth.3
fsauth_proxy auth.3
fsfauth_proxy auth.3
nsamount auth.3
_asgetticket authsrv.3
_asrdresp authsrv.3
authdial authsrv.3
authsrv authsrv.3
convA2M authsrv.3
convM2A authsrv.3
convM2PR authsrv.3
convM2T authsrv.3
convM2TR authsrv.3
convPR2M authsrv.3
convT2M authsrv.3
convTR2M authsrv.3
nvcsum authsrv.3
passtokey authsrv.3
readnvram authsrv.3
avl avl.3
avlnext avl.3
avlprev avl.3
avlwalk avl.3
deleteavl avl.3
endwalk avl.3
insertavl avl.3
lookupavl avl.3
mkavltree avl.3
bin bin.3
binalloc bin.3
binfree bin.3
bingrow bin.3
Bbuffered bio.3
Bfdopen bio.3
Bfildes bio.3
Bflush bio.3
Bgetc bio.3
Bgetd bio.3
Bgetrune bio.3
Binit bio.3
Binits bio.3
Blinelen bio.3
Boffset bio.3
Bopen bio.3
Bprint bio.3
Bputc bio.3
Bputrune bio.3
Brdline bio.3
Brdstr bio.3
Bread bio.3
Bseek bio.3
Bterm bio.3
Bungetc bio.3
Bungetrune bio.3
Bvprint bio.3
Bwrite bio.3
bio bio.3
bfCBCdecrypt blowfish.3
bfCBCencrypt blowfish.3
bfECBdecrypt blowfish.3
bfECBencrypt blowfish.3
blowfish blowfish.3
setupBFstate blowfish.3
Font cachechars.3
Fontchar cachechars.3
Subfont cachechars.3
agefont cachechars.3
cachechars cachechars.3
loadchar cachechars.3
cleanname cleanname.3
cmap2rgb color.3
cmap2rgba color.3
color color.3
rgb2cmap color.3
complete complete.3
freecompletion complete.3
cputime cputime.3
times cputime.3
asctime ctime.3
ctime ctime.3
gmtime ctime.3
localtime ctime.3
tm2sec ctime.3

block_cipher des.3
des des.3
des3CBCdecrypt des.3
des3CBCencrypt des.3
des3ECBdecrypt des.3
des3ECBencrypt des.3
des56to64 des.3
des64to56 des.3
desCBCdecrypt des.3
desCBCencrypt des.3
desECBdecrypt des.3
desECBencrypt des.3
des_key_setup des.3
key_setup des.3
setupDES3state des.3
setupDESstate des.3
triple_block_cipher des.3
accept dial.3
announce dial.3
dial dial.3
dialparse dial.3
freenetconninfo dial.3
getnetconninfo dial.3
listen dial.3
netmkaddr dial.3
reject dial.3
dirread dirread.3
dirreadall dirread.3
ARROW draw.3
Image draw.3
_string draw.3
arc draw.3
arcop draw.3
bezier draw.3
bezierop draw.3
bezspline draw.3
bezsplineop draw.3
bezsplinepts draw.3
border draw.3
borderop draw.3
draw draw.3
drawop draw.3
drawrepl draw.3
drawreplxy draw.3
drawsetdebug draw.3
ellipse draw.3
ellipseop draw.3
fillarc draw.3
fillarcop draw.3
fillbezier draw.3
fillbezierop draw.3
fillbezspline draw.3
fillbezsplineop draw.3
fillellipse draw.3
fillellipseop draw.3
fillpoly draw.3
fillpolyop draw.3
gendraw draw.3
gendrawop draw.3
icossin draw.3
icossin2 draw.3
line draw.3
lineop draw.3
poly draw.3
polyop draw.3
replclipr draw.3
runestring draw.3
runestringbg draw.3
runestringbgop draw.3
runestringn draw.3
runestringnbg draw.3
runestringnbgop draw.3
runestringnop draw.3
runestringop draw.3
string draw.3
stringbg draw.3
stringbgop draw.3
stringn draw.3
stringnbg draw.3
stringnbgop draw.3
stringnop draw.3
stringop draw.3
convM2W drawfcall.3
convW2M drawfcall.3
drawfcall drawfcall.3
drawfcallfmt drawfcall.3
readwsysmsg drawfcall.3
sizeW2M drawfcall.3
asn1toDSApriv dsa.3
dsa dsa.3
dsagen dsa.3
dsaprivalloc dsa.3
dsaprivfree dsa.3
dsaprivtopub dsa.3
dsapuballoc dsa.3
dsapubfree dsa.3
dsasigalloc dsa.3
dsasigfree dsa.3
dsasign dsa.3
dsaverify dsa.3
dup dup.3
egdecrypt elgamal.3
egencrypt elgamal.3
eggen elgamal.3
egprivalloc elgamal.3
egprivfree elgamal.3
egprivtopub elgamal.3
egpuballoc elgamal.3
egpubfree elgamal.3
egsigalloc elgamal.3
egsigfree elgamal.3
egsign elgamal.3
egverify elgamal.3
elgamal elgamal.3
dec16 encode.3
dec32 encode.3
dec64 encode.3
enc16 encode.3
enc32 encode.3
enc64 encode.3
encode encode.3
encodefmt encode.3
decrypt encrypt.3
encrypt encrypt.3
netcrypt encrypt.3
errstr errstr.3
rerrstr errstr.3
werrstr errstr.3
Event event.3
Menu event.3
Mouse event.3
eatomouse event.3
ecankbd event.3
ecanmouse event.3
ecanread event.3
edrawgetrect event.3
egetrect event.3
einit event.3
ekbd event.3
emenuhit event.3
emouse event.3
emoveto event.3
eread event.3
ereadmouse event.3
eresized event.3
esetcursor event.3
estart event.3
estartfn event.3
etimer event.3
event event.3
exec exec.3
execl exec.3
_exits exits.3
atexit exits.3
atexitdont exits.3
exitcode exits.3
exits exits.3
Fcall fcall.3
convD2M fcall.3
convM2D fcall.3
convM2S fcall.3
convS2M fcall.3
dirfmt fcall.3
dirmodefmt fcall.3
fcall fcall.3
fcallfmt fcall.3
read9pmsg fcall.3
sizeD2M fcall.3
sizeS2M fcall.3
statcheck fcall.3
adler32 flate.3
blockcrc flate.3
deflate flate.3
deflateblock flate.3
deflateinit flate.3
deflatezlib flate.3
deflatezlibblock flate.3
flate flate.3
flateerr flate.3
inflate flate.3
inflateblock flate.3
inflateinit flate.3
inflatezlib flate.3
inflatezlibblock flate.3
mkcrctab flate.3
dofmt fmtinstall.3
dorfmt fmtinstall.3
errfmt fmtinstall.3
fmtfdflush fmtinstall.3
fmtfdinit fmtinstall.3
fmtinstall fmtinstall.3
fmtprint fmtinstall.3
fmtrune fmtinstall.3
fmtrunestrcpy fmtinstall.3
fmtstrcpy fmtinstall.3
fmtstrflush fmtinstall.3
fmtstrinit fmtinstall.3
fmtvprint fmtinstall.3
runefmtstrflush fmtinstall.3
runefmtstrinit fmtinstall.3
frame frame.3
frcharofpt frame.3
frclear frame.3
frdelete frame.3
frdrawsel frame.3
frdrawsel0 frame.3
frgetmouse frame.3
frinit frame.3
frinittick frame.3
frinsert frame.3
frptofchar frame.3
frselect frame.3
frselectpaint frame.3
frsetrects frame.3
frtick frame.3
genrandom genrandom.3
prng genrandom.3
get9root get9root.3
unsharp get9root.3
getcallerpc getcallerpc.3
getenv getenv.3
putenv getenv.3
getfields getfields.3
gettokens getfields.3
tokenize getfields.3
getns getns.3
getsnarf getsnarf.3
putsnarf getsnarf.3
getuser getuser.3
sysname getuser.3
getwd getwd.3
Cursor graphics.3
Display graphics.3
Pfmt graphics.3
Point graphics.3
Rectangle graphics.3
Rfmt graphics.3
bufimage graphics.3
buildfont graphics.3
chantodepth graphics.3
chantostr graphics.3
closedisplay graphics.3
cursorset graphics.3
cursorswitch graphics.3
drawerror graphics.3
flushimage graphics.3
freefont graphics.3
gengetwindow graphics.3
geninitdraw graphics.3
getdefont graphics.3
getwindow graphics.3
graphics graphics.3
initdisplay graphics.3
initdraw graphics.3
lockdisplay graphics.3
openfont graphics.3
strtochan graphics.3
unlockdisplay graphics.3
dimenkind html.3
dimenspec html.3
freedocinfo html.3
freeitems html.3
fromStr html.3
html html.3
parsehtml html.3
printitems html.3
targetid html.3
targetname html.3
toStr html.3
validitems html.3
closeioproc ioproc.3
iocall ioproc.3
ioclose ioproc.3
iodial ioproc.3
iointerrupt ioproc.3
ioopen ioproc.3
ioproc ioproc.3
ioread ioproc.3
ioread9pmsg ioproc.3
ioreadn ioproc.3
iorecvfd ioproc.3
iosendfd ioproc.3
iosleep ioproc.3
iowrite ioproc.3
defmask ip.3
eipfmt ip.3
equivip ip.3
hnputl ip.3
hnputs ip.3
hnputv ip.3
ip ip.3
isv4 ip.3
maskip ip.3
myetheraddr ip.3
myipaddr ip.3
nhgetl ip.3
nhgets ip.3
nhgetv ip.3
parseether ip.3
parseip ip.3
parseipmask ip.3
ptclbsum ip.3
readipifc ip.3
v4parsecidr ip.3
v4parseip ip.3
v4tov6 ip.3
v6tov4 ip.3
isalpharune isalpharune.3
islowerrune isalpharune.3
isspacerune isalpharune.3
istitlerune isalpharune.3
isupperrune isalpharune.3
tolowerrune isalpharune.3
totitlerune isalpharune.3
toupperrune isalpharune.3
closekeyboard keyboard.3
ctlkeyboard keyboard.3
initkeyboard keyboard.3
keyboard keyboard.3
canlock lock.3
canqlock lock.3
canrlock lock.3
canwlock lock.3
decref lock.3
incref lock.3
lock lock.3
qlock lock.3
qunlock lock.3
rlock lock.3
rsleep lock.3
runlock lock.3
rwakeup lock.3
rwakeupall lock.3
unlock lock.3
wlock lock.3
wunlock lock.3
attachargs mach-cmd.3
attachcore mach-cmd.3
attachdynamic mach-cmd.3
attachproc mach-cmd.3
mach-cmd mach-cmd.3
proctextfile mach-cmd.3
crackhdr mach-file.3
ctlproc mach-file.3
detachproc mach-file.3
mach-file mach-file.3
mapfile mach-file.3
mapproc mach-file.3
procnotes mach-file.3
uncrackhdr mach-file.3
unmapfile mach-file.3
unmapproc mach-file.3
addrtoseg mach-map.3
addrtosegafter mach-map.3
addseg mach-map.3
allocmap mach-map.3
findseg mach-map.3
fpformat mach-map.3
freemap mach-map.3
get1 mach-map.3
get2 mach-map.3
get4 mach-map.3
get8 mach-map.3
lget1 mach-map.3
lget2 mach-map.3
lget4 mach-map.3
lget8 mach-map.3
locaddr mach-map.3
loccmp mach-map.3
locconst mach-map.3
loceval mach-map.3
locfmt mach-map.3
locindir mach-map.3
locnone mach-map.3
locreg mach-map.3
locsimplify mach-map.3
lput1 mach-map.3
lput2 mach-map.3
lput4 mach-map.3
lput8 mach-map.3
mach-map mach-map.3
put1 mach-map.3
put2 mach-map.3
put4 mach-map.3
put8 mach-map.3
removeseg mach-map.3
rget mach-map.3
rput mach-map.3
localaddr mach-stack.3
mach-stack mach-stack.3
stacktrace mach-stack.3
unwindframe mach-stack.3
windindex mach-stack.3
windreglocs mach-stack.3
beieeeftoa32 mach-swap.3
beieeeftoa64 mach-swap.3
beieeeftoa80 mach-swap.3
beload2 mach-swap.3
beload4 mach-swap.3
beload8 mach-swap.3
beswap2 mach-swap.3
beswap4 mach-swap.3
beswap8 mach-swap.3
ieeeftoa32 mach-swap.3
ieeeftoa64 mach-swap.3
leieeeftoa32 mach-swap.3
leieeeftoa64 mach-swap.3
leieeeftoa80 mach-swap.3
leload2 mach-swap.3
leload4 mach-swap.3
leload8 mach-swap.3
leswap2 mach-swap.3
leswap4 mach-swap.3
leswap8 mach-swap.3
mach-swap mach-swap.3
ffindsym mach-symbol.3
file2pc mach-symbol.3
fileline mach-symbol.3
findexsym mach-symbol.3
findhdr mach-symbol.3
findlsym mach-symbol.3
findsym mach-symbol.3
flookupsym mach-symbol.3
fnbound mach-symbol.3
indexlsym mach-symbol.3
indexsym mach-symbol.3
line2pc mach-symbol.3
lookuplsym mach-symbol.3
lookupsym mach-symbol.3
mach-symbol mach-symbol.3
pc2file mach-symbol.3
pc2line mach-symbol.3
symclose mach-symbol.3
symoff mach-symbol.3
symopen mach-symbol.3
mach mach.3
machbyname mach.3
machbytype mach.3
calloc malloc.3
free malloc.3
getmalloctag malloc.3
getrealloctag malloc.3
malloc malloc.3
mallocz malloc.3
realloc malloc.3
setmalloctag malloc.3
setrealloctag malloc.3
adjoint matrix.3
determinant matrix.3
ident matrix.3
invertmat matrix.3
ixform matrix.3
look matrix.3
matmul matrix.3
matmulr matrix.3
matrix matrix.3
move matrix.3
persp matrix.3
popmat matrix.3
pushmat matrix.3
qrot matrix.3
rot matrix.3
scale matrix.3
viewport matrix.3
xform matrix.3
xformplane matrix.3
xformpoint matrix.3
xformpointd matrix.3
Memdata memdraw.3
Memdrawparam memdraw.3
Memimage memdraw.3
allocmemimage memdraw.3
allocmemimaged memdraw.3
allocmemsubfont memdraw.3
byteaddr memdraw.3
cloadmemimage memdraw.3
creadmemimage memdraw.3
drawclip memdraw.3
freememimage memdraw.3
freememsubfont memdraw.3
getmemdefont memdraw.3
hwdraw memdraw.3
iprint memdraw.3
loadmemimage memdraw.3
memarc memdraw.3
memdraw memdraw.3
memellipse memdraw.3
memfillcolor memdraw.3
memfillpoly memdraw.3
memimagedraw memdraw.3
memimageinit memdraw.3
memimageline memdraw.3
memimagemove memdraw.3
memimagestring memdraw.3
memlinebbox memdraw.3
memlineendsize memdraw.3
mempoly memdraw.3
memsetchan memdraw.3
memsubfontwidth memdraw.3
openmemsubfont memdraw.3
readmemimage memdraw.3
unloadmemimage memdraw.3
wordaddr memdraw.3
writememimage memdraw.3
memdraw memlayer.3
memlalloc memlayer.3
memlayer memlayer.3
memldelete memlayer.3
memlexpose memlayer.3
memlfree memlayer.3
memlhide memlayer.3
memline memlayer.3
memlnorefresh memlayer.3
memload memlayer.3
memlorigin memlayer.3
memlsetrefresh memlayer.3
memltofront memlayer.3
memltofrontn memlayer.3
memltorear memlayer.3
memltorearn memlayer.3
memunload memlayer.3
memccpy memory.3
memchr memory.3
memcmp memory.3
memcpy memory.3
memmove memory.3
memory memory.3
memset memory.3
closemouse mouse.3
cursorswitch mouse.3
drawgetrect mouse.3
getrect mouse.3
initmouse mouse.3
menuhit mouse.3
mouse mouse.3
moveto mouse.3
readmouse mouse.3
setcursor mouse.3
mousescrollsize mousescrollsize.3
betomp mp.3
crtin mp.3
crtout mp.3
crtpre mp.3
crtprefree mp.3
crtresfree mp.3
itomp mp.3
letomp mp.3
mp mp.3
mpadd mp.3
mpassign mp.3
mpbits mp.3
mpcmp mp.3
mpcopy mp.3
mpdigdiv mp.3
mpdiv mp.3
mpexp mp.3
mpextendedgcd mp.3
mpfactorial mp.3
mpfmt mp.3
mpfree mp.3
mpinvert mp.3
mpleft mp.3
mplowbits0 mp.3
mpmagadd mp.3
mpmagcmp mp.3
mpmagsub mp.3
mpmod mp.3
mpmul mp.3
mpnew mp.3
mpnorm mp.3
mprand mp.3
mpright mp.3
mpsetminbits mp.3
mpsignif mp.3
mpsub mp.3
mptoa mp.3
mptobe mp.3
mptoi mp.3
mptole mp.3
mptoui mp.3
mptouv mp.3
mptov mp.3
mpvecadd mp.3
mpveccmp mp.3
mpvecdigmuladd mp.3
mpvecdigmulsub mp.3
mpvecmul mp.3
mpvecsub mp.3
strtomp mp.3
uitomp mp.3
uvtomp mp.3
vtomp mp.3
muldiv muldiv.3
umuldiv muldiv.3
Mux mux.3
mux mux.3
muxinit mux.3
muxrpc mux.3
muxthreads mux.3
Inf nan.3
NaN nan.3
isInf nan.3
isNaN nan.3
nan nan.3
ipattr ndb.3
ndb ndb.3
ndbcat ndb.3
ndbchanged ndb.3
ndbclose ndb.3
ndbconcatenate ndb.3
ndbdiscard ndb.3
ndbfindattr ndb.3
ndbfree ndb.3
ndbgetipaddr ndb.3
ndbgetval ndb.3
ndbgetvalue ndb.3
ndbhash ndb.3
ndbipinfo ndb.3
ndblookval ndb.3
ndbopen ndb.3
ndbparse ndb.3
ndbreopen ndb.3
ndbreorder ndb.3
ndbsearch ndb.3
ndbsnext ndb.3
ndbsubstitute ndb.3
needstack needstack.3
atnotify notify.3
noted notify.3
notedisable notify.3
noteenable notify.3
notify notify.3
notifyoff notify.3
notifyon notify.3
close open.3
create open.3
open open.3
opentemp opentemp.3
pipe pipe.3
Plumbmsg plumb.3
eplumb plumb.3
plumb plumb.3
plumbaddattr plumb.3
plumbdelattr plumb.3
plumbfree plumb.3
plumblookup plumb.3
plumbopen plumb.3
plumbopenfid plumb.3
plumbpack plumb.3
plumbpackattr plumb.3
plumbrecv plumb.3
plumbrecvfid plumb.3
plumbsend plumb.3
plumbsendtext plumb.3
plumbsendtofid plumb.3
plumbunmount plumb.3
plumbunpack plumb.3
plumbunpackattr plumb.3
plumbunpackpartial plumb.3
post9pservice post9pservice.3
postnote postnote.3
DSAprimes prime.3
genprime prime.3
gensafeprime prime.3
genstrongprime prime.3
prime prime.3
probably_prime prime.3
smallprimetest prime.3
fprint print.3
print print.3
runeseprint print.3
runesmprint print.3
runesnprint print.3
runesprint print.3
runevseprint print.3
runevsmprint print.3
runevsnprint print.3
seprint print.3
smprint print.3
snprint print.3
sprint print.3
vfprint print.3
vseprint print.3
vsmprint print.3
vsnprint print.3
proto proto.3
rdproto proto.3
freeThumbprints pushtls.3
initThumbprints pushtls.3
okThumbprint pushtls.3
pushtls pushtls.3
readcert pushtls.3
readcertchain pushtls.3
tlsClient pushtls.3
tlsServer pushtls.3
qball qball.3
mtoq quaternion.3
qadd quaternion.3
qdiv quaternion.3
qinv quaternion.3
qlen quaternion.3
qmid quaternion.3
qmul quaternion.3
qneg quaternion.3
qsqrt quaternion.3
qsub quaternion.3
qtom quaternion.3
quaternion quaternion.3
qunit quaternion.3
slerp quaternion.3
doquote quote.3
needsrcquote quote.3
quote quote.3
quotefmtinstall quote.3
quoterunestrdup quote.3
quoterunestrfmt quote.3
quotestrdup quote.3
quotestrfmt quote.3
unquoterunestrdup quote.3
unquotestrdup quote.3
fastrand rand.3
frand rand.3
lnrand rand.3
lrand rand.3
nfastrand rand.3
nrand rand.3
ntruerand rand.3
rand rand.3
srand rand.3
truerand rand.3
rc4 rc4.3
rc4back rc4.3
rc4skip rc4.3
setupRC4state rc4.3
pread read.3
pwrite read.3
read read.3
readn read.3
write read.3
RGB readcolmap.3
readcolmap readcolmap.3
writecolmap readcolmap.3
readcons readcons.3
regcomp regexp.3
regcomplit regexp.3
regcompnl regexp.3
regerror regexp.3
regexec regexp.3
regexp regexp.3
regsub regexp.3
rregexec regexp.3
rregsub regexp.3
rfork rfork.3

X509dump rsa.3
X509gen rsa.3
X509req rsa.3
X509toRSApub rsa.3
X509verify rsa.3
asn1dump rsa.3
asn1toRSApriv rsa.3
decodepem rsa.3
decodepemchain rsa.3
rsa rsa.3
rsadecrypt rsa.3
rsaencrypt rsa.3
rsafill rsa.3
rsagen rsa.3
rsaprivalloc rsa.3
rsaprivfree rsa.3
rsaprivtopub rsa.3
rsapuballoc rsa.3
rsapubfree rsa.3
chartorune rune.3
fullrune rune.3
rune rune.3
runelen rune.3
runenlen rune.3
runetochar rune.3
utfecpy rune.3
utflen rune.3
utfnlen rune.3
utfrrune rune.3
utfrune rune.3
utfutf rune.3
runestrcat runestrcat.3
runestrchr runestrcat.3
runestrcmp runestrcat.3
runestrcpy runestrcat.3
runestrdup runestrcat.3
runestrecpy runestrcat.3
runestrlen runestrcat.3
runestrncat runestrcat.3
runestrncmp runestrcat.3
runestrncpy runestrcat.3
runestrrchr runestrcat.3
runestrstr runestrcat.3
search searchpath.3
searchpath searchpath.3
hmac_md5 sechash.3
hmac_sha1 sechash.3
md4 sechash.3
md5 sechash.3
md5pickle sechash.3
md5unpickle sechash.3
sechash sechash.3
sha1 sechash.3
sha1pickle sechash.3
sha1unpickle sechash.3
seek seek.3
recvfd sendfd.3
sendfd sendfd.3
longjmp setjmp.3
notejmp setjmp.3
setjmp setjmp.3
alarm sleep.3
sleep sleep.3
dirfstat stat.3
dirfwstat stat.3
dirstat stat.3
dirwstat stat.3
fstat stat.3
fwstat stat.3
nulldir stat.3
stat stat.3
wstat stat.3
cistrcmp strcat.3
cistrncmp strcat.3
cistrstr strcat.3
strcat strcat.3
strchr strcat.3
strcmp strcat.3
strcpy strcat.3
strcspn strcat.3
strdup strcat.3
strecpy strcat.3
strlen strcat.3
strncat strcat.3
strncmp strcat.3
strncpy strcat.3
strpbrk strcat.3
strrchr strcat.3
strspn strcat.3
strstr strcat.3
strtok strcat.3
s_alloc string.3
s_allocinstack string.3
s_append string.3
s_array string.3
s_copy string.3
s_error string.3
s_free string.3
s_freeinstack string.3
s_getline string.3
s_grow string.3
s_incref string.3
s_memappend string.3
s_nappend string.3
s_new string.3
s_newalloc string.3
s_parse string.3
s_putc string.3
s_rdinstack string.3
s_read string.3
s_read_line string.3
s_reset string.3
s_restart string.3
s_terminate string.3
s_tolower string.3
s_unique string.3
string string.3
runestringnwidth stringsize.3
runestringsize stringsize.3
runestringwidth stringsize.3
stringnwidth stringsize.3
stringsize stringsize.3
stringwidth stringsize.3
allocsubfont subfont.3
freesubfont subfont.3
installsubfont subfont.3
lookupsubfont subfont.3
mkfont subfont.3
readsubfont subfont.3
readsubfonti subfont.3
stringsubfont subfont.3
strsubfontwidth subfont.3
subfont subfont.3
subfontname subfont.3
uninstallsubfont subfont.3
writesubfont subfont.3
sysfatal sysfatal.3
syslog sysfatal.3
alt thread.3
chancreate thread.3
chanfree thread.3
chanprint thread.3
chansetname thread.3
mainstacksize thread.3
nbrecv thread.3
nbrecvp thread.3
nbrecvul thread.3
nbsend thread.3
nbsendp thread.3
nbsendul thread.3
proccreate thread.3
procdata thread.3
recv thread.3
recvp thread.3
recvul thread.3
send thread.3
sendp thread.3
sendul thread.3
thread thread.3
threadcreate thread.3
threaddata thread.3
threadexec thread.3
threadexecl thread.3
threadexits thread.3
threadexitsall thread.3
threadgetgrp thread.3
threadgetname thread.3
threadid thread.3
threadint thread.3
threadintgrp thread.3
threadkill thread.3
threadkillgrp thread.3
threadmain thread.3
threadnotify thread.3
threadpid thread.3
threadpin thread.3
threadsetgrp thread.3
threadsetname thread.3
threadsetstate thread.3
threadspawn thread.3
threadspawnd thread.3
threadspawnl thread.3
threadunpin thread.3
threadwaitchan thread.3
yield thread.3
nsec time.3
time time.3
udpread udpread.3
udpwrite udpread.3
VtBlock venti-cache.3
VtCache venti-cache.3
venti-cache venti-cache.3
vtblockcopy venti-cache.3
vtblockduplock venti-cache.3
vtblockput venti-cache.3
vtblockwrite venti-cache.3
vtcachealloc venti-cache.3
vtcacheallocblock venti-cache.3
vtcachefree venti-cache.3
vtcacheglobal venti-cache.3
vtcachelocal venti-cache.3
vtcachesetwrite venti-cache.3
vtglobaltolocal venti-cache.3
vtlocaltoglobal venti-cache.3
venti-client venti-client.3
ventidoublechecksha1 venti-client.3
vtconnect venti-client.3
vthello venti-client.3
vtping venti-client.3
vtread venti-client.3
vtreadpacket venti-client.3
vtrpc venti-client.3
vtsync venti-client.3
vtwrite venti-client.3
vtwritepacket venti-client.3
VtConn venti-conn.3
venti-conn venti-conn.3
vtconn venti-conn.3
vtdebug venti-conn.3
vtdial venti-conn.3
vtfreeconn venti-conn.3
vthangup venti-conn.3
vtrecv venti-conn.3
vtsend venti-conn.3
vtversion venti-conn.3
VtEntry venti-fcall.3
VtFcall venti-fcall.3
VtRoot venti-fcall.3
venti-fcall venti-fcall.3
vtentrypack venti-fcall.3
vtentryunpack venti-fcall.3
vtfcallclear venti-fcall.3
vtfcallfmt venti-fcall.3
vtfcallpack venti-fcall.3
vtfcallunpack venti-fcall.3
vtfromdisktype venti-fcall.3
vtgetstring venti-fcall.3
vtparsescore venti-fcall.3
vtputstring venti-fcall.3
vtrootpack venti-fcall.3
vtrootunpack venti-fcall.3
vtscorefmt venti-fcall.3
vttodisktype venti-fcall.3
VtFile venti-file.3
venti-file venti-file.3
vtfileblock venti-file.3
vtfileblockscore venti-file.3
vtfileclose venti-file.3
vtfilecreate venti-file.3
vtfilecreateroot venti-file.3
vtfileflush venti-file.3
vtfileflushbefore venti-file.3
vtfilegetdirsize venti-file.3
vtfilegetentry venti-file.3
vtfilegetsize venti-file.3
vtfileincref venti-file.3
vtfilelock venti-file.3
vtfilelock2 venti-file.3
vtfileopen venti-file.3
vtfileopenroot venti-file.3
vtfileread venti-file.3
vtfileremove venti-file.3
vtfilesetdirsize venti-file.3
vtfilesetentry venti-file.3
vtfilesetsize venti-file.3
vtfiletruncate venti-file.3
vtfileunlock venti-file.3
vtfilewrite venti-file.3
VtLog venti-log.3
VtLogChunk venti-log.3
venti-log venti-log.3
ventilogging venti-log.3
vtlog venti-log.3
vtlogclose venti-log.3
vtlogdump venti-log.3
vtlognames venti-log.3
vtlogopen venti-log.3
vtlogprint venti-log.3
vtlogremove venti-log.3
venti-mem venti-mem.3
vtbrk venti-mem.3
vtfree venti-mem.3
vtmalloc venti-mem.3
vtmallocz venti-mem.3
vtrealloc venti-mem.3
vtstrdup venti-mem.3
Packet venti-packet.3
packetalloc venti-packet.3
packetappend venti-packet.3
packetasize venti-packet.3
packetcmp venti-packet.3
packetconcat venti-packet.3
packetconsume venti-packet.3
packetcopy venti-packet.3
packetdup venti-packet.3
packetforeign venti-packet.3
packetfragments venti-packet.3
packetfree venti-packet.3
packetheader venti-packet.3
packetpeek venti-packet.3
packetprefix venti-packet.3
packetsha1 venti-packet.3
packetsize venti-packet.3
packetsplit venti-packet.3
packetstats venti-packet.3
packettrailer venti-packet.3
packettrim venti-packet.3
venti-packet venti-packet.3
venti-server venti-server.3
vtgetreq venti-server.3
vtlisten venti-server.3
vtrespond venti-server.3
vtsrvhello venti-server.3
venti-zero venti-zero.3
vtzeroextend venti-zero.3
vtzeroscore venti-zero.3
vtzerotruncate venti-zero.3
venti venti.3
await wait.3
awaitfor wait.3
awaitnohang wait.3
wait wait.3
waitfor wait.3
waitnohang wait.3
waitpid wait.3
drawresizewindow wctl.3
drawsetlabel wctl.3
drawtopwindow wctl.3
wctl wctl.3
Screen window.3
allocscreen window.3
allocwindow window.3
bottomnwindows window.3
bottomwindow window.3
freescreen window.3
originwindow window.3
publicscreen window.3
topnwindows window.3
topwindow window.3
window window.3