diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-11 23:33:49 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-11 23:33:49 -0700 |
commit | 556dd7362f7a7ccb946c87b88e0685e606c7a9a6 (patch) | |
tree | 5be2830e50d79ec1a4f95e5715909b4c6169c3df | |
parent | 00e87d26df9f2cd0580b48f92db8ea93a845fbf7 (diff) | |
download | txr-556dd7362f7a7ccb946c87b88e0685e606c7a9a6.tar.gz txr-556dd7362f7a7ccb946c87b88e0685e606c7a9a6.tar.bz2 txr-556dd7362f7a7ccb946c87b88e0685e606c7a9a6.zip |
tree: streamline iteration; provide high limit.
Getting rid of tree-begin-at and tree-reset-at. Now tree-begin
takes two optional parameters, for specifying high and low
range.
* tree.c (struct tree_diter): New members, tree and highkey.
We need tree due to requiring access to the less function.
If the iterator has no highkey, the iterator itself is stored
in that member to indicate this.
(tree_iter_mark): Mark the tree and highkey.
(tree_begin): Take optional lowkey and highkey arguments,
initializing iterator acordingly.
(tree_begin_at): Function removed.
(copy_tree_iter, replace_tree_iter): Copy tree and highkey
members. The latter require special handling due to the funny
convention for indicating highkey absence.
(tree_reset): Take optional lowkey and highkey arguments,
configuring these in the iterator being reset.
(tree_reset_at): Function removed.
(tree_next, tree_peek): Implement highkey semantics.
(sub_tree): Simplified: from and to
arguments are just passed through to tree_begin, and there is
no need for a separate loop which enforces the upper limit,
that now being handled by the iterator itself.
(tree_begin): Update registrations of tree-begin and
tree-reset; remove tree-begin-at and tree-reset-at intrinsics.
* tree.h (tree_begin_at, tree_reset_at): Declarations removed.
(tree_begin, tree_reset): Declarations updated.
* lib.c (seq_iter_rewind, seq_iter_init_with_info, where,
populate_obj_hash): Default new optional arguments in
tree_begin and tree_reset calls.
* parser.c (circ_backpatch): Likewise.
* tests/010/tree.tl: Affected cases updated.
* txr.1: Documentation updated.
* share/txr/stdlib/doc-syms.tl: Regenerated.
-rw-r--r-- | lib.c | 8 | ||||
-rw-r--r-- | parser.c | 2 | ||||
-rw-r--r-- | share/txr/stdlib/doc-syms.tl | 3128 | ||||
-rw-r--r-- | tests/010/tree.tl | 14 | ||||
-rw-r--r-- | tree.c | 121 | ||||
-rw-r--r-- | tree.h | 6 | ||||
-rw-r--r-- | txr.1 | 117 |
7 files changed, 1692 insertions, 1704 deletions
@@ -743,7 +743,7 @@ static void seq_iter_rewind(seq_iter_t *it, val self) it->ui.iter = hash_reset(it->ui.iter, it->inf.obj); break; case SEQ_TREELIKE: - it->ui.iter = tree_reset(it->ui.iter, it->inf.obj); + it->ui.iter = tree_reset(it->ui.iter, it->inf.obj, colon_k, colon_k); break; default: break; @@ -887,7 +887,7 @@ void seq_iter_init_with_info(val self, seq_iter_t *it, it->peek = seq_iter_peek_hash; break; case SEQ_TREELIKE: - it->ui.iter = tree_begin(it->inf.obj); + it->ui.iter = tree_begin(it->inf.obj, colon_k, colon_k); it->ul.len = 0; it->get = seq_iter_get_tree; it->peek = seq_iter_peek_tree; @@ -11882,7 +11882,7 @@ val where(val func, val seq) return make_lazy_cons_car_cdr(func_f1(hash_iter, lazy_where_hash_func), key, func); } else if (treep(seq)) { - val tree_iter = tree_begin(seq); + val tree_iter = tree_begin(seq, colon_k, colon_k); for (;;) { val node = tree_next(tree_iter); @@ -13092,7 +13092,7 @@ tail: populate_obj_hash(slot(obj, sn), ctx); } } else if (treep(obj)) { - val iter = tree_begin(obj); + val iter = tree_begin(obj, colon_k, colon_k); val node; while ((node = tree_next(iter))) populate_obj_hash(key(node), ctx); @@ -411,7 +411,7 @@ tail: break; } } else if (treep(obj)) { - val iter = tree_begin(obj); + val iter = tree_begin(obj, colon_k, colon_k); val node; val nodes = nil; cnum old_circ_count = p->circ_count; diff --git a/share/txr/stdlib/doc-syms.tl b/share/txr/stdlib/doc-syms.tl index bab394cb..364aa8ac 100644 --- a/share/txr/stdlib/doc-syms.tl +++ b/share/txr/stdlib/doc-syms.tl @@ -1,2050 +1,2048 @@ (defvarl doc-syms - #H(() ("listp" "N-03F70343") - ("tok-str" "N-0225F28F") - ("mkdir" "N-00C543B8") - ("chown-rec" "N-02D8298E") - ("sockaddr-un" "N-01DD05D2") + #H(() ("vkill" "N-01812D70") + ("rassql" "N-03B49598") ("str-in6addr-net" "N-00918411") + ("sockaddr-un" "N-01DD05D2") + ("chown-rec" "N-02D8298E") + ("mkdir" "N-00C543B8") + ("tok-str" "N-0225F28F") + ("listp" "N-03F70343") ("lazy-str-get-trailing-list" "N-012701D6") + ("rpoly" "N-026201AD") ("regex-prefix-match" "N-02CE60DF") - ("macrolet" "N-00AC12C0") ("from" "N-00AED1A7") - ("hash" "D-0001") - ("make-lazy-cons" "N-038B9EC2") + ("macrolet" "N-00AC12C0") ("sha256-hash" "N-03B36E53") + ("cptr-obj" "N-013139D1") + ("make-lazy-cons" "N-038B9EC2") + ("hash" "D-0001") + ("krs" "N-02D33A4D") + ("partition*" "N-03951D7A") ("round" "D-0002") + ("load-time" "D-0003") ("path-setgid-p" "N-02FBA677") - ("iffi" "N-000E3A74") - ("hash-from-pairs" "N-017E6F4C") - ("each-match-product" "N-01CB9595") + ("estale" "N-036B1BDB") ("carray-pun" "N-0057639E") - ("posql" "N-00A2B785") - ("env-vbindings" "N-0018DCDC") + ("o-wronly" "N-034BF6C9") + ("each-match-product" "N-01CB9595") + ("read-until-match" "N-001D3F81") + ("hash-from-pairs" "N-017E6F4C") + ("iffi" "N-000E3A74") + ("enotsock" "N-036B1BDB") ("command-put-lines" "N-024D65F3") + ("env-vbindings" "N-0018DCDC") + ("posql" "N-00A2B785") ("ssucc" "N-038E636C") - ("call-clobber-expander" "N-0223827D") - ("tagbody" "N-007E0D96") - ("break-str" "N-00A9DB25") - ("put-char" "D-0003") - ("get-fd" "N-011D42AB") - ("getpwnam" "N-03552854") ("deffi-cb-unsafe" "N-00C54FC8") - ("round1" "N-03EA1351") + ("getpwnam" "N-03552854") + ("*args*" "N-03DEE18A") + ("get-fd" "N-011D42AB") + ("put-char" "D-0004") + ("break-str" "N-00A9DB25") + ("tagbody" "N-007E0D96") + ("call-clobber-expander" "N-0223827D") ("command-get" "N-0062A33B") - ("whenlet" "N-02DA21F6") - ("ftw-ns" "N-02ED8B51") + ("round1" "N-03EA1351") ("union-members" "N-008912E4") - ("asinh" "D-0004") + ("ftw-ns" "N-02ED8B51") + ("whenlet" "N-02DA21F6") ("buf-get-short" "N-031CE896") + ("countqual" "N-01DF131F") + ("asinh" "D-0005") ("name" "N-01557906") - ("sub-buf" "N-000FFE37") + ("macro-form-p" "N-02AC86DE") ("stream-set-prop" "N-005268C8") - ("buf-get-double" "N-006C6EB9") + ("method" "N-022200C1") + ("sub-buf" "N-000FFE37") + ("ginterate" "N-02F671F4") + ("lexical-fun-p" "N-007B1A53") + ("put-carray" "N-00737951") + ("sha256" "N-019F97A2") + ("length" "D-0006") + ("ignwarn" "N-02552A58") ("echoe" "N-0072FF5E") - ("path-newer" "N-0155004F") + ("log-nowait" "N-02371913") + ("buf-get-double" "N-006C6EB9") ("isig" "N-0072FF5E") - ("pop" "N-017F39D2") - ("macro-time" "N-0264A0BD") - ("path-readable-to-me-p" "N-02933008") - ("set-sig-handler" "N-02E1B6FA") + ("ftw-d" "N-02ED8B51") + ("path-newer" "N-0155004F") + ("match-str" "N-03FF771E") + ("flo-min" "N-0085F231") ("sock-bind" "N-02B052CF") - ("o-sync" "N-034BF6C9") + ("itimer-prof" "N-02B7882A") + ("set-sig-handler" "N-02E1B6FA") + ("path-readable-to-me-p" "N-02933008") + ("umeth" "N-02ECA31C") + ("choose" "N-039458F2") + ("macro-time" "N-0264A0BD") + ("pop" "N-017F39D2") + ("min" "N-023C3643") + ("deffi-cb" "N-00C54FC8") ("wstr" "N-032DB6DC") + ("o-sync" "N-034BF6C9") + ("link" "N-009EF0C8") + ("select" "N-031D7F72") ("path-read-writable-to-me-p" "N-028A5109") + ("nf" "N-0267AE6D") ("struct-get-postinitfun" "N-03946F2A") + ("fsblkcnt-t" "N-01D716FE") + ("mkfifo" "N-0091FD43") ("get-list-from-stream" "N-021DF087") + ("/" "D-0007") + ("eacces" "N-036B1BDB") ("buf-put-int" "N-007FC982") - ("bs1" "N-03BD477F") + ("defset" "N-0157E559") + ("hash-isec" "N-02235BB2") ("pid-t" "N-01D716FE") + ("bs1" "N-03BD477F") + ("list*" "N-03593DE9") + ("run" "N-0158244A") ("eperm" "N-036B1BDB") - ("iter-item" "D-0005") - ("--" "N-0234C408") - ("enotrecoverable" "N-036B1BDB") + ("eintr" "N-036B1BDB") + ("ref" "N-01A419FB") + ("iter-item" "D-0008") + ("doc" "N-0097F54C") + ("ffi-type-operator-p" "N-00E31038") ("rtld-deepbind" "N-0083A22A") + ("cs8" "N-01B1B5DF") + ("dirstat" "N-02507FF2") + ("glob-onlydir" "N-0188409B") + ("sig-usr1" "N-0176430F") + ("enotrecoverable" "N-036B1BDB") + ("test-clear-dirty" "N-03AB857D") + ("-" "D-0009") + ("--" "N-0234C408") ("vsusp" "N-01812D70") + ("return" "N-03E500DF") ("hlet" "N-01348099") + ("compile-file" "N-0211BE68") ("float" "N-03237030") + ("base64-encode" "N-01B05083") + ("get" "N-03D9F55D") + ("epipe" "N-036B1BDB") + ("log-emerg" "N-035D75EC") + ("dt-reg" "N-02D8CAF4") + ("chr-digit" "N-01ED5020") + ("return-from" "N-03E500DF") + ("pos-if" "N-02C2BBDB") ("tofloatz" "N-03E2D4B8") - ("buf-get-uchar" "N-03BCF5D1") - ("real-time-stream-p" "N-0121FDEB") + ("logior" "D-000A") + ("ffi-typedef" "N-0094D6D7") + ("uid-t" "N-01D716FE") ("base64url-stream-enc" "N-016A14B3") + ("cptr-int" "N-015139D6") + ("real-time-stream-p" "N-0121FDEB") + ("buf-get-uchar" "N-03BCF5D1") + ("dump-deferred-warnings" "N-0335651E") + ("fr^" "N-031971BD") ("hash-peek" "N-0225209D") - ("while" "N-01026F48") - ("eaddrinuse" "N-036B1BDB") ("erange" "N-036B1BDB") - ("nilf" "N-032070EB") + ("eaddrinuse" "N-036B1BDB") + ("md5-end" "N-025F32FD") + ("md5-begin" "N-025F32FD") + ("nreverse" "N-03D8471B") + ("rplaca" "D-000B") + ("while" "N-01026F48") + ("copy-fun" "N-003E7671") + ("bit" "D-000C") ("cat-streams" "N-020BF082") + ("nilf" "N-032070EB") ("lcons" "N-013CC637") - ("deffilter" "N-00BDE41F") - ("sub-vec" "N-03BFFF0A") + ("oand" "N-01937C5A") ("file-get-string" "N-02238370") - ("compile-defr-warning" "N-0205E7AF") + ("sub-vec" "N-03BFFF0A") + ("caseq*" "N-02FB71A2") + ("deffilter" "N-00BDE41F") ("sock-recv-timeout" "N-03DF15F2") - ("range" "N-033BE5A1") + ("where" "N-0208F1DE") + ("compile-defr-warning" "N-0205E7AF") + ("cs7" "N-01B1B5DF") + ("sig-sys" "N-0176430F") + ("assql" "N-00123702") + ("rtld-lazy" "N-0083A22A") ("static-slot-p" "N-032FD510") + ("range" "N-033BE5A1") ("prn" "N-01E7F5F7") + ("chr-islower" "N-02BB58D0") + ("bracket" "N-02400F97") ("open-files" "N-018C5606") + ("%e%" "N-03F0FA9E") ("opthelp" "N-016C6171") - ("veol" "N-01812D70") + ("cptr-zap" "N-00913A85") + ("hash-from-alist" "N-017E6F4C") + ("purge-deferred-warning" "N-0077C4FE") + ("carray" "N-0139F9ED") + ("time-local" "N-001284ED") + ("maphash" "N-03E6917D") + ("member-if" "N-0176FBE7") ("uint8" "N-0131FBF2") + ("veol" "N-01812D70") + ("reverse" "N-03D8471B") + ("elemtype" "D-000D") + ("setgroups" "N-030FEE97") ("defstruct" "N-021CC672") - ("elemtype" "D-0006") + ("txr-version" "N-032F57D4") + ("self-path" "N-03561A65") ("ebadf" "N-036B1BDB") + ("group-reduce" "N-001A208F") ("*trace-output*" "N-0067A6AC") - ("defer-warning" "N-001106AB") - ("nexpand-left" "N-00E168FE") - ("length-str-<" "N-016D8C45") + ("ftw-chdir" "N-01A802F2") + ("w-coredump" "N-0243C575") + ("espipe" "N-036B1BDB") ("with-slots" "N-00C411A2") + ("length-str-<" "N-016D8C45") + ("nexpand-left" "N-00E168FE") + ("rmismatch" "N-008F3C16") + ("defer-warning" "N-001106AB") + ("update" "N-0327B17E") + ("str-d" "N-00C6B7C4") ("set-lflags" "N-02061924") + ("enoent" "N-036B1BDB") + ("zip" "N-03AA85AD") + ("flo-int" "N-03F852CF") + ("generate" "N-02F671F4") + ("conses" "N-00BBCCAA") + ("try" "N-0328371B") ("seq-next" "N-02E3D643") - ("special-var-p" "N-00833473") + ("compile-error" "N-032EA7D7") + ("obtain-block" "N-01C791D0") + ("vreprint" "N-01812D70") + ("sig-int" "N-0176430F") ("ebadmsg" "N-036B1BDB") - ("prinl" "N-02FCCE0D") - ("vt1" "N-03BD477F") - ("int16" "N-03D0AA7B") + ("special-var-p" "N-00833473") ("*doc-url*" "N-0003D10B") - ("hash-update-1" "N-03EF9A2C") + ("int16" "N-03D0AA7B") + ("vt1" "N-03BD477F") + ("prinl" "N-02FCCE0D") + ("chr-toupper" "N-015A451C") + ("exception-subtype-map" "N-03ABFA6D") ("trie-lookup-begin" "N-02D16290") - ("hash-next" "N-0225209D") + ("vstop" "N-01812D70") + ("onlret" "N-03BD477F") + ("aconsql-new" "N-01E315BD") + ("hash-update-1" "N-03EF9A2C") + ("vintr" "N-01812D70") + ("onlcr" "N-03BD477F") ("chr-iscntrl" "N-02A1A5A8") - ("time-string" "N-007B1819") + ("hash-next" "N-0225209D") ("next-file" "N-00839D2F") - ("chrp" "N-02C6CEED") - ("cptr-type" "N-03B1F90C") - ("einprogress" "N-036B1BDB") + ("time-string" "N-007B1819") + ("forget" "N-02A1EE04") ("ftw-depth" "N-01A802F2") - ("buf-put-i16" "N-019FC970") + ("einprogress" "N-036B1BDB") + ("cptr-type" "N-03B1F90C") + ("chrp" "N-02C6CEED") + ("return*" "N-0309887F") ("url-encode" "N-0388DB26") + ("buf-put-i16" "N-019FC970") + ("maprod" "N-015987D7") + ("reduce-left" "N-00FB426F") + ("ceil-rem" "N-02DE978F") + ("ffi-in" "N-037AAB17") + ("econnrefused" "N-036B1BDB") + ("compare-swap" "N-02933F2A") ("af-inet" "N-0228EAE0") - ("logxor" "N-02D5AF97") + ("mknod" "N-00F93A39") + ("assoc" "N-00E9306D") ("sha256-stream" "N-006C94B6") - ("placelet*" "N-0393C970") + ("logxor" "N-02D5AF97") + ("catenated-stream-p" "N-021EE493") + ("make-string-input-stream" "N-00F0B9B0") ("pad" "N-0247F5FA") - ("cat" "N-03336E1B") + ("placelet*" "N-0393C970") ("brkint" "N-02391683") - ("tf" "N-032070EB") - ("trunc-rem" "N-02DE978F") + ("cat" "N-03336E1B") ("enomsg" "N-036B1BDB") + ("--rng" "N-00BEA6DF") + ("md5" "N-019F97A2") + ("memql" "N-0387CD82") + ("trunc-rem" "N-02DE978F") + ("tf" "N-032070EB") ("base-name" "N-02C01721") ("ffi-type-compile" "N-02940F9A") - ("for*" "N-031372ED") - ("buf-get-uint" "N-030913C8") - ("kfs" "N-02D33A30") - ("sig-ill" "N-0176430F") - ("load-for" "N-0020A085") + ("fd-cloexec" "N-021805C2") ("union" "N-01C78B86") + ("load-for" "N-0020A085") + ("fnm-casefold" "N-0330E15A") + ("sig-ill" "N-0176430F") + ("kfs" "N-02D33A30") + ("buf-get-uint" "N-030913C8") + ("for*" "N-031372ED") + ("ret" "N-033F39EF") + ("--rng+" "N-00BEA6DF") + ("file-append-lines" "N-000CCA8A") ("cmspar" "N-01B1B5DF") + ("bindable" "N-0222F2E3") + ("sub-list" "N-038E3E1D") ("time-string-local" "N-00F192AD") + ("rep" "D-000E") + ("output" "N-0159EBE7") + ("addrinfo" "N-0110E961") + ("enxio" "N-036B1BDB") + ("in6addr-loopback" "N-026A2C3B") + ("log-cons" "N-02371913") ("sys:capture-cont" "N-02199305") - ("get-frames" "N-010405DA") - ("parodd" "N-01B1B5DF") ("carray-own" "N-00058922") - ("uniq" "N-03B6D456") - ("cdddddr" "N-00209CEE") - ("unget-byte" "D-0007") + ("tciflush" "N-0279ED46") + ("parodd" "N-01B1B5DF") + ("put-line" "N-012163C3") + ("get-frames" "N-010405DA") ("log-err" "N-035D75EC") + ("unget-byte" "D-000F") + ("cdddddr" "N-00209CEE") + ("uniq" "N-03B6D456") + ("minusp" "D-0010") ("quip" "N-03C6D422") + ("env-hash" "N-011814B5") ("set-max-depth" "N-027D3FB4") - ("lconsp" "N-02E217A2") - ("tok-where" "N-0225F28F") - ("open-command" "N-02B03D38") - ("vwerase" "N-01812D70") - ("carray-set-length" "N-00705BC4") + ("rangep" "N-00DDB00B") ("*listener-sel-inclusive-p*" "N-02E4924F") - ("set-prop" "N-03663AE4") + ("carray-set-length" "N-00705BC4") + ("vwerase" "N-01812D70") + ("open-command" "N-02B03D38") + ("seqp" "N-03C6CAE0") + ("chr-isspace" "N-002B4C59") + ("tok-where" "N-0225F28F") + ("copy-str" "N-02FE763D") + ("lconsp" "N-02E217A2") + ("cond" "N-016C9E24") + ("truncate" "N-0032FBF3") + ("*print-base*" "N-01DD07CC") + ("define-accessor" "N-03C5F850") ("disassemble" "N-0289A0F1") + ("set-prop" "N-03663AE4") + ("split-str-set" "N-0296195B") + ("ffdly" "N-03BD477F") ("ft" "N-03B6902C") - ("flatten*" "N-0226672B") ("tcsaflush" "N-02C6ECF5") + ("ff1" "N-03BD477F") + ("length-str-<=" "N-016D8C45") + ("flatten*" "N-0226672B") ("chr-str" "N-0378FEF2") + ("acons-new" "N-0371BAFA") ("vswtc" "N-01812D70") - ("put-lines" "N-0367B282") + ("closelog" "N-02CEE7EA") + ("mismatch" "N-03164F4F") ("icanon" "N-0072FF5E") + ("put-lines" "N-0367B282") ("eq" "N-02550B35") - ("inv-cum-norm" "N-0036EAFB") - ("append-each-prod" "N-02CA3C70") - ("prog" "N-018A4BA9") - ("coded-length" "N-0167F423") - ("noflsh" "N-0072FF5E") ("ffi-put" "N-0000F6A9") - ("inc-indent" "N-024E9FD8") + ("noflsh" "N-0072FF5E") + ("emsgsize" "N-036B1BDB") + ("join-with" "N-00B6ACE3") + ("coded-length" "N-0167F423") + ("prog" "N-018A4BA9") + ("append-each-prod" "N-02CA3C70") + ("atan" "D-0011") + ("inv-cum-norm" "N-0036EAFB") + ("r-expt" "N-00192012") + ("deffi-sym" "N-02B237BB") ("merge-delete-package" "N-0160EA2C") - ("tnodep" "N-00D8534F") + ("inc-indent" "N-024E9FD8") + ("union-out" "N-02258991") + ("getresuid" "N-03D37234") + ("enetdown" "N-036B1BDB") + ("hash-construct" "N-017E6F4C") + ("ptr-in-d" "N-01D7AC98") ("dec" "N-03A0AABD") - ("logtest" "N-00B1548A") + ("tnodep" "N-00D8534F") + ("enolck" "N-036B1BDB") ("time-fields-utc" "N-00789418") - ("flo-up" "N-013A1643") - ("*place-clobber-expander*" "N-01A2C58A") + ("logtest" "N-00B1548A") + ("hash-begin" "N-0225209D") + ("pipe" "N-03F6D390") ("uslot" "N-01F8E0A1") - ("unwind-protect" "N-03162B0C") + ("boundp" "N-01FBF828") + ("*place-clobber-expander*" "N-01A2C58A") + ("flo-up" "N-013A1643") + ("w-termsig" "N-0243C575") + ("getgid" "N-00125C22") + ("reset-struct" "N-002A609F") + ("open-socket" "N-026B766B") + ("with-out-buf-stream" "N-01150550") + ("symacrolet" "N-00321AB1") ("enoprotoopt" "N-036B1BDB") - ("tok" "N-0117F60C") - ("setgrent" "N-02CAC7FB") + ("unwind-protect" "N-03162B0C") + ("union-in" "N-02258991") + ("ffi-elemsize" "N-00DF8E15") ("sock-shutdown" "N-0222BA70") - ("greater" "N-02AC1F73") - ("*stdnull*" "N-006566FB") + ("dt-sock" "N-02D8CAF4") + ("f-unlck" "N-0137046C") + ("strsignal" "N-00234BED") + ("setgrent" "N-02CAC7FB") + ("->>" "N-02B10DF9") + ("arg" "N-02133AA5") + ("tok" "N-0117F60C") + ("list" "N-0206CE91") + ("collect-each" "N-0105F01D") ("cstopb" "N-01B1B5DF") - ("crypt" "N-00F928CE") + ("*stdnull*" "N-006566FB") + ("greater" "N-02AC1F73") ("vt0" "N-03BD477F") + ("crypt" "N-00F928CE") + ("enotty" "N-036B1BDB") + ("buf-put-double" "N-006A81D9") + ("exit" "N-0006C92F") ("nr" "N-03A7AE6D") - ("constantp" "N-0172F00A") - ("cptr-free" "N-02B1FBEF") - ("eopnotsupp" "N-036B1BDB") + ("use-sym" "N-01747674") ("carray-int" "N-02403ED4") - ("flo-set-round-mode" "N-0085ACA3") + ("dt-lnk" "N-02D8CAF4") + ("glob-nosort" "N-0188409B") + ("eopnotsupp" "N-036B1BDB") + ("cptr-free" "N-02B1FBEF") + ("constantp" "N-0172F00A") ("%pi%" "N-03F0FA9E") - ("giterate" "N-02F671F4") - ("tcsadrain" "N-02C6ECF5") - ("clear-lflags" "N-02061924") + ("flo-set-round-mode" "N-0085ACA3") ("carray-put" "N-02890B44") - ("r^$" "N-03BBB0C5") - ("nullify" "D-0008") + ("clear-lflags" "N-02061924") + ("tcsadrain" "N-02C6ECF5") + ("giterate" "N-02F671F4") ("deffi-var" "N-03C237C9") + ("enoexec" "N-036B1BDB") + ("nullify" "D-0012") + ("each-prod" "N-02CA3C70") + ("r^$" "N-03BBB0C5") + ("tnode" "N-0008DDFB") + ("*args-full*" "N-03DEE18A") + ("atom" "N-0076C7BE") + ("lset" "N-008216EC") ("end" "N-037C6608") - ("unless" "N-017EFAB6") - ("rplacd" "D-0009") - ("struct-type-name" "N-00088BD7") - ("ai-v4mapped" "N-020DFFDE") ("clock-t" "N-03258244") + ("ai-v4mapped" "N-020DFFDE") + ("pprinl" "N-02FCCE0D") + ("struct-type-name" "N-00088BD7") + ("rplacd" "D-0013") + ("unless" "N-017EFAB6") + ("log10" "D-0014") + ("*hash-seed*" "N-0041D85A") ("vec-push" "N-01693B82") - ("atan2" "D-000A") + ("base64-stream-enc" "N-03BEDB34") + ("ftw-stop" "N-03853999") + ("make-catenated-stream" "N-020BF082") ("symbol-function" "N-00004DDC") + ("atan2" "D-0015") ("glob-tilde-check" "N-0188409B") + ("chr-isunisp" "N-00DB3D75") + ("each-prod*" "N-02660E4F") + ("throw" "D-0016") + ("utsname" "N-003D12F6") + ("ai-numericserv" "N-020DFFDE") ("eexist" "N-036B1BDB") - ("sin" "D-000B") - ("clear-error" "D-000C") - ("usleep" "N-00D79773") + ("struct-get-initfun" "N-03946F2A") + ("str>=" "N-01AA954A") + ("hashp" "N-00B947EC") ("setpwent" "N-0377C43A") - ("flatten" "D-000D") - ("buf-get-" "N-0095470A") - ("f-setfd" "N-025E55E7") + ("usleep" "N-00D79773") + ("clear-error" "D-0017") + ("sin" "D-0018") ("buf-carray" "N-0022F54E") + ("rlcp" "N-024EB211") + ("f-setfd" "N-025E55E7") + ("buf-get-" "N-0095470A") + ("flatten" "D-0019") + ("crdly" "N-03BD477F") ("rename-path" "N-016EF40C") - ("in-range" "N-02C56FB6") - ("intern" "N-02722B58") + ("int-chr" "N-000AEC8B") + ("lazy-str-force-upto" "N-0212FED6") + ("make-trie" "N-03C1B843") + ("fileno" "N-008ACF75") ("fork" "N-0365C3E1") + ("getenv" "N-002E0364") + ("intern" "N-02722B58") + ("buf-get-u8" "N-0013E556") + ("in-range" "N-02C56FB6") + (">=" "D-001A") ("buf-get-i64" "N-03C7C972") - ("logand" "D-000E") + ("all" "D-001B") ("econnreset" "N-036B1BDB") - ("glob-noescape" "N-0188409B") + ("drop" "N-01C6C906") + ("logand" "D-001C") ("closedir" "N-01FEE88A") - ("new" "N-0230059D") + ("glob-noescape" "N-0188409B") + ("path-sticky-p" "N-02FBA677") ("make-struct-type" "N-022EEF2D") - ("proper-list-p" "N-03F70343") - ("o-append" "N-034BF6C9") + ("new" "N-0230059D") ("dirent" "N-036FE5B4") - ("get-sig-handler" "N-02E1B6FA") + ("o-append" "N-034BF6C9") + ("proper-list-p" "N-03F70343") ("fsfilcnt-t" "N-01D716FE") + ("ixon" "N-02391683") + ("o-creat" "N-034BF6C9") + ("get-sig-handler" "N-02E1B6FA") + ("caseql*" "N-02FB71A2") + ("tree-lookup-node" "N-03FE4877") + ("ffi-type-p" "N-01EE962E") ("sig-lost" "N-0176430F") ("eio" "N-036B1BDB") + ("unget-char" "D-001D") ("trie-compress" "N-00026B83") - ("ixany" "N-02391683") + ("carray-list" "N-00E825E0") ("trace" "N-02833733") - ("signum" "D-000F") + ("ixany" "N-02391683") + ("-rng+" "N-00BEA6DF") + ("*stddebug*" "N-006566FB") + ("buf-put-ulong" "N-020CF007") + ("tree-insert-node" "N-008B4AD9") + ("remq*" "N-00B85CD2") + ("reject" "N-031DC0F2") + ("signum" "D-001E") + ("flo-near" "N-013A1643") + ("time-nsec" "N-03B6DB3D") + ("remove-if" "N-01413802") + ("comb" "N-02E6CEDD") ("buf-get-u16" "N-02E7C960") - ("sig-bus" "N-0176430F") ("vstart" "N-01812D70") - ("regsub" "N-03BDC5F6") + ("sig-bus" "N-0176430F") + ("char" "N-0008D7DC") + ("f-wrlck" "N-0137046C") ("static-slot-home" "N-01F88B0D") + ("trailer" "D-001F") + ("regsub" "N-03BDC5F6") + ("tree-insert" "N-0114FF9E") + ("ofill" "N-03BD477F") ("ai-passive" "N-020DFFDE") - ("s-iflnk" "N-03F32D57") + ("opost" "N-03BD477F") ("glob-brace" "N-0188409B") - ("left" "N-020D5C1D") - ("sethash" "N-0025A17A") - ("perm" "N-0176D3A1") + ("s-iflnk" "N-03F32D57") + ("flo-get-round-mode" "N-0085ACA3") ("passwd" "N-036B0636") - ("rfind" "N-0301CDB6") - ("prog1" "N-03F7A8B8") + ("perm" "N-0176D3A1") + ("sethash" "N-0025A17A") + ("left" "N-020D5C1D") + ("fill-obj" "N-0039A1D1") ("rtld-global" "N-0083A22A") - ("get-error-str" "D-0010") + ("str-inaddr-net" "N-00918411") + ("log-notice" "N-035D75EC") + ("prog1" "N-03F7A8B8") + ("rfind" "N-0301CDB6") + ("lambda-match" "N-031E43FF") + ("get-error-str" "D-0020") + ("seq-reset" "N-01CA6912") ("test-set-indent-mode" "N-01A1F89C") - ("trim-str" "N-00E6E63B") - ("exit*" "N-03592671") - ("o-direct" "N-034BF6C9") + ("vector" "N-02B6C6F1") + ("<" "D-0021") + ("uint-carray" "N-00797A01") ("get-obj" "N-0315B229") + ("o-direct" "N-034BF6C9") + ("exit*" "N-03592671") + ("set-package-fallback-list" "N-027A535C") + ("trim-str" "N-00E6E63B") ("slet" "N-00821260") - ("catch" "D-0011") + ("sockaddr" "N-02C48759") ("path-blkdev-p" "N-00198FC7") + ("catch" "D-0022") + ("*99" "N-03F9BE17") + ("echo" "N-0072FF5E") ("floor1" "N-01ED20D1") ("callf" "N-00192C21") - ("echo" "N-0072FF5E") - ("*99" "N-03F9BE17") - ("lognot" "D-0012") + ("lognot" "D-0023") ("zarray" "N-017039ED") - ("sub-tree" "N-0398FBE2") - ("fun-variadic" "N-02AA3799") - ("compl-span-str" "N-0171717F") - ("make-string-output-stream" "N-0144BF51") + ("read" "N-03FE5500") ("chown" "N-003B491C") + ("eprototype" "N-036B1BDB") + ("eproto" "N-036B1BDB") + ("awk" "D-0024") + ("make-string-output-stream" "N-0144BF51") + ("compl-span-str" "N-0171717F") + ("fun-variadic" "N-02AA3799") + ("sub-tree" "N-0398FBE2") + ("sock-family" "N-0323EB36") ("keyword-package" "N-0383342A") + ("*match-macro*" "N-012A473F") + ("get-prop" "N-00663AE2") + ("caseq" "N-017EB9A1") ("test-clear" "N-036C7E9E") ("compile" "N-009542C1") - ("hash-keys-of" "N-02FBE776") - ("mlet" "N-008216E0") + ("r-ceil" "N-0399208F") + ("int" "N-018C7C8C") + ("path-older" "N-0155004F") ("packagep" "N-007A478F") - ("length-str->" "N-016D8C45") + ("mlet" "N-008216E0") + ("hash-keys-of" "N-02FBE776") + ("tcdrain" "N-01AC4760") + ("olcuc" "N-03BD477F") + ("match-regst" "N-02E3A26F") + ("divides" "N-02A088B3") + ("carray-sub" "N-03DF5BC5") + ("retf" "N-0026CB20") ("indent-code" "N-00512FDD") - ("rra" "N-0177F5FF") - ("buf-int" "N-0291625A") - ("str-seq" "N-02F0880D") - ("ffi-size" "N-00CDBB53") + ("length-str->" "N-016D8C45") ("carray-dup" "N-00058922") + ("ffi-size" "N-00CDBB53") + ("str-seq" "N-02F0880D") + ("buf-int" "N-0291625A") + ("chr-xdigit" "N-021C89F4") + ("rra" "N-0177F5FF") ("defmeth" "N-0047C7E8") - ("take" "N-00F6D433") - ("defpackage" "N-033951A2") - ("sig-segv" "N-0176430F") ("void" "N-013DE1A3") - ("cptr" "D-0013") + ("sig-segv" "N-0176430F") + ("defpackage" "N-033951A2") + ("take" "N-00F6D433") + ("coll" "D-0025") ("getitimer" "N-02DE107D") + ("cptr" "D-0026") + ("file-get-buf" "N-00FA177D") ("symlink" "N-009EF0C8") + ("cbaudex" "N-01B1B5DF") ("struct-set-initfun" "N-00946F18") - ("*print-circle*" "N-01FC9977") + ("call-super-fun" "N-0223E999") + ("merge" "D-0027") + ("starts-with" "N-004955D4") ("sock-peer" "N-015ABEC7") - ("setresuid" "N-027671E8") + ("*print-circle*" "N-01FC9977") ("tab1" "N-03BD477F") + ("setresuid" "N-027671E8") + ("seventh" "N-01B0FA33") + ("hash-update" "N-02DBCCC8") ("tofloat" "N-01DBC9D7") - ("copy-search-tree" "N-01EBE427") - ("clearhash" "N-00836D97") ("remove-path" "N-014AF3F7") + ("in-range*" "N-02C56FB6") + ("clearhash" "N-00836D97") + ("copy-search-tree" "N-01EBE427") ("url-decode" "N-0388DB26") - ("derived" "N-0151798B") ("log-user" "N-0116F48F") + ("derived" "N-0151798B") + ("--args" "N-03FCDE42") + ("log-alert" "N-035D75EC") ("defun-match" "N-02BF0F8C") - ("nconc" "N-0014162F") - ("time-struct-local" "N-00B758FD") ("sock-connect" "N-00E5DFD4") - ("swap" "N-0042131D") - ("size-vec" "N-01000634") + ("time-struct-local" "N-00B758FD") + ("nconc" "N-0014162F") + ("let*" "N-013AF20B") + ("hash-subset" "N-024ACBBB") ("log-authpriv" "N-0116F48F") + ("drop-until" "N-011E5936") + ("size-vec" "N-01000634") + ("swap" "N-0042131D") + ("error" "N-015466AD") + ("stream-get-prop" "N-005268C8") ("nthcdr" "N-03D71D22") - ("keepq" "N-00583609") + ("bignum-len" "N-020294AB") ("cptr-null" "N-01CB17AB") - ("define-param-expander" "N-019F25A5") - ("sort" "N-01FE5176") - ("posq" "N-00A2B785") - ("with-objects" "N-00AECEBA") - ("file-get-lines" "N-02238370") - ("make-time-utc" "N-007C486E") - ("efault" "N-036B1BDB") - ("ffi-alignof" "N-00061B61") + ("call" "N-0386C775") + ("keepq" "N-00583609") ("with-dyn-lib" "N-023E0D2C") + ("ffi-alignof" "N-00061B61") + ("efault" "N-036B1BDB") + ("make-time-utc" "N-007C486E") + ("file-get-lines" "N-02238370") + ("with-objects" "N-00AECEBA") + ("posq" "N-00A2B785") + ("sort" "N-01FE5176") + ("define-param-expander" "N-019F25A5") + ("alet" "N-008215E0") + ("ap" "N-00BE749A") ("carray-getz" "N-028920F5") - ("rposql" "N-01F68300") ("nl0" "N-03BD477F") + ("rposql" "N-01F68300") ("regex-from-trie" "N-00E48912") + ("log-debug" "N-035D75EC") ("go-cbreak" "N-03DCB007") + ("posqual" "N-00A2B785") ("vec-list" "N-03295612") + ("rec" "N-0003ED2C") + ("shuffle" "N-01F12561") + ("call-delete-expander" "N-021E7CC3") ("sssucc" "N-038E636C") - ("m$" "N-02F44ECE") + ("trim-left" "N-00CF29CC") + ("stat" "D-0028") ("rlet" "N-008212A0") - ("iapply" "N-026C3723") - ("with-in-string-byte-stream" "N-00FD832E") - ("log-odelay" "N-02371913") + ("m$" "N-02F44ECE") ("ffi-offsetof" "N-0318DA0C") + ("dt-dir" "N-02D8CAF4") + ("log-odelay" "N-02371913") + ("w-exitstatus" "N-0243C575") + ("realpath" "N-0168BEB4") + ("with-in-string-byte-stream" "N-00FD832E") + ("buf-put-u8" "N-002F6556") + ("iapply" "N-026C3723") + ("trunc" "D-0029") + ("dlsym" "N-01B1E865") + ("cptrp" "N-02B9289A") ("get-buf-from-stream" "N-02954B48") - ("unquote" "N-036B313D") - ("acons" "N-02E9343D") - ("define-option-struct" "N-0126C738") - ("fnm-pathname" "N-0330E15A") + ("int64" "N-03D0AA7B") ("rtld-nodelete" "N-0083A22A") - ("wait" "N-0365C3E1") - ("f-getfd" "N-025E55E7") + ("fnm-pathname" "N-0330E15A") + ("define-option-struct" "N-0126C738") + ("acons" "N-02E9343D") + ("unquote" "N-036B313D") ("*opt-level*" "N-03F68BBC") + ("f-getfd" "N-025E55E7") + ("wait" "N-0365C3E1") + ("consp" "N-01B94132") + ("func-get-form" "N-00722170") + (".." "N-0217A971") ("filter" "N-00B50006") - ("chr-str-set" "N-01743140") + ("pushhash" "N-022660B2") + ("defex" "D-002A") + ("keep-match-products" "N-01A846D2") + ("ceil1" "N-02C8FF28") + ("*filters*" "N-00E6A902") ("emultihop" "N-036B1BDB") + ("chr-str-set" "N-01743140") + ("doloop" "N-01FF4DDB") + ("sys:abscond-from" "N-02E20FE2") ("sig-xfsz" "N-0176430F") - ("compile-warning" "N-032EA7D7") - ("rperm" "N-0188EBDE") - ("buf-put-" "N-035546D9") - ("o-nofollow" "N-034BF6C9") + ("ffi" "N-020F3A1C") ("ffi-elemtype" "N-02DF8E12") + ("crtscts" "N-01B1B5DF") + ("o-nofollow" "N-034BF6C9") + ("s-ifreg" "N-03F32D57") + ("buf-put-" "N-035546D9") + ("rperm" "N-0188EBDE") + ("compile-warning" "N-032EA7D7") + ("ipf" "N-012A7E6A") + ("slots" "N-00E90177") ("ip" "N-00BE749A") - ("flush" "N-02390935") - ("random-state-p" "N-00C9A749") - ("s-ifmt" "N-03F32D57") ("sig-term" "N-0176430F") - ("range*" "N-033BE5A1") + ("s-ifmt" "N-03F32D57") + ("random-state-p" "N-00C9A749") + ("flush" "N-02390935") + ("buf-put-long" "N-00990DE3") ("vdiscard" "N-01812D70") - ("regex-parse" "N-01C9C361") - ("sig-iot" "N-0176430F") + ("range*" "N-033BE5A1") + ("copy-cons" "N-037EBB77") + ("tree-clear" "N-03C88274") + ("flatcar*" "N-01FF2F12") + ("keep-matches" "N-01A846D2") + ("str" "N-00C6B7C4") ("shut-rd" "N-028953A4") - ("base64-stream-dec" "N-03BEDB34") + ("sig-iot" "N-0176430F") + ("identity" "N-0137D341") + ("countq" "N-01DF131F") + ("regex-parse" "N-01C9C361") ("key-t" "N-01D716FE") - ("dup" "N-0387F549") + ("base64-stream-dec" "N-03BEDB34") + ("buf-put-uint" "N-018913CB") + ("buf" "D-002B") + ("offsetof" "N-013D0A5C") + ("int-ptr-t" "N-03258244") + ("group" "N-03DE71BA") + ("endpwent" "N-0377C43A") ("qquote" "N-01665185") - ("make-similar-tree" "N-030D1EF5") - ("let" "N-013AF20B") - ("iflet" "N-02DA21F6") + ("dup" "N-0387F549") + ("txr-exe-path" "N-014C116E") + ("keywordp" "N-01405F25") ("chr-isprint" "N-001B5076") + ("member" "N-0176FBE7") + ("iflet" "N-02DA21F6") + ("apply" "N-026C3723") + ("let" "N-013AF20B") + ("make-similar-tree" "N-030D1EF5") + ("refset" "N-01A419FB") ("chain" "N-00C53CF7") + ("carray-cptr" "N-03E001C5") ("tprint" "N-0217DE45") + ("buf-d" "D-002C") ("getgrent" "N-02CAC7FB") - ("buf-d" "D-0014") - ("catch*" "N-0211F3D3") + ("edeadlk" "N-036B1BDB") + ("assert" "D-002D") ("path-pipe-p" "N-00198FC7") - ("vec-set-length" "N-01723847") + ("catch*" "N-0211F3D3") ("glob-tilde" "N-0188409B") + ("delete-package" "N-02E687F3") + ("slotp" "N-00B90177") + ("vec-set-length" "N-01723847") + ("sock-send-timeout" "N-03DF15F2") ("int-str" "N-028043AE") - ("set" "D-0015") ("make-buf-stream" "N-03F5647C") + ("set" "D-002E") ("indent-off" "N-00512FDD") - ("lequal" "N-00A3E42D") + ("int-flo" "N-03F852CF") ("cr2" "N-03BD477F") + ("lequal" "N-00A3E42D") ("txr-case" "N-03813122") - ("func-get-env" "N-009538DB") - ("af-unix" "N-0228EAE0") - ("cum-norm-dist" "N-03AB449B") - ("close" "D-0016") - ("throwf" "N-015466AD") - ("promisep" "N-00C7553F") - ("list-seq" "N-02F0880D") - ("random-float" "N-01572D27") - ("find-symbol-fb" "N-01EA8B50") - ("mboundp" "N-01FBF828") - ("fnm-period" "N-0330E15A") - ("*listener-pprint-p*" "N-01E7ACFE") - ("flipargs" "N-02D06BA4") - ("set-key" "N-033F7D05") - ("hash-uni" "N-02235BB2") - ("time-usec" "N-03B6DB3D") - ("w-stopsig" "N-0243C575") - ("defvar" "N-039DD0E7") - ("lnew" "N-0230059D") - ("sig-ttou" "N-0176430F") - ("trie-add" "N-0006C677") - ("clamp" "N-03B940D4") - ("fun-fixparam-count" "N-015852B6") - ("structp" "N-01BB3FB3") - ("copy-carray" "N-006593D0") - ("*random-state*" "N-033875AD") - ("find-frame" "N-02B97226") - ("pdec" "N-00E4BC37") - ("sig-urg" "N-0176430F") - ("prof" "N-004C9B10") - ("null" "N-03C679D2") - ("ff0" "N-03BD477F") - ("abs" "D-0017") - ("lcons-cdr" "N-03598F4D") - ("file-append-buf" "N-02AE3A31") - ("get-line" "D-0018") - ("emlink" "N-036B1BDB") - ("bsdly" "N-03BD477F") - ("dev-t" "N-01D716FE") - ("path-same-object" "N-0103E27B") - ("each-match" "N-01CB9595") - ("append-each*" "N-0105F01D") - ("gequal" "N-00A3E42D") - ("span-str" "N-0394CA3A") - ("enetreset" "N-036B1BDB") - ("uname" "N-0308D954") - ("max" "N-023C3643") - ("emfile" "N-036B1BDB") - ("ftw-dp" "N-02ED8B51") - ("*tree-fun-whitelist*" "N-025AB9C9") - ("num-str" "N-028043AE") - ("keep-if" "N-01413802") - ("revappend" "N-012FF2DC") - ("clear-struct" "N-03A968CA") - ("drop-while" "N-011E5936") - ("path-strictly-private-to-me-p" "N-03B3F844") - ("glob-altdirfunc" "N-0188409B") - ("shut-wr" "N-028953A4") - ("width" "D-0019") - ("prog*" "N-018A4BA9") - ("handle" "N-03F7D8B5") - ("mappend*" "N-0202F92F") - ("or" "D-001A") - ("m^$" "N-02F44ECE") - ("struct" "D-001B") - ("remove-path-rec" "N-03E81B3A") - ("time-string-utc" "N-00F192AD") - ("register-tentative-def" "N-033CBAA9") - ("evenp" "D-001C") - ("window-mapdo" "N-015AFD48") - ("rmemq" "N-0188A56C") - ("random" "N-03A57C86") - ("getgrnam" "N-03556394") - ("maprend" "N-015987D7") - ("eownerdead" "N-036B1BDB") - ("improper-plist-to-alist" "N-006E31B5") - ("*stdout*" "N-006566FB") - ("*n" "N-02E7AE5A") - ("window-map" "N-015AFD48") - ("rmember-if" "N-0188A56C") - ("prop" "N-01C6D406") - ("eisdir" "N-036B1BDB") - ("sockaddr-in6" "N-013DD169") - ("inc" "N-03A0AABD") - ("make-similar-hash" "N-030E3A4A") - ("with-update-expander" "N-006EA023") - ("ubit" "N-011F2878") - ("ors" "N-02D33A3D") - ("w-ifsignaled" "N-0243C575") - ("fuzz" "N-03CAE17D") - ("collect-each-prod" "N-02CA3C70") - ("poll" "N-0386D39D") - ("remql*" "N-00B85CD2") - ("len" "N-03AD172A") - ("o-rdwr" "N-034BF6C9") - ("carray-putz" "N-02890B44") - ("string-extend" "N-03D5358A") - ("*-1" "N-02B67C9B") - ("s-ifblk" "N-03F32D57") - ("tree-next" "N-02443382") - ("carray-blank" "N-00DD8DF1") - ("memp" "N-03C6CE65") - ("eilseq" "N-036B1BDB") - ("if" "D-001D") - ("fnm-extmatch" "N-0330E15A") - ("carray-buf-sync" "N-02F23E0F") - ("copy-vec" "N-010E7635") - ("release-deferred-warnings" "N-012F0BE9") - ("spl" "N-03C7F5FA") - ("buf-get-char" "N-03E9074A") - ("r-round" "N-031D7670") - ("<=" "D-001E") - ("pprint" "N-02FCCE0D") - ("command-put-string" "N-024D65F3") - ("multi-sort" "N-0132852F") - ("make-env" "N-01144687") - ("replace-vec" "N-01F59E62") - ("usl" "N-00BF39DD") - ("sig-trap" "N-0176430F") - ("enotempty" "N-036B1BDB") - ("dwim" "D-001F") - ("fboundp" "N-01FBF828") - ("sig-poll" "N-0176430F") - ("ignpar" "N-02391683") - ("func-get-name" "N-03F222DA") - ("interp-fun-p" "N-00AC0CF7") - ("iter-reset" "D-0020") - ("ixoff" "N-02391683") - ("znew" "N-00B1FC38") - ("true" "N-00373D97") - ("ewouldblock" "N-036B1BDB") - ("*package*" "N-000CBBA0") - ("buf-put-short" "N-031CE904") - ("uint16" "N-03D0AA7B") - ("append-each-prod*" "N-02660E4F") - ("sig-alrm" "N-0176430F") - ("ftw-f" "N-02ED8B51") - ("set-right" "N-033F7D05") - ("get-line-as-buf" "N-007FD2F9") - ("copy-struct" "N-032B3FDC") - ("record-adapter" "N-009C0AC4") - ("defparm" "N-039DD0E7") - ("vlnext" "N-01812D70") - ("macro-ancestor" "N-00519E96") - ("ptr" "N-027B04D0") - ("tcooff" "N-02173FF9") - ("nequal" "N-0216A942") - ("countql" "N-01DF131F") - ("defsymacro" "N-0080256D") - ("sig-fpe" "N-0176430F") - ("iread" "N-03FE5500") - ("handle*" "N-03F7D8B5") - ("fname" "N-039E5F67") - ("integerp" "N-03E9D6E1") - ("remql" "N-000ECD82") - ("setenv" "N-002E0364") - ("ldiff" "N-02193773") - ("tree-begin-at" "N-00A02578") - ("yield-from" "N-01556613") - ("cos" "D-0021") - ("del" "D-0022") - ("tree-peek" "N-02443382") - ("exception-subtype-p" "N-02E7F869") - ("sock-accept" "N-00AF0FE8") - ("txr-when" "N-02311DCA") - ("dlvsym-checked" "N-029063A0") - ("dlopen" "N-037C4BFE") - ("nreconc" "N-012FF2DC") - ("open-tail" "N-0348F89A") - ("at-exit-do-not-call" "N-003EEEF5") - ("log-auth" "N-0116F48F") - ("with-hash-iter" "N-001B79C0") - ("sum" "N-0163FFE2") - ("struct-type-p" "N-00717410") - ("call-super-method" "N-016185D1") - ("unuse-sym" "N-01AF42B7") - ("long" "N-018C7C8C") - ("env-vbind" "N-03389BE3") - ("*args-eff*" "N-03DEE18A") - ("stdlib" "N-008E4BC2") - ("file-put" "N-0041C2E5") - ("search-regex" "N-0250D465") - ("mapdo" "N-03A943EE") - ("cptr-put" "N-00513A38") - ("union-get" "N-02FA4F0C") - ("keepqual" "N-00583609") - ("put-strings" "N-0367B282") - ("flo-zero" "N-013A1643") - ("car" "D-0023") - ("echok" "N-0072FF5E") - ("wint-t" "N-03258244") - ("match-regex" "N-02E3A26F") - ("atanh" "D-0024") - ("gcd" "N-03D44645") - ("rlist*" "N-02FD60D0") - ("o-trunc" "N-034BF6C9") - ("fill-carray" "N-00737951") - ("rmemql" "N-0188A56C") - ("scan" "N-03E989D0") - ("mac-env-param-bind" "N-021A9008") - ("o-path" "N-034BF6C9") - ("f-setfl" "N-025E55E7") - ("copy-list" "N-006ED237") - ("vmin" "N-01812D70") - ("until" "D-0025") - ("tcion" "N-02173FF9") - ("fill-buf" "D-0026") - ("sort-group" "N-01E65DDC") - ("sqrt" "D-0027") - ("nlink-t" "N-01D716FE") - ("acos" "D-0028") - ("make-string-byte-input-stream" "N-022937CD") - ("get-indent" "N-024E9FD8") - ("system-package" "N-0383342A") - ("rmdir" "N-03D90503") - ("base64url-decode" "N-02D46C3D") - ("floor" "D-0029") - ("getresgid" "N-03D37234") - ("-rng" "N-00BEA6DF") - ("html-encode*" "N-01263EAE") - ("block*" "N-02F60DCE") - ("append" "N-0014162F") - ("o-accmode" "N-034BF6C9") - ("inlcr" "N-02391683") - ("echonl" "N-0072FF5E") - ("html-decode" "N-01263EAE") - ("wrap" "N-026DDCEC") - ("set-indent-mode" "N-03F3170C") - ("numberp" "N-03E9D6E1") - ("reduce-right" "N-00FB426F") - ("clockid-t" "N-01D716FE") - ("id-t" "N-01D716FE") - ("mode-t" "N-01D716FE") - ("ffi-call" "N-023DCFF9") - ("gather" "D-002A") - ("seek-end" "N-01D6E4D8") - ("*rec-source-loc*" "N-014AFEA9") - ("make-hash" "N-026D4158") - ("lambda" "D-002B") - ("lazy-stringp" "N-0381BB2A") - ("bool" "D-002C") - ("meql" "N-020A0042") - ("make-strlist-output-stream" "N-00F363E0") - ("lexical-lisp1-binding" "N-02D124AB") - ("--rng-" "N-00BEA6DF") - ("sock-dgram" "N-01D17D22") - ("parmrk" "N-02391683") - ("base64-decode-buf" "N-01B05083") - ("ptr-out-d" "N-02036BEC") - ("iter-begin" "D-002D") - ("tcflow" "N-03081D51") - ("ffi-get" "N-023305C7") - ("key" "N-020D5C1D") - ("symbol-name" "N-035D3BBF") - ("*expand" "N-00E0F5F5") - ("*listener-multi-line-p*" "N-02C5CACF") - ("put-byte" "D-002E") - ("ff" "N-006B6E54") - ("edom" "N-036B1BDB") - ("enetunreach" "N-036B1BDB") - ("sig-vtalrm" "N-0176430F") - ("echoke" "N-0072FF5E") - ("flo-max" "N-0085F231") - ("pos-min" "N-027D45DD") - ("with-out-string-stream" "N-0001C63C") - ("rs" "N-0397AE68") - ("maprodo" "N-015987D7") - ("crc32-stream" "N-0119CE1D") - ("find-max" "N-02BB4231") - ("expand" "N-00E0F5F5") - ("collect" "D-002F") - ("make-struct" "N-002B3F64") - ("struct-set-postinitfun" "N-00946F18") - ("dt-fifo" "N-02D8CAF4") - ("edestaddrreq" "N-036B1BDB") - ("symdiff" "N-0385B074") - ("veof" "N-01812D70") - ("with-in-buf-stream" "N-01150550") - ("pendin" "N-0072FF5E") - ("*0" "N-03F9BE17") - ("r$" "N-03BBB0C5") - ("chr-isblank" "N-0251A159") - ("open-directory" "N-0221AE09") - ("log-perror" "N-02371913") - ("istrip" "N-02391683") - ("echoprt" "N-0072FF5E") - ("makedev" "N-02F0F482") - ("sign-extend" "D-0030") - ("r-trunc" "N-02CD7330") - ("eighth" "N-01B0FA33") - ("hash_alist" "N-01BD56A5") - ("dlsym-checked" "N-029063A0") - ("at-exit-call" "N-003EEEF5") - ("square" "D-0031") - ("get-error" "D-0032") - ("ftw-dnr" "N-02ED8B51") - ("einval" "N-036B1BDB") - ("*stderr*" "N-006566FB") - ("*print-flo-precision*" "N-02E97D03") - ("flush-stream" "N-03999913") - ("enotconn" "N-036B1BDB") - ("ushort" "N-018C7C8C") - ("buf-get-float" "N-001D239A") - ("symbol-package" "N-02AB2428") - ("time" "D-0033") - ("r^" "N-03BBB0C5") - ("bs0" "N-03BD477F") - ("casequal*" "N-02FB71A2") - ("..." "D-0034") - ("file-put-lines" "N-0041C2E5") - ("find-struct-type" "N-01E5EEA7") - ("to" "N-00AED1A7") - ("ofs" "N-02D33AA0") - ("with-clobber-expander" "N-0181ED4C") - ("buf-get-ulong" "N-020CEF9D") - ("cs5" "N-01B1B5DF") - ("catch-frame" "N-0233BAE3") - ("exp" "D-0035") - ("cbaud" "N-01B1B5DF") - ("sig-stop" "N-0176430F") - ("buf-alloc-size" "N-013A3727") - ("dt-chr" "N-02D8CAF4") - ("chmod" "N-00F941E5") - ("empty" "N-004918EB") - ("esrch" "N-036B1BDB") - ("opendir" "N-024AA6F4") - ("buf-set-length" "N-01208847") - ("copy-tree-iter" "N-025C3140") - ("nshuffle" "N-01F12561") - ("inaddr-any" "N-026A2C3B") - ("parenb" "N-01B1B5DF") - ("stringp" "N-00BB392B") - ("all*" "N-00F6E2A2") - ("new*" "N-021E6FDC") - ("flo-str" "N-028043AE") - ("notf" "N-0026CE18") - ("tailp" "N-00B8D7B5") - ("r-lognot" "N-00495055") - ("eaddrnotavail" "N-036B1BDB") - ("sys:gc" "N-01C75157") - ("f^$" "N-000B5ACD") - ("flo-down" "N-013A1643") - ("mapcar" "N-0202F92F") - ("caseql" "N-017EB9A1") - ("chr-isalpha" "N-00F18E1B") - ("vec-carray" "N-03EB1E3D") - ("dt-unknown" "N-02D8CAF4") - ("*load-path*" "N-01D1DB58") - ("typeof" "N-01F81275") - ("meth" "N-02C216C3") - ("again" "N-000CD1AE") - ("right" "N-020D5C1D") - ("mapf" "N-0026CEF1") - ("sig-cont" "N-0176430F") - ("log-crit" "N-035D75EC") - ("ffi-arraysize" "N-03DC1AED") - ("ehostunreach" "N-036B1BDB") - ("ffi-put-into" "N-0000F6A9") - ("copy-hash" "N-030E3A4A") - ("exptmod" "D-0036") - ("tree-delete-node" "N-00772FAE") - ("doloop*" "N-01FF4DDB") - ("opts" "N-01D911E8") - ("f-dupfd" "N-025E55E7") - ("obtain" "N-01556613") - ("enametoolong" "N-036B1BDB") - ("rng" "N-00BEA6DF") - ("lambda-set" "N-02FEBA97") - ("path-setuid-p" "N-02FBA677") - ("buf-put-float" "N-001D2408") - ("*pprint-flo-format*" "N-02B252AA") - ("set-cflags" "N-02061924") - ("log-daemon" "N-0116F48F") - ("lexical-var-p" "N-007B1A53") - ("etime" "N-036B1BDB") - ("ldo" "N-03EF3A27") - ("f-dupfd-cloexec" "N-025E55E7") - ("hash_keys" "N-01BD56A5") - ("etimedout" "N-036B1BDB") - ("f$" "N-000B5ACD") - ("sig-ttin" "N-0176430F") - ("clear-cflags" "N-02061924") - ("fnr" "N-02E33A82") - ("string-decode" "N-033502F8") - ("path-sep-chars" "N-03985DE5") - ("package-name" "N-038581D9") - ("as" "N-028B26DD") - ("ffi-make-call-desc" "N-01A96E1C") - ("cat-str" "N-00B6ACE3") - ("file-put-string" "N-0041C2E5") - ("rebind" "N-019F9FB7") - ("list-str" "N-0236023D") - ("seteuid" "N-03897D65") - ("make-union" "N-010A23C0") - ("copy-tnode" "N-018A17C0") - ("hash-proper-subset" "N-024ACBBB") - ("bitset" "D-0037") - ("mappend" "N-0202F92F") - ("orec" "N-0003ED2C") - ("copy-tree" "N-015EB85E") - ("uref" "N-03A211AB") - ("ncon" "N-022F6E60") - ("log-info" "N-035D75EC") - ("count-if" "N-00BBC726") - ("rassq" "N-03B49598") - ("get-hash-userdata" "N-030B41A7") - ("count-until-match" "N-00EFD668") - ("match-regex-right" "N-019430C5") - ("inhash" "N-0161147E") - ("isqrt" "D-0038") - ("defplace" "N-00F92066") - ("buildn" "N-01346AAA") - ("open-fileno" "N-02BEAF24") - ("frame" "N-0233BAE3") - ("bignump" "N-03E9D6E1") - ("defmacro" "N-02CAEF0B") - ("-rng-" "N-00BEA6DF") - ("fnmatch" "N-03F8FF75") - ("make-sym" "N-0084463A") - ("search-str" "N-0257180F") - ("struct-type" "N-02C33D76") - ("ecanceled" "N-036B1BDB") - ("with-delete-expander" "N-02A6E020") - ("rel-path" "N-016892B4") - ("mmakunbound" "N-02964FC0") - ("f-getfl" "N-025E55E7") - ("hash-zip" "N-02767282") - ("oddp" "D-0039") - ("env-next" "N-0018DCDC") - ("str>" "N-01AA954A") - ("get-string" "N-00BE9AAC") - ("enostr" "N-036B1BDB") - ("keepql" "N-00583609") - ("second" "N-01B0FA33") - ("conses*" "N-00BBCCAA") - ("weave" "N-0208F32F") - ("glob" "N-00E6C7DE") - ("join" "N-00B6ACE3") - ("*" "N-022396F7") - ("in" "N-016BE41C") - ("downcase-str" "N-03DA541E") - ("sme" "N-008C6621") - ("arraysize" "N-002129D6") - ("tcioff" "N-02173FF9") - ("tree-lookup" "N-01D63E47") - ("sig-io" "N-0176430F") - ("bchar" "N-0008D7DC") - ("build-list" "N-0315C467") - ("rassoc" "N-03B49598") - ("fnm-noescape" "N-0330E15A") - ("lcons-fun" "N-02E1BA6F") - ("chdir" "N-03D941C3") - ("sig-pipe" "N-0176430F") - ("rtld-noload" "N-0083A22A") - ("ptr-in" "N-00A494BF") - ("aret" "N-008216A8") - ("fr$" "N-031971BD") - ("collect-each-prod*" "N-02660E4F") - ("indent-data" "N-00512FDD") - ("buf-get-ushort" "N-035691E9") - ("struct-from-args" "N-01515451") - ("base64url-decode-buf" "N-02D46C3D") - ("*2" "N-03F9BE17") - ("test-set" "N-036C7E9E") - ("flatcar" "N-01FF2F12") - ("abort" "N-02F934F6") - ("zero-fill" "N-016D3BB5") - ("->" "N-02B10DF9") - ("logcount" "D-003A") - ("fifth" "N-01B0FA33") - ("int-buf" "N-00DCFA5F") - ("fmt" "N-0347F537") - ("for" "N-031372ED") - ("sig-hup" "N-0176430F") - ("path-dir-empty" "N-01EFC15D") - ("mac-param-bind" "N-021A9008") - ("keep-if*" "N-01413802") - ("env-fbindings" "N-0018DCDC") - ("find" "N-005431FF") - ("portable-abs-path-p" "N-00477B23") - ("*place-macro*" "N-01B680E6") - ("o-cloexec" "N-034BF6C9") - ("fixnump" "N-03E9D6E1") - ("tan" "D-003B") - ("*print-flo-format*" "N-02B252AA") - ("econnaborted" "N-036B1BDB") - ("lutimes" "N-00E96FCF") - ("*stdlog*" "N-02841215") - ("int8" "N-0131FBF2") - ("cptr-buf" "N-037139E3") - ("makunbound" "N-01FA4070") - ("time-struct-utc" "N-00B758FD") - ("length-list" "N-01F8186A") - ("carray-free" "N-0010030E") - ("append-match-products" "N-026DC56D") - ("fourth" "N-01B0FA33") - ("path-dir-p" "N-00198FC7") - ("vtdly" "N-03BD477F") - ("ulong" "N-018C7C8C") - ("hash-revget" "N-02FBE776") - ("source-loc-str" "N-0370CD69") - ("*1" "N-03F9BE17") - ("*-2" "N-02B67C9B") - ("*unhandled-hook*" "N-02B4A4FB") - ("pushnew" "N-02C37AB0") - ("force-break" "N-03B5FB1D") - ("defvarl" "N-03F36A75") - ("file-get" "N-02238370") - ("match-fun" "N-033F766A") - ("ptrdiff-t" "N-03258244") - ("hupcl" "N-01B1B5DF") - ("*place-delete-expander*" "N-01A2C58A") - ("rmember" "N-0188A56C") - ("filter-equal" "N-03136087") - ("chmod-rec" "N-02D8298E") - ("o-noatime" "N-034BF6C9") - ("asin" "D-003C") - ("rcomb" "N-02D9003C") - ("echild" "N-036B1BDB") - ("iter-more" "D-003D") - ("dt-blk" "N-02D8CAF4") - ("path-writable-to-me-p" "N-02033190") - ("tree" "N-02F6D50B") - ("tentative-def-exists" "N-0186D1B7") - ("zerop" "D-003E") - ("pend*" "N-03975507") - ("opt-desc" "N-03FC5092") - ("chr-isupper" "N-02BB451C") - ("uni" "N-0385B074") - ("enum" "N-01CDE57C") - ("diff" "N-0385B074") - ("sub" "N-01D9F42F") - ("ffi-make-closure" "N-0095DF58") - ("contains" "N-010AB2D7") - ("path-symlink-p" "N-00198FC7") - ("sig-xcpu" "N-0176430F") - ("clocal" "N-01B1B5DF") - ("daemon" "N-017C3515") - ("cmp-str" "N-0143A273") - ("txr-if" "N-00355D4E") - ("short" "N-018C7C8C") - ("with-in-string-stream" "N-004ED7A0") - ("enotsup" "N-036B1BDB") - ("getpwent" "N-0377C43A") - ("txr-parse" "N-02AC7FB4") - ("tree-reset-at" "N-029EF2F3") - ("ensure-dir" "N-00C543B8") - ("path-exists-p" "N-03C41AE2") - ("mod" "D-003F") - ("splice" "N-03BC798C") - ("buf-put-u16" "N-019FC960") - ("buf-get-cptr" "N-00E90766") - ("prod" "N-0163FFE2") - ("some" "D-0040") - ("sock-set-peer" "N-01FE18ED") - ("untrace" "N-02833733") - ("md5-stream" "N-006C94B6") - ("rng+" "N-00BEA6DF") - ("f-getlk" "N-025E55E7") - ("deffi" "N-00DCE51D") - ("uchar" "N-0008D7DC") - ("loff-t" "N-01D716FE") - ("replace-list" "N-03E43DA2") - ("str=" "N-01AA954A") - ("trim-right" "N-00CF29CC") - ("pred" "N-038E636C") - ("f-setlk" "N-025E55E7") - ("mf" "N-036B6E55") - ("glob-nomagic" "N-0188409B") - ("endp" "N-00C6C858") - ("/=" "N-003BE40C") - ("with-compilation-unit" "N-013AAB51") - ("pinc" "N-00E4BC37") - ("rpos-if" "N-01F68300") - ("etxtbsy" "N-036B1BDB") - ("setuid" "N-03897D65") - ("n-choose-k" "N-02ACFDE6") - ("sixth" "N-01B0FA33") - ("hash-eql" "N-0000455E") - ("*param-macro*" "N-03B67ED8") - ("alist-nremove" "N-000CD07F") - ("buf-put-i64" "N-007FC973") - ("glob-nocheck" "N-0188409B") - ("tree-value-at" "N-012A5FAD") - ("acosh" "D-0041") - ("buf-put-buf" "N-009FC934") - ("buf-uint" "N-0291625A") - ("align" "N-01C7BC08") - ("tree-reset" "N-029EF2F3") - ("digpow" "N-030C5561") - ("remqual*" "N-00B85CD2") - ("test-dirty" "N-03AB857D") - ("replace" "N-035991E1") - ("vquit" "N-01812D70") - ("sock-type" "N-0323EB36") - ("ignbrk" "N-02391683") - ("uint32" "N-03D0AA7B") - ("compile-toplevel" "N-00DE8B13") - ("command-get-lines" "N-0062A33B") - ("ppred" "N-038E636C") - ("plist-to-alist" "N-006E31B5") - ("orf" "N-01E7D2AD") - ("split" "N-02FD4882") - ("rlist" "N-02FD60D0") - ("string-lt" "N-03ABBED1") - ("find-symbol" "N-01EA8B50") - ("prog2" "N-03A0E48C") - ("caar" "N-00209CEE") - ("slotset" "N-02657437") - ("wrap*" "N-026DDCEC") - ("opip" "N-01937C5A") - ("pppred" "N-038E636C") - ("whilet" "N-0154DC75") - ("*stdin*" "N-006566FB") - ("glob-mark" "N-0188409B") - ("last" "D-0042") - ("false" "N-03C679D2") - ("eisconn" "N-036B1BDB") - ("copy-file" "N-019D6582") - ("intern-fb" "N-02722B58") - ("ftw-sln" "N-02ED8B51") - ("accept" "D-0043") - ("unsetenv" "N-002E0364") - ("poly" "N-026201AD") - ("sock-listen" "N-02F624A8") - ("+" "D-0044") - ("print" "D-0045") - ("time-parse-utc" "N-00207C99") - ("log" "D-0046") - ("list-builder" "N-018F6666") - ("ino-t" "N-01D716FE") - ("chr" "N-02D5D09D") - ("*random-warmup*" "N-010348CD") - ("clear-dirty" "N-03AB857D") - ("make-strlist-input-stream" "N-01737CF9") - ("save-exe" "N-02850687") - ("chr-isalnum" "N-01B18DF0") - ("carray-vec" "N-00E825E0") - ("open-file" "N-02B8FBBD") - ("setegid" "N-03897D65") - ("seek-cur" "N-01D6E4D8") - ("rassql" "N-03B49598") - ("vkill" "N-01812D70") - ("rpoly" "N-026201AD") - ("cptr-obj" "N-013139D1") - ("partition*" "N-03951D7A") - ("krs" "N-02D33A4D") - ("estale" "N-036B1BDB") - ("load-time" "D-0047") - ("read-until-match" "N-001D3F81") - ("o-wronly" "N-034BF6C9") - ("enotsock" "N-036B1BDB") - ("*args*" "N-03DEE18A") - ("countqual" "N-01DF131F") - ("macro-form-p" "N-02AC86DE") - ("lexical-fun-p" "N-007B1A53") - ("ginterate" "N-02F671F4") - ("method" "N-022200C1") - ("ignwarn" "N-02552A58") - ("length" "D-0048") - ("sha256" "N-019F97A2") - ("put-carray" "N-00737951") - ("log-nowait" "N-02371913") - ("flo-min" "N-0085F231") - ("match-str" "N-03FF771E") - ("ftw-d" "N-02ED8B51") - ("min" "N-023C3643") - ("choose" "N-039458F2") - ("umeth" "N-02ECA31C") - ("itimer-prof" "N-02B7882A") - ("select" "N-031D7F72") - ("link" "N-009EF0C8") - ("deffi-cb" "N-00C54FC8") - ("nf" "N-0267AE6D") - ("/" "D-0049") - ("mkfifo" "N-0091FD43") - ("fsblkcnt-t" "N-01D716FE") - ("hash-isec" "N-02235BB2") - ("defset" "N-0157E559") - ("eacces" "N-036B1BDB") - ("list*" "N-03593DE9") - ("ref" "N-01A419FB") - ("eintr" "N-036B1BDB") - ("run" "N-0158244A") - ("-" "D-004A") - ("test-clear-dirty" "N-03AB857D") - ("sig-usr1" "N-0176430F") - ("glob-onlydir" "N-0188409B") - ("dirstat" "N-02507FF2") - ("cs8" "N-01B1B5DF") - ("ffi-type-operator-p" "N-00E31038") - ("doc" "N-0097F54C") - ("return" "N-03E500DF") - ("get" "N-03D9F55D") - ("base64-encode" "N-01B05083") - ("compile-file" "N-0211BE68") - ("epipe" "N-036B1BDB") - ("log-emerg" "N-035D75EC") - ("logior" "D-004B") - ("pos-if" "N-02C2BBDB") - ("return-from" "N-03E500DF") - ("chr-digit" "N-01ED5020") - ("dt-reg" "N-02D8CAF4") - ("uid-t" "N-01D716FE") - ("ffi-typedef" "N-0094D6D7") - ("fr^" "N-031971BD") - ("dump-deferred-warnings" "N-0335651E") - ("cptr-int" "N-015139D6") - ("bit" "D-004C") - ("copy-fun" "N-003E7671") - ("rplaca" "D-004D") - ("nreverse" "N-03D8471B") - ("md5-begin" "N-025F32FD") - ("md5-end" "N-025F32FD") - ("oand" "N-01937C5A") - ("caseq*" "N-02FB71A2") - ("where" "N-0208F1DE") - ("assql" "N-00123702") - ("sig-sys" "N-0176430F") - ("cs7" "N-01B1B5DF") - ("rtld-lazy" "N-0083A22A") - ("bracket" "N-02400F97") - ("chr-islower" "N-02BB58D0") - ("%e%" "N-03F0FA9E") - ("hash-from-alist" "N-017E6F4C") - ("cptr-zap" "N-00913A85") - ("purge-deferred-warning" "N-0077C4FE") - ("carray" "N-0139F9ED") - ("maphash" "N-03E6917D") - ("time-local" "N-001284ED") - ("member-if" "N-0176FBE7") - ("reverse" "N-03D8471B") - ("setgroups" "N-030FEE97") - ("group-reduce" "N-001A208F") - ("self-path" "N-03561A65") - ("txr-version" "N-032F57D4") - ("ftw-chdir" "N-01A802F2") - ("rmismatch" "N-008F3C16") - ("espipe" "N-036B1BDB") - ("w-coredump" "N-0243C575") - ("update" "N-0327B17E") - ("flo-int" "N-03F852CF") - ("zip" "N-03AA85AD") - ("enoent" "N-036B1BDB") - ("str-d" "N-00C6B7C4") - ("obtain-block" "N-01C791D0") - ("compile-error" "N-032EA7D7") - ("try" "N-0328371B") - ("conses" "N-00BBCCAA") - ("generate" "N-02F671F4") - ("sig-int" "N-0176430F") - ("vreprint" "N-01812D70") - ("exception-subtype-map" "N-03ABFA6D") - ("chr-toupper" "N-015A451C") - ("aconsql-new" "N-01E315BD") - ("onlret" "N-03BD477F") - ("vstop" "N-01812D70") - ("onlcr" "N-03BD477F") - ("vintr" "N-01812D70") - ("forget" "N-02A1EE04") - ("return*" "N-0309887F") - ("ceil-rem" "N-02DE978F") - ("reduce-left" "N-00FB426F") - ("maprod" "N-015987D7") - ("compare-swap" "N-02933F2A") - ("econnrefused" "N-036B1BDB") - ("ffi-in" "N-037AAB17") - ("assoc" "N-00E9306D") - ("mknod" "N-00F93A39") - ("make-string-input-stream" "N-00F0B9B0") - ("catenated-stream-p" "N-021EE493") - ("memql" "N-0387CD82") - ("md5" "N-019F97A2") - ("--rng" "N-00BEA6DF") - ("fd-cloexec" "N-021805C2") - ("ret" "N-033F39EF") - ("fnm-casefold" "N-0330E15A") - ("file-append-lines" "N-000CCA8A") - ("--rng+" "N-00BEA6DF") - ("sub-list" "N-038E3E1D") - ("bindable" "N-0222F2E3") - ("output" "N-0159EBE7") - ("rep" "D-004E") - ("enxio" "N-036B1BDB") - ("addrinfo" "N-0110E961") - ("log-cons" "N-02371913") - ("in6addr-loopback" "N-026A2C3B") - ("put-line" "N-012163C3") - ("tciflush" "N-0279ED46") - ("minusp" "D-004F") - ("env-hash" "N-011814B5") - ("rangep" "N-00DDB00B") - ("copy-str" "N-02FE763D") - ("chr-isspace" "N-002B4C59") - ("seqp" "N-03C6CAE0") - ("cond" "N-016C9E24") - ("define-accessor" "N-03C5F850") - ("*print-base*" "N-01DD07CC") - ("truncate" "N-0032FBF3") - ("split-str-set" "N-0296195B") - ("ffdly" "N-03BD477F") - ("length-str-<=" "N-016D8C45") - ("ff1" "N-03BD477F") - ("acons-new" "N-0371BAFA") - ("mismatch" "N-03164F4F") - ("closelog" "N-02CEE7EA") - ("r-expt" "N-00192012") - ("atan" "D-0050") - ("join-with" "N-00B6ACE3") - ("emsgsize" "N-036B1BDB") - ("deffi-sym" "N-02B237BB") - ("union-out" "N-02258991") - ("hash-construct" "N-017E6F4C") - ("enetdown" "N-036B1BDB") - ("getresuid" "N-03D37234") - ("ptr-in-d" "N-01D7AC98") - ("hash-begin" "N-0225209D") - ("enolck" "N-036B1BDB") - ("boundp" "N-01FBF828") - ("pipe" "N-03F6D390") - ("reset-struct" "N-002A609F") - ("getgid" "N-00125C22") - ("w-termsig" "N-0243C575") - ("symacrolet" "N-00321AB1") - ("with-out-buf-stream" "N-01150550") - ("open-socket" "N-026B766B") - ("collect-each" "N-0105F01D") - ("list" "N-0206CE91") - ("arg" "N-02133AA5") - ("->>" "N-02B10DF9") - ("strsignal" "N-00234BED") - ("f-unlck" "N-0137046C") - ("dt-sock" "N-02D8CAF4") - ("ffi-elemsize" "N-00DF8E15") - ("union-in" "N-02258991") - ("buf-put-double" "N-006A81D9") - ("enotty" "N-036B1BDB") - ("use-sym" "N-01747674") - ("exit" "N-0006C92F") - ("glob-nosort" "N-0188409B") - ("dt-lnk" "N-02D8CAF4") - ("tnode" "N-0008DDFB") - ("each-prod" "N-02CA3C70") - ("enoexec" "N-036B1BDB") - ("lset" "N-008216EC") - ("atom" "N-0076C7BE") - ("*args-full*" "N-03DEE18A") - ("*hash-seed*" "N-0041D85A") - ("log10" "D-0051") - ("pprinl" "N-02FCCE0D") - ("make-catenated-stream" "N-020BF082") - ("ftw-stop" "N-03853999") - ("base64-stream-enc" "N-03BEDB34") - ("throw" "D-0052") - ("each-prod*" "N-02660E4F") - ("chr-isunisp" "N-00DB3D75") - ("hashp" "N-00B947EC") - ("str>=" "N-01AA954A") - ("struct-get-initfun" "N-03946F2A") - ("ai-numericserv" "N-020DFFDE") - ("utsname" "N-003D12F6") - ("rlcp" "N-024EB211") - ("int-chr" "N-000AEC8B") - ("crdly" "N-03BD477F") - ("lazy-str-force-upto" "N-0212FED6") - (">=" "D-0053") - ("buf-get-u8" "N-0013E556") - ("getenv" "N-002E0364") - ("fileno" "N-008ACF75") - ("make-trie" "N-03C1B843") - ("all" "D-0054") - ("drop" "N-01C6C906") - ("path-sticky-p" "N-02FBA677") - ("tree-lookup-node" "N-03FE4877") - ("caseql*" "N-02FB71A2") - ("o-creat" "N-034BF6C9") - ("ixon" "N-02391683") - ("ffi-type-p" "N-01EE962E") - ("unget-char" "D-0055") - ("tree-insert-node" "N-008B4AD9") - ("buf-put-ulong" "N-020CF007") - ("*stddebug*" "N-006566FB") - ("-rng+" "N-00BEA6DF") - ("carray-list" "N-00E825E0") - ("remq*" "N-00B85CD2") - ("flo-near" "N-013A1643") - ("reject" "N-031DC0F2") - ("comb" "N-02E6CEDD") - ("remove-if" "N-01413802") - ("time-nsec" "N-03B6DB3D") - ("tree-insert" "N-0114FF9E") - ("trailer" "D-0056") - ("f-wrlck" "N-0137046C") - ("char" "N-0008D7DC") - ("ofill" "N-03BD477F") - ("flo-get-round-mode" "N-0085ACA3") - ("opost" "N-03BD477F") - ("lambda-match" "N-031E43FF") - ("log-notice" "N-035D75EC") - ("str-inaddr-net" "N-00918411") - ("fill-obj" "N-0039A1D1") - ("seq-reset" "N-01CA6912") - ("<" "D-0057") - ("vector" "N-02B6C6F1") - ("set-package-fallback-list" "N-027A535C") - ("uint-carray" "N-00797A01") - ("sockaddr" "N-02C48759") - ("read" "N-03FE5500") - ("awk" "D-0058") - ("eproto" "N-036B1BDB") - ("eprototype" "N-036B1BDB") - ("*match-macro*" "N-012A473F") - ("sock-family" "N-0323EB36") - ("caseq" "N-017EB9A1") - ("get-prop" "N-00663AE2") - ("r-ceil" "N-0399208F") - ("path-older" "N-0155004F") - ("int" "N-018C7C8C") - ("match-regst" "N-02E3A26F") - ("olcuc" "N-03BD477F") - ("tcdrain" "N-01AC4760") - ("divides" "N-02A088B3") - ("retf" "N-0026CB20") - ("carray-sub" "N-03DF5BC5") - ("chr-xdigit" "N-021C89F4") - ("coll" "D-0059") - ("file-get-buf" "N-00FA177D") - ("starts-with" "N-004955D4") - ("merge" "D-005A") - ("call-super-fun" "N-0223E999") - ("cbaudex" "N-01B1B5DF") - ("seventh" "N-01B0FA33") - ("hash-update" "N-02DBCCC8") - ("in-range*" "N-02C56FB6") - ("--args" "N-03FCDE42") - ("log-alert" "N-035D75EC") - ("hash-subset" "N-024ACBBB") - ("let*" "N-013AF20B") - ("error" "N-015466AD") - ("drop-until" "N-011E5936") - ("bignum-len" "N-020294AB") - ("stream-get-prop" "N-005268C8") - ("call" "N-0386C775") - ("ap" "N-00BE749A") - ("alet" "N-008215E0") - ("log-debug" "N-035D75EC") - ("posqual" "N-00A2B785") - ("trim-left" "N-00CF29CC") - ("call-delete-expander" "N-021E7CC3") - ("shuffle" "N-01F12561") - ("rec" "N-0003ED2C") - ("stat" "D-005B") - ("trunc" "D-005C") - ("buf-put-u8" "N-002F6556") - ("realpath" "N-0168BEB4") - ("w-exitstatus" "N-0243C575") - ("dt-dir" "N-02D8CAF4") - ("dlsym" "N-01B1E865") - ("cptrp" "N-02B9289A") - ("int64" "N-03D0AA7B") - ("pushhash" "N-022660B2") - (".." "N-0217A971") - ("func-get-form" "N-00722170") - ("consp" "N-01B94132") - ("ceil1" "N-02C8FF28") - ("keep-match-products" "N-01A846D2") - ("defex" "D-005D") - ("sys:abscond-from" "N-02E20FE2") - ("doloop" "N-01FF4DDB") - ("*filters*" "N-00E6A902") - ("ipf" "N-012A7E6A") - ("s-ifreg" "N-03F32D57") - ("crtscts" "N-01B1B5DF") - ("ffi" "N-020F3A1C") - ("slots" "N-00E90177") - ("buf-put-long" "N-00990DE3") - ("tree-clear" "N-03C88274") - ("copy-cons" "N-037EBB77") - ("keep-matches" "N-01A846D2") - ("flatcar*" "N-01FF2F12") - ("countq" "N-01DF131F") - ("identity" "N-0137D341") - ("str" "N-00C6B7C4") - ("buf" "D-005E") - ("buf-put-uint" "N-018913CB") - ("endpwent" "N-0377C43A") - ("group" "N-03DE71BA") - ("int-ptr-t" "N-03258244") - ("offsetof" "N-013D0A5C") - ("apply" "N-026C3723") - ("member" "N-0176FBE7") - ("keywordp" "N-01405F25") - ("txr-exe-path" "N-014C116E") - ("refset" "N-01A419FB") - ("carray-cptr" "N-03E001C5") - ("assert" "D-005F") - ("edeadlk" "N-036B1BDB") - ("slotp" "N-00B90177") - ("delete-package" "N-02E687F3") - ("sock-send-timeout" "N-03DF15F2") - ("int-flo" "N-03F852CF") - ("casequal" "N-017EB9A1") - ("chr-isxdigit" "N-021C89F4") - ("igncr" "N-02391683") ("cread" "N-01B1B5DF") + ("igncr" "N-02391683") + ("chr-isxdigit" "N-021C89F4") + ("casequal" "N-017EB9A1") + ("af-unix" "N-0228EAE0") ("ftw" "N-0057F54E") + ("func-get-env" "N-009538DB") ("split*" "N-02FD4882") - ("add*" "N-03244398") ("cr3" "N-03BD477F") + ("close" "D-002F") + ("add*" "N-03244398") + ("cum-norm-dist" "N-03AB449B") ("rr" "N-03BBB0C5") - ("chr-ispunct" "N-011B4F35") ("*listener-hist-len*" "N-007B676F") + ("random-float" "N-01572D27") + ("list-seq" "N-02F0880D") + ("chr-ispunct" "N-011B4F35") + ("promisep" "N-00C7553F") + ("throwf" "N-015466AD") + ("find-symbol-fb" "N-01EA8B50") ("replace-tree-iter" "N-01225FF3") - ("multi" "N-034946BA") ("val" "N-00DB04DD") - ("eafnosupport" "N-036B1BDB") + ("fnm-period" "N-0330E15A") + ("mboundp" "N-01FBF828") + ("multi" "N-034946BA") + ("*listener-pprint-p*" "N-01E7ACFE") ("eprotonosupport" "N-036B1BDB") - ("buf-put-u64" "N-007FC963") - ("lnew*" "N-021E6FDC") - ("super" "N-03D8EEEE") - ("display-width" "N-0263C039") - ("close-stream" "N-00596930") + ("eafnosupport" "N-036B1BDB") ("ulonglong" "N-02299408") + ("time-usec" "N-03B6DB3D") + ("close-stream" "N-00596930") + ("display-width" "N-0263C039") + ("super" "N-03D8EEEE") + ("lnew*" "N-021E6FDC") + ("buf-put-u64" "N-007FC963") + ("hash-uni" "N-02235BB2") + ("set-key" "N-033F7D05") + ("flipargs" "N-02D06BA4") + ("w-stopsig" "N-0243C575") ("tree-find" "N-0149BC05") - ("search-regst" "N-0250D465") - ("floor-rem" "N-02DE978F") - ("uint-buf" "N-00DCFA5F") - ("with-stream" "N-013E33A2") - ("vtime" "N-01812D70") - ("tcflush" "N-034C4A4D") - ("gid-t" "N-01D716FE") + ("trie-add" "N-0006C677") + ("sig-ttou" "N-0176430F") + ("lnew" "N-0230059D") + ("defvar" "N-039DD0E7") + ("copy-carray" "N-006593D0") ("union-put" "N-02FA4EBC") + ("gid-t" "N-01D716FE") + ("tcflush" "N-034C4A4D") + ("vtime" "N-01812D70") + ("with-stream" "N-013E33A2") + ("structp" "N-01BB3FB3") + ("uint-buf" "N-00DCFA5F") + ("fun-fixparam-count" "N-015852B6") + ("floor-rem" "N-02DE978F") + ("clamp" "N-03B940D4") + ("search-regst" "N-0250D465") ("sys:gc-set-delta" "N-02C0C748") - ("o-nonblock" "N-034BF6C9") + ("*random-state*" "N-033875AD") + ("prof" "N-004C9B10") ("log-ndelay" "N-02371913") + ("o-nonblock" "N-034BF6C9") + ("sig-urg" "N-0176430F") + ("pdec" "N-00E4BC37") + ("find-frame" "N-02B97226") + ("ff0" "N-03BD477F") + ("null" "N-03C679D2") ("rposq" "N-01F68300") - ("ifa" "N-018F39B0") - ("fun-optparam-count" "N-015852B6") - ("replace-buf" "N-01C59E4E") + ("bsdly" "N-03BD477F") + ("emlink" "N-036B1BDB") ("open-process" "N-02B03D38") - ("unuse-package" "N-024BF63F") + ("get-line" "D-0030") + ("file-append-buf" "N-02AE3A31") + ("replace-buf" "N-01C59E4E") + ("lcons-cdr" "N-03598F4D") + ("fun-optparam-count" "N-015852B6") + ("ifa" "N-018F39B0") + ("abs" "D-0031") + ("dev-t" "N-01D716FE") ("filter-string-tree" "N-00C9EEB0") - ("bufp" "N-02C6CEE4") - ("slot" "N-0326F62D") + ("unuse-package" "N-024BF63F") ("sig-check" "N-0360A99A") - ("register-exception-subtypes" "N-005EB97F") + ("slot" "N-0326F62D") + ("bufp" "N-02C6CEE4") ("flusho" "N-0072FF5E") - ("lchown" "N-003B491C") + ("path-same-object" "N-0103E27B") + ("register-exception-subtypes" "N-005EB97F") ("in6addr-any" "N-026A2C3B") - ("fstat" "N-006DE1CC") + ("lchown" "N-003B491C") ("html-encode" "N-01263EAE") + ("fstat" "N-006DE1CC") + ("each-match" "N-01CB9595") + ("enetreset" "N-036B1BDB") ("package-alist" "N-017F684C") + ("span-str" "N-0394CA3A") + ("gequal" "N-00A3E42D") + ("append-each*" "N-0105F01D") + ("uname" "N-0308D954") ("length-vec" "N-03D6D851") + ("ftw-dp" "N-02ED8B51") + ("emfile" "N-036B1BDB") ("tc" "N-029B6E53") + ("max" "N-023C3643") + ("shut-wr" "N-028953A4") + ("glob-altdirfunc" "N-0188409B") + ("path-strictly-private-to-me-p" "N-03B3F844") + ("drop-while" "N-011E5936") + ("clear-struct" "N-03A968CA") + ("revappend" "N-012FF2DC") + ("keep-if" "N-01413802") ("macroexpand-1" "N-02ED5471") + ("num-str" "N-028043AE") + ("*tree-fun-whitelist*" "N-025AB9C9") + ("prog*" "N-018A4BA9") + ("width" "D-0032") ("enosr" "N-036B1BDB") + ("handle" "N-03F7D8B5") ("f-setlkw" "N-025E55E7") - ("setitimer" "N-02DE107D") ("put-obj" "N-025DB229") - ("exdev" "N-036B1BDB") + ("setitimer" "N-02DE107D") + ("or" "D-0033") + ("mappend*" "N-0202F92F") ("raise" "N-0108FFCE") - ("find-if" "N-005431FF") + ("remove-path-rec" "N-03E81B3A") + ("exdev" "N-036B1BDB") + ("struct" "D-0034") + ("m^$" "N-02F44ECE") ("sig-atomic-t" "N-03258244") + ("find-if" "N-005431FF") + ("time-string-utc" "N-00F192AD") ("env-fbind" "N-03389BE3") ("mask" "N-0056CEF1") - (">" "D-0060") - ("unique" "N-0028147F") - ("chr-int" "N-000AEC8B") ("base64url-stream-dec" "N-016A14B3") + ("getgrnam" "N-03556394") + ("random" "N-03A57C86") + ("chr-int" "N-000AEC8B") + ("rmemq" "N-0188A56C") + ("window-mapdo" "N-015AFD48") + ("unique" "N-0028147F") + ("evenp" "D-0035") + (">" "D-0036") + ("register-tentative-def" "N-033CBAA9") ("*r" "N-03A7AE5A") - ("tanh" "D-0061") - ("mkstring" "N-033DD796") - ("gensym" "N-03AA7FBB") - ("opt" "N-0047F5AB") ("alignof" "N-000F730E") - ("interpose" "N-0030734D") - ("include" "N-01A2ECA0") + ("eownerdead" "N-036B1BDB") + ("opt" "N-0047F5AB") + ("gensym" "N-03AA7FBB") + ("mkstring" "N-033DD796") + ("maprend" "N-015987D7") + ("tanh" "D-0037") + ("improper-plist-to-alist" "N-006E31B5") ("seek" "N-0136D6A2") + ("*stdout*" "N-006566FB") + ("include" "N-01A2ECA0") + ("interpose" "N-0030734D") + ("*n" "N-02E7AE5A") ("buf-put-uchar" "N-03BCF627") - ("nsort" "N-01FE5176") - ("pos-max" "N-027D45DD") ("gen" "N-0323BEBD") - ("have" "N-00373D97") + ("pos-max" "N-027D45DD") + ("nsort" "N-01FE5176") + ("sockaddr-in6" "N-013DD169") + ("eisdir" "N-036B1BDB") ("chr-isgraph" "N-00617BD5") + ("prop" "N-01C6D406") + ("rmember-if" "N-0188A56C") + ("have" "N-00373D97") + ("window-map" "N-015AFD48") ("rest" "N-02288559") + ("inc" "N-03A0AABD") + ("ubit" "N-011F2878") ("make-like" "N-01C1D23C") - ("defmatch" "N-0049315A") + ("with-update-expander" "N-006EA023") + ("make-similar-hash" "N-030E3A4A") + ("w-ifsignaled" "N-0243C575") + ("ors" "N-02D33A3D") ("symbolp" "N-01C0BF69") - ("toint" "N-01DBC9D7") - ("command-get-buf" "N-00FA177D") + ("defmatch" "N-0049315A") + ("poll" "N-0386D39D") ("path-cat" "N-0033B27E") - ("tb" "N-02AB6E53") - ("tree-bind" "N-021A9008") + ("command-get-buf" "N-00FA177D") + ("collect-each-prod" "N-02CA3C70") + ("fuzz" "N-03CAE17D") + ("toint" "N-01DBC9D7") + ("remql*" "N-00B85CD2") + ("carray-putz" "N-02890B44") + ("o-rdwr" "N-034BF6C9") + ("len" "N-03AD172A") ("progn" "N-03F7A8B8") + ("tree-bind" "N-021A9008") + ("tb" "N-02AB6E53") ("rpos" "N-01F68300") - ("rposqual" "N-01F68300") ("buf-get-int" "N-03C7C985") + ("string-extend" "N-03D5358A") + ("rposqual" "N-01F68300") + ("*-1" "N-02B67C9B") + ("s-ifblk" "N-03F32D57") ("nil" "N-015134D8") - ("cons" "N-02D6CEDA") + ("carray-blank" "N-00DD8DF1") ("minor" "N-02F0F482") - ("set-iflags" "N-02061924") + ("cons" "N-02D6CEDA") + ("tree-next" "N-02443382") ("size-t" "N-03258244") - ("obtain*" "N-0102F0EB") - ("buf-put-cptr" "N-03690764") - ("umethod" "N-000BCBC5") + ("set-iflags" "N-02061924") + ("eilseq" "N-036B1BDB") + ("memp" "N-03C6CE65") + ("if" "D-0038") ("carray-get" "N-028920F5") + ("carray-buf-sync" "N-02F23E0F") + ("fnm-extmatch" "N-0330E15A") + ("umethod" "N-000BCBC5") + ("buf-put-cptr" "N-03690764") + ("obtain*" "N-0102F0EB") ("lstat" "N-006DE1CC") - ("call-update-expander" "N-03B6BCE9") + ("copy-vec" "N-010E7635") ("symbol-macro" "N-00004DDC") + ("call-update-expander" "N-03B6BCE9") + ("release-deferred-warnings" "N-012F0BE9") + ("buf-get-char" "N-03E9074A") + ("spl" "N-03C7F5FA") ("flet" "N-0209307D") - ("super-method" "N-02AC8367") - ("af-inet6" "N-0228EAE0") - ("inaddr-loopback" "N-026A2C3B") ("*v" "N-0367AE5A") - ("apf" "N-012A7E6A") - ("get-byte" "D-0062") + ("inaddr-loopback" "N-026A2C3B") + ("af-inet6" "N-0228EAE0") + ("pprint" "N-02FCCE0D") + ("super-method" "N-02AC8367") + ("<=" "D-0039") + ("r-round" "N-031D7670") ("edquot" "N-036B1BDB") + ("get-byte" "D-003A") + ("apf" "N-012A7E6A") + ("command-put-string" "N-024D65F3") ("eql" "N-02550B35") + ("multi-sort" "N-0132852F") ("r-logtrunc" "N-02439AC4") - ("del*" "N-0166445C") - ("buf-list" "N-03E81617") + ("make-env" "N-01144687") ("cs6" "N-01B1B5DF") - ("ash" "D-0063") - ("time-parse" "D-0064") - ("sock-stream" "N-01D17D22") + ("sig-trap" "N-0176430F") + ("usl" "N-00BF39DD") + ("buf-list" "N-03E81617") + ("replace-vec" "N-01F59E62") + ("del*" "N-0166445C") ("ai-all" "N-020DFFDE") - ("buf-put-i32" "N-035FC973") - ("ebusy" "N-036B1BDB") + ("sock-stream" "N-01D17D22") + ("enotempty" "N-036B1BDB") + ("time-parse" "D-003B") + ("ash" "D-003C") ("length-carray" "N-03FF97BD") - ("define-modify-macro" "N-006E03C4") + ("ebusy" "N-036B1BDB") + ("buf-put-i32" "N-035FC973") ("call-finalizers" "N-02AF83A0") - ("catch**" "N-0211F3D3") - ("while*" "N-01F7BF0B") - ("package-foreign-symbols" "N-030C06F5") - ("ofdel" "N-03BD477F") + ("define-modify-macro" "N-006E03C4") + ("sig-poll" "N-0176430F") + ("fboundp" "N-01FBF828") + ("dwim" "D-003D") ("tab2" "N-03BD477F") + ("ofdel" "N-03BD477F") + ("ignpar" "N-02391683") + ("package-foreign-symbols" "N-030C06F5") + ("while*" "N-01F7BF0B") + ("catch**" "N-0211F3D3") + ("func-get-name" "N-03F222DA") + ("znew" "N-00B1FC38") ("clear-iflags" "N-02061924") - ("get-char" "D-0065") + ("ixoff" "N-02391683") + ("iter-reset" "D-003E") + ("interp-fun-p" "N-00AC0CF7") ("truncate-stream" "N-009F5B3F") - ("test-neq-set-indent-mode" "N-01A1F89C") + ("get-char" "D-003F") + ("ewouldblock" "N-036B1BDB") ("eloop" "N-036B1BDB") - ("scan-until-match" "N-00EFD668") - ("lognot1" "N-019541E2") + ("test-neq-set-indent-mode" "N-01A1F89C") + ("true" "N-00373D97") + ("*package*" "N-000CBBA0") + ("uint16" "N-03D0AA7B") + ("buf-put-short" "N-031CE904") ("vec-seq" "N-02F0880D") - ("macroexpand" "N-02ED5471") - ("buf-trim" "N-0057FBE2") + ("append-each-prod*" "N-02660E4F") + ("lognot1" "N-019541E2") + ("scan-until-match" "N-00EFD668") + ("ftw-f" "N-02ED8B51") + ("sig-alrm" "N-0176430F") ("enospc" "N-036B1BDB") + ("buf-trim" "N-0057FBE2") + ("macroexpand" "N-02ED5471") ("enotdir" "N-036B1BDB") - ("sub-str" "N-03CFFEF2") + ("set-right" "N-033F7D05") + ("record-adapter" "N-009C0AC4") ("make-byte-input-stream" "N-03F54E14") + ("copy-struct" "N-032B3FDC") + ("get-line-as-buf" "N-007FD2F9") + ("sub-str" "N-03CFFEF2") + ("vlnext" "N-01812D70") ("static-slot" "N-02C47D17") - ("memq" "N-0387CD82") - ("length-str->=" "N-016D8C45") + ("defparm" "N-039DD0E7") + ("ptr" "N-027B04D0") + ("macro-ancestor" "N-00519E96") + ("tcooff" "N-02173FF9") ("eoverflow" "N-036B1BDB") - ("flo-epsilon" "N-0085F231") - ("first" "N-02D60463") - ("make-package" "N-02512A9A") + ("length-str->=" "N-016D8C45") + ("memq" "N-0387CD82") ("fw" "N-0357AE6F") - ("open-files*" "N-018C5606") - ("getopts" "N-01A5A2FF") + ("make-package" "N-02512A9A") + ("first" "N-02D60463") + ("nequal" "N-0216A942") + ("flo-epsilon" "N-0085F231") ("tcsendbreak" "N-033C365C") + ("getopts" "N-01A5A2FF") + ("open-files*" "N-018C5606") + ("countql" "N-01DF131F") + ("sig-fpe" "N-0176430F") ("<-" "N-02B10DF9") - ("handle-frame" "N-0233BAE3") + ("defsymacro" "N-0080256D") ("dlclose" "N-033F7DE5") - ("each*" "N-0105F01D") - ("copy" "N-0036CED9") - ("*print-flo-digits*" "N-00F41F6C") + ("iread" "N-03FE5500") + ("handle-frame" "N-0233BAE3") ("time-fields-local" "N-00789418") + ("*print-flo-digits*" "N-00F41F6C") + ("copy" "N-0036CED9") + ("each*" "N-0105F01D") ("fs" "N-03B6902C") - ("vm-fun-p" "N-00B99FC5") + ("fname" "N-039E5F67") + ("handle*" "N-03F7D8B5") ("sig-prof" "N-0176430F") - ("juxt" "N-0106CD7F") + ("vm-fun-p" "N-00B99FC5") ("tab0" "N-03BD477F") + ("integerp" "N-03E9D6E1") + ("juxt" "N-0106CD7F") ("path-mine-p" "N-020F44B5") - ("tree-case" "N-03D834A5") - ("command-put-buf" "N-02AE3A31") - ("iterable" "N-01156AE3") - ("with-out-strlist-stream" "N-024F86B3") + ("setenv" "N-002E0364") + ("remql" "N-000ECD82") + ("ldiff" "N-02193773") + ("del" "D-0040") + ("cos" "D-0041") + ("yield-from" "N-01556613") + ("dlvsym-checked" "N-029063A0") + ("txr-when" "N-02311DCA") + ("sock-accept" "N-00AF0FE8") ("find-package" "N-0250826D") + ("with-out-strlist-stream" "N-024F86B3") + ("iterable" "N-01156AE3") + ("command-put-buf" "N-02AE3A31") + ("tree-case" "N-03D834A5") + ("exception-subtype-p" "N-02E7F869") + ("tree-peek" "N-02443382") + ("dlopen" "N-037C4BFE") ("partition-by" "N-000167DF") ("buf-get-i8" "N-0013E55F") ("bstr-d" "N-00C6B7C4") - ("buf-put-ushort" "N-035696C9") - ("tostringp" "N-02FCCE0D") + ("log-auth" "N-0116F48F") + ("at-exit-do-not-call" "N-003EEEF5") + ("open-tail" "N-0348F89A") + ("nreconc" "N-012FF2DC") + ("long" "N-018C7C8C") ("enobufs" "N-036B1BDB") - ("test-inc" "N-01A4228F") + ("unuse-sym" "N-01AF42B7") + ("tostringp" "N-02FCCE0D") + ("call-super-method" "N-016185D1") + ("struct-type-p" "N-00717410") + ("buf-put-ushort" "N-035696C9") + ("sum" "N-0163FFE2") + ("with-hash-iter" "N-001B79C0") ("eval" "N-0286C8B8") - ("skip" "N-021FCB7C") - ("stream-wrap" "N-00FE2393") + ("test-inc" "N-01A4228F") + ("stdlib" "N-008E4BC2") ("readlink" "N-0338B219") + ("*args-eff*" "N-03DEE18A") + ("stream-wrap" "N-00FE2393") + ("env-vbind" "N-03389BE3") + ("skip" "N-021FCB7C") ("string-encode" "N-033502F8") - ("grade" "N-00091853") + ("file-put" "N-0041C2E5") ("pprof" "N-018C92AB") - ("copy-alist" "N-037A7464") - ("allocate-struct" "N-03168BF2") - ("from-list" "N-01FFD230") + ("grade" "N-00091853") + ("union-get" "N-02FA4F0C") ("setgid" "N-03897D65") + ("cptr-put" "N-00513A38") + ("from-list" "N-01FFD230") + ("allocate-struct" "N-03168BF2") + ("copy-alist" "N-037A7464") + ("mapdo" "N-03A943EE") + ("search-regex" "N-0250D465") + ("keepqual" "N-00583609") ("make-time" "N-007C486E") + ("put-strings" "N-0367B282") + ("echok" "N-0072FF5E") ("o-rdonly" "N-034BF6C9") - ("pwd" "N-0047F5F6") + ("car" "D-0042") + ("flo-zero" "N-013A1643") + ("wint-t" "N-03258244") ("typedef" "N-01BE95E8") - ("ftw-phys" "N-01A802F2") + ("pwd" "N-0047F5F6") + ("gcd" "N-03D44645") + ("atanh" "D-0043") + ("match-regex" "N-02E3A26F") + ("fill-carray" "N-00737951") ("ocrnl" "N-03BD477F") - ("upd" "N-033F39DC") + ("ftw-phys" "N-01A802F2") + ("o-trunc" "N-034BF6C9") + ("rlist*" "N-02FD60D0") ("xcase" "N-0072FF5E") - ("rfind-if" "N-0301CDB6") - ("dir-name" "N-02C01721") - ("make-random-state" "N-032BEE6C") + ("upd" "N-033F39DC") + ("rmemql" "N-0188A56C") + ("f-setfl" "N-025E55E7") + ("o-path" "N-034BF6C9") ("w-ifexited" "N-0243C575") - ("sinh" "D-0066") - ("labels" "N-0209307D") - ("buf-put-u32" "N-035FC963") + ("make-random-state" "N-032BEE6C") + ("dir-name" "N-02C01721") + ("rfind-if" "N-0301CDB6") + ("mac-env-param-bind" "N-021A9008") + ("scan" "N-03E989D0") + ("vmin" "N-01812D70") + ("copy-list" "N-006ED237") + ("sinh" "D-0044") ("streamp" "N-02BB4421") + ("buf-put-u32" "N-035FC963") + ("labels" "N-0209307D") ("int32" "N-03D0AA7B") - ("plusp" "D-0067") + ("tcion" "N-02173FF9") + ("until" "D-0045") + ("fill-buf" "D-0046") ("append*" "N-01143C2A") + ("plusp" "D-0047") ("path-my-group-p" "N-020F44B5") - ("pend" "N-03975507") - ("and" "D-0068") + ("sort-group" "N-01E65DDC") ("setlogmask" "N-0085DB47") - ("force" "N-0307223D") - ("lazy-str" "N-02AFF63D") - ("copy-files" "N-019D6582") + ("and" "D-0048") + ("pend" "N-03975507") + ("nlink-t" "N-01D716FE") + ("sqrt" "D-0049") ("ssize-t" "N-01D716FE") + ("base64url-decode" "N-02D46C3D") + ("copy-files" "N-019D6582") + ("rmdir" "N-03D90503") + ("system-package" "N-0383342A") + ("get-indent" "N-024E9FD8") + ("make-string-byte-input-stream" "N-022937CD") + ("lazy-str" "N-02AFF63D") + ("force" "N-0307223D") + ("acos" "D-004A") + ("floor" "D-004B") + ("getresgid" "N-03D37234") ("enomem" "N-036B1BDB") + ("-rng" "N-00BEA6DF") ("command-get-string" "N-0062A33B") - ("set-hash-userdata" "N-030B40A7") - ("t" "N-015134D8") ("str-buf" "N-012BF6AD") + ("t" "N-015134D8") + ("set-hash-userdata" "N-030B40A7") + ("html-encode*" "N-01263EAE") ("macroexpand-lisp1" "N-01E62179") ("hash_values" "N-01BD56A5") ("iff" "N-000E3A74") - ("tree-root" "N-0149BF2D") - ("regex-source" "N-0218BD2B") - ("recip" "N-01B8BAB0") - ("relate" "N-032DBF7E") - ("file-append-string" "N-000CCA8A") + ("html-decode" "N-01263EAE") + ("echonl" "N-0072FF5E") + ("inlcr" "N-02391683") + ("o-accmode" "N-034BF6C9") ("getuid" "N-00125C22") + ("file-append-string" "N-000CCA8A") + ("append" "N-0014162F") + ("block*" "N-02F60DCE") + ("relate" "N-032DBF7E") + ("recip" "N-01B8BAB0") + ("regex-source" "N-0218BD2B") + ("tree-root" "N-0149BF2D") + ("set-indent-mode" "N-03F3170C") ("nth" "N-0039F3FB") - ("r-floor" "N-00BBC669") - ("sig-usr2" "N-0176430F") + ("wrap" "N-026DDCEC") ("str-inaddr" "N-01FF658D") - ("butlastn" "N-01E2C334") + ("sig-usr2" "N-0176430F") + ("r-floor" "N-00BBC669") + ("ffi-call" "N-023DCFF9") + ("mode-t" "N-01D716FE") + ("id-t" "N-01D716FE") + ("clockid-t" "N-01D716FE") ("match-str-tree" "N-01859E7F") - ("m^" "N-02F44ECE") - ("go" "N-007E0D96") + ("butlastn" "N-01E2C334") + ("reduce-right" "N-00FB426F") + ("numberp" "N-03E9D6E1") + ("gather" "D-004C") ("get-lines" "N-00B65D06") - ("split-str" "N-000386B4") + ("go" "N-007E0D96") + ("m^" "N-02F44ECE") + ("seek-end" "N-01D6E4D8") ("seek-stream" "N-031B5075") + ("split-str" "N-000386B4") + ("*rec-source-loc*" "N-014AFEA9") ("equot" "N-02ACCDDF") + ("bool" "D-004D") + ("lazy-stringp" "N-0381BB2A") + ("lambda" "D-004E") + ("make-hash" "N-026D4158") ("gethash" "N-0203B5FA") - ("sig-winch" "N-0176430F") ("o-async" "N-034BF6C9") - ("pos" "N-02C2BBDB") - ("not" "D-0069") - ("buf-get-u64" "N-03C7C962") + ("sig-winch" "N-0176430F") + ("make-strlist-output-stream" "N-00F363E0") + ("meql" "N-020A0042") ("off-t" "N-01D716FE") + ("ptr-out-d" "N-02036BEC") + ("base64-decode-buf" "N-01B05083") + ("parmrk" "N-02391683") + ("sock-dgram" "N-01D17D22") + ("--rng-" "N-00BEA6DF") + ("buf-get-u64" "N-03C7C962") + ("not" "D-004F") + ("pos" "N-02C2BBDB") + ("lexical-lisp1-binding" "N-02D124AB") ("sig-quit" "N-0176430F") + ("tcflow" "N-03081D51") + ("iter-begin" "D-0050") ("suspend" "N-02E7852D") - ("with-resources" "N-012CE06E") - ("tcoon" "N-02173FF9") + ("ffi-get" "N-023305C7") ("ptr-out-s" "N-02D36BEC") + ("tcoon" "N-02173FF9") + ("with-resources" "N-012CE06E") ("functionp" "N-00F6F5F8") - ("regexp" "N-03DDC533") - ("build" "N-01346AAA") - ("repeat" "D-006A") - ("gun" "N-0323BEBD") ("eval-only" "N-030BF4F5") - ("obtain*-block" "N-0102F0EB") + ("gun" "N-0323BEBD") + ("repeat" "D-0051") + ("build" "N-01346AAA") + ("regexp" "N-03DDC533") + ("key" "N-020D5C1D") ("TXR_COMPAT" "N-03F5D03D") + ("symbol-name" "N-035D3BBF") + ("obtain*-block" "N-0102F0EB") + ("*listener-multi-line-p*" "N-02C5CACF") ("syslog" "N-02075291") - ("delay" "N-00DCE524") - ("env" "N-0267F548") - ("ftw-skip-siblings" "N-03853999") + ("*expand" "N-00E0F5F5") + ("echoke" "N-0072FF5E") ("csize" "N-01B1B5DF") + ("ftw-skip-siblings" "N-03853999") + ("sig-vtalrm" "N-0176430F") + ("enetunreach" "N-036B1BDB") + ("edom" "N-036B1BDB") + ("env" "N-0267F548") + ("ff" "N-006B6E54") + ("put-byte" "D-0052") + ("delay" "N-00DCE524") ("tcsanow" "N-02C6ECF5") - ("e2big" "N-036B1BDB") - ("nl1" "N-03BD477F") ("dlvsym" "N-01B1E865") + ("nl1" "N-03BD477F") + ("e2big" "N-036B1BDB") + ("rs" "N-0397AE68") + ("with-out-string-stream" "N-0001C63C") + ("pos-min" "N-027D45DD") + ("flo-max" "N-0085F231") + ("crc32-stream" "N-0119CE1D") + ("maprodo" "N-015987D7") ("ado" "N-00BE749A") - ("none" "D-006B") ("sh" "N-0158244A") - ("treep" "N-03B8E442") + ("none" "D-0053") + ("find-max" "N-02BB4231") ("f^" "N-000B5ACD") + ("treep" "N-03B8E442") + ("expand" "N-00E0F5F5") + ("dt-fifo" "N-02D8CAF4") + ("struct-set-postinitfun" "N-00946F18") + ("make-struct" "N-002B3F64") ("search-str-tree" "N-02783DAA") - ("set-left" "N-033F7D05") - ("next" "D-006C") - ("until*" "N-01F7BF0B") + ("collect" "D-0054") + ("edestaddrreq" "N-036B1BDB") ("tenth" "N-01B0FA33") - ("fr^$" "N-031971BD") - ("remqual" "N-000ECD82") + ("until*" "N-01F7BF0B") + ("next" "D-0055") + ("set-left" "N-033F7D05") ("-C" "N-036F1A29") + ("veof" "N-01812D70") + ("remqual" "N-000ECD82") + ("symdiff" "N-0385B074") + ("fr^$" "N-031971BD") + ("*0" "N-03F9BE17") + ("pendin" "N-0072FF5E") + ("with-in-buf-stream" "N-01150550") ("sspl" "N-0296195B") - ("bind" "D-006D") - ("mequal" "N-020A0042") ("rand" "N-03A57C86") - ("hash-invert" "N-01D4F138") - ("maybe" "N-039458F2") - ("qref" "D-006E") + ("mequal" "N-020A0042") + ("bind" "D-0056") + ("echoprt" "N-0072FF5E") + ("istrip" "N-02391683") ("ai-addrconfig" "N-020DFFDE") + ("log-perror" "N-02371913") + ("open-directory" "N-0221AE09") + ("qref" "D-0057") + ("chr-isblank" "N-0251A159") + ("maybe" "N-039458F2") + ("r$" "N-03BBB0C5") + ("hash-invert" "N-01D4F138") + ("makedev" "N-02F0F482") ("condlet" "N-03272DC8") - ("fixnum-max" "N-02A6CE24") ("static-slot-ensure" "N-02E71F31") - ("block" "D-006F") + ("fixnum-max" "N-02A6CE24") + ("sign-extend" "D-0058") + ("eighth" "N-01B0FA33") + ("r-trunc" "N-02CD7330") + ("dlsym-checked" "N-029063A0") ("isatty" "N-03709E8A") + ("block" "D-0059") + ("hash_alist" "N-01BD56A5") + ("at-exit-call" "N-003EEEF5") ("buf-get-u32" "N-0127C960") - ("hash-userdata" "N-038C1CEB") - ("umask" "N-0068D92E") - ("blksize-t" "N-01D716FE") + ("ftw-dnr" "N-02ED8B51") + ("get-error" "D-005A") + ("square" "D-005B") ("carray-uint" "N-02403ED4") + ("blksize-t" "N-01D716FE") + ("umask" "N-0068D92E") + ("einval" "N-036B1BDB") + ("hash-userdata" "N-038C1CEB") + ("ushort" "N-018C7C8C") + ("enotconn" "N-036B1BDB") + ("flush-stream" "N-03999913") + ("*print-flo-precision*" "N-02E97D03") + ("*stderr*" "N-006566FB") ("use" "N-0137D341") + ("buf-get-float" "N-001D239A") ("hash_pairs" "N-01BD56A5") - ("iter-step" "D-0070") - ("use-package" "N-024BF63F") ("efbig" "N-036B1BDB") + ("time" "D-005C") + ("use-package" "N-024BF63F") + ("symbol-package" "N-02AB2428") + ("iter-step" "D-005D") ("andf" "N-01E7D2AD") - ("//" "N-0054C409") + ("bs0" "N-03BD477F") + ("r^" "N-03BBB0C5") ("getpwuid" "N-03E528C6") - ("buf-put-char" "N-00690748") + ("file-put-lines" "N-0041C2E5") + ("..." "D-005E") + ("casequal*" "N-02FB71A2") + ("//" "N-0054C409") ("getppid" "N-02D7B5A3") - ("isec" "N-0385B074") - ("third" "N-01B0FA33") + ("find-struct-type" "N-01E5EEA7") + ("buf-put-char" "N-00690748") + ("ofs" "N-02D33AA0") + ("to" "N-00AED1A7") + ("cs5" "N-01B1B5DF") + ("buf-get-ulong" "N-020CEF9D") ("cddr" "N-00209CEE") - ("invoke-catch" "N-0337FC1B") - ("sha256-begin" "N-03B36E53") - ("uint" "N-018C7C8C") + ("third" "N-01B0FA33") + ("isec" "N-0385B074") + ("with-clobber-expander" "N-0181ED4C") ("wstr-d" "N-032DB6DC") - ("hash-diff" "N-02235BB2") - ("vecref" "N-001963BF") - ("enosys" "N-036B1BDB") + ("uint" "N-018C7C8C") + ("cbaud" "N-01B1B5DF") + ("sha256-begin" "N-03B36E53") + ("exp" "D-005F") + ("catch-frame" "N-0233BAE3") + ("invoke-catch" "N-0337FC1B") ("ftw-mount" "N-01A802F2") - ("lcons-car" "N-03598F4D") + ("enosys" "N-036B1BDB") + ("vecref" "N-001963BF") + ("hash-diff" "N-02235BB2") ("inpck" "N-02391683") - ("tree-begin" "N-00A02578") - ("lazy-str-force" "N-03269DEF") - ("itimer-virtual" "N-02B7882A") + ("lcons-car" "N-03598F4D") ("ftw-sl" "N-02ED8B51") - ("ido." "N-00BE749A") + ("itimer-virtual" "N-02B7882A") + ("sig-stop" "N-0176430F") + ("lazy-str-force" "N-03269DEF") + ("tree-begin" "N-02887FCA") + ("dt-chr" "N-02D8CAF4") + ("buf-alloc-size" "N-013A3727") ("find-frames" "N-02B97226") - ("do" "D-0071") + ("ido." "N-00BE749A") + ("do" "D-0060") + ("chmod" "N-00F941E5") ("ealready" "N-036B1BDB") - ("r-mod" "N-02F8C918") - ("vectorp" "N-03B9C3E5") + ("empty" "N-004918EB") + ("opendir" "N-024AA6F4") + ("esrch" "N-036B1BDB") + ("buf-set-length" "N-01208847") ("seek-set" "N-01D6E4D8") - ("in-package" "D-0072") - ("memqual" "N-0387CD82") - ("upcase-str" "N-029EEA82") + ("vectorp" "N-03B9C3E5") + ("r-mod" "N-02F8C918") + ("copy-tree-iter" "N-025C3140") ("rlcp-tree" "N-024EB211") + ("parenb" "N-01B1B5DF") + ("inaddr-any" "N-026A2C3B") + ("upcase-str" "N-029EEA82") + ("memqual" "N-0387CD82") + ("in-package" "D-0061") + ("nshuffle" "N-01F12561") ("rmemqual" "N-0188A56C") ("struct-from-plist" "N-01515451") + ("stringp" "N-00BB392B") ("source-loc" "N-0370CD69") + ("new*" "N-021E6FDC") + ("all*" "N-00F6E2A2") ("array" "N-0117BE95") - ("length-buf" "N-0026D89A") - ("buf-str" "N-012BF6AD") + ("flo-str" "N-028043AE") ("random-fixnum" "N-03A57C86") - ("range-regex" "N-0250D465") + ("buf-str" "N-012BF6AD") + ("length-buf" "N-0026D89A") + ("tailp" "N-00B8D7B5") + ("notf" "N-0026CE18") + ("eaddrnotavail" "N-036B1BDB") ("make-struct-delegate-stream" "N-03FB1671") - ("define-place-macro" "N-02C3089A") + ("r-lognot" "N-00495055") + ("range-regex" "N-0250D465") + ("sys:gc" "N-01C75157") ("eidrm" "N-036B1BDB") - ("sys:abscond*" "N-02DF20E5") - ("digits" "N-03CC559E") - ("buf-get-i16" "N-02E7C970") + ("define-place-macro" "N-02C3089A") + ("vec-carray" "N-03EB1E3D") ("sig-kill" "N-0176430F") + ("buf-get-i16" "N-02E7C970") + ("chr-isalpha" "N-00F18E1B") + ("caseql" "N-017EB9A1") + ("mapcar" "N-0202F92F") + ("digits" "N-03CC559E") + ("flo-down" "N-013A1643") + ("sys:abscond*" "N-02DF20E5") + ("f^$" "N-000B5ACD") + ("*load-path*" "N-01D1DB58") + ("dt-unknown" "N-02D8CAF4") + ("typeof" "N-01F81275") ("tcsetattr" "N-013D13CA") - ("n-perm-k" "N-02ACFDE6") + ("again" "N-000CD1AE") + ("meth" "N-02C216C3") + ("right" "N-020D5C1D") ("carray-ref" "N-001F5BCA") - ("seq-begin" "N-0068A845") + ("sig-cont" "N-0176430F") + ("n-perm-k" "N-02ACFDE6") + ("mapf" "N-0026CEF1") + ("log-crit" "N-035D75EC") ("!>" "N-02B10DF9") + ("seq-begin" "N-0068A845") + ("ffi-arraysize" "N-03DC1AED") ("uint-ptr-t" "N-03258244") ("lcm" "N-03D44645") - ("log2" "D-0073") + ("ffi-put-into" "N-0000F6A9") + ("ehostunreach" "N-036B1BDB") + ("log2" "D-0062") + ("exptmod" "D-0063") + ("copy-hash" "N-030E3A4A") + ("opts" "N-01D911E8") + ("doloop*" "N-01FF4DDB") + ("tree-delete-node" "N-00772FAE") + ("f-dupfd" "N-025E55E7") (":key" "N-01697547") - ("hash-count" "N-00766C80") - ("succ" "N-038E636C") ("tostring" "N-02FCCE0D") - ("abs-path-p" "N-00477B23") - ("fnm-leading-dir" "N-0330E15A") + ("succ" "N-038E636C") + ("obtain" "N-01556613") + ("hash-count" "N-00766C80") ("make-zstruct" "N-03855D2D") + ("fnm-leading-dir" "N-0330E15A") + ("enametoolong" "N-036B1BDB") + ("abs-path-p" "N-00477B23") + ("rng" "N-00BEA6DF") ("collect-each*" "N-0105F01D") - ("logtrunc" "D-0074") - ("unintern" "N-01B6BFC2") - ("rehome-sym" "N-03627360") ("dump-compiled-objects" "N-02FE7607") + ("rehome-sym" "N-03627360") + ("unintern" "N-01B6BFC2") + ("lambda-set" "N-02FEBA97") + ("logtrunc" "D-0064") + ("path-setuid-p" "N-02FBA677") + ("set-cflags" "N-02061924") ("time-utc" "N-001284ED") - ("remq" "N-000ECD82") + ("*pprint-flo-format*" "N-02B252AA") + ("buf-put-float" "N-001D2408") + ("log-daemon" "N-0116F48F") ("special-operator-p" "N-01E259AD") - ("partition" "N-0142889E") + ("remq" "N-000ECD82") ("icrnl" "N-02391683") - ("expt" "D-0075") - ("neq" "N-0216A942") - ("format" "N-011ACA52") - ("path-sock-p" "N-00198FC7") - ("veol2" "N-01812D70") + ("partition" "N-0142889E") + ("lexical-var-p" "N-007B1A53") + ("etime" "N-036B1BDB") + ("expt" "D-0065") ("finalize" "N-01230613") + ("veol2" "N-01812D70") + ("f-dupfd-cloexec" "N-025E55E7") + ("path-sock-p" "N-00198FC7") + ("format" "N-011ACA52") + ("neq" "N-0216A942") + ("ldo" "N-03EF3A27") + ("etimedout" "N-036B1BDB") ("random-state-get-vec" "N-005C0F98") - ("--eargs" "N-03FCDE42") - ("cadr" "N-00209CEE") - ("package-local-symbols" "N-030C06F5") + ("hash_keys" "N-01BD56A5") ("sbit" "N-011F2878") - ("static-slot-set" "N-0017D1B5") + ("package-local-symbols" "N-030C06F5") + ("cadr" "N-00209CEE") + ("--eargs" "N-03FCDE42") + ("f$" "N-000B5ACD") + ("clear-cflags" "N-02061924") ("glob-err" "N-0188409B") - ("assq" "N-00123702") - ("tostop" "N-0072FF5E") + ("sig-ttin" "N-0176430F") + ("static-slot-set" "N-0017D1B5") + ("string-decode" "N-033502F8") ("tcgetattr" "N-013D13CA") - ("group-by" "N-02F6F229") - ("typecase" "N-0384D122") - ("alist-remove" "N-001A53C4") + ("tostop" "N-0072FF5E") + ("fnr" "N-02E33A82") + ("assq" "N-00123702") ("openlog" "N-037AA654") - ("trunc1" "N-02E91F51") - ("errno" "N-03A7137C") + ("package-name" "N-038581D9") + ("path-sep-chars" "N-03985DE5") + ("alist-remove" "N-001A53C4") + ("typecase" "N-0384D122") + ("group-by" "N-02F6F229") + ("ffi-make-call-desc" "N-01A96E1C") + ("as" "N-028B26DD") ("ftw-continue" "N-03853999") + ("errno" "N-03A7137C") + ("cat-str" "N-00B6ACE3") + ("trunc1" "N-02E91F51") + ("file-put-string" "N-0041C2E5") ("match-regst-right" "N-019430C5") - ("chr-isascii" "N-0171941F") ("package-symbols" "N-03AF0206") - ("remhash" "N-0029C57A") - ("user-package" "N-0383342A") + ("chr-isascii" "N-0171941F") ("compile-update-file" "N-0211BE68") - ("file-put-buf" "N-02AE3A31") + ("make-union" "N-010A23C0") + ("seteuid" "N-03897D65") + ("user-package" "N-0383342A") + ("list-str" "N-0236023D") + ("rebind" "N-019F9FB7") + ("remhash" "N-0029C57A") ("tcoflush" "N-0279ED46") - ("path-file-p" "N-00198FC7") - ("rtld-local" "N-0083A22A") + ("orec" "N-0003ED2C") + ("file-put-buf" "N-02AE3A31") + ("mappend" "N-0202F92F") + ("bitset" "D-0066") + ("hash-proper-subset" "N-024ACBBB") + ("copy-tnode" "N-018A17C0") ("list-carray" "N-03EB1E3D") + ("rtld-local" "N-0083A22A") + ("path-file-p" "N-00198FC7") + ("uref" "N-03A211AB") + ("copy-tree" "N-015EB85E") ("flo-max-dig" "N-01A2123A") - ("with" "N-03098987") - ("search" "N-015D8676") - ("<!" "N-02B10DF9") - ("exec" "N-02D6C913") ("blkcnt-t" "N-01D716FE") + ("log-info" "N-035D75EC") + ("exec" "N-02D6C913") + ("<!" "N-02B10DF9") + ("search" "N-015D8676") + ("ncon" "N-022F6E60") + ("with" "N-03098987") + ("count-if" "N-00BBC726") + ("rassq" "N-03B49598") ("tointz" "N-03E2D4B8") - ("regex-compile" "N-0168C611") - ("transpose" "N-03AA85AD") + ("match-regex-right" "N-019430C5") + ("count-until-match" "N-00EFD668") + ("get-hash-userdata" "N-030B41A7") ("inaddr-str" "N-02456270") + ("transpose" "N-03AA85AD") + ("regex-compile" "N-0168C611") ("lib-version" "N-032F57D4") + ("defplace" "N-00F92066") + ("isqrt" "D-0067") + ("inhash" "N-0161147E") + ("open-fileno" "N-02BEAF24") ("mapcar*" "N-0202F92F") + ("buildn" "N-01346AAA") ("ptr-out" "N-03D4DF7E") - ("cdr" "D-0076") - ("replace-str" "N-02059F0A") - ("w-ifstopped" "N-0243C575") + ("frame" "N-0233BAE3") ("sizeof" "N-0235DCAE") + ("fnmatch" "N-03F8FF75") + ("w-ifstopped" "N-0243C575") + ("-rng-" "N-00BEA6DF") + ("replace-str" "N-02059F0A") + ("cdr" "D-0068") + ("defmacro" "N-02CAEF0B") + ("bignump" "N-03E9D6E1") ("set-oflags" "N-02061924") - ("=" "D-0077") + ("make-sym" "N-0084463A") ("*package-alist*" "N-00E20381") + ("search-str" "N-0257180F") + ("=" "D-0069") ("time-t" "N-03258244") - ("op" "N-0068EA9D") - ("sha256-end" "N-03B36E53") ("glob-period" "N-0188409B") - ("window-mappend" "N-015AFD48") + ("ecanceled" "N-036B1BDB") + ("sha256-end" "N-03B36E53") + ("struct-type" "N-02C33D76") + ("op" "N-0068EA9D") ("int-cptr" "N-01768FB9") + ("rel-path" "N-016892B4") + ("window-mappend" "N-015AFD48") + ("with-delete-expander" "N-02A6E020") + ("f-getfl" "N-025E55E7") + ("mmakunbound" "N-02964FC0") ("macroexpand-1-lisp1" "N-01E62179") + ("oddp" "D-006A") + ("hash-zip" "N-02767282") + ("enostr" "N-036B1BDB") ("cptr-cast" "N-01A212ED") - ("ncon*" "N-022F6E60") - ("expand-right" "N-023B6B64") - ("file-append" "N-000CCA8A") + ("get-string" "N-00BE9AAC") + ("str>" "N-01AA954A") + ("env-next" "N-0018DCDC") ("carray-refset" "N-000127F9") + ("glob" "N-00E6C7DE") + ("file-append" "N-000CCA8A") + ("weave" "N-0208F32F") + ("expand-right" "N-023B6B64") + ("conses*" "N-00BBCCAA") + ("second" "N-01B0FA33") + ("keepql" "N-00583609") + ("ncon*" "N-022F6E60") ("sig-chld" "N-0176430F") - ("finally" "D-0078") + ("join" "N-00B6ACE3") + ("finally" "D-006B") ("make-buf" "N-011445E1") - ("nzerop" "N-0197FF9D") - ("rotate" "N-0166291D") - ("line" "N-02D5D09D") ("rtld-now" "N-0083A22A") - ("typep" "N-03B8D9EE") + ("downcase-str" "N-03DA541E") + ("line" "N-02D5D09D") + ("in" "N-016BE41C") + ("rotate" "N-0166291D") + ("nzerop" "N-0197FF9D") + ("*" "N-022396F7") + ("arraysize" "N-002129D6") + ("sme" "N-008C6621") + ("tcioff" "N-02173FF9") ("log-pid" "N-02371913") + ("typep" "N-03B8D9EE") + ("bchar" "N-0008D7DC") + ("sig-io" "N-0176430F") ("gen-hash-seed" "N-002CFA72") + ("tree-lookup" "N-01D63E47") + ("fnm-noescape" "N-0330E15A") ("getpid" "N-02D7B5A3") - ("round-rem" "N-02DE978F") - ("test-dec" "N-01A4228F") - ("data" "N-03B6EA7D") - ("sig-stkflt" "N-0176430F") - ("iutf8" "N-02391683") - ("uint64" "N-03D0AA7B") + ("rassoc" "N-03B49598") + ("build-list" "N-0315C467") ("carray-replace" "N-01AAF602") + ("ptr-in" "N-00A494BF") + ("uint64" "N-03D0AA7B") + ("rtld-noload" "N-0083A22A") + ("iutf8" "N-02391683") + ("sig-stkflt" "N-0176430F") + ("sig-pipe" "N-0176430F") + ("chdir" "N-03D941C3") + ("lcons-fun" "N-02E1BA6F") + ("data" "N-03B6EA7D") + ("test-dec" "N-01A4228F") + ("round-rem" "N-02DE978F") ("sig-pwr" "N-0176430F") + ("indent-data" "N-00512FDD") + ("collect-each-prod*" "N-02660E4F") + ("fr$" "N-031971BD") + ("aret" "N-008216A8") + ("buf-get-ushort" "N-035691E9") ("cdar" "N-00209CEE") - ("log-warning" "N-035D75EC") + ("*2" "N-03F9BE17") + ("base64url-decode-buf" "N-02D46C3D") ("extproc" "N-0072FF5E") - ("defparml" "N-03F36A75") - ("take-while" "N-01E42C4C") - ("eagain" "N-036B1BDB") - ("dupfd" "N-01F91AEF") + ("log-warning" "N-035D75EC") + ("struct-from-args" "N-01515451") ("imaxbel" "N-02391683") + ("dupfd" "N-01F91AEF") + ("eagain" "N-036B1BDB") + ("take-while" "N-01E42C4C") + ("defparml" "N-03F36A75") + ("zero-fill" "N-016D3BB5") + ("abort" "N-02F934F6") + ("flatcar" "N-01FF2F12") ("mdo" "N-028DBD1B") - ("quote" "N-0163F998") - ("erofs" "N-036B1BDB") - ("sig-abrt" "N-0176430F") + ("test-set" "N-036C7E9E") + ("->" "N-02B10DF9") ("nldly" "N-03BD477F") - ("subtypep" "N-00699D3B") - ("vec" "N-0297F5F5") + ("sig-abrt" "N-0176430F") + ("erofs" "N-036B1BDB") + ("quote" "N-0163F998") + ("logcount" "D-006C") ("elemsize" "N-01D55CC4") + ("vec" "N-0297F5F5") + ("subtypep" "N-00699D3B") ("s-ixoth" "N-03F32D57") - ("termios" "N-039CD619") ("onocr" "N-03BD477F") - ("equal" "D-0079") + ("termios" "N-039CD619") ("getgrgid" "N-03E5634E") - ("tree-delete" "N-022035DF") + ("fmt" "N-0347F537") + ("int-buf" "N-00DCFA5F") + ("fifth" "N-01B0FA33") + ("equal" "D-006D") + ("sig-hup" "N-0176430F") + ("for" "N-031372ED") ("append-matches" "N-026DC56D") - ("indent-foff" "N-00512FDD") + ("tree-delete" "N-022035DF") ("kill" "N-0386CCD5") + ("path-dir-empty" "N-01EFC15D") + ("indent-foff" "N-00512FDD") + ("env-fbindings" "N-0018DCDC") + ("keep-if*" "N-01413802") + ("mac-param-bind" "N-021A9008") ("ignerr" "N-007287AC") (":match" "N-03B92C0D") - ("whena" "N-005C93DF") ("set-max-length" "N-031FA9E5") - ("chr-isdigit" "N-01ED5020") + ("portable-abs-path-p" "N-00477B23") + ("whena" "N-005C93DF") + ("find" "N-005431FF") ("base64-decode" "N-01B05083") - ("push" "N-01C211C1") - ("rsearch" "N-03405F7D") - ("fun" "N-006E109C") - ("put-string" "D-007A") - ("copy-path-rec" "N-034734A3") - ("fcntl" "N-03793032") + ("o-cloexec" "N-034BF6C9") + ("chr-isdigit" "N-01ED5020") + ("*place-macro*" "N-01B680E6") ("carray-buf" "N-00D75AD6") - ("r-atan2" "N-03BBA063") + ("int8" "N-0131FBF2") + ("*stdlog*" "N-02841215") + ("fcntl" "N-03793032") + ("copy-path-rec" "N-034734A3") + ("lutimes" "N-00E96FCF") + ("econnaborted" "N-036B1BDB") + ("put-string" "D-006E") + ("*print-flo-format*" "N-02B252AA") + ("fun" "N-006E109C") + ("rsearch" "N-03405F7D") + ("push" "N-01C211C1") + ("tan" "D-006F") + ("fixnump" "N-03E9D6E1") + ("cptr-buf" "N-037139E3") ("butlast" "N-026BB6FA") - ("add" "N-03244398") + ("r-atan2" "N-03BBA063") + ("time-struct-utc" "N-00B758FD") ("package-fallback-list" "N-027A535C") + ("makunbound" "N-01FA4070") + ("add" "N-03244398") + ("carray-free" "N-0010030E") ("get-string-from-stream" "N-037412EE") - ("ceil" "D-007B") + ("length-list" "N-01F8186A") ("flip" "N-0042153F") + ("ceil" "D-0070") + ("ulong" "N-018C7C8C") + ("vtdly" "N-03BD477F") ("getegid" "N-00125C22") - ("expand-with-free-refs" "N-0334827B") + ("path-dir-p" "N-00198FC7") + ("fourth" "N-01B0FA33") + ("append-match-products" "N-026DC56D") + ("*-2" "N-02B67C9B") + ("*1" "N-03F9BE17") + ("source-loc-str" "N-0370CD69") ("rcons" "N-02E9003D") + ("expand-with-free-refs" "N-0334827B") + ("hash-revget" "N-02FBE776") ("o-noctty" "N-034BF6C9") - ("fixnum-min" "N-02A6CE24") - ("remove-if*" "N-01413802") - ("fmakunbound" "N-02964FC0") - ("ftw-actionretval" "N-01A802F2") + ("force-break" "N-03B5FB1D") + ("pushnew" "N-02C37AB0") + ("*unhandled-hook*" "N-02B4A4FB") + ("ptrdiff-t" "N-03258244") + ("match-fun" "N-033F766A") + ("file-get" "N-02238370") + ("defvarl" "N-03F36A75") + ("hupcl" "N-01B1B5DF") + ("filter-equal" "N-03136087") ("str-in6addr" "N-01FF658D") + ("ftw-actionretval" "N-01A802F2") + ("rmember" "N-0188A56C") + ("fmakunbound" "N-02964FC0") + ("remove-if*" "N-01413802") + ("*place-delete-expander*" "N-01A2C58A") + ("fixnum-min" "N-02A6CE24") + ("o-noatime" "N-034BF6C9") + ("chmod-rec" "N-02D8298E") ("o-directory" "N-034BF6C9") - ("touch" "N-0038DD42") + ("asin" "D-0071") ("echoctl" "N-0072FF5E") - ("frr" "N-031971BD") + ("touch" "N-0038DD42") + ("echild" "N-036B1BDB") + ("rcomb" "N-02D9003C") + ("dt-blk" "N-02D8CAF4") ("geteuid" "N-00125C22") - ("chand" "N-00C53CF7") - ("find-min" "N-02BB4231") + ("iter-more" "D-0072") + ("frr" "N-031971BD") + ("path-writable-to-me-p" "N-02033190") ("f" "N-003BDFA9") - ("if-match" "N-00CFBF5E") + ("find-min" "N-02BB4231") + ("chand" "N-00C53CF7") ("getaddrinfo" "N-0363FE99") + ("opt-desc" "N-03FC5092") + ("pend*" "N-03975507") + ("if-match" "N-00CFBF5E") + ("zerop" "D-0073") + ("tentative-def-exists" "N-0186D1B7") + ("tree" "N-02F6D50B") + ("chr-isupper" "N-02BB451C") ("ffi-out" "N-02330623") - ("take-until" "N-01E42C4C") - ("iexten" "N-0072FF5E") + ("enum" "N-01CDE57C") + ("uni" "N-0385B074") ("carray-type" "N-030FEDE6") - ("hlet*" "N-01348099") + ("ffi-make-closure" "N-0095DF58") + ("iexten" "N-0072FF5E") + ("take-until" "N-01E42C4C") + ("sub" "N-01D9F42F") + ("diff" "N-0385B074") ("neql" "N-0216A942") - ("tabdly" "N-03BD477F") + ("hlet*" "N-01348099") ("base64url-encode" "N-02D46C3D") + ("tabdly" "N-03BD477F") ("handler-bind" "N-00A4ECC9") - ("length-str" "N-03E6D841") + ("clocal" "N-01B1B5DF") + ("sig-xcpu" "N-0176430F") + ("path-symlink-p" "N-00198FC7") ("copy-buf" "N-00BE75E1") - ("command-put" "N-024D65F3") - ("getgroups" "N-030FEE9B") + ("length-str" "N-03E6D841") + ("contains" "N-010AB2D7") ("itimer-real" "N-02B7882A") + ("getgroups" "N-030FEE9B") + ("command-put" "N-024D65F3") ("cr1" "N-03BD477F") + ("daemon" "N-017C3515") + ("txr-if" "N-00355D4E") ("trie-lookup-feed-char" "N-014E6D7B") - ("lop" "N-017F3A22") - ("hash-equal" "N-0000455E") - ("dotimes" "N-02D31F8C") - ("str<" "N-01AA954A") - ("time-parse-local" "N-00207C99") - ("zchar" "N-0008D7DC") + ("cmp-str" "N-0143A273") + ("short" "N-018C7C8C") ("closure" "N-0216EF16") + ("zchar" "N-0008D7DC") + ("enotsup" "N-036B1BDB") + ("time-parse-local" "N-00207C99") + ("with-in-string-stream" "N-004ED7A0") + ("str<" "N-01AA954A") + ("dotimes" "N-02D31F8C") + ("hash-equal" "N-0000455E") + ("lop" "N-017F3A22") + ("txr-parse" "N-02AC7FB4") + ("getpwent" "N-0377C43A") ("when-match" "N-00CFBF5E") - ("pset" "N-008211EC") + ("path-exists-p" "N-03C41AE2") + ("ensure-dir" "N-00C543B8") ("cases" "N-039458F2") + ("pset" "N-008211EC") + ("require" "D-0074") ("match-case" "N-012DEAC3") - ("require" "D-007C") - ("zap" "N-037F3A8C") + ("mod" "D-0075") + ("buf-get-cptr" "N-00E90766") + ("buf-put-u16" "N-019FC960") ("defun" "N-00B44934") + ("zap" "N-037F3A8C") + ("splice" "N-03BC798C") + ("untrace" "N-02833733") + ("sock-set-peer" "N-01FE18ED") ("fill-buf-adjust" "N-00D142E1") - ("enfile" "N-036B1BDB") + ("some" "D-0076") + ("prod" "N-0163FFE2") + ("deffi" "N-00DCE51D") + ("f-getlk" "N-025E55E7") + ("rng+" "N-00BEA6DF") + ("md5-stream" "N-006C94B6") + ("loff-t" "N-01D716FE") + ("uchar" "N-0008D7DC") ("tcioflush" "N-0279ED46") - ("hash-reset" "N-0225209D") - ("crc32" "N-01D92859") - ("path-private-to-me-p" "N-03B3F844") - ("f-rdlck" "N-0137046C") - ("cr0" "N-03BD477F") - ("go-raw" "N-03DCB007") + ("enfile" "N-036B1BDB") + ("str=" "N-01AA954A") + ("replace-list" "N-03E43DA2") ("*listener-greedy-eval-p*" "N-002B819C") + ("go-raw" "N-03DCB007") + ("cr0" "N-03BD477F") + ("f-rdlck" "N-0137046C") + ("f-setlk" "N-025E55E7") + ("path-private-to-me-p" "N-03B3F844") + ("crc32" "N-01D92859") + ("pred" "N-038E636C") + ("trim-right" "N-00CF29CC") + ("hash-reset" "N-0225209D") ("enolink" "N-036B1BDB") + ("glob-nomagic" "N-0188409B") + ("mf" "N-036B6E55") + ("endp" "N-00C6C858") ("symbol-value" "N-00004DDC") + ("with-compilation-unit" "N-013AAB51") ("ftw-skip-subtree" "N-03853999") - ("bstr" "N-00C6B7C4") + ("/=" "N-003BE40C") ("compile-only" "N-030BF4F5") + ("bstr" "N-00C6B7C4") + ("setuid" "N-03897D65") + ("etxtbsy" "N-036B1BDB") + ("rpos-if" "N-01F68300") + ("pinc" "N-00E4BC37") ("carrayp" "N-027E7FFC") - ("pure-rel-path-p" "N-019DEA44") ("set-indent" "N-024E9FD8") - ("cat-vec" "N-01AEB28B") + ("pure-rel-path-p" "N-019DEA44") + ("sixth" "N-01B0FA33") + ("n-choose-k" "N-02ACFDE6") ("sockaddr-in" "N-01DD05D9") - ("less" "N-01D6CEA1") + ("cat-vec" "N-01AEB28B") + ("hash-eql" "N-0000455E") ("verase" "N-01812D70") - ("hash-symdiff" "N-02235BB2") + ("less" "N-01D6CEA1") + ("*param-macro*" "N-03B67ED8") + ("tree-value-at" "N-012A5FAD") + ("glob-nocheck" "N-0188409B") + ("buf-put-i64" "N-007FC973") + ("alist-nremove" "N-000CD07F") ("dohash" "N-039105E8") + ("hash-symdiff" "N-02235BB2") + ("acosh" "D-0077") + ("buf-put-buf" "N-009FC934") + ("buf-uint" "N-0291625A") + ("align" "N-01C7BC08") ("placelet" "N-0393C970") - ("floatp" "N-03E9D6E1") - ("ends-with" "N-004955D4") - ("put-buf" "D-007D") ("endgrent" "N-02CAC7FB") - ("with-gensyms" "N-034F045B") + ("replace" "N-035991E1") + ("test-dirty" "N-03AB857D") + ("put-buf" "D-0078") + ("remqual*" "N-00B85CD2") + ("ends-with" "N-004955D4") + ("floatp" "N-03E9D6E1") + ("digpow" "N-030C5561") + ("tree-reset" "N-002A407C") ("setresgid" "N-027671E8") - ("sig-tstp" "N-0176430F") + ("with-gensyms" "N-034F045B") ("*-20" "N-02B67C9B") - ("hash-list" "N-02EE9235") - ("enodev" "N-036B1BDB") - ("path-executable-to-me-p" "N-014A4B85") + ("sig-tstp" "N-0176430F") + ("vquit" "N-01812D70") ("flock" "N-004E5B3E") - ("each" "N-0105F01D") - ("list-vec" "N-00460235") + ("path-executable-to-me-p" "N-014A4B85") + ("enodev" "N-036B1BDB") + ("hash-list" "N-02EE9235") + ("compile-toplevel" "N-00DE8B13") + ("uint32" "N-03D0AA7B") + ("ignbrk" "N-02391683") + ("sock-type" "N-0323EB36") ("width-check" "N-01A9EA49") + ("list-vec" "N-00460235") + ("each" "N-0105F01D") + ("command-get-lines" "N-0062A33B") ("catenated-stream-push" "N-0050A46A") - ("nthlast" "N-02FC66FA") - ("str<=" "N-01AA954A") ("shut-rdwr" "N-028953A4") + ("str<=" "N-01AA954A") + ("plist-to-alist" "N-006E31B5") + ("nthlast" "N-02FC66FA") + ("ppred" "N-038E636C") ("lazy-stream-cons" "N-00B65D06") - ("shift" "N-01AC8471") - ("utimes" "N-00E96FCF") ("in6addr-str" "N-02456270") - ("*place-update-expander*" "N-01A2C58A") - ("conda" "N-025CC33C") - ("cptr-size-hint" "N-024CD90F") + ("utimes" "N-00E96FCF") + ("find-symbol" "N-01EA8B50") + ("string-lt" "N-03ABBED1") + ("rlist" "N-02FD60D0") + ("split" "N-02FD4882") + ("shift" "N-01AC8471") + ("orf" "N-01E7D2AD") + ("caar" "N-00209CEE") + ("prog2" "N-03A0E48C") ("rng-" "N-00BEA6DF") - ("flo-dig" "N-00998CE7") - ("append-each" "N-0105F01D") - ("chr-tolower" "N-015A58D0") + ("cptr-size-hint" "N-024CD90F") + ("slotset" "N-02657437") + ("conda" "N-025CC33C") + ("*place-update-expander*" "N-01A2C58A") + ("wrap*" "N-026DDCEC") ("int-carray" "N-00797A01") + ("glob-mark" "N-0188409B") + ("*stdin*" "N-006566FB") + ("chr-tolower" "N-015A58D0") + ("append-each" "N-0105F01D") + ("whilet" "N-0154DC75") + ("pppred" "N-038E636C") + ("flo-dig" "N-00998CE7") + ("opip" "N-01937C5A") + ("last" "D-0079") + ("copy-file" "N-019D6582") + ("eisconn" "N-036B1BDB") + ("false" "N-03C679D2") + ("intern-fb" "N-02722B58") ("buf-put-i8" "N-002F655F") ("tab3" "N-03BD477F") - ("replace-struct" "N-01A8343B") ("iuclc" "N-02391683") + ("ftw-sln" "N-02ED8B51") + ("replace-struct" "N-01A8343B") + ("unsetenv" "N-002E0364") + ("accept" "D-007A") ("cptr-get" "N-00513A70") ("md5-hash" "N-025F32FD") - ("get-indent-mode" "N-03F3170C") + ("poly" "N-026201AD") ("open-socket-pair" "N-01A7ECBB") - ("yield" "N-02AE5C1E") - ("expand-left" "N-00E168FE") - ("buf-get-long" "N-02190DE0") - ("make-lazy-struct" "N-01C734D9") + ("get-indent-mode" "N-03F3170C") + ("sock-listen" "N-02F624A8") ("ai-numerichost" "N-020DFFDE") + ("make-lazy-struct" "N-01C734D9") + ("buf-get-long" "N-02190DE0") + ("expand-left" "N-00E168FE") + ("yield" "N-02AE5C1E") ("path-chrdev-p" "N-00198FC7") ("double" "N-03237030") + ("+" "D-007B") ("readdir" "N-0289D074") - ("freeform" "N-00334C65") ("fconv" "N-018CCE37") + ("time-parse-utc" "N-00207C99") + ("print" "D-007C") + ("freeform" "N-00334C65") ("enodata" "N-036B1BDB") ("buf-get-i32" "N-0127C970") ("*gensym-counter*" "N-0387B1B1") ("when" "N-017EFAB6") - ("cosh" "D-007E") + ("ino-t" "N-01D716FE") ("tuples" "N-00C801EF") + ("list-builder" "N-018F6666") + ("cosh" "D-007D") + ("log" "D-007E") ("clear-oflags" "N-02061924") - ("load" "D-007F") + ("*random-warmup*" "N-010348CD") + ("chr" "N-02D5D09D") ("meq" "N-020A0042") - ("neg" "N-02C9F5F9") + ("load" "D-007F") + ("clear-dirty" "N-03AB857D") + ("save-exe" "N-02850687") + ("make-strlist-input-stream" "N-01737CF9") ("enumed" "N-01096D60") - ("ninth" "N-01B0FA33") + ("chr-isalnum" "N-01B18DF0") + ("neg" "N-02C9F5F9") + ("carray-vec" "N-00E825E0") ("longlong" "N-02299408") - ("strerror" "N-02A1DB65") - ("major" "N-02F0F482"))) + ("seek-cur" "N-01D6E4D8") + ("setegid" "N-03897D65") + ("open-file" "N-02B8FBBD") + ("ninth" "N-01B0FA33") + ("major" "N-02F0F482") + ("strerror" "N-02A1DB65"))) diff --git a/tests/010/tree.tl b/tests/010/tree.tl index 38144476..b41e7973 100644 --- a/tests/010/tree.tl +++ b/tests/010/tree.tl @@ -84,28 +84,28 @@ (test (tree-delete tr 6) 6) -(vtest (build (for* ((i (tree-begin-at tr 6)) +(vtest (build (for* ((i (tree-begin tr 6)) (n (tree-next i))) (n) ((set n (tree-next i))) (add (key n)))) (range 7 19)) -(vtest (build (for* ((i (tree-begin-at tr 0)) +(vtest (build (for* ((i (tree-begin tr 0)) (n (tree-next i))) (n) ((set n (tree-next i))) (add (key n)))) (rlist 0..5 7..19)) -(vtest (build (for* ((i (tree-begin-at tr 8)) +(vtest (build (for* ((i (tree-begin tr 8)) (n (tree-next i))) (n) ((set n (tree-next i))) (add (key n)))) (range 8 19)) -(vtest (build (for* ((i (tree-reset-at (tree-begin #T(())) tr 8)) +(vtest (build (for* ((i (tree-reset (tree-begin #T(())) tr 8)) (n (tree-next i))) (n) ((set n (tree-next i))) @@ -132,10 +132,10 @@ (key (tree-next t2)))) (1 2 1 2)) -(test (tree-next (tree-begin-at tr 20)) nil) +(test (tree-next (tree-begin tr 20)) nil) -(test (tree-next (tree-begin-at #T(()) 0)) nil) -(test (key (tree-next (tree-begin-at #T(() 1) 1))) 1) +(test (tree-next (tree-begin #T(()) 0)) nil) +(test (key (tree-next (tree-begin #T(() 1) 1))) 1) (mtest (tree-delete tr 0) 0 @@ -73,7 +73,9 @@ struct tree_iter { struct tree_diter { struct tree_iter ti; + val tree; val lastnode; + val highkey; }; #define tree_iter_init(self) { (self), 0, tr_visited_nothing, { 0 } } @@ -774,7 +776,9 @@ static void tree_iter_mark(val tree_iter) for (i = 0; i < tdi->ti.depth; i++) gc_mark(tdi->ti.path[i]); + gc_mark(tdi->tree); gc_mark(tdi->lastnode); + gc_mark(tdi->highkey); } static struct cobj_ops tree_iter_ops = cobj_ops_init(eq, @@ -783,7 +787,7 @@ static struct cobj_ops tree_iter_ops = cobj_ops_init(eq, tree_iter_mark, cobj_eq_hash_op); -val tree_begin(val tree) +val tree_begin(val tree, val lowkey, val highkey) { val self = lit("tree-begin"); struct tree *tr = coerce(struct tree *, cobj_handle(self, tree, tree_s)); @@ -792,22 +796,17 @@ val tree_begin(val tree) val iter = cobj(coerce(mem_t *, tdi), tree_iter_s, &tree_iter_ops); tdi->ti.self = iter; - tdi->lastnode = tr->root; + tdi->tree = tree; - return iter; -} - -val tree_begin_at(val tree, val lowkey) -{ - val self = lit("tree-begin-at"); - struct tree *tr = coerce(struct tree *, cobj_handle(self, tree, tree_s)); - struct tree_diter *tdi = coerce(struct tree_diter *, - chk_calloc(1, sizeof *tdi)); - val iter = cobj(coerce(mem_t *, tdi), tree_iter_s, &tree_iter_ops); - - tdi->ti.self = iter; + if (!missingp(lowkey)) + tn_find_low(tr->root, tdi, tr, lowkey); + else + tdi->lastnode = tr->root; - tn_find_low(tr->root, tdi, tr, lowkey); + if (!missingp(highkey)) + tdi->highkey = highkey; + else + tdi->highkey = iter; return iter; } @@ -825,8 +824,14 @@ val copy_tree_iter(val iter) tdid->ti.self = iter_copy; tdid->ti.depth = depth; tdid->ti.state = tdis->ti.state; + tdid->tree = tdis->tree; tdid->lastnode = tdis->lastnode; + if (tdis->highkey == iter) + tdid->highkey = iter_copy; + else + tdid->highkey = tdis->highkey; + memcpy(tdid->ti.path, tdis->ti.path, sizeof tdid->ti.path[0] * depth); return iter_copy; @@ -843,8 +848,14 @@ val replace_tree_iter(val diter, val siter) tdid->ti.depth = depth; tdid->ti.state = tdis->ti.state; + tdid->tree = tdis->tree; tdid->lastnode = tdis->lastnode; + if (tdis->highkey == siter) + tdid->highkey = diter; + else + tdid->highkey = tdis->highkey; + memcpy(tdid->ti.path, tdis->ti.path, sizeof tdid->ti.path[0] * depth); mut(diter); @@ -852,7 +863,7 @@ val replace_tree_iter(val diter, val siter) return diter; } -val tree_reset(val iter, val tree) +val tree_reset(val iter, val tree, val lowkey, val highkey) { val self = lit("tree-reset"); struct tree *tr = coerce(struct tree *, cobj_handle(self, tree, tree_s)); @@ -862,23 +873,19 @@ val tree_reset(val iter, val tree) tdi->ti = it; set(mkloc(tdi->ti.self, iter), iter); - set(mkloc(tdi->lastnode, iter), tr->root); - - return iter; -} - -val tree_reset_at(val iter, val tree, val lowkey) -{ - val self = lit("tree-reset-at"); - struct tree *tr = coerce(struct tree *, cobj_handle(self, tree, tree_s)); - struct tree_diter *tdi = coerce(struct tree_diter *, - cobj_handle(self, iter, tree_iter_s)); - const struct tree_iter it = tree_iter_init(0); + set(mkloc(tdi->tree, iter), tree); - tdi->ti = it; - tdi->lastnode = tr->root; + if (!missingp(lowkey)) { + tdi->lastnode = nil; + tn_find_low(tr->root, tdi, tr, lowkey); + } else { + set(mkloc(tdi->lastnode, iter), tr->root); + } - tn_find_low(tr->root, tdi, tr, lowkey); + if (!missingp(highkey)) + set(mkloc(tdi->highkey, iter), highkey); + else + tdi->highkey = iter; return iter; } @@ -888,10 +895,24 @@ val tree_next(val iter) val self = lit("tree-next"); struct tree_diter *tdi = coerce(struct tree_diter *, cobj_handle(self, iter, tree_iter_s)); + struct tree *tr = coerce(struct tree *, cobj_handle(self, tdi->tree, tree_s)); if (tdi->lastnode) { val node = tn_find_next(tdi->lastnode, &tdi->ti); - set(mkloc(tdi->lastnode, iter), node); + if (tdi->highkey == iter) { + set(mkloc(tdi->lastnode, iter), node); + return node; + } else if (node) { + val key = node->tn.key; + if (if3(tr->less_fn, + funcall2(tr->less_fn, key, tdi->highkey), + less(key, tdi->highkey))) + return set(mkloc(tdi->lastnode, iter), node); + else + return tdi->lastnode = nil; + } else { + return tdi->lastnode = nil; + } return node; } @@ -903,9 +924,21 @@ val tree_peek(val iter) val self = lit("tree-peek"); struct tree_diter *tdi = coerce(struct tree_diter *, cobj_handle(self, iter, tree_iter_s)); + struct tree *tr = coerce(struct tree *, cobj_handle(self, tdi->tree, tree_s)); if (tdi->lastnode) { val node = tn_peek_next(tdi->lastnode, &tdi->ti); + if (tdi->highkey == iter) { + return node; + } else if (node) { + val key = node->tn.key; + if (if3(tr->less_fn, + funcall2(tr->less_fn, key, tdi->highkey), + less(key, tdi->highkey))) + return node; + else + return nil; + } return node; } @@ -924,22 +957,12 @@ val tree_clear(val tree) val sub_tree(val tree, val from, val to) { - val self = lit("sub_tree"); - struct tree *tr = coerce(struct tree *, cobj_handle(self, tree, tree_s)); - val iter = if3(missingp(from), tree_begin(tree), tree_begin_at(tree, from)); - val node, key; + val iter = tree_begin(tree, from, to); + val node; list_collect_decl (out, ptail); - if (missingp(to)) { - while ((node = tree_next(iter))) - ptail = list_collect(ptail, node->tn.key); - } else { - while (and2((node = tree_next(iter)), - if3(tr->less_fn, - funcall2(tr->less_fn, (key = node->tn.key), to), - less((key = node->tn.key), to)))) - ptail = list_collect(ptail, key); - } + while ((node = tree_next(iter))) + ptail = list_collect(ptail, node->tn.key); return out; } @@ -969,12 +992,10 @@ void tree_init(void) reg_fun(intern(lit("tree-delete-node"), user_package), func_n2(tree_delete_node)); reg_fun(intern(lit("tree-delete"), user_package), func_n2(tree_delete)); reg_fun(intern(lit("tree-root"), user_package), func_n1(tree_root)); - reg_fun(intern(lit("tree-begin"), user_package), func_n1(tree_begin)); - reg_fun(intern(lit("tree-begin-at"), user_package), func_n2(tree_begin_at)); + reg_fun(intern(lit("tree-begin"), user_package), func_n3o(tree_begin, 1)); reg_fun(intern(lit("copy-tree-iter"), user_package), func_n1(copy_tree_iter)); reg_fun(intern(lit("replace-tree-iter"), user_package), func_n2(replace_tree_iter)); - reg_fun(intern(lit("tree-reset"), user_package), func_n2(tree_reset)); - reg_fun(intern(lit("tree-reset-at"), user_package), func_n3(tree_reset_at)); + reg_fun(intern(lit("tree-reset"), user_package), func_n4o(tree_reset, 2)); reg_fun(intern(lit("tree-next"), user_package), func_n1(tree_next)); reg_fun(intern(lit("tree-peek"), user_package), func_n1(tree_peek)); reg_fun(intern(lit("tree-clear"), user_package), func_n1(tree_clear)); @@ -48,12 +48,10 @@ val tree_lookup_node(val tree, val key); val tree_lookup(val tree, val key); val tree_delete_node(val tree, val key); val tree_delete(val tree, val key); -val tree_begin(val tree); -val tree_begin_at(val tree, val lowkey); +val tree_begin(val tree, val lowkey, val highkey); val copy_tree_iter(val iter); val replace_tree_iter(val diter, val siter); -val tree_reset(val iter, val tree); -val tree_reset_at(val iter, val tree, val lowkey); +val tree_reset(val iter, val tree, val lowkey, val highkey); val tree_next(val iter); val tree_peek(val iter); val tree_clear(val tree); @@ -51830,66 +51830,64 @@ argument must be an object of type The returned object has the same key abstraction functions as .metn tree . -.coNP Functions @ tree-begin and @ tree-begin-at +.coNP Function @ tree-begin .synb -.mets (tree-begin < tree ) -.mets (tree-begin-at < tree << low-key ) +.mets (tree-begin < tree >> [ low-key <> [ high-key ]]) .syne .desc The .code tree-begin function returns a new object of type .code tree-iter -which provides in-order traversal of all the nodes stored in the tree. - -The -.code tree-begin-at -similarly returns a new object of type -.codn tree-iter . -This object provides in-order traversal of those nodes stored in the tree -whose key is equal to or higher than -.metn low-key . +which provides in-order traversal of nodes stored in +.metn tree . The .meta tree argument must be an object of type .codn tree . +If the +.meta low-key +argument is specified, then nodes with keys lesser than +.meta low-key +are omitted from the traversal. + +If the +.meta high-key +argument is specified, then nodes with keys equal to +or greater than +.meta high-key +are omitted from the traversal. + The nodes are traversed by applying the .code tree-next -function to the +function to the returned .code tree-iter object. -.coNP Functions @ tree-reset and @ tree-reset-at +.coNP Function @ tree-reset .synb -.mets (tree-reset < iter < tree ) -.mets (tree-reset-at < iter < tree << low-key ) +.mets (tree-reset < iter < tree >> [ low-key <> [ high-key ]]) .syne .desc The .code tree-reset -and -.code tree-reset-at -functions are closely analogous to -.code tree-begin -and -.codn tree-begin-at , -respectively. These functions do not create a new iterator object. +functions is closely analogous to +.codn tree-begin . The .meta iter argument must be an existing .code tree-iter -object, previously returned by a call to either -.code tree-begin -or -.codn tree-begin-at . +object, previously returned by a call to +.codn tree-begin . + Regardless of its current state, the .meta iter object is re-initialized to traverse the specified -.metn tree , -and is then returned. +.meta tree +with the specified parameters, and is then returned. The .code tree-reset @@ -51897,19 +51895,11 @@ function prepares .meta iter to traverse in the same manner as would new iterator returned by .code tree-begin -for the -.meta tree -argument. -The -.code tree-begin-at -function similarly prepares -.meta iter -to traverse in the same manner as a new iterator returned by -.code tree-begin-at -for the -.meta tree -and +for the specified +.metn tree , .meta low-key +and +.meta high-key arguments. .coNP Functions @ tree-next and @ tree-peek @@ -51928,9 +51918,7 @@ The iterator must be an object of type .codn tree-iter , returned by the .code tree-begin -or -.code tree-begin-at -functions. +function. If there are no more nodes to be visited, these functions .codn nil . @@ -51967,34 +51955,21 @@ the iterator and therefore does not advance through successive nodes. .desc The .code sub-tree -function selects those elements elements in -.meta tree -which are not less than -.meta from-key -but less than -.metn to-key . +function selects elements from +.metn tree , +which must be a search tree. -If only the +If .meta from-key -argument is specified, then -.code sub-tree -selects those elements which are not less than -.metn from-key . +is specified, then elements lesser than +.meta from-key +are omitted from the selection. -Similarly, if only the +If .meta to-key -argument is specified, then -.code sub-tree -selects those elements which are less than -.metn to-key . - -If neither -.meta from-key -nor +is specified, the elements greater than or equal to .meta to-key -are specified, then -.code sub-tree -selects all elements from the tree. +are omitted from the selection. A list of the selected elements is returned, in which the elements appear in the same order as they do in @@ -52010,9 +51985,7 @@ The function creates and returns a duplicate of the .meta iter object, which must be a tree iterator returned by -.code tree-begin -or -.codn tree-begin-at . +.codn tree-begin . The returned object has the same state as the original; it references the same traversal position in the same tree. However, it is independent of the original. @@ -52038,9 +52011,7 @@ Both and .meta src-iter must be tree iterator objects returned by -.code tree-begin -or -.codn tree-begin-at . +.codn tree-begin . The contents of .meta dest-iter |