-
Notifications
You must be signed in to change notification settings - Fork 2
/
.sbcl_completions
12856 lines (12856 loc) · 344 KB
/
.sbcl_completions
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
*
+
-
/
/=
1+
1-
:euc-jp->string-aref
:euc-jp->string-sap-ref-8
:gbk->string-aref
:gbk->string-sap-ref-8
:shift_jis->string-aref
:shift_jis->string-sap-ref-8
<
<=
=
>
>=
abort
abs
acons
acos
acosh
add-method
adjoin
adjust-array
adjustable-array-p
allocate-instance
alpha-char-p
alphanumericp
and
append
apply
apropos
apropos-list
aref
arithmetic-error-operands
arithmetic-error-operation
array-dimension
array-dimensions
array-displacement
array-element-type
array-has-fill-pointer-p
array-in-bounds-p
array-rank
array-row-major-index
array-total-size
arrayp
ash
asin
asinh
assert
assoc
assoc-if
assoc-if-not
atan
atanh
atom
bit
bit-and
bit-andc1
bit-andc2
bit-eqv
bit-ior
bit-nand
bit-nor
bit-not
bit-orc1
bit-orc2
bit-vector-p
bit-xor
block
boole
both-case-p
boundp
break
broadcast-stream-streams
butlast
byte
byte-position
byte-size
caaaar
caaadr
caaar
caadar
caaddr
caadr
caar
cadaar
cadadr
cadar
caddar
cadddr
caddr
cadr
call-method
car
case
catch
ccase
cdaaar
cdaadr
cdaar
cdadar
cdaddr
cdadr
cdar
cddaar
cddadr
cddar
cdddar
cddddr
cdddr
cddr
cdr
ceiling
cell-error-name
cerror
change-class
char
char-code
char-downcase
char-equal
char-greaterp
char-int
char-lessp
char-name
char-not-equal
char-not-greaterp
char-not-lessp
char-upcase
char/=
char<
char<=
char=
char>
char>=
character
characterp
check-type
cis
class-name
class-of
clear-input
clear-output
close
clrhash
code-char
coerce
compile
compile-file
compile-file-pathname
compiled-function-p
compiler-macro-function
complement
complex
complexp
compute-applicable-methods
compute-restarts
concatenate
concatenated-stream-streams
cond
conjugate
cons
consp
constantly
constantp
continue
copy-alist
copy-list
copy-pprint-dispatch
copy-readtable
copy-seq
copy-structure
copy-symbol
copy-tree
cos
cosh
count
count-if
count-if-not
ctypecase
decf
declaim
decode-float
decode-universal-time
defclass
defconstant
defgeneric
define-compiler-macro
define-condition
define-method-combination
define-modify-macro
define-setf-expander
define-symbol-macro
defmacro
defmethod
defpackage
defparameter
defsetf
defstruct
deftype
defun
defvar
delete
delete-duplicates
delete-file
delete-if
delete-if-not
delete-package
denominator
deposit-field
describe
describe-object
destructuring-bind
digit-char
digit-char-p
directory
directory-namestring
disassemble
do
do*
do-all-symbols
do-external-symbols
do-symbols
documentation
dolist
dotimes
dpb
dribble
ecase
echo-stream-input-stream
echo-stream-output-stream
ed
eighth
elt
encode-universal-time
endp
enough-namestring
ensure-directories-exist
ensure-generic-function
eq
eql
equal
equalp
error
etypecase
eval
eval-when
evenp
every
exp
export
expt
fboundp
fceiling
fdefinition
ffloor
fifth
file-author
file-error-pathname
file-length
file-namestring
file-position
file-string-length
file-write-date
fill
fill-pointer
find
find-all-symbols
find-class
find-if
find-if-not
find-method
find-package
find-restart
find-symbol
finish-output
first
flet
float
float-digits
float-precision
float-radix
float-sign
floatp
floor
fmakunbound
force-output
format
formatter
fourth
fresh-line
fround
ftruncate
funcall
function
function-keywords
function-lambda-expression
functionp
gcd
gensym
gentemp
get
get-decoded-time
get-dispatch-macro-character
get-internal-real-time
get-internal-run-time
get-macro-character
get-output-stream-string
get-properties
get-setf-expansion
get-universal-time
getf
gethash
go
graphic-char-p
handler-bind
handler-case
hash-table-count
hash-table-p
hash-table-rehash-size
hash-table-rehash-threshold
hash-table-size
hash-table-test
host-namestring
identity
if
ignore-errors
imagpart
import
in-package
incf
initialize-instance
input-stream-p
inspect
integer-decode-float
integer-length
integerp
interactive-stream-p
intern
intersection
invalid-method-error
invoke-debugger
invoke-restart
invoke-restart-interactively
isqrt
keywordp
labels
lambda
last
lcm
ldb
ldb-test
ldiff
length
let
let*
lisp-implementation-type
lisp-implementation-version
list
list*
list-all-packages
list-length
listen
listp
load
load-logical-pathname-translations
load-time-value
locally
log
logand
logandc1
logandc2
logbitp
logcount
logeqv
logical-pathname
logical-pathname-translations
logior
lognand
lognor
lognot
logorc1
logorc2
logtest
logxor
long-site-name
loop
loop-finish
lower-case-p
machine-instance
machine-type
machine-version
macro-function
macroexpand
macroexpand-1
macrolet
make-array
make-broadcast-stream
make-concatenated-stream
make-condition
make-dispatch-macro-character
make-echo-stream
make-hash-table
make-instance
make-instances-obsolete
make-list
make-load-form
make-load-form-saving-slots
make-package
make-pathname
make-random-state
make-sequence
make-string
make-string-input-stream
make-string-output-stream
make-symbol
make-synonym-stream
make-two-way-stream
makunbound
map
map-into
mapc
mapcan
mapcar
mapcon
maphash
mapl
maplist
mask-field
max
member
member-if
member-if-not
merge
merge-pathnames
method-combination-error
method-qualifiers
min
minusp
mismatch
mod
muffle-warning
multiple-value-bind
multiple-value-call
multiple-value-list
multiple-value-prog1
multiple-value-setq
name-char
namestring
nbutlast
nconc
nintersection
ninth
no-applicable-method
no-next-method
not
notany
notevery
nreconc
nreverse
nset-difference
nset-exclusive-or
nstring-capitalize
nstring-downcase
nstring-upcase
nsublis
nsubst
nsubst-if
nsubst-if-not
nsubstitute
nsubstitute-if
nsubstitute-if-not
nth
nth-value
nthcdr
null
numberp
numerator
nunion
oddp
open
open-stream-p
or
output-stream-p
package-error-package
package-name
package-nicknames
package-shadowing-symbols
package-use-list
package-used-by-list
packagep
pairlis
parse-integer
parse-namestring
pathname
pathname-device
pathname-directory
pathname-host
pathname-match-p
pathname-name
pathname-type
pathname-version
pathnamep
peek-char
phase
plusp
pop
position
position-if
position-if-not
pprint
pprint-dispatch
pprint-exit-if-list-exhausted
pprint-fill
pprint-indent
pprint-linear
pprint-logical-block
pprint-newline
pprint-pop
pprint-tab
pprint-tabular
prin1
prin1-to-string
princ
princ-to-string
print
print-not-readable-object
print-object
print-unreadable-object
probe-file
proclaim
prog
prog*
prog1
prog2
progn
progv
provide
psetf
psetq
push
pushnew
quote
random
random-state-p
rassoc
rassoc-if
rassoc-if-not
rational
rationalize
rationalp
read
read-byte
read-char
read-char-no-hang
read-delimited-list
read-from-string
read-line
read-preserving-whitespace
read-sequence
readtable-case
readtablep
realp
realpart
reduce
reinitialize-instance
rem
remf
remhash
remove
remove-duplicates
remove-if
remove-if-not
remove-method
remprop
rename-file
rename-package
replace
require
rest
restart-bind
restart-case
restart-name
return
return-from
revappend
reverse
room
rotatef
round
row-major-aref
rplaca
rplacd
sb-alien-internals:%alien-value
sb-alien-internals:%cast
sb-alien-internals:%deref-addr
sb-alien-internals:%heap-alien
sb-alien-internals:%heap-alien-addr
sb-alien-internals:%local-alien-addr
sb-alien-internals:%local-alien-forced-to-memory-p
sb-alien-internals:%sap-alien
sb-alien-internals:%set-deref
sb-alien-internals:%set-heap-alien
sb-alien-internals:%set-local-alien
sb-alien-internals:%set-slot
sb-alien-internals:%slot-addr
sb-alien-internals:alien-array-type-dimensions
sb-alien-internals:alien-array-type-element-type
sb-alien-internals:alien-array-type-p
sb-alien-internals:alien-boolean-type-p
sb-alien-internals:alien-callback
sb-alien-internals:alien-callback-accessor-form
sb-alien-internals:alien-callback-assembler-wrapper
sb-alien-internals:alien-double-float-type-p
sb-alien-internals:alien-enum-type-p
sb-alien-internals:alien-float-type-p
sb-alien-internals:alien-fun-type-arg-types
sb-alien-internals:alien-fun-type-p
sb-alien-internals:alien-fun-type-result-type
sb-alien-internals:alien-integer-type-p
sb-alien-internals:alien-integer-type-signed
sb-alien-internals:alien-pointer-type-p
sb-alien-internals:alien-pointer-type-to
sb-alien-internals:alien-record-field-name
sb-alien-internals:alien-record-field-offset
sb-alien-internals:alien-record-field-p
sb-alien-internals:alien-record-field-type
sb-alien-internals:alien-record-type-fields
sb-alien-internals:alien-record-type-p
sb-alien-internals:alien-single-float-type-p
sb-alien-internals:alien-subtype-p
sb-alien-internals:alien-type-=
sb-alien-internals:alien-type-alignment
sb-alien-internals:alien-type-bits
sb-alien-internals:alien-type-p
sb-alien-internals:alien-typep
sb-alien-internals:alien-value
sb-alien-internals:alien-value-p
sb-alien-internals:alien-value-sap
sb-alien-internals:alien-value-type
sb-alien-internals:alien-value-typep
sb-alien-internals:alien-values-type-p
sb-alien-internals:alien-values-type-values
sb-alien-internals:alien-void-type-p
sb-alien-internals:align-offset
sb-alien-internals:compute-alien-rep-type
sb-alien-internals:compute-deport-alloc-lambda
sb-alien-internals:compute-deport-lambda
sb-alien-internals:compute-deposit-lambda
sb-alien-internals:compute-extract-lambda
sb-alien-internals:compute-lisp-rep-type
sb-alien-internals:compute-naturalize-lambda
sb-alien-internals:define-alien-type-translator
sb-alien-internals:deport
sb-alien-internals:deport-alloc
sb-alien-internals:enter-alien-callback
sb-alien-internals:heap-alien-info-p
sb-alien-internals:heap-alien-info-sap-form
sb-alien-internals:heap-alien-info-type
sb-alien-internals:invoke-alien-type-method
sb-alien-internals:invoke-with-saved-fp
sb-alien-internals:local-alien
sb-alien-internals:local-alien-info-force-to-memory-p
sb-alien-internals:local-alien-info-p
sb-alien-internals:local-alien-info-type
sb-alien-internals:make-alien-fun-type
sb-alien-internals:make-alien-pointer-type
sb-alien-internals:make-local-alien
sb-alien-internals:maybe-with-pinned-objects
sb-alien-internals:naturalize
sb-alien-internals:note-local-alien-type
sb-alien-internals:parse-alien-type
sb-alien-internals:unparse-alien-type
sb-alien:%alien-callback-sap
sb-alien:%def-auxiliary-alien-types
sb-alien:%define-alien-type
sb-alien:%define-alien-type-translator
sb-alien:%define-alien-variable
sb-alien:%make-alien
sb-alien:%make-alien-string
sb-alien:%naturalize-c-string
sb-alien:%unparse-alien-type
sb-alien:addr
sb-alien:alien-*-type-translator
sb-alien:alien-alien-value-type-alignment
sb-alien:alien-alien-value-type-bits
sb-alien:alien-alien-value-type-class
sb-alien:alien-alien-value-type-p
sb-alien:alien-array-type-alignment
sb-alien:alien-array-type-bits
sb-alien:alien-array-type-class
sb-alien:alien-array-type-translator
sb-alien:alien-boolean-type-alignment
sb-alien:alien-boolean-type-bits
sb-alien:alien-boolean-type-class
sb-alien:alien-boolean-type-signed
sb-alien:alien-boolean-type-translator
sb-alien:alien-c-string-type-alignment
sb-alien:alien-c-string-type-bits
sb-alien:alien-c-string-type-class
sb-alien:alien-c-string-type-element-type
sb-alien:alien-c-string-type-external-format
sb-alien:alien-c-string-type-not-null
sb-alien:alien-c-string-type-p
sb-alien:alien-c-string-type-to
sb-alien:alien-c-string-type-translator
sb-alien:alien-callback-argument-bytes
sb-alien:alien-callback-function
sb-alien:alien-callback-info
sb-alien:alien-callback-lisp-trampoline
sb-alien:alien-callback-lisp-wrapper-lambda
sb-alien:alien-callback-p
sb-alien:alien-double-float-type-alignment
sb-alien:alien-double-float-type-bits
sb-alien:alien-double-float-type-class
sb-alien:alien-double-float-type-translator
sb-alien:alien-double-float-type-type
sb-alien:alien-enum-type-alignment
sb-alien:alien-enum-type-bits
sb-alien:alien-enum-type-class
sb-alien:alien-enum-type-from
sb-alien:alien-enum-type-kind
sb-alien:alien-enum-type-name
sb-alien:alien-enum-type-offset
sb-alien:alien-enum-type-signed
sb-alien:alien-enum-type-to
sb-alien:alien-enum-type-translator
sb-alien:alien-float-type-alignment
sb-alien:alien-float-type-bits
sb-alien:alien-float-type-class
sb-alien:alien-float-type-type
sb-alien:alien-fun-type-alignment
sb-alien:alien-fun-type-bits
sb-alien:alien-fun-type-class
sb-alien:alien-fun-type-convention
sb-alien:alien-fun-type-stub
sb-alien:alien-fun-type-varargs
sb-alien:alien-funcall
sb-alien:alien-function-type-translator
sb-alien:alien-integer-type-alignment
sb-alien:alien-integer-type-bits
sb-alien:alien-integer-type-class
sb-alien:alien-integer-type-translator
sb-alien:alien-lambda
sb-alien:alien-mem-block-type-alignment
sb-alien:alien-mem-block-type-bits
sb-alien:alien-mem-block-type-class
sb-alien:alien-mem-block-type-p
sb-alien:alien-pointer-type-alignment
sb-alien:alien-pointer-type-bits
sb-alien:alien-pointer-type-class
sb-alien:alien-record-field-bits
sb-alien:alien-record-type-alignment
sb-alien:alien-record-type-bits
sb-alien:alien-record-type-class
sb-alien:alien-record-type-kind
sb-alien:alien-record-type-name
sb-alien:alien-sap
sb-alien:alien-signed-type-translator
sb-alien:alien-single-float-type-alignment
sb-alien:alien-single-float-type-bits
sb-alien:alien-single-float-type-class
sb-alien:alien-single-float-type-translator
sb-alien:alien-single-float-type-type
sb-alien:alien-size
sb-alien:alien-struct-type-translator
sb-alien:alien-system-area-pointer-type-alignment
sb-alien:alien-system-area-pointer-type-bits
sb-alien:alien-system-area-pointer-type-class
sb-alien:alien-system-area-pointer-type-p
sb-alien:alien-system-area-pointer-type-translator
sb-alien:alien-type-class
sb-alien:alien-type-class-alien-rep
sb-alien:alien-type-class-arg-tn
sb-alien:alien-type-class-defstruct-name
sb-alien:alien-type-class-deport-alloc-gen
sb-alien:alien-type-class-deport-gen
sb-alien:alien-type-class-deport-pin-p
sb-alien:alien-type-class-deposit-gen
sb-alien:alien-type-class-extract-gen
sb-alien:alien-type-class-include
sb-alien:alien-type-class-lisp-rep
sb-alien:alien-type-class-name
sb-alien:alien-type-class-naturalize-gen
sb-alien:alien-type-class-or-lose
sb-alien:alien-type-class-p
sb-alien:alien-type-class-result-tn
sb-alien:alien-type-class-subtypep
sb-alien:alien-type-class-type=
sb-alien:alien-type-class-unparse
sb-alien:alien-type-word-aligned-bits
sb-alien:alien-union-type-translator
sb-alien:alien-unsigned-type-translator
sb-alien:alien-value-deport-gen-method
sb-alien:alien-value-lisp-rep-method
sb-alien:alien-value-naturalize-gen-method
sb-alien:alien-values-type-alignment
sb-alien:alien-values-type-bits
sb-alien:alien-values-type-class
sb-alien:alien-values-type-translator
sb-alien:alien-void-type-translator
sb-alien:array-subtypep-method
sb-alien:array-type=-method
sb-alien:array-unparse-method
sb-alien:auxiliary-alien-type
sb-alien:auxiliary-type-definitions
sb-alien:boolean-deport-gen-method
sb-alien:boolean-lisp-rep-method
sb-alien:boolean-naturalize-gen-method
sb-alien:boolean-unparse-method
sb-alien:c-string-deport-alloc-gen-method
sb-alien:c-string-deport-gen-method
sb-alien:c-string-deport-pin-p-method
sb-alien:c-string-external-format
sb-alien:c-string-lisp-rep-method
sb-alien:c-string-naturalize-gen-method
sb-alien:c-string-needs-conversion-p
sb-alien:c-string-to-string
sb-alien:c-string-unparse-method
sb-alien:callback-info-function
sb-alien:callback-info-index
sb-alien:callback-info-key
sb-alien:callback-info-specifier
sb-alien:callback-info-wrapper
sb-alien:cast
sb-alien:coerce-to-interpreted-function
sb-alien:coerce-to-interpreted-function-cache-clear
sb-alien:create-alien-type-class-if-necessary
sb-alien:default-c-string-external-format
sb-alien:define-alien-callback
sb-alien:define-alien-routine
sb-alien:define-alien-type
sb-alien:define-alien-variable
sb-alien:deref
sb-alien:deref-guts
sb-alien:dlclose
sb-alien:dlclose-or-lose
sb-alien:dlerror
sb-alien:dlopen
sb-alien:dlsym
sb-alien:double-float-extract-gen-method
sb-alien:enum-deport-gen-method
sb-alien:enum-lisp-rep-method
sb-alien:enum-naturalize-gen-method
sb-alien:enum-type=-method
sb-alien:enum-unparse-method
sb-alien:extern-alien
sb-alien:float-alien-rep-method
sb-alien:float-deport-gen-method
sb-alien:float-lisp-rep-method
sb-alien:float-naturalize-gen-method
sb-alien:float-unparse-method
sb-alien:free-alien
sb-alien:fun-type=-method
sb-alien:fun-unparse-method
sb-alien:get-errno
sb-alien:guess-alien-name-from-lisp-name
sb-alien:guess-alignment
sb-alien:guess-lisp-name-from-alien-name
sb-alien:heap-alien-info-alien-name
sb-alien:heap-alien-info-datap
sb-alien:heap-alien-info-sap
sb-alien:integer-alien-rep-method
sb-alien:integer-deport-gen-method
sb-alien:integer-extract-gen-method
sb-alien:integer-lisp-rep-method
sb-alien:integer-type=-method
sb-alien:integer-unparse-method
sb-alien:invalid-alien-callback
sb-alien:invalidate-alien-callback
sb-alien:list-undefined-foreign-symbols
sb-alien:load-1-foreign
sb-alien:load-foreign
sb-alien:load-shared-object
sb-alien:make-alien
sb-alien:make-alien-alien-value-type
sb-alien:make-alien-array-type
sb-alien:make-alien-boolean-type
sb-alien:make-alien-c-string-type
sb-alien:make-alien-double-float-type
sb-alien:make-alien-enum-type
sb-alien:make-alien-float-type
sb-alien:make-alien-integer-type
sb-alien:make-alien-mem-block-type
sb-alien:make-alien-record-field
sb-alien:make-alien-record-type
sb-alien:make-alien-single-float-type
sb-alien:make-alien-string
sb-alien:make-alien-system-area-pointer-type
sb-alien:make-alien-type
sb-alien:make-alien-type-class
sb-alien:make-alien-values-type
sb-alien:make-callback-info
sb-alien:make-heap-alien-info
sb-alien:make-local-alien-info
sb-alien:make-shared-object
sb-alien:malloc-error
sb-alien:mem-block-deposit-gen-method
sb-alien:mem-block-extract-gen-method
sb-alien:method-slot
sb-alien:missing-alien-operation-error
sb-alien:null-alien
sb-alien:null-error
sb-alien:parse-alien-ftype
sb-alien:parse-alien-record-fields
sb-alien:parse-alien-record-type
sb-alien:parse-callback-specification
sb-alien:parse-enum
sb-alien:pick-lisp-and-alien-names
sb-alien:pointer-deport-gen-method
sb-alien:pointer-subtypep-method
sb-alien:pointer-type=-method
sb-alien:pointer-unparse-method
sb-alien:record-fields-match-p
sb-alien:record-type=-method
sb-alien:record-unparse-method
sb-alien:root-alien-rep-method
sb-alien:root-arg-tn-method
sb-alien:root-deport-alloc-gen-method
sb-alien:root-deport-gen-method
sb-alien:root-deport-pin-p-method
sb-alien:root-deposit-gen-method
sb-alien:root-extract-gen-method
sb-alien:root-lisp-rep-method
sb-alien:root-naturalize-gen-method
sb-alien:root-result-tn-method
sb-alien:root-subtypep-method
sb-alien:root-type=-method
sb-alien:root-unparse-method
sb-alien:sap-alien
sb-alien:shared-object-dont-save
sb-alien:shared-object-handle
sb-alien:shared-object-namestring
sb-alien:shared-object-p
sb-alien:shared-object-pathname
sb-alien:single-float-extract-gen-method
sb-alien:slot
sb-alien:slot
sb-alien:slot-or-lose
sb-alien:string-to-c-string
sb-alien:system-area-pointer-alien-rep-method
sb-alien:system-area-pointer-deport-gen-method
sb-alien:system-area-pointer-extract-gen-method
sb-alien:system-area-pointer-lisp-rep-method
sb-alien:system-area-pointer-naturalize-gen-method
sb-alien:system-area-pointer-unparse-method
sb-alien:try-reopen-shared-object
sb-alien:unload-shared-object
sb-alien:unparse-alien-record-field
sb-alien:unparse-alien-record-kind
sb-alien:values-type=-method
sb-alien:values-unparse-method
sb-alien:verify-local-auxiliaries-okay
sb-alien:with-alien
sb-alien:with-auxiliary-alien-types
sb-aprof:%matchp
sb-aprof:alloc-bytes
sb-aprof:alloc-count
sb-aprof:alloc-p
sb-aprof:alloc-pc
sb-aprof:alloc-type
sb-aprof:aprof-collect
sb-aprof:aprof-reset
sb-aprof:aprof-run
sb-aprof:aprof-show
sb-aprof:aprof-start
sb-aprof:aprof-stop
sb-aprof:collapse-by-type
sb-aprof:copy-alloc
sb-aprof:deduce-fun-subtype
sb-aprof:deduce-layout
sb-aprof:deduce-type
sb-aprof:get-instruction
sb-aprof:header-word-store-p
sb-aprof:iterator-begin
sb-aprof:layout-name
sb-aprof:make-alloc
sb-aprof:matchp
sb-aprof:patch-fixups
sb-aprof:pc-offs-to-fun-name
sb-assem:%assemble
sb-assem:%def-inst-encoder
sb-assem:%defpattern
sb-assem:%emit-alignment
sb-assem:%emit-filler
sb-assem:%emit-label
sb-assem:%emit-postit
sb-assem:%emit-skip
sb-assem:%inst
sb-assem:%mark-used-labels
sb-assem:add-stmt-labels
sb-assem:adjust-alignment-after-chooser
sb-assem:alignment-bits
sb-assem:alignment-index
sb-assem:alignment-p
sb-assem:alignment-pattern
sb-assem:alignment-posn
sb-assem:alignment-size