aboutsummaryrefslogtreecommitdiff
path: root/man/man3/INDEX
blob: 9c067d00f6814a755afbdddf6fef83b687d87705 (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
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
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
fsinit 9pclient.3
fsmount 9pclient.3
fsopen 9pclient.3
fsopenfd 9pclient.3
fspread 9pclient.3
fspwrite 9pclient.3
fsread 9pclient.3
fsreadn 9pclient.3
fsroot 9pclient.3
fssetroot 9pclient.3
fsunmount 9pclient.3
fsversion 9pclient.3
fswrite 9pclient.3
nsmount 9pclient.3
9pcmdbuf 9pcmdbuf.3
Cmdbuf 9pcmdbuf.3
lookupcmd 9pcmdbuf.3
parsecmd 9pcmdbuf.3
respondcmderror 9pcmdbuf.3
9pfid 9pfid.3
Fid 9pfid.3
Fidpool 9pfid.3
Req 9pfid.3
Reqpool 9pfid.3
allocfid 9pfid.3
allocfidpool 9pfid.3
allocreq 9pfid.3
allocreqpool 9pfid.3
closefid 9pfid.3
closereq 9pfid.3
freefidpool 9pfid.3
freereqpool 9pfid.3
lookupfid 9pfid.3
lookupreq 9pfid.3
removefid 9pfid.3
removereq 9pfid.3
9pfile 9pfile.3
File 9pfile.3
Tree 9pfile.3
alloctree 9pfile.3
closedirfile 9pfile.3
closefile 9pfile.3
createfile 9pfile.3
freetree 9pfile.3
hasperm 9pfile.3
opendirfile 9pfile.3
readdirfile 9pfile.3
removefile 9pfile.3
walkfile 9pfile.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
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
timezone 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
hangup dial.3
listen dial.3
netmkaddr dial.3
reject dial.3
dirread dirread.3
dirreadall dirread.3
Disk disk.3
disk disk.3
opendisk disk.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
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
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
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
exits exits.3
terminate 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
Intmap intmap.3
allocmap intmap.3
caninsertkey intmap.3
deletekey intmap.3
freemap intmap.3
insertkey intmap.3
intmap intmap.3
lookupkey intmap.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
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
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
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
regcomp regexp9.3
regcomplit regexp9.3
regcompnl regexp9.3
regerror regexp9.3
regexec regexp9.3
regexp9 regexp9.3
regsub regexp9.3
rregexec regexp9.3
rregsub regexp9.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
openscsi scsi.3
scsi scsi.3
scsicmd scsi.3
scsierror scsi.3
scsiready scsi.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
alt thread.3
chancreate thread.3
chanfree thread.3
chaninit 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
threadlinklibrary thread.3
threadmain thread.3
threadnotify thread.3
threadpid thread.3
threadsetgrp thread.3
threadsetname thread.3
threadsetstate thread.3
threadspawn thread.3
threadwaitchan thread.3
yield thread.3
nsec time.3
time time.3
udpread udpread.3
udpwrite udpread.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