├── .clang-format ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── vscode.h ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── ape ├── aarch64.lds ├── ape-m1.c ├── ape.S ├── ape.internal.h ├── ape.lds ├── ape.mk ├── apeinstall.sh ├── apeuninstall.sh ├── blink-linux-aarch64.gz ├── blink-xnu-aarch64.gz ├── idata.internal.h ├── loader-elf.S ├── loader-macho.S ├── loader.c ├── loader.lds ├── macros.internal.h ├── mz.ansi ├── notice.inc ├── public │ └── ape.lds ├── relocations.h └── sections.internal.h ├── dsp ├── bmp │ └── bmp.mk ├── core │ ├── alaw.c │ ├── byte2double.c │ ├── c11.h │ ├── c121.h │ ├── c121s.h │ ├── c1331.h │ ├── c1331s.h │ ├── c161.h │ ├── c161s.h │ ├── c331.h │ ├── core.h │ ├── core.mk │ ├── dct.c │ ├── det3.c │ ├── differsumsq.c │ ├── differsumsq8.c │ ├── double2byte.c │ ├── float2short.c │ ├── gamma.c │ ├── gamma.h │ ├── getintegercoefficients.c │ ├── getintegercoefficients8.c │ ├── half.h │ ├── illumination.c │ ├── illumination.h │ ├── inv3.c │ ├── ituround.h │ ├── ks8.h │ ├── kss8.h │ ├── matmul3.c │ ├── matvmul3.c │ ├── mulaw.c │ ├── q.h │ ├── sad16x8n.c │ ├── scalevolume.c │ ├── twixt8.h │ ├── unalaw.c │ ├── unmulaw.c │ └── vmatmul3.c ├── dsp.mk ├── mpeg │ ├── README.txt │ ├── blockset.h │ ├── buffer.c │ ├── buffer.h │ ├── clamp4int256-core.S │ ├── demux.c │ ├── demux.h │ ├── idct.c │ ├── idct.h │ ├── macroblock.c │ ├── mp2.c │ ├── mpeg.h │ ├── mpeg.mk │ ├── mpeg1.c │ ├── plm.c │ ├── slowrgb.c │ └── video.h ├── scale │ ├── cdecimate2xuint8x8.c │ ├── cdecimate2xuint8x8.h │ ├── gyarados.c │ ├── magikarp.c │ ├── scale.c │ ├── scale.h │ └── scale.mk └── tty │ ├── altbuf.c │ ├── config.c │ ├── describe.c │ ├── hidecursor.c │ ├── ident.c │ ├── identclear.c │ ├── internal.h │ ├── itoa8.c │ ├── itoa8.h │ ├── kcgapalette.c │ ├── ktangopalette.c │ ├── kxtermcubesteps.c │ ├── kxtermpalette.c │ ├── mpsadbw.S │ ├── quant.h │ ├── restore.c │ ├── rgb2ansi.c │ ├── rgb2ttyf2i.c │ ├── rgb2ttyi2f.c │ ├── rgb2xterm24.c │ ├── rgb2xterm24f.c │ ├── savecursor.c │ ├── send.c │ ├── sendtitle.c │ ├── setansipalette.c │ ├── setbgfg16.c │ ├── setbgfg24.c │ ├── setbgfg256.c │ ├── setraw.c │ ├── setrawdeadline.c │ ├── setrawmode.c │ ├── tty.h │ ├── tty.mk │ ├── tty2rgb24.c │ ├── tty2rgbf24.c │ ├── ttyhisto.c │ ├── ttymove.c │ ├── ttyquant.c │ ├── ttyraster.c │ ├── ttyraw.c │ ├── ttyrgb.h │ ├── windex-avx2.S │ ├── windex-k8.c │ ├── windex-sse4.S │ ├── windex.c │ ├── windex.h │ ├── write.c │ ├── xtermname.c │ └── xtermname.h ├── examples ├── auto-launch-gdb-on-crash.c ├── auto-memory-safety-crash.c ├── auto-memory-safety-crash2.c ├── auto-memory-safety-crash3.c ├── breakpoint.c ├── certapp.c ├── check.c ├── clock.c ├── clock_getres.c ├── compress.c ├── cosh.c ├── cplusplus-stl.cc ├── cplusplus.cc ├── crashreport.c ├── crashreport2.c ├── ctrlc.c ├── datauri.c ├── date.c ├── decompress.c ├── defer-statements.c ├── dot.c ├── examples.mk ├── exec.c ├── exit.c ├── fastmod.c ├── forkexec.c ├── forkexecwait.c ├── forkrand.c ├── gc.c ├── generalized-automatic-datastructure-printing.c ├── getcpucount.c ├── getdomainname.c ├── getrandom.c ├── gettimeofday.c ├── greenbean.c ├── gui.c ├── hangman.c ├── hello.c ├── hello2.c ├── hello3.c ├── hellolua.c ├── hellolua.lua ├── hertz.c ├── hiredis.c ├── hostname.c ├── img.c ├── kilo.c ├── life.c ├── linenoise.c ├── loadavg.c ├── ls.c ├── lstime.c ├── mkhello.c ├── nanosleep.c ├── nanosleep_test.c ├── nc.c ├── nesemu1.cc ├── nomodifyself.c ├── package │ ├── build.mk │ ├── lib │ │ ├── build.mk │ │ ├── myasm.S │ │ ├── myprint.c │ │ └── myprint.h │ ├── new.sh │ └── program.c ├── panels.c ├── picol.c ├── portscan.c ├── printargs.c ├── printprimes.c ├── pyapp │ ├── pyapp.mk │ └── pyapp.py ├── pylife │ ├── pylife.mk │ └── pylife.py ├── reboot.c ├── rlimit.c ├── rusage.c ├── script.c ├── script.txt ├── seq.c ├── setcontext.c ├── setitimer.c ├── shutdown.c ├── stackoverflow.c ├── stat.c ├── statfs.c ├── stringbuffer.c ├── symtab.c ├── sysinfo.c ├── system.c ├── thread.c ├── time.c ├── tls.c ├── ttyinfo.c ├── ucontext-sigfpe-recovery.c ├── uname.c ├── unbourne.c ├── vga.c ├── vga2.c ├── vqsort.c ├── walk.c ├── wall.c ├── whois.c └── x86split.c ├── libc ├── README.md ├── ar.h ├── assert.h ├── atomic.h ├── calls │ ├── CPU_AND.c │ ├── CPU_COUNT.c │ ├── CPU_EQUAL.c │ ├── CPU_OR.c │ ├── CPU_XOR.c │ ├── CPU_ZERO.c │ ├── __clock_gettime.c │ ├── __sig.c │ ├── __sig2.c │ ├── __sig_mask.c │ ├── __sig_pending.c │ ├── _ptsname.c │ ├── access.c │ ├── alarm.c │ ├── asan.internal.h │ ├── assertfail.c │ ├── blockcancel.internal.h │ ├── blocksigs.internal.h │ ├── calls.h │ ├── calls.mk │ ├── cfmakeraw.c │ ├── cfspeed.c │ ├── chdir-nt.c │ ├── chdir.c │ ├── chmod.c │ ├── chown.c │ ├── chroot.c │ ├── clock.c │ ├── clock_getres.c │ ├── clock_gettime-m1.c │ ├── clock_gettime-mono.c │ ├── clock_gettime-nt.c │ ├── clock_gettime-xnu.c │ ├── clock_gettime.c │ ├── clock_gettime.internal.h │ ├── clock_nanosleep-nt.c │ ├── clock_nanosleep-openbsd.c │ ├── clock_nanosleep-xnu.c │ ├── clock_nanosleep.c │ ├── clock_settime.c │ ├── close-nt.c │ ├── close.c │ ├── close_range.c │ ├── closefrom.c │ ├── commandv.c │ ├── copy.c │ ├── copy_file_range.c │ ├── copyfile.c │ ├── copyfile.h │ ├── cp.internal.h │ ├── creat.c │ ├── createfileflags.c │ ├── createpipename.c │ ├── diagnose_syscall.S │ ├── dtime.c │ ├── dup-nt.c │ ├── dup.c │ ├── dup2.c │ ├── dup3-sysv.c │ ├── dup3.c │ ├── eaccess.c │ ├── euidaccess.c │ ├── execl.c │ ├── execle.c │ ├── execlp.c │ ├── execv.c │ ├── execve-nt.greg.c │ ├── execve-sysv.c │ ├── execve-sysv.internal.h │ ├── execve.c │ ├── execvp.c │ ├── execvpe.c │ ├── faccessat-nt.c │ ├── faccessat.c │ ├── fadvise-nt.c │ ├── fadvise.c │ ├── fchdir-nt.c │ ├── fchdir.c │ ├── fchmod.c │ ├── fchmodat-nt.c │ ├── fchmodat.c │ ├── fchown.c │ ├── fchownat.c │ ├── fcntl-nt.c │ ├── fcntl-sysv.c │ ├── fcntl.c │ ├── fdatasync-nt.c │ ├── fdatasync.c │ ├── fexecve.c │ ├── fileexists.c │ ├── fixenotdir.c │ ├── fixupnewfd.c │ ├── flock-nt.c │ ├── flock.c │ ├── fstat-metal.c │ ├── fstat-nt.c │ ├── fstat-sysv.c │ ├── fstat.c │ ├── fstatat-nt.c │ ├── fstatat-sysv.c │ ├── fstatat.c │ ├── fstatfs-nt.c │ ├── fstatfs.c │ ├── fstatvfs.c │ ├── fsync.c │ ├── ftok.c │ ├── ftruncate-nt.c │ ├── ftruncate.c │ ├── futimens.c │ ├── futimes.c │ ├── g_sighandrvas.c │ ├── getcontext.S │ ├── getcontext.inc │ ├── getcpucount.c │ ├── getcwd-nt.greg.c │ ├── getcwd-xnu.greg.c │ ├── getcwd.greg.c │ ├── getdomainname-linux.c │ ├── getdomainname.c │ ├── getdtablesize.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgroups.c │ ├── gethostname-bsd.c │ ├── gethostname-linux.c │ ├── gethostname-nt.c │ ├── gethostname.c │ ├── getitimer.c │ ├── getloadavg-nt.c │ ├── getloadavg.c │ ├── getntsyspath.S │ ├── getpgid.c │ ├── getpgrp.c │ ├── getppid-nt.c │ ├── getppid.c │ ├── getpriority-nt.c │ ├── getpriority.c │ ├── getprocaddressmodule.c │ ├── getprogramexecutablename.greg.c │ ├── getresgid.c │ ├── getresuid.c │ ├── getrlimit.c │ ├── getrusage-nt.c │ ├── getrusage-sysv.c │ ├── getrusage.c │ ├── getsid.c │ ├── gettemppatha-flunk.S │ ├── gettimeofday-m1.c │ ├── gettimeofday-metal.c │ ├── gettimeofday-nt.c │ ├── gettimeofday-xnu.c │ ├── gettimeofday.c │ ├── getuid.c │ ├── grantpt.c │ ├── groups.internal.h │ ├── internal.h │ ├── interrupts-nt.c │ ├── ioctl.c │ ├── iovecsize.c │ ├── ipc.h │ ├── isatty-metal.c │ ├── isatty-nt.c │ ├── isatty.c │ ├── ischardev.c │ ├── isdirectory-nt.c │ ├── isdirectory.c │ ├── isexecutable.c │ ├── islinux.c │ ├── isptmaster.c │ ├── isregularfile-nt.c │ ├── isregularfile.c │ ├── issetugid.c │ ├── issymlink-nt.c │ ├── issymlink.c │ ├── kemptyfd.c │ ├── kill-nt.c │ ├── kill.c │ ├── killpg.c │ ├── kntsystemdirectory.S │ ├── kntwindowsdirectory.S │ ├── ktmppath.c │ ├── landlock.h │ ├── landlock_add_rule.c │ ├── landlock_create_ruleset.c │ ├── landlock_restrict_self.c │ ├── lchmod.c │ ├── lchown.c │ ├── link.c │ ├── linkat-nt.c │ ├── linkat.c │ ├── lseek-nt.c │ ├── lseek.c │ ├── lstat.c │ ├── lutimes.c │ ├── madvise-nt.c │ ├── madvise.c │ ├── major.c │ ├── makedev.c │ ├── makedev.h │ ├── makedirs.c │ ├── memfd_create.c │ ├── metaflock.c │ ├── metalfile.c │ ├── metalfile.internal.h │ ├── metalfile_init.S │ ├── mincore.c │ ├── minor.c │ ├── mkdir.c │ ├── mkdirat-nt.c │ ├── mkdirat.c │ ├── mkfifo.c │ ├── mknod.c │ ├── mkntcmdline.c │ ├── mkntenvblock.c │ ├── mkntpath.c │ ├── mkntpathat.c │ ├── mlock.c │ ├── mount.c │ ├── mount.h │ ├── mremap-sysv.greg.c │ ├── munlock.c │ ├── munmap-metal.c │ ├── munmap-sysv.c │ ├── nanos.c │ ├── nanos.internal.h │ ├── nanosleep-xnu.c │ ├── nanosleep.c │ ├── netbsdtramp.S │ ├── nice.c │ ├── nosync.c │ ├── now.c │ ├── ntaccesscheck.c │ ├── ntcontext2linux.c │ ├── ntmagicpaths.c │ ├── ntmagicpaths.inc │ ├── ntmagicpaths.internal.h │ ├── ntreturn.c │ ├── ntsetprivilege.c │ ├── ntspawn.c │ ├── ntspawn.h │ ├── offset2overlap.c │ ├── oldbench.c │ ├── onntconsoleevent.c │ ├── onntconsoleevent_init.S │ ├── onwincrash.S │ ├── open-nt.c │ ├── open.c │ ├── openat-metal.c │ ├── openat-sysv.c │ ├── openat.c │ ├── openbsd.internal.h │ ├── openpty.c │ ├── parsepromises.c │ ├── pause-nt.c │ ├── pause.c │ ├── perror.c │ ├── pipe-nt.c │ ├── pipe-sysv.c │ ├── pipe.c │ ├── pipe2-sysv.c │ ├── pipe2.c │ ├── pivot_root.c │ ├── pledge-linux.c │ ├── pledge.c │ ├── pledge.h │ ├── pledge.internal.h │ ├── poll-metal.c │ ├── poll-nt.c │ ├── poll-sysv.c │ ├── poll.c │ ├── posix_fadvise.c │ ├── posix_madvise.c │ ├── posix_openpt.c │ ├── ppoll.c │ ├── prctl.c │ ├── prctl.internal.h │ ├── pread.c │ ├── preadv.c │ ├── printfds.c │ ├── program_invocation_short_name.c │ ├── ptrace.c │ ├── ptsname.c │ ├── ptsname_r.c │ ├── pwrite.c │ ├── pwritev.c │ ├── raise.c │ ├── read-nt.c │ ├── read.c │ ├── readansi.c │ ├── readlink.c │ ├── readlinkat-nt.c │ ├── readlinkat.c │ ├── readv-metal.c │ ├── readv-nt.c │ ├── readv-serial.c │ ├── readv.c │ ├── realpath.c │ ├── reboot.c │ ├── releasefd.c │ ├── remove.c │ ├── rename.c │ ├── renameat-nt.c │ ├── renameat.c │ ├── reservefd.c │ ├── restoretty.c │ ├── rmdir.c │ ├── rusage2linux.c │ ├── rusage_add.c │ ├── samplepids.c │ ├── sched-sysv.internal.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getaffinity.c │ ├── sched_getparam.c │ ├── sched_getscheduler-netbsd.c │ ├── sched_getscheduler.c │ ├── sched_rr_get_interval.c │ ├── sched_setaffinity.c │ ├── sched_setparam.c │ ├── sched_setscheduler.c │ ├── seccomp.c │ ├── sedebug.c │ ├── setegid.c │ ├── seteuid.c │ ├── setfsgid.c │ ├── setfsuid.c │ ├── setgid.c │ ├── setgroups.c │ ├── setitimer-nt.c │ ├── setitimer.c │ ├── setpgid.c │ ├── setpgrp.c │ ├── setpriority-nt.c │ ├── setpriority.c │ ├── setregid.c │ ├── setresgid.c │ ├── setresuid.c │ ├── setreuid.c │ ├── setrlimit.c │ ├── setsid.c │ ├── settimeofday.c │ ├── setuid.c │ ├── sig.internal.h │ ├── sigaction.c │ ├── sigaltstack.c │ ├── sigblockall.c │ ├── sigchld-nt.c │ ├── sigcount.c │ ├── sigenter-freebsd.c │ ├── sigenter-linux.c │ ├── sigenter-netbsd.c │ ├── sigenter-openbsd.c │ ├── sigenter-xnu.c │ ├── sigignore.c │ ├── siginfo2cosmo.c │ ├── siginterrupt.c │ ├── siglock.c │ ├── siglock_obj.c │ ├── signal.c │ ├── sigpending.c │ ├── sigprocmask-sysv.c │ ├── sigprocmask.c │ ├── sigqueue.c │ ├── sigsetmask.c │ ├── sigsuspend.c │ ├── sigtimedwait.c │ ├── sigtimedwait.h │ ├── sigtimedwait.internal.h │ ├── sigwaitinfo.c │ ├── sigwinch-nt.c │ ├── sleep.c │ ├── splice.c │ ├── stat.c │ ├── stat2cosmo.c │ ├── state.internal.h │ ├── statfs-nt.c │ ├── statfs.c │ ├── statfs2cosmo.c │ ├── statfs2statvfs.c │ ├── statvfs.c │ ├── struct │ │ ├── aarch64.internal.h │ │ ├── bpf.internal.h │ │ ├── cpuset.h │ │ ├── dirent.h │ │ ├── fd.internal.h │ │ ├── filter.internal.h │ │ ├── flock.h │ │ ├── flock.internal.h │ │ ├── framebuffercolormap.h │ │ ├── framebufferfixedscreeninfo.h │ │ ├── framebuffervirtualscreeninfo.h │ │ ├── fsid.h │ │ ├── iovec.h │ │ ├── iovec.internal.h │ │ ├── itimerval.h │ │ ├── itimerval.internal.h │ │ ├── metasigaltstack.h │ │ ├── metastat.internal.h │ │ ├── metatermios.internal.h │ │ ├── rlimit.h │ │ ├── rlimit.internal.h │ │ ├── rusage.h │ │ ├── rusage.internal.h │ │ ├── sched_param.h │ │ ├── sched_param.internal.h │ │ ├── seccomp.internal.h │ │ ├── sigaction.h │ │ ├── sigaction.internal.h │ │ ├── sigaltstack.h │ │ ├── sigaltstack.internal.h │ │ ├── siginfo-freebsd.internal.h │ │ ├── siginfo-meta.internal.h │ │ ├── siginfo-netbsd.internal.h │ │ ├── siginfo-openbsd.internal.h │ │ ├── siginfo-xnu.internal.h │ │ ├── siginfo.h │ │ ├── siginfo.internal.h │ │ ├── sigset.h │ │ ├── sigset.internal.h │ │ ├── sigval.h │ │ ├── sigval.internal.h │ │ ├── stat.h │ │ ├── stat.internal.h │ │ ├── stat.macros.h │ │ ├── statfs-freebsd.internal.h │ │ ├── statfs-linux.internal.h │ │ ├── statfs-meta.internal.h │ │ ├── statfs-netbsd.internal.h │ │ ├── statfs-openbsd.internal.h │ │ ├── statfs-xnu.internal.h │ │ ├── statfs.h │ │ ├── statfs.internal.h │ │ ├── statvfs.h │ │ ├── sysinfo.h │ │ ├── sysinfo.internal.h │ │ ├── termios.h │ │ ├── timespec.h │ │ ├── timespec.internal.h │ │ ├── timeval.h │ │ ├── timeval.internal.h │ │ ├── tms.h │ │ ├── ucontext-freebsd.internal.h │ │ ├── ucontext-netbsd.internal.h │ │ ├── ucontext-openbsd.internal.h │ │ ├── ucontext.internal.h │ │ ├── user_regs_struct.h │ │ ├── utsname-linux.internal.h │ │ ├── utsname.h │ │ ├── winsize.h │ │ └── winsize.internal.h │ ├── swapcontext.S │ ├── symlink.c │ ├── symlinkat-nt.c │ ├── symlinkat.c │ ├── sync-nt.c │ ├── sync.c │ ├── sync_file_range.c │ ├── sys_ptrace.c │ ├── syscall-nt.internal.h │ ├── syscall-sysv.internal.h │ ├── syscall_support-nt.internal.h │ ├── syscall_support-sysv.internal.h │ ├── sysinfo-nt.c │ ├── sysinfo.c │ ├── sysparam.h │ ├── tailcontext.S │ ├── tcdrain.c │ ├── tcflow.c │ ├── tcflush.c │ ├── tcgetattr-nt.c │ ├── tcgetattr.c │ ├── tcgetpgrp.c │ ├── tcgetsid.c │ ├── tcgetwinsize-nt.c │ ├── tcgetwinsize.c │ ├── tcsendbreak.c │ ├── tcsetattr-nt.c │ ├── tcsetattr.c │ ├── tcsetpgrp.c │ ├── tcsetwinsize-nt.c │ ├── tcsetwinsize.c │ ├── termios.h │ ├── termios.internal.h │ ├── termios2host.c │ ├── tgkill.c │ ├── time.c │ ├── timespec_add.c │ ├── timespec_cmp.c │ ├── timespec_frommicros.c │ ├── timespec_frommillis.c │ ├── timespec_fromnanos.c │ ├── timespec_get.c │ ├── timespec_getres.c │ ├── timespec_mono.c │ ├── timespec_real.c │ ├── timespec_sleep.c │ ├── timespec_sleep_until.c │ ├── timespec_sub.c │ ├── timespec_subz.c │ ├── timespec_tomicros.c │ ├── timespec_tomillis.c │ ├── timespec_tonanos.c │ ├── timespec_totimeval.c │ ├── timeval_add.c │ ├── timeval_cmp.c │ ├── timeval_frommicros.c │ ├── timeval_frommillis.c │ ├── timeval_real.c │ ├── timeval_sub.c │ ├── timeval_subz.c │ ├── timeval_tomicros.c │ ├── timeval_tomillis.c │ ├── timeval_totimespec.c │ ├── tinyprint.c │ ├── tkill.c │ ├── tmpfd.c │ ├── touch.c │ ├── truncate-nt.c │ ├── truncate.c │ ├── ttydefaults.h │ ├── ttyname.c │ ├── ttyname_r.c │ ├── typedef │ │ └── u.h │ ├── ucontext.c │ ├── ucontext.h │ ├── umask.c │ ├── uname.c │ ├── unlink.c │ ├── unlinkat-nt.c │ ├── unlinkat.c │ ├── unlockpt.c │ ├── unmount.c │ ├── unveil.c │ ├── usleep.c │ ├── utime.c │ ├── utimens.c │ ├── utimensat-nt.c │ ├── utimensat-sysv.c │ ├── utimensat-xnu.c │ ├── utimensat.c │ ├── utimes.c │ ├── vdsofunc.greg.c │ ├── verynice.c │ ├── virtualmax.S │ ├── virtualmax2.c │ ├── vmsplice.c │ ├── wait.c │ ├── wait3.c │ ├── wait4-nt.c │ ├── wait4-sysv.c │ ├── wait4.c │ ├── wait4.h │ ├── waitpid.c │ ├── weirdtypes.h │ ├── wincrash.c │ ├── wincrash.internal.h │ ├── wincrash_init.S │ ├── wincrashearly.c │ ├── winsockerr.c │ ├── write-nt.c │ ├── write.c │ ├── writev-metal.c │ ├── writev-nt.c │ ├── writev-serial.c │ ├── writev.c │ ├── writevuninterruptible.c │ └── xattr.h ├── complex.h ├── crt │ ├── crt.S │ └── crt.mk ├── dce.h ├── disclaimer.inc ├── dns │ ├── comparednsnames.c │ ├── consts.h │ ├── dns.h │ ├── dns.mk │ ├── dns.png │ ├── dnsheader.c │ ├── dnsheader.h │ ├── dnsquestion.h │ ├── ent.h │ ├── freeaddrinfo.c │ ├── gai_strerror.c │ ├── getaddrinfo.c │ ├── gethostbyaddr.c │ ├── gethostbyname.c │ ├── gethoststxt.c │ ├── getnameinfo.c │ ├── getntnameservers.c │ ├── getntprotocolstxtpath.c │ ├── getntservicestxtpath.c │ ├── getprotobyname.c │ ├── getprotobynumber.c │ ├── getresolvconf.c │ ├── getservbyname.c │ ├── getservbyport.c │ ├── h_errno.c │ ├── herror.c │ ├── hostent.c │ ├── hoststxt.h │ ├── hstrerror.c │ ├── lookupprotobyname.c │ ├── lookupprotobynumber.c │ ├── lookupservicesbyname.c │ ├── lookupservicesbyport.c │ ├── netent.c │ ├── newaddrinfo.c │ ├── parsehoststxt.c │ ├── parseresolvconf.c │ ├── pascalifydnsname.c │ ├── protoent.c │ ├── prototxt.h │ ├── resolvconf.h │ ├── resolvedns.c │ ├── resolvednsreverse.c │ ├── resolvehostsreverse.c │ ├── resolvehoststxt.c │ ├── rfc0226.txt │ ├── rfc0247.txt │ ├── rfc1035.txt │ ├── serializednsquestion.c │ ├── servent.c │ └── servicestxt.h ├── dos.internal.h ├── elf │ ├── def.h │ ├── elf.h │ ├── elf.mk │ ├── findelfsectionbyname.c │ ├── getelfprogramheaderaddress.c │ ├── getelfsectionaddress.c │ ├── getelfsectionheaderaddress.c │ ├── getelfsectionname.c │ ├── getelfsectionnamestringtable.c │ ├── getelfstring.c │ ├── getelfstringtable.c │ ├── getelfsymbols.c │ ├── getelfsymboltable.c │ ├── iself64binary.c │ ├── iselfsymbolcontent.c │ ├── pf2prot.internal.h │ ├── scalar.h │ ├── struct │ │ ├── auxv.h │ │ ├── chdr.h │ │ ├── dyn.h │ │ ├── ehdr.h │ │ ├── lib.h │ │ ├── move.h │ │ ├── nhdr.h │ │ ├── phdr.h │ │ ├── rel.h │ │ ├── rela.h │ │ ├── shdr.h │ │ ├── sym.h │ │ ├── syminfo.h │ │ ├── verdaux.h │ │ ├── verdef.h │ │ ├── vernaux.h │ │ └── verneed.h │ └── tinyelf.internal.h ├── empty.s ├── errno.h ├── fmt │ ├── __xpg_strerror_r.c │ ├── atoi.c │ ├── atol.c │ ├── basename.c │ ├── bing.c │ ├── bing.internal.h │ ├── conv.h │ ├── dirname.c │ ├── div.c │ ├── divmod10.internal.h │ ├── fmt.h │ ├── fmt.mk │ ├── formatbinary64.c │ ├── formatflex64.c │ ├── formathex64.c │ ├── formatint64thousands.c │ ├── formatoctal32.c │ ├── formatoctal64.c │ ├── itoa.h │ ├── itoa128radix10.greg.c │ ├── itoa64.c │ ├── itoa64fixed16.greg.c │ ├── itoa64radix16.greg.c │ ├── itoa64radix8.c │ ├── ldiv.c │ ├── leb128.h │ ├── libgen.h │ ├── magnumstrs.internal.h │ ├── sizetol.c │ ├── sleb128.c │ ├── sleb64.c │ ├── stripext.c │ ├── stripexts.c │ ├── strtoi128.c │ ├── strtol.c │ ├── strtol.internal.h │ ├── strtonum.c │ ├── strtou128.c │ ├── strtoul.c │ ├── uleb128.c │ ├── uleb64.c │ ├── unbing.c │ ├── unsleb128.c │ ├── unuleb64.c │ ├── unzleb64.c │ ├── wcstoi128.c │ ├── wcstol.c │ ├── wcstou128.c │ ├── wcstoul.c │ ├── zleb128.c │ └── zleb64.c ├── imag.internal.h ├── integral │ ├── c.inc │ ├── cxx.inc │ ├── cxxtypescompat.inc │ ├── llp64.inc │ ├── lp64.inc │ ├── lp64arg.inc │ └── normalize.inc ├── intrin │ ├── __cxa_pure_virtual.c │ ├── __pid_exec.S │ ├── _getauxval.c │ ├── _getauxval.internal.h │ ├── _getenv.c │ ├── _getenv.internal.h │ ├── aarch64 │ │ ├── asmdefs.internal.h │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memrchr.S │ │ ├── memset.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strchrnul.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── strnlen.S │ │ └── strrchr.S │ ├── abort.c │ ├── abs.c │ ├── arememoryintervalsok.c │ ├── asan.c │ ├── asan.internal.h │ ├── asancodes.h │ ├── asaninit.S │ ├── asanthunk.c │ ├── ashlti3.c │ ├── asmflag.h │ ├── assertdisable.c │ ├── assertfail.c │ ├── atexit.c │ ├── atomic.h │ ├── bcopy.c │ ├── bitreverse.c │ ├── bitreverse32.c │ ├── bitreverse64.c │ ├── bits.h │ ├── bsf.c │ ├── bsf.h │ ├── bsr.c │ ├── bsr.h │ ├── bsr128.S │ ├── bswap.c │ ├── bswap.h │ ├── bt.c │ ├── bzero.c │ ├── clearenv.c │ ├── closehandle.c │ ├── cmpxchg.h │ ├── comparetf2.c │ ├── countbits.c │ ├── cp.c │ ├── createdirectory.c │ ├── createfile.c │ ├── createfilemapping.c │ ├── createfilemappingnuma.c │ ├── createnamedpipe.c │ ├── createpipe.c │ ├── createprocess.c │ ├── createsymboliclink.c │ ├── createthread.c │ ├── cxaatexit.c │ ├── cxaatexit.internal.h │ ├── cxablocks.c │ ├── cxafinalize.c │ ├── cxalock.c │ ├── deletefile.c │ ├── describearchprctlcode.c │ ├── describebacktrace.c │ ├── describebacktrace.internal.h │ ├── describecapability.c │ ├── describeclockname.c │ ├── describedirfd.c │ ├── describednotify.c │ ├── describeerrnoresult.c │ ├── describefcntlcmd.c │ ├── describeflags.c │ ├── describeflags.internal.h │ ├── describeflock.c │ ├── describeflocktype.c │ ├── describeframe.c │ ├── describefutexop.c │ ├── describegidlist.c │ ├── describehow.c │ ├── describeinoutint64.c │ ├── describeiovec.c │ ├── describeiovnt.c │ ├── describeitimer.c │ ├── describeitimerval.c │ ├── describemagnums.c │ ├── describemapflags.c │ ├── describemapping.c │ ├── describentconsolemodeinputflags.c │ ├── describentconsolemodeoutputflags.c │ ├── describentcreationdisposition.c │ ├── describentfileaccessflags.c │ ├── describentfileflagattr.c │ ├── describentfilemapflags.c │ ├── describentfileshareflags.c │ ├── describentfiletypeflags.c │ ├── describentlockfileflags.c │ ├── describentmovfileinpflags.c │ ├── describentoverlapped.c │ ├── describentoverlapped.internal.h │ ├── describentpageflags.c │ ├── describentpipemodeflags.c │ ├── describentpipeopenflags.c │ ├── describentprocaccessflags.c │ ├── describentsecurityattributes.c │ ├── describentstartflags.c │ ├── describentsymlinkflags.c │ ├── describeopenflags.c │ ├── describepersonalityflags.c │ ├── describepollfds.c │ ├── describepollflags.c │ ├── describeprctloperation.c │ ├── describeprotflags.c │ ├── describeptrace.c │ ├── describeptraceevent.c │ ├── describeremapflags.c │ ├── describerlimit.c │ ├── describerlimitname.c │ ├── describeschedparam.c │ ├── describeschedpolicy.c │ ├── describeseccompoperation.c │ ├── describesicode.c │ ├── describesigaction.c │ ├── describesigaltstack.c │ ├── describesiginfo.c │ ├── describesigset.c │ ├── describesleepflags.c │ ├── describesocketfamily.c │ ├── describesocketprotocol.c │ ├── describesockettype.c │ ├── describesocklevel.c │ ├── describesockoptname.c │ ├── describestat.c │ ├── describestatfs.c │ ├── describestdiostate.c │ ├── describestringlist.c │ ├── describetimespec.c │ ├── describetimeval.c │ ├── describewhence.c │ ├── describewhichprio.c │ ├── describewinsize.c │ ├── deviceiocontrol.c │ ├── directmap-metal.c │ ├── directmap-nt.c │ ├── directmap.c │ ├── directmap.internal.h │ ├── divmodti4.c │ ├── divti3.c │ ├── dll.c │ ├── dll.h │ ├── dos2errno.c │ ├── dos2errno.internal.h │ ├── exit.c │ ├── exit1.greg.c │ ├── exitr.c │ ├── extend.c │ ├── extend.internal.h │ ├── fds_lock.c │ ├── fds_lock_obj.c │ ├── feholdexcept.c │ ├── fenv.S │ ├── feupdateenv.c │ ├── ffs.c │ ├── findclose.c │ ├── findfirstfile.c │ ├── findmemoryinterval.c │ ├── findnextfile.c │ ├── flushers.c │ ├── flushfilebuffers.c │ ├── flushviewoffile.c │ ├── fmax.c │ ├── fmaxf.c │ ├── fmaxl.c │ ├── formatint32.c │ ├── formatint64.c │ ├── ftrace.c │ ├── ftrace_enabled.c │ ├── ftrapv.c │ ├── futex.S │ ├── g_fds.c │ ├── g_fds_init.S │ ├── gcov.S │ ├── generateconsolectrlevent.c │ ├── getauxval.c │ ├── getcpuidbrand.S │ ├── getcpuidemulator.c │ ├── getcpuidos.c │ ├── getenv.c │ ├── getexitcodeprocess.c │ ├── getfileattributes.c │ ├── getpid.c │ ├── gettid.c │ ├── hilbert.c │ ├── hilbert.h │ ├── interrupts.S │ ├── intrin.mk │ ├── isatleastwindows10.greg.c │ ├── iscygwin.c │ ├── isdebuggerpresent.c │ ├── isgenuineblink.c │ ├── isloopbackip.c │ ├── isprivateip.c │ ├── ispublicip.c │ ├── isrunningundermake.c │ ├── isworker.c │ ├── iswsl.c │ ├── kclocknames.S │ ├── kdos2errno.S │ ├── kerrnodocs.S │ ├── kerrnonames.S │ ├── kfcntlcmds.S │ ├── kipoptnames.S │ ├── kmalloc.c │ ├── kmalloc.h │ ├── kntisinheritable.greg.c │ ├── kopenflags.S │ ├── kpollnames.S │ ├── kprintf.greg.c │ ├── kprintf.h │ ├── krlimitnames.S │ ├── ksignalnames.S │ ├── ksockoptnames.S │ ├── kstarttsc.c │ ├── ktcpoptnames.S │ ├── leaky.S │ ├── leaky.internal.h │ ├── lengthuint64.c │ ├── likely.h │ ├── lockfileex.c │ ├── lshrti3.c │ ├── macros.h │ ├── mapviewoffileex.c │ ├── mapviewoffileexnuma.c │ ├── memchr.c │ ├── memcmp.c │ ├── memmove.c │ ├── mempcpy.c │ ├── memrchr.c │ ├── memset.c │ ├── memtrack.greg.c │ ├── mman.greg.c │ ├── mmi.c │ ├── mmi.init.S │ ├── mmi_lock.c │ ├── morton.c │ ├── morton.h │ ├── movefileex.c │ ├── mulodi4.c │ ├── mulosi4.c │ ├── muloti4.c │ ├── multf3.c │ ├── mulvti3.c │ ├── newbie.h │ ├── nocolor.c │ ├── nomultics.c │ ├── nomultics.internal.h │ ├── nopl.internal.h │ ├── ntconsolemode.c │ ├── ntgetversion.c │ ├── oldstack.c │ ├── onarithmeticoverflow.c │ ├── openprocess.c │ ├── packsswb.c │ ├── packsswb.h │ ├── packuswb.c │ ├── packuswb.h │ ├── paddw.c │ ├── paddw.h │ ├── palignr.c │ ├── palignr.h │ ├── palignrs.S │ ├── pandn.c │ ├── pandn.h │ ├── pcmpgtb.c │ ├── pcmpgtb.h │ ├── pcmpgtw.c │ ├── pcmpgtw.h │ ├── pmaddubsw.c │ ├── pmaddubsw.h │ ├── pmovmskb.c │ ├── pmovmskb.h │ ├── pmulhrsw.c │ ├── pmulhrsw.h │ ├── popcnt.c │ ├── popcnt.h │ ├── printmemoryintervals.c │ ├── printsystemmappings.greg.c │ ├── promises.c │ ├── promises.internal.h │ ├── prot2nt.greg.c │ ├── psraw.c │ ├── psraw.h │ ├── psrawv.c │ ├── pthread_atfork.c │ ├── pthread_cleanup_pop.c │ ├── pthread_cleanup_push.c │ ├── pthread_getspecific.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_keys.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_once.c │ ├── pthread_setcancelstate.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_yield.c │ ├── punpckhbw.c │ ├── punpckhbw.h │ ├── punpckhwd.c │ ├── punpckhwd.h │ ├── punpcklbw.c │ ├── punpcklbw.h │ ├── punpcklwd.c │ ├── punpcklwd.h │ ├── pushpop.internal.h │ ├── putenv.c │ ├── quick_exit.c │ ├── rand64.c │ ├── removedirectory.c │ ├── reopenfile.c │ ├── repmovsb.h │ ├── repstosb.h │ ├── restorewintty.c │ ├── rounddown2pow.c │ ├── roundup2log.c │ ├── roundup2pow.c │ ├── safemacros.internal.h │ ├── scalblnl.c │ ├── scalbn.c │ ├── scalbnf.c │ ├── scalbnl.c │ ├── sched_yield.S │ ├── segmentation.h │ ├── setcurrentdirectory.c │ ├── setenv.c │ ├── setjmp.internal.h │ ├── sigaddset.c │ ├── sigandset.c │ ├── sigcountset.c │ ├── sigdelset.c │ ├── sigemptyset.c │ ├── sigfillset.c │ ├── sigisemptyset.c │ ├── sigismember.c │ ├── sigisprecious.c │ ├── sigisprecious.inc │ ├── sigorset.c │ ├── sizefmt.c │ ├── stackchkfail.c │ ├── stackchkfaillocal.c │ ├── stackchkguard.S │ ├── stpcpy.c │ ├── strace.internal.h │ ├── strace_enabled.c │ ├── stracef.greg.c │ ├── strchr.c │ ├── strchrnul.c │ ├── strcmp.c │ ├── strcpy.c │ ├── strerror.c │ ├── strerror_r.c │ ├── strerror_wr.greg.c │ ├── strlen.c │ ├── strncmp.c │ ├── strnlen.c │ ├── strrchr.c │ ├── strsignal.c │ ├── strsignal_r.c │ ├── sys_gettid.greg.c │ ├── sys_umtx_timedwait_uint.c │ ├── terminateprocess.c │ ├── tlsisrequired.c │ ├── tpenc.c │ ├── typeinfo.S │ ├── ubsan.c │ ├── udivmodti4.c │ ├── udivti3.c │ ├── unlockfileex.c │ ├── unmapviewoffile.c │ ├── unmorton.c │ ├── unsetenv.c │ ├── virtualprotect.c │ ├── waitformultipleobjects.c │ ├── waitforsingleobject.c │ ├── wantcrashreports.c │ ├── weaken.h │ ├── winerr.greg.c │ ├── wsarecv.c │ ├── wsarecvfrom.c │ ├── wsawaitformultipleevents.c │ ├── x86gradenames.c │ ├── x86marchnames.c │ └── xchg.internal.h ├── inttypes.h ├── iso646.internal.h ├── isystem │ ├── algorithm │ ├── alloca.h │ ├── ammintrin.h │ ├── any │ ├── ar.h │ ├── arpa │ │ └── inet.h │ ├── array │ ├── assert.h │ ├── atomic │ ├── bit │ ├── bitset │ ├── byteswap.h │ ├── cassert │ ├── ccomplex │ ├── cctype │ ├── cerrno │ ├── cfenv │ ├── cfloat │ ├── charconv │ ├── chrono │ ├── cinttypes │ ├── ciso646 │ ├── climits │ ├── clocale │ ├── clzerointrin.h │ ├── cmath │ ├── codecvt │ ├── compare │ ├── complex │ ├── complex.h │ ├── condition_variable │ ├── cosmo.h │ ├── cpio.h │ ├── cpuid.h │ ├── crypt.h │ ├── csetjmp │ ├── csignal │ ├── cstdarg │ ├── cstdbool │ ├── cstddef │ ├── cstdint │ ├── cstdio │ ├── cstdlib │ ├── cstring │ ├── ctgmath │ ├── ctime │ ├── ctype.h │ ├── cwchar │ ├── cwctype │ ├── deque │ ├── dirent.h │ ├── dlfcn.h │ ├── elf.h │ ├── emmintrin.h │ ├── endian.h │ ├── err.h │ ├── errno.h │ ├── exception │ ├── execution │ ├── fcntl.h │ ├── features.h │ ├── fenv.h │ ├── filesystem │ ├── float.h │ ├── fnmatch.h │ ├── forward_list │ ├── fstream │ ├── ftw.h │ ├── functional │ ├── getopt.h │ ├── glob.h │ ├── grp.h │ ├── iconv.h │ ├── immintrin.h │ ├── initializer_list │ ├── inttypes.h │ ├── iomanip │ ├── ios │ ├── iosfwd │ ├── iostream │ ├── iso646.h │ ├── istream │ ├── iterator │ ├── langinfo.h │ ├── libgen.h │ ├── limits │ ├── limits.h │ ├── linux │ │ ├── futex.h │ │ ├── limits.h │ │ ├── types.h │ │ └── xattr.h │ ├── list │ ├── locale │ ├── locale.h │ ├── malloc.h │ ├── map │ ├── math.h │ ├── memory │ ├── memory.h │ ├── mm3dnow.h │ ├── mm_malloc.h │ ├── mmintrin.h │ ├── mntent.h │ ├── monetary.h │ ├── mutex │ ├── mwaitxintrin.h │ ├── net │ │ ├── ethernet.h │ │ ├── if.h │ │ └── if_arp.h │ ├── netdb.h │ ├── netinet │ │ ├── in.h │ │ ├── ip.h │ │ ├── tcp.h │ │ └── udp.h │ ├── new │ ├── nl_types.h │ ├── nmmintrin.h │ ├── nsync.h │ ├── nsync_atomic.h │ ├── nsync_counter.h │ ├── nsync_cv.h │ ├── nsync_debug.h │ ├── nsync_mu.h │ ├── nsync_mu_wait.h │ ├── nsync_note.h │ ├── nsync_once.h │ ├── nsync_time.h │ ├── nsync_waiter.h │ ├── numeric │ ├── optional │ ├── ostream │ ├── paths.h │ ├── pmmintrin.h │ ├── poll.h │ ├── popcntintrin.h │ ├── pthread.h │ ├── pwd.h │ ├── queue │ ├── random │ ├── ratio │ ├── regex │ ├── regex.h │ ├── sched.h │ ├── scoped_allocator │ ├── semaphore.h │ ├── set │ ├── setjmp.h │ ├── sgxintrin.h │ ├── signal.h │ ├── smmintrin.h │ ├── span │ ├── spawn.h │ ├── sstream │ ├── stack │ ├── stdalign.h │ ├── stdarg.h │ ├── stdatomic.h │ ├── stdbool.h │ ├── stdc-predef.h │ ├── stdckdint.h │ ├── stddef.h │ ├── stdexcept │ ├── stdint.h │ ├── stdio.h │ ├── stdio_ext.h │ ├── stdlib.h │ ├── stdnoreturn.h │ ├── streambuf │ ├── string │ ├── string.h │ ├── string_view │ ├── strings.h │ ├── strstream │ ├── sys │ │ ├── auxv.h │ │ ├── dir.h │ │ ├── errno.h │ │ ├── event.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── mman.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── prctl.h │ │ ├── ptrace.h │ │ ├── random.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── sendfile.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ ├── syscall.h │ │ ├── sysinfo.h │ │ ├── sysmacros.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── times.h │ │ ├── ttydefaults.h │ │ ├── types.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── utsname.h │ │ ├── vfs.h │ │ └── wait.h │ ├── sysexits.h │ ├── syslog.h │ ├── system_error │ ├── termios.h │ ├── tgmath.h │ ├── thread │ ├── time.h │ ├── tmmintrin.h │ ├── tuple │ ├── type_traits │ ├── typeindex │ ├── typeinfo │ ├── uchar.h │ ├── uio.h │ ├── unistd.h │ ├── unordered_map │ ├── unordered_set │ ├── utility │ ├── utime.h │ ├── utmp.h │ ├── utmpx.h │ ├── valarray │ ├── variant │ ├── vector │ ├── version │ ├── wait.h │ ├── wchar.h │ ├── wctype.h │ ├── windows.h │ ├── winternl.h │ ├── wmmintrin.h │ ├── x86intrin.h │ └── xmmintrin.h ├── libc.mk ├── limits.h ├── literal.h ├── log │ ├── addr2linepath.c │ ├── appendresourcereport.c │ ├── appendresourcereport.internal.h │ ├── attachdebugger.c │ ├── backtrace.internal.h │ ├── backtrace2.c │ ├── backtrace3.c │ ├── bsd.h │ ├── check.h │ ├── checkaligned.c │ ├── checkfail.c │ ├── checkfail_ndebug.c │ ├── color.internal.h │ ├── commandvenv.c │ ├── countbranch.h │ ├── countbranch_data.S │ ├── countbranch_report.c │ ├── countexpr.h │ ├── countexpr_data.S │ ├── countexpr_report.c │ ├── cxaprintexits.c │ ├── die.c │ ├── err.c │ ├── flogf.c │ ├── gdb.h │ ├── gdbexec.c │ ├── gdbpath.c │ ├── gdbsync.c │ ├── getcallername.c │ ├── getcallername.internal.h │ ├── getsicodename.c │ ├── internal.h │ ├── leaks.c │ ├── libfatal.internal.h │ ├── log.h │ ├── log.mk │ ├── log_exit.c │ ├── log_get_errno.c │ ├── log_retrace.c │ ├── log_set_errno.c │ ├── log_untrace.c │ ├── logerrno.c │ ├── logfile.c │ ├── logkprintftofile.c │ ├── loglevel.c │ ├── meminfo.c │ ├── memlog.c │ ├── memsummary.c │ ├── oncrash_amd64.c │ ├── oncrash_arm64.c │ ├── rop.internal.h │ ├── showcrashreports.c │ ├── showcrashreportsearly.S │ ├── startfatal.c │ ├── traceme.c │ ├── traceme.h │ ├── vflogf.c │ ├── watch-hook.S │ └── watch.c ├── mach.internal.h ├── macho.internal.h ├── macros.internal.h ├── math.h ├── mem │ ├── _gc_free.c │ ├── alg.h │ ├── aligned_alloc.c │ ├── alloca.h │ ├── arena.c │ ├── arena.h │ ├── arraylist.internal.h │ ├── arraylist2.internal.h │ ├── bisect.internal.h │ ├── bisectcarleft.internal.h │ ├── bsearch.c │ ├── bsearch_r.c │ ├── bulk_free.c │ ├── calloc.c │ ├── critbit0.h │ ├── critbit0_allprefixed.c │ ├── critbit0_clear.c │ ├── critbit0_contains.c │ ├── critbit0_delete.c │ ├── critbit0_emplace.c │ ├── critbit0_get.c │ ├── critbit0_insert.c │ ├── free.c │ ├── gc.c │ ├── gc.h │ ├── gc.internal.h │ ├── get_current_dir_name.c │ ├── heapsort.c │ ├── hook.internal.h │ ├── hook_realloc_in_place.c │ ├── internal.h │ ├── mallinfo.c │ ├── malloc.c │ ├── malloc_inspect_all.c │ ├── malloc_trim.c │ ├── malloc_usable_size.c │ ├── mallopt.c │ ├── mem.h │ ├── mem.mk │ ├── memalign.c │ ├── mergesort.c │ ├── posix_memalign.c │ ├── pvalloc.c │ ├── qsort.c │ ├── radix_sort_int32.c │ ├── radix_sort_int64.c │ ├── realloc.c │ ├── reallocarray.c │ ├── reverse.internal.h │ ├── shuffle.internal.h │ ├── sortedints.c │ ├── sortedints.internal.h │ ├── strdup.c │ ├── strndup.c │ ├── valloc.c │ └── wcsdup.c ├── nexgen32e │ ├── argc.S │ ├── argc2.c │ ├── argv.S │ ├── argv2.c │ ├── auxv.S │ ├── auxv2.c │ ├── bench.h │ ├── blink_linux_aarch64.S │ ├── blink_xnu_aarch64.S │ ├── cachesize.h │ ├── checkstackalign.S │ ├── cpuid4.internal.h │ ├── crc32.h │ ├── crc32init.c │ ├── djbsort-avx2.S │ ├── environ.S │ ├── environ2.c │ ├── envp.S │ ├── envp2.c │ ├── ffs.h │ ├── gc.S │ ├── gc.internal.h │ ├── gclongjmp.S │ ├── hascharacter.internal.h │ ├── identity.S │ ├── kbase36.c │ ├── kcp437.S │ ├── kcpuids.S │ ├── kcpuids.h │ ├── khalfcache3.S │ ├── kompressor.h │ ├── ksha256.S │ ├── ksha512.S │ ├── ktens.c │ ├── ktensindex.S │ ├── ktolower.c │ ├── ktoupper.c │ ├── longerjmp.S │ ├── longjmp.S │ ├── lz4.h │ ├── macros.h │ ├── macros.internal.inc │ ├── mcount.S │ ├── memjmpinit.S │ ├── missingno.S │ ├── msr.internal.h │ ├── mul4x4adx.S │ ├── mul6x6adx.S │ ├── mul8x8adx.S │ ├── nexgen32e.h │ ├── nexgen32e.mk │ ├── nt2sysv.S │ ├── nt2sysv.h │ ├── pcmpstr.inc │ ├── pid.c │ ├── program_invocation_name.S │ ├── program_invocation_name2.c │ ├── rdtsc.h │ ├── rdtscp.h │ ├── rldecode.S │ ├── runlevel.c │ ├── setjmp.S │ ├── setlongerjmp.S │ ├── sha.h │ ├── sha1.S │ ├── sha1ni.S │ ├── sha256.S │ ├── sha256ni.S │ ├── sha512.S │ ├── siglongjmp.S │ ├── stackframe.h │ ├── threaded.c │ ├── tinydivsi.greg.S │ ├── tinywcslen.greg.S │ ├── tinywcsnlen.greg.S │ ├── trampoline.h │ ├── uart.internal.h │ ├── vendor.internal.h │ ├── vidya.internal.h │ ├── x86compiler.h │ ├── x86feature.h │ ├── x86info.h │ ├── x87conf.inc │ ├── xmm.S │ └── zip.S ├── notice.inc ├── notice.internal.h ├── nt │ ├── API-MS-Win-Core-Synch-l1-2-0 │ │ ├── WaitOnAddress.S │ │ ├── WakeByAddressAll.S │ │ └── WakeByAddressSingle.S │ ├── MsWSock │ │ ├── AcceptEx.S │ │ ├── DisconnectEx.S │ │ ├── GetAcceptExSockaddrs.S │ │ ├── TransmitFile.S │ │ └── WSARecvEx.S │ ├── PowrProf │ │ └── SetSuspendState.S │ ├── accounting.h │ ├── advapi32 │ │ ├── AbortSystemShutdownW.S │ │ ├── AccessCheck.S │ │ ├── AccessCheckAndAuditAlarmW.S │ │ ├── AccessCheckByType.S │ │ ├── AccessCheckByTypeAndAuditAlarmW.S │ │ ├── AccessCheckByTypeResultList.S │ │ ├── AccessCheckByTypeResultListAndAuditAlarmByHandleW.S │ │ ├── AccessCheckByTypeResultListAndAuditAlarmW.S │ │ ├── AddAccessAllowedAce.S │ │ ├── AddAccessAllowedAceEx.S │ │ ├── AddAccessAllowedObjectAce.S │ │ ├── AddAccessDeniedAce.S │ │ ├── AddAccessDeniedAceEx.S │ │ ├── AddAccessDeniedObjectAce.S │ │ ├── AddAce.S │ │ ├── AddAuditAccessAce.S │ │ ├── AddAuditAccessAceEx.S │ │ ├── AddAuditAccessObjectAce.S │ │ ├── AddConditionalAce.S │ │ ├── AddMandatoryAce.S │ │ ├── AddUsersToEncryptedFile.S │ │ ├── AdjustTokenGroups.S │ │ ├── AdjustTokenPrivileges.S │ │ ├── AllocateAndInitializeSid.S │ │ ├── AllocateLocallyUniqueId.S │ │ ├── AreAllAccessesGranted.S │ │ ├── AreAnyAccessesGranted.S │ │ ├── AuditComputeEffectivePolicyBySid.S │ │ ├── AuditComputeEffectivePolicyByToken.S │ │ ├── AuditEnumerateCategories.S │ │ ├── AuditEnumeratePerUserPolicy.S │ │ ├── AuditEnumerateSubCategories.S │ │ ├── AuditFree.S │ │ ├── AuditLookupCategoryGuidFromCategoryId.S │ │ ├── AuditLookupCategoryIdFromCategoryGuid.S │ │ ├── AuditLookupCategoryNameW.S │ │ ├── AuditLookupSubCategoryNameW.S │ │ ├── AuditQueryPerUserPolicy.S │ │ ├── AuditQuerySecurity.S │ │ ├── AuditQuerySystemPolicy.S │ │ ├── AuditSetPerUserPolicy.S │ │ ├── AuditSetSecurity.S │ │ ├── AuditSetSystemPolicy.S │ │ ├── BackupEventLogW.S │ │ ├── BuildExplicitAccessWithNameW.S │ │ ├── BuildImpersonateExplicitAccessWithNameW.S │ │ ├── BuildImpersonateTrusteeW.S │ │ ├── BuildSecurityDescriptorW.S │ │ ├── BuildTrusteeWithNameW.S │ │ ├── BuildTrusteeWithObjectsAndNameW.S │ │ ├── BuildTrusteeWithObjectsAndSidW.S │ │ ├── BuildTrusteeWithSidW.S │ │ ├── ChangeServiceConfig2W.S │ │ ├── ChangeServiceConfigW.S │ │ ├── CheckTokenMembership.S │ │ ├── ClearEventLogW.S │ │ ├── CloseEncryptedFileRaw.S │ │ ├── CloseEventLog.S │ │ ├── CloseServiceHandle.S │ │ ├── CloseThreadWaitChainSession.S │ │ ├── CloseTrace.S │ │ ├── ControlService.S │ │ ├── ControlServiceExW.S │ │ ├── ControlTraceW.S │ │ ├── ConvertSecurityDescriptorToStringSecurityDescriptorW.S │ │ ├── ConvertSidToStringSidW.S │ │ ├── ConvertStringSDToSDDomainW.S │ │ ├── ConvertStringSecurityDescriptorToSecurityDescriptorW.S │ │ ├── ConvertStringSidToSidW.S │ │ ├── ConvertToAutoInheritPrivateObjectSecurity.S │ │ ├── CopySid.S │ │ ├── CreatePrivateObjectSecurity.S │ │ ├── CreatePrivateObjectSecurityEx.S │ │ ├── CreatePrivateObjectSecurityWithMultipleInheritance.S │ │ ├── CreateProcessAsUserW.S │ │ ├── CreateProcessWithLogonW.S │ │ ├── CreateProcessWithTokenW.S │ │ ├── CreateRestrictedToken.S │ │ ├── CreateServiceW.S │ │ ├── CreateTraceInstanceId.S │ │ ├── CreateWellKnownSid.S │ │ ├── CredDeleteW.S │ │ ├── CredEnumerateW.S │ │ ├── CredFindBestCredentialW.S │ │ ├── CredFree.S │ │ ├── CredGetSessionTypes.S │ │ ├── CredGetTargetInfoW.S │ │ ├── CredIsMarshaledCredentialW.S │ │ ├── CredIsProtectedW.S │ │ ├── CredMarshalCredentialW.S │ │ ├── CredProtectW.S │ │ ├── CredReadDomainCredentialsW.S │ │ ├── CredReadW.S │ │ ├── CredRenameW.S │ │ ├── CredUnmarshalCredentialW.S │ │ ├── CredUnprotectW.S │ │ ├── CredWriteDomainCredentialsW.S │ │ ├── CredWriteW.S │ │ ├── CryptAcquireContextW.S │ │ ├── CryptContextAddRef.S │ │ ├── CryptCreateHash.S │ │ ├── CryptDecrypt.S │ │ ├── CryptDeriveKey.S │ │ ├── CryptDestroyHash.S │ │ ├── CryptDestroyKey.S │ │ ├── CryptDuplicateHash.S │ │ ├── CryptDuplicateKey.S │ │ ├── CryptEncrypt.S │ │ ├── CryptEnumProviderTypesW.S │ │ ├── CryptEnumProvidersW.S │ │ ├── CryptExportKey.S │ │ ├── CryptGenKey.S │ │ ├── CryptGenRandom.S │ │ ├── CryptGetDefaultProviderW.S │ │ ├── CryptGetHashParam.S │ │ ├── CryptGetKeyParam.S │ │ ├── CryptGetLocalKeyLimits.S │ │ ├── CryptGetProvParam.S │ │ ├── CryptGetUserKey.S │ │ ├── CryptHashData.S │ │ ├── CryptHashSessionKey.S │ │ ├── CryptImportKey.S │ │ ├── CryptReleaseContext.S │ │ ├── CryptSetHashParam.S │ │ ├── CryptSetKeyParam.S │ │ ├── CryptSetProvParam.S │ │ ├── CryptSetProviderExW.S │ │ ├── CryptSetProviderW.S │ │ ├── CryptSignHashW.S │ │ ├── CryptVerifySignatureW.S │ │ ├── DecryptFileW.S │ │ ├── DeleteAce.S │ │ ├── DeleteService.S │ │ ├── DeregisterEventSource.S │ │ ├── DestroyPrivateObjectSecurity.S │ │ ├── DuplicateEncryptionInfoFile.S │ │ ├── DuplicateToken.S │ │ ├── DuplicateTokenEx.S │ │ ├── EnableTrace.S │ │ ├── EnableTraceEx.S │ │ ├── EnableTraceEx2.S │ │ ├── EncryptFileW.S │ │ ├── EncryptionDisable.S │ │ ├── EnumDependentServicesW.S │ │ ├── EnumServicesStatusExW.S │ │ ├── EnumServicesStatusW.S │ │ ├── EnumerateTraceGuids.S │ │ ├── EnumerateTraceGuidsEx.S │ │ ├── EqualDomainSid.S │ │ ├── EqualPrefixSid.S │ │ ├── EqualSid.S │ │ ├── EventAccessControl.S │ │ ├── EventAccessQuery.S │ │ ├── EventAccessRemove.S │ │ ├── EventActivityIdControl.S │ │ ├── EventEnabled.S │ │ ├── EventProviderEnabled.S │ │ ├── EventRegister.S │ │ ├── EventUnregister.S │ │ ├── EventWrite.S │ │ ├── EventWriteEx.S │ │ ├── EventWriteString.S │ │ ├── EventWriteTransfer.S │ │ ├── FileEncryptionStatusW.S │ │ ├── FindFirstFreeAce.S │ │ ├── FlushTraceW.S │ │ ├── FreeEncryptionCertificateHashList.S │ │ ├── FreeInheritedFromArray.S │ │ ├── FreeSid.S │ │ ├── GetAce.S │ │ ├── GetAclInformation.S │ │ ├── GetAuditedPermissionsFromAclW.S │ │ ├── GetCurrentHwProfileW.S │ │ ├── GetEffectiveRightsFromAclW.S │ │ ├── GetEventLogInformation.S │ │ ├── GetExplicitEntriesFromAclW.S │ │ ├── GetFileSecurityW.S │ │ ├── GetInheritanceSourceW.S │ │ ├── GetKernelObjectSecurity.S │ │ ├── GetLengthSid.S │ │ ├── GetLocalManagedApplications.S │ │ ├── GetManagedApplicationCategories.S │ │ ├── GetManagedApplications.S │ │ ├── GetMultipleTrusteeOperationW.S │ │ ├── GetMultipleTrusteeW.S │ │ ├── GetNamedSecurityInfoW.S │ │ ├── GetNumberOfEventLogRecords.S │ │ ├── GetOldestEventLogRecord.S │ │ ├── GetPrivateObjectSecurity.S │ │ ├── GetSecurityDescriptorControl.S │ │ ├── GetSecurityDescriptorDacl.S │ │ ├── GetSecurityDescriptorGroup.S │ │ ├── GetSecurityDescriptorLength.S │ │ ├── GetSecurityDescriptorOwner.S │ │ ├── GetSecurityDescriptorRMControl.S │ │ ├── GetSecurityDescriptorSacl.S │ │ ├── GetSecurityInfo.S │ │ ├── GetServiceDisplayNameW.S │ │ ├── GetServiceKeyNameW.S │ │ ├── GetSidIdentifierAuthority.S │ │ ├── GetSidLengthRequired.S │ │ ├── GetSidSubAuthority.S │ │ ├── GetSidSubAuthorityCount.S │ │ ├── GetThreadWaitChain.S │ │ ├── GetTokenInformation.S │ │ ├── GetTraceEnableFlags.S │ │ ├── GetTraceEnableLevel.S │ │ ├── GetTraceLoggerHandle.S │ │ ├── GetTrusteeFormW.S │ │ ├── GetTrusteeNameW.S │ │ ├── GetTrusteeTypeW.S │ │ ├── GetUserNameW.S │ │ ├── GetWindowsAccountDomainSid.S │ │ ├── ImpersonateAnonymousToken.S │ │ ├── ImpersonateLoggedOnUser.S │ │ ├── ImpersonateNamedPipeClient.S │ │ ├── ImpersonateSelf.S │ │ ├── InitializeAcl.S │ │ ├── InitializeSecurityDescriptor.S │ │ ├── InitializeSid.S │ │ ├── InitiateShutdownW.S │ │ ├── InitiateSystemShutdownExW.S │ │ ├── InitiateSystemShutdownW.S │ │ ├── InstallApplication.S │ │ ├── IsTextUnicode.S │ │ ├── IsTokenRestricted.S │ │ ├── IsValidAcl.S │ │ ├── IsValidSecurityDescriptor.S │ │ ├── IsValidSid.S │ │ ├── IsWellKnownSid.S │ │ ├── LockServiceDatabase.S │ │ ├── LogonUserExExW.S │ │ ├── LogonUserExW.S │ │ ├── LogonUserW.S │ │ ├── LookupAccountNameW.S │ │ ├── LookupAccountSidW.S │ │ ├── LookupPrivilegeDisplayNameW.S │ │ ├── LookupPrivilegeNameW.S │ │ ├── LookupPrivilegeValueW.S │ │ ├── LookupSecurityDescriptorPartsW.S │ │ ├── LsaAddAccountRights.S │ │ ├── LsaClose.S │ │ ├── LsaCreateTrustedDomain.S │ │ ├── LsaCreateTrustedDomainEx.S │ │ ├── LsaDeleteTrustedDomain.S │ │ ├── LsaEnumerateAccountRights.S │ │ ├── LsaEnumerateAccountsWithUserRight.S │ │ ├── LsaEnumerateTrustedDomains.S │ │ ├── LsaEnumerateTrustedDomainsEx.S │ │ ├── LsaFreeMemory.S │ │ ├── LsaLookupNames.S │ │ ├── LsaLookupNames2.S │ │ ├── LsaLookupSids.S │ │ ├── LsaNtStatusToWinError.S │ │ ├── LsaOpenPolicy.S │ │ ├── LsaOpenTrustedDomainByName.S │ │ ├── LsaQueryDomainInformationPolicy.S │ │ ├── LsaQueryForestTrustInformation.S │ │ ├── LsaQueryInformationPolicy.S │ │ ├── LsaQueryTrustedDomainInfo.S │ │ ├── LsaQueryTrustedDomainInfoByName.S │ │ ├── LsaRemoveAccountRights.S │ │ ├── LsaRetrievePrivateData.S │ │ ├── LsaSetDomainInformationPolicy.S │ │ ├── LsaSetForestTrustInformation.S │ │ ├── LsaSetInformationPolicy.S │ │ ├── LsaSetTrustedDomainInfoByName.S │ │ ├── LsaSetTrustedDomainInformation.S │ │ ├── LsaStorePrivateData.S │ │ ├── MSChapSrvChangePassword.S │ │ ├── MSChapSrvChangePassword2.S │ │ ├── MakeAbsoluteSD.S │ │ ├── MakeSelfRelativeSD.S │ │ ├── MapGenericMask.S │ │ ├── NotifyBootConfigStatus.S │ │ ├── NotifyChangeEventLog.S │ │ ├── NotifyServiceStatusChangeW.S │ │ ├── ObjectCloseAuditAlarmW.S │ │ ├── ObjectDeleteAuditAlarmW.S │ │ ├── ObjectOpenAuditAlarmW.S │ │ ├── ObjectPrivilegeAuditAlarmW.S │ │ ├── OpenBackupEventLogW.S │ │ ├── OpenEncryptedFileRawW.S │ │ ├── OpenEventLogW.S │ │ ├── OpenProcessToken.S │ │ ├── OpenSCManagerW.S │ │ ├── OpenServiceW.S │ │ ├── OpenThreadToken.S │ │ ├── OpenThreadWaitChainSession.S │ │ ├── OpenTraceW.S │ │ ├── PerfCreateInstance.S │ │ ├── PerfDecrementULongCounterValue.S │ │ ├── PerfDecrementULongLongCounterValue.S │ │ ├── PerfDeleteInstance.S │ │ ├── PerfIncrementULongCounterValue.S │ │ ├── PerfIncrementULongLongCounterValue.S │ │ ├── PerfQueryInstance.S │ │ ├── PerfSetCounterRefValue.S │ │ ├── PerfSetCounterSetInfo.S │ │ ├── PerfSetULongCounterValue.S │ │ ├── PerfSetULongLongCounterValue.S │ │ ├── PerfStartProvider.S │ │ ├── PerfStartProviderEx.S │ │ ├── PerfStopProvider.S │ │ ├── PrivilegeCheck.S │ │ ├── PrivilegedServiceAuditAlarmW.S │ │ ├── ProcessTrace.S │ │ ├── QueryAllTracesW.S │ │ ├── QueryRecoveryAgentsOnEncryptedFile.S │ │ ├── QuerySecurityAccessMask.S │ │ ├── QueryServiceConfig2W.S │ │ ├── QueryServiceConfigW.S │ │ ├── QueryServiceLockStatusW.S │ │ ├── QueryServiceObjectSecurity.S │ │ ├── QueryServiceStatus.S │ │ ├── QueryServiceStatusEx.S │ │ ├── QueryTraceW.S │ │ ├── QueryUsersOnEncryptedFile.S │ │ ├── ReadEncryptedFileRaw.S │ │ ├── ReadEventLogW.S │ │ ├── RegCloseKey.S │ │ ├── RegConnectRegistryW.S │ │ ├── RegCopyTreeW.S │ │ ├── RegCreateKeyExW.S │ │ ├── RegCreateKeyTransactedW.S │ │ ├── RegCreateKeyW.S │ │ ├── RegDeleteKeyExW.S │ │ ├── RegDeleteKeyTransactedW.S │ │ ├── RegDeleteKeyValueW.S │ │ ├── RegDeleteKeyW.S │ │ ├── RegDeleteTreeW.S │ │ ├── RegDeleteValueW.S │ │ ├── RegDisablePredefinedCache.S │ │ ├── RegDisablePredefinedCacheEx.S │ │ ├── RegDisableReflectionKey.S │ │ ├── RegEnableReflectionKey.S │ │ ├── RegEnumKeyExW.S │ │ ├── RegEnumKeyW.S │ │ ├── RegEnumValueW.S │ │ ├── RegFlushKey.S │ │ ├── RegGetKeySecurity.S │ │ ├── RegGetValueW.S │ │ ├── RegLoadAppKeyW.S │ │ ├── RegLoadKeyW.S │ │ ├── RegLoadMUIStringW.S │ │ ├── RegNotifyChangeKeyValue.S │ │ ├── RegOpenCurrentUser.S │ │ ├── RegOpenKeyExW.S │ │ ├── RegOpenKeyTransactedW.S │ │ ├── RegOpenKeyW.S │ │ ├── RegOpenUserClassesRoot.S │ │ ├── RegOverridePredefKey.S │ │ ├── RegQueryInfoKeyW.S │ │ ├── RegQueryMultipleValuesW.S │ │ ├── RegQueryReflectionKey.S │ │ ├── RegQueryValueExW.S │ │ ├── RegQueryValueW.S │ │ ├── RegReplaceKeyW.S │ │ ├── RegRestoreKeyW.S │ │ ├── RegSaveKeyExW.S │ │ ├── RegSaveKeyW.S │ │ ├── RegSetKeySecurity.S │ │ ├── RegSetKeyValueW.S │ │ ├── RegSetValueExW.S │ │ ├── RegSetValueW.S │ │ ├── RegUnLoadKeyW.S │ │ ├── RegisterEventSourceW.S │ │ ├── RegisterServiceCtrlHandlerExW.S │ │ ├── RegisterServiceCtrlHandlerW.S │ │ ├── RegisterTraceGuidsW.S │ │ ├── RegisterWaitChainCOMCallback.S │ │ ├── RemoveTraceCallback.S │ │ ├── RemoveUsersFromEncryptedFile.S │ │ ├── ReportEventA.S │ │ ├── ReportEventW.S │ │ ├── RevertToSelf.S │ │ ├── SaferCloseLevel.S │ │ ├── SaferComputeTokenFromLevel.S │ │ ├── SaferCreateLevel.S │ │ ├── SaferGetLevelInformation.S │ │ ├── SaferGetPolicyInformation.S │ │ ├── SaferIdentifyLevel.S │ │ ├── SaferRecordEventLogEntry.S │ │ ├── SaferiIsExecutableFileType.S │ │ ├── SetAclInformation.S │ │ ├── SetEntriesInAclW.S │ │ ├── SetFileSecurityW.S │ │ ├── SetKernelObjectSecurity.S │ │ ├── SetNamedSecurityInfoW.S │ │ ├── SetPrivateObjectSecurity.S │ │ ├── SetPrivateObjectSecurityEx.S │ │ ├── SetSecurityAccessMask.S │ │ ├── SetSecurityDescriptorControl.S │ │ ├── SetSecurityDescriptorDacl.S │ │ ├── SetSecurityDescriptorGroup.S │ │ ├── SetSecurityDescriptorOwner.S │ │ ├── SetSecurityDescriptorRMControl.S │ │ ├── SetSecurityDescriptorSacl.S │ │ ├── SetSecurityInfo.S │ │ ├── SetServiceBits.S │ │ ├── SetServiceObjectSecurity.S │ │ ├── SetServiceStatus.S │ │ ├── SetThreadToken.S │ │ ├── SetTokenInformation.S │ │ ├── SetTraceCallback.S │ │ ├── SetUserFileEncryptionKey.S │ │ ├── StartServiceCtrlDispatcherW.S │ │ ├── StartServiceW.S │ │ ├── StartTraceW.S │ │ ├── StopTraceW.S │ │ ├── SystemFunction036.S │ │ ├── SystemFunction040.S │ │ ├── SystemFunction041.S │ │ ├── TraceEvent.S │ │ ├── TraceEventInstance.S │ │ ├── TraceMessage.S │ │ ├── TraceMessageVa.S │ │ ├── TraceSetInformation.S │ │ ├── TreeResetNamedSecurityInfoW.S │ │ ├── TreeSetNamedSecurityInfoW.S │ │ ├── UninstallApplication.S │ │ ├── UnlockServiceDatabase.S │ │ ├── UnregisterTraceGuids.S │ │ └── UpdateTraceW.S │ ├── automation.h │ ├── codegen.h │ ├── codegen.sh │ ├── comdlg.h │ ├── comdlg32 │ │ ├── ChooseColorW.S │ │ ├── ChooseFontW.S │ │ ├── CommDlgExtendedError.S │ │ ├── DllCanUnloadNow.S │ │ ├── DllGetClassObject.S │ │ ├── FindTextW.S │ │ ├── GetFileTitleW.S │ │ ├── GetOpenFileNameW.S │ │ ├── GetSaveFileNameW.S │ │ ├── LoadAlterBitmap.S │ │ ├── PageSetupDlgW.S │ │ ├── PrintDlgExW.S │ │ ├── PrintDlgW.S │ │ ├── ReplaceTextW.S │ │ ├── Ssync_ANSI_UNICODE_Struct_For_WOW.S │ │ └── WantArrows.S │ ├── comms.h │ ├── console.h │ ├── createfile.h │ ├── debug.h │ ├── dll.h │ ├── efi.h │ ├── enum │ │ ├── accessmask.h │ │ ├── afd.h │ │ ├── bitblt.h │ │ ├── callback.h │ │ ├── color.h │ │ ├── computernameformat.h │ │ ├── consolemodeflags.h │ │ ├── consoleselectionflags.h │ │ ├── copyfile.h │ │ ├── creationdisposition.h │ │ ├── cs.h │ │ ├── ctrlevent.h │ │ ├── cw.h │ │ ├── dialogresult.h │ │ ├── errormodeflags.h │ │ ├── event.h │ │ ├── eventtype.h │ │ ├── exceptionhandleractions.h │ │ ├── fileflagandattributes.h │ │ ├── fileinfobyhandleclass.h │ │ ├── fileinformationclass.h │ │ ├── filelockflags.h │ │ ├── filemapflags.h │ │ ├── filemovemethod.h │ │ ├── filesharemode.h │ │ ├── filetype.h │ │ ├── fillattribute.h │ │ ├── findexinfolevels.h │ │ ├── findexsearchops.h │ │ ├── formatmessageflags.h │ │ ├── fsctl.h │ │ ├── fsinformationclass.h │ │ ├── getfileexinfolevels.h │ │ ├── heap.h │ │ ├── ht.h │ │ ├── idc.h │ │ ├── imageauxsymboltype.h │ │ ├── importobjectnametype.h │ │ ├── importobjecttype.h │ │ ├── io.h │ │ ├── ioctl.h │ │ ├── jobobjectinfoclass.h │ │ ├── keyaccess.h │ │ ├── keyedevent.h │ │ ├── keyinformationclass.h │ │ ├── kwaitreason.h │ │ ├── lang.h │ │ ├── loadlibrarysearch.h │ │ ├── lockfile.h │ │ ├── mb.h │ │ ├── memflags.h │ │ ├── memoryinformationclass.h │ │ ├── mf.h │ │ ├── mk.h │ │ ├── movefileexflags.h │ │ ├── objectinformationclass.h │ │ ├── offerpriority.h │ │ ├── ofn.h │ │ ├── pageflags.h │ │ ├── pdh.h │ │ ├── processaccess.h │ │ ├── processcreationflags.h │ │ ├── processinfoclass.h │ │ ├── procthreadattributes.h │ │ ├── progress.h │ │ ├── pwr.h │ │ ├── rdw.h │ │ ├── reggetvalueflags.h │ │ ├── regtype.h │ │ ├── replacefile.h │ │ ├── sc.h │ │ ├── sectioninformationclass.h │ │ ├── sectioninherit.h │ │ ├── sectionmapflags.h │ │ ├── securityimpersonationlevel.h │ │ ├── securityinformation.h │ │ ├── signal.h │ │ ├── sio.h │ │ ├── size.h │ │ ├── startf.h │ │ ├── statfs.h │ │ ├── status.h │ │ ├── sw.h │ │ ├── symboliclink.h │ │ ├── systeminformationclass.h │ │ ├── th32cs.h │ │ ├── threadaccess.h │ │ ├── threadinfoclass.h │ │ ├── threadpriority.h │ │ ├── threadstate.h │ │ ├── tokeninformationclass.h │ │ ├── tokentype.h │ │ ├── tpm.h │ │ ├── valueinformationclass.h │ │ ├── version.h │ │ ├── vk.h │ │ ├── wa.h │ │ ├── wait.h │ │ ├── wm.h │ │ ├── ws.h │ │ ├── wsa.h │ │ ├── wsaid.h │ │ └── wt.h │ ├── errors.h │ ├── events.h │ ├── files.h │ ├── gdi32 │ │ ├── AbortDoc.S │ │ ├── AbortPath.S │ │ ├── AddFontMemResourceEx.S │ │ ├── AddFontResourceExW.S │ │ ├── AddFontResourceTracking.S │ │ ├── AddFontResourceW.S │ │ ├── AngleArc.S │ │ ├── AnimatePalette.S │ │ ├── AnyLinkedFonts.S │ │ ├── Arc.S │ │ ├── ArcTo.S │ │ ├── BRUSHOBJ_hGetColorTransform.S │ │ ├── BRUSHOBJ_pvAllocRbrush.S │ │ ├── BRUSHOBJ_pvGetRbrush.S │ │ ├── BRUSHOBJ_ulGetBrushColor.S │ │ ├── BeginGdiRendering.S │ │ ├── BeginPath.S │ │ ├── BitBlt.S │ │ ├── CLIPOBJ_bEnum.S │ │ ├── CLIPOBJ_cEnumStart.S │ │ ├── CLIPOBJ_ppoGetPath.S │ │ ├── CancelDC.S │ │ ├── CheckColorsInGamut.S │ │ ├── ChoosePixelFormat.S │ │ ├── Chord.S │ │ ├── ClearBitmapAttributes.S │ │ ├── ClearBrushAttributes.S │ │ ├── CloseEnhMetaFile.S │ │ ├── CloseFigure.S │ │ ├── CloseMetaFile.S │ │ ├── ColorCorrectPalette.S │ │ ├── ColorMatchToTarget.S │ │ ├── CombineRgn.S │ │ ├── CombineTransform.S │ │ ├── ConfigureOPMProtectedOutput.S │ │ ├── CopyEnhMetaFileW.S │ │ ├── CopyMetaFileW.S │ │ ├── CreateBitmap.S │ │ ├── CreateBitmapFromDxSurface.S │ │ ├── CreateBitmapFromDxSurface2.S │ │ ├── CreateBitmapIndirect.S │ │ ├── CreateBrushIndirect.S │ │ ├── CreateColorSpaceW.S │ │ ├── CreateCompatibleBitmap.S │ │ ├── CreateCompatibleDC.S │ │ ├── CreateDCExW.S │ │ ├── CreateDCW.S │ │ ├── CreateDIBPatternBrush.S │ │ ├── CreateDIBPatternBrushPt.S │ │ ├── CreateDIBSection.S │ │ ├── CreateDIBitmap.S │ │ ├── CreateDPIScaledDIBSection.S │ │ ├── CreateDiscardableBitmap.S │ │ ├── CreateEllipticRgn.S │ │ ├── CreateEllipticRgnIndirect.S │ │ ├── CreateEnhMetaFileW.S │ │ ├── CreateFontIndirectExW.S │ │ ├── CreateFontIndirectW.S │ │ ├── CreateFontW.S │ │ ├── CreateHalftonePalette.S │ │ ├── CreateHatchBrush.S │ │ ├── CreateICW.S │ │ ├── CreateMetaFileW.S │ │ ├── CreateOPMProtectedOutput.S │ │ ├── CreateOPMProtectedOutputs.S │ │ ├── CreatePalette.S │ │ ├── CreatePatternBrush.S │ │ ├── CreatePen.S │ │ ├── CreatePenIndirect.S │ │ ├── CreatePolyPolygonRgn.S │ │ ├── CreatePolygonRgn.S │ │ ├── CreateRectRgn.S │ │ ├── CreateRectRgnIndirect.S │ │ ├── CreateRoundRectRgn.S │ │ ├── CreateScalableFontResourceW.S │ │ ├── CreateSessionMappedDIBSection.S │ │ ├── CreateSolidBrush.S │ │ ├── D3DKMTAbandonSwapChain.S │ │ ├── D3DKMTAcquireKeyedMutex.S │ │ ├── D3DKMTAcquireKeyedMutex2.S │ │ ├── D3DKMTAcquireSwapChain.S │ │ ├── D3DKMTAddSurfaceToSwapChain.S │ │ ├── D3DKMTAdjustFullscreenGamma.S │ │ ├── D3DKMTCacheHybridQueryValue.S │ │ ├── D3DKMTChangeVideoMemoryReservation.S │ │ ├── D3DKMTCheckExclusiveOwnership.S │ │ ├── D3DKMTCheckMonitorPowerState.S │ │ ├── D3DKMTCheckMultiPlaneOverlaySupport.S │ │ ├── D3DKMTCheckMultiPlaneOverlaySupport2.S │ │ ├── D3DKMTCheckMultiPlaneOverlaySupport3.S │ │ ├── D3DKMTCheckOcclusion.S │ │ ├── D3DKMTCheckSharedResourceAccess.S │ │ ├── D3DKMTCheckVidPnExclusiveOwnership.S │ │ ├── D3DKMTCloseAdapter.S │ │ ├── D3DKMTConfigureSharedResource.S │ │ ├── D3DKMTCreateAllocation.S │ │ ├── D3DKMTCreateAllocation2.S │ │ ├── D3DKMTCreateBundleObject.S │ │ ├── D3DKMTCreateContext.S │ │ ├── D3DKMTCreateContextVirtual.S │ │ ├── D3DKMTCreateDCFromMemory.S │ │ ├── D3DKMTCreateDevice.S │ │ ├── D3DKMTCreateHwContext.S │ │ ├── D3DKMTCreateHwQueue.S │ │ ├── D3DKMTCreateKeyedMutex.S │ │ ├── D3DKMTCreateKeyedMutex2.S │ │ ├── D3DKMTCreateOutputDupl.S │ │ ├── D3DKMTCreateOverlay.S │ │ ├── D3DKMTCreatePagingQueue.S │ │ ├── D3DKMTCreateProtectedSession.S │ │ ├── D3DKMTCreateSwapChain.S │ │ ├── D3DKMTCreateSynchronizationObject.S │ │ ├── D3DKMTCreateSynchronizationObject2.S │ │ ├── D3DKMTDDisplayEnum.S │ │ ├── D3DKMTDestroyAllocation.S │ │ ├── D3DKMTDestroyAllocation2.S │ │ ├── D3DKMTDestroyContext.S │ │ ├── D3DKMTDestroyDCFromMemory.S │ │ ├── D3DKMTDestroyDevice.S │ │ ├── D3DKMTDestroyHwContext.S │ │ ├── D3DKMTDestroyHwQueue.S │ │ ├── D3DKMTDestroyKeyedMutex.S │ │ ├── D3DKMTDestroyOutputDupl.S │ │ ├── D3DKMTDestroyOverlay.S │ │ ├── D3DKMTDestroyPagingQueue.S │ │ ├── D3DKMTDestroyProtectedSession.S │ │ ├── D3DKMTDestroySynchronizationObject.S │ │ ├── D3DKMTDispMgrCreate.S │ │ ├── D3DKMTDispMgrSourceOperation.S │ │ ├── D3DKMTDispMgrTargetOperation.S │ │ ├── D3DKMTEnumAdapters.S │ │ ├── D3DKMTEnumAdapters2.S │ │ ├── D3DKMTEscape.S │ │ ├── D3DKMTEvict.S │ │ ├── D3DKMTExtractBundleObject.S │ │ ├── D3DKMTFlipOverlay.S │ │ ├── D3DKMTFlushHeapTransitions.S │ │ ├── D3DKMTFreeGpuVirtualAddress.S │ │ ├── D3DKMTGetAllocationPriority.S │ │ ├── D3DKMTGetCachedHybridQueryValue.S │ │ ├── D3DKMTGetContextInProcessSchedulingPriority.S │ │ ├── D3DKMTGetContextSchedulingPriority.S │ │ ├── D3DKMTGetDWMVerticalBlankEvent.S │ │ ├── D3DKMTGetDeviceState.S │ │ ├── D3DKMTGetDisplayModeList.S │ │ ├── D3DKMTGetMemoryBudgetTarget.S │ │ ├── D3DKMTGetMultiPlaneOverlayCaps.S │ │ ├── D3DKMTGetMultisampleMethodList.S │ │ ├── D3DKMTGetOverlayState.S │ │ ├── D3DKMTGetPostCompositionCaps.S │ │ ├── D3DKMTGetPresentHistory.S │ │ ├── D3DKMTGetPresentQueueEvent.S │ │ ├── D3DKMTGetProcessDeviceRemovalSupport.S │ │ ├── D3DKMTGetProcessList.S │ │ ├── D3DKMTGetProcessSchedulingPriorityBand.S │ │ ├── D3DKMTGetProcessSchedulingPriorityClass.S │ │ ├── D3DKMTGetResourcePresentPrivateDriverData.S │ │ ├── D3DKMTGetRuntimeData.S │ │ ├── D3DKMTGetScanLine.S │ │ ├── D3DKMTGetSetSwapChainMetadata.S │ │ ├── D3DKMTGetSharedPrimaryHandle.S │ │ ├── D3DKMTGetSharedResourceAdapterLuid.S │ │ ├── D3DKMTGetYieldPercentage.S │ │ ├── D3DKMTInvalidateActiveVidPn.S │ │ ├── D3DKMTInvalidateCache.S │ │ ├── D3DKMTLock.S │ │ ├── D3DKMTLock2.S │ │ ├── D3DKMTMakeResident.S │ │ ├── D3DKMTMapGpuVirtualAddress.S │ │ ├── D3DKMTMarkDeviceAsError.S │ │ ├── D3DKMTNetDispGetNextChunkInfo.S │ │ ├── D3DKMTNetDispQueryMiracastDisplayDeviceStatus.S │ │ ├── D3DKMTNetDispQueryMiracastDisplayDeviceSupport.S │ │ ├── D3DKMTNetDispStartMiracastDisplayDevice.S │ │ ├── D3DKMTNetDispStartMiracastDisplayDevice2.S │ │ ├── D3DKMTNetDispStartMiracastDisplayDeviceEx.S │ │ ├── D3DKMTNetDispStopMiracastDisplayDevice.S │ │ ├── D3DKMTNetDispStopSessions.S │ │ ├── D3DKMTOfferAllocations.S │ │ ├── D3DKMTOpenAdapterFromDeviceName.S │ │ ├── D3DKMTOpenAdapterFromGdiDisplayName.S │ │ ├── D3DKMTOpenAdapterFromHdc.S │ │ ├── D3DKMTOpenAdapterFromLuid.S │ │ ├── D3DKMTOpenBundleObjectNtHandleFromName.S │ │ ├── D3DKMTOpenKeyedMutex.S │ │ ├── D3DKMTOpenKeyedMutex2.S │ │ ├── D3DKMTOpenKeyedMutexFromNtHandle.S │ │ ├── D3DKMTOpenNtHandleFromName.S │ │ ├── D3DKMTOpenProtectedSessionFromNtHandle.S │ │ ├── D3DKMTOpenResource.S │ │ ├── D3DKMTOpenResource2.S │ │ ├── D3DKMTOpenResourceFromNtHandle.S │ │ ├── D3DKMTOpenSwapChain.S │ │ ├── D3DKMTOpenSyncObjectFromNtHandle.S │ │ ├── D3DKMTOpenSyncObjectFromNtHandle2.S │ │ ├── D3DKMTOpenSyncObjectNtHandleFromName.S │ │ ├── D3DKMTOpenSynchronizationObject.S │ │ ├── D3DKMTOutputDuplGetFrameInfo.S │ │ ├── D3DKMTOutputDuplGetMetaData.S │ │ ├── D3DKMTOutputDuplGetPointerShapeData.S │ │ ├── D3DKMTOutputDuplPresent.S │ │ ├── D3DKMTOutputDuplReleaseFrame.S │ │ ├── D3DKMTPinDirectFlipResources.S │ │ ├── D3DKMTPollDisplayChildren.S │ │ ├── D3DKMTPresent.S │ │ ├── D3DKMTPresentMultiPlaneOverlay.S │ │ ├── D3DKMTPresentMultiPlaneOverlay2.S │ │ ├── D3DKMTPresentMultiPlaneOverlay3.S │ │ ├── D3DKMTPresentRedirected.S │ │ ├── D3DKMTQueryAdapterInfo.S │ │ ├── D3DKMTQueryAllocationResidency.S │ │ ├── D3DKMTQueryClockCalibration.S │ │ ├── D3DKMTQueryFSEBlock.S │ │ ├── D3DKMTQueryProcessOfferInfo.S │ │ ├── D3DKMTQueryProtectedSessionInfoFromNtHandle.S │ │ ├── D3DKMTQueryProtectedSessionStatus.S │ │ ├── D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName.S │ │ ├── D3DKMTQueryResourceInfo.S │ │ ├── D3DKMTQueryResourceInfoFromNtHandle.S │ │ ├── D3DKMTQueryStatistics.S │ │ ├── D3DKMTQueryVidPnExclusiveOwnership.S │ │ ├── D3DKMTQueryVideoMemoryInfo.S │ │ ├── D3DKMTReclaimAllocations.S │ │ ├── D3DKMTReclaimAllocations2.S │ │ ├── D3DKMTRegisterTrimNotification.S │ │ ├── D3DKMTRegisterVailProcess.S │ │ ├── D3DKMTReleaseKeyedMutex.S │ │ ├── D3DKMTReleaseKeyedMutex2.S │ │ ├── D3DKMTReleaseProcessVidPnSourceOwners.S │ │ ├── D3DKMTReleaseSwapChain.S │ │ ├── D3DKMTRemoveSurfaceFromSwapChain.S │ │ ├── D3DKMTRender.S │ │ ├── D3DKMTReserveGpuVirtualAddress.S │ │ ├── D3DKMTSetAllocationPriority.S │ │ ├── D3DKMTSetContextInProcessSchedulingPriority.S │ │ ├── D3DKMTSetContextSchedulingPriority.S │ │ ├── D3DKMTSetDisplayMode.S │ │ ├── D3DKMTSetDisplayPrivateDriverFormat.S │ │ ├── D3DKMTSetDodIndirectSwapchain.S │ │ ├── D3DKMTSetFSEBlock.S │ │ ├── D3DKMTSetGammaRamp.S │ │ ├── D3DKMTSetHwProtectionTeardownRecovery.S │ │ ├── D3DKMTSetMemoryBudgetTarget.S │ │ ├── D3DKMTSetMonitorColorSpaceTransform.S │ │ ├── D3DKMTSetProcessDeviceRemovalSupport.S │ │ ├── D3DKMTSetProcessSchedulingPriorityBand.S │ │ ├── D3DKMTSetProcessSchedulingPriorityClass.S │ │ ├── D3DKMTSetQueuedLimit.S │ │ ├── D3DKMTSetStablePowerState.S │ │ ├── D3DKMTSetStereoEnabled.S │ │ ├── D3DKMTSetSyncRefreshCountWaitTarget.S │ │ ├── D3DKMTSetVidPnSourceHwProtection.S │ │ ├── D3DKMTSetVidPnSourceOwner.S │ │ ├── D3DKMTSetVidPnSourceOwner1.S │ │ ├── D3DKMTSetVidPnSourceOwner2.S │ │ ├── D3DKMTSetYieldPercentage.S │ │ ├── D3DKMTShareObjects.S │ │ ├── D3DKMTSharedPrimaryLockNotification.S │ │ ├── D3DKMTSharedPrimaryUnLockNotification.S │ │ ├── D3DKMTSignalSynchronizationObject.S │ │ ├── D3DKMTSignalSynchronizationObject2.S │ │ ├── D3DKMTSignalSynchronizationObjectFromCpu.S │ │ ├── D3DKMTSignalSynchronizationObjectFromGpu.S │ │ ├── D3DKMTSignalSynchronizationObjectFromGpu2.S │ │ ├── D3DKMTSubmitCommand.S │ │ ├── D3DKMTSubmitCommandToHwQueue.S │ │ ├── D3DKMTSubmitPresentBltToHwQueue.S │ │ ├── D3DKMTSubmitSignalSyncObjectsToHwQueue.S │ │ ├── D3DKMTSubmitWaitForSyncObjectsToHwQueue.S │ │ ├── D3DKMTTrimProcessCommitment.S │ │ ├── D3DKMTUnOrderedPresentSwapChain.S │ │ ├── D3DKMTUnlock.S │ │ ├── D3DKMTUnlock2.S │ │ ├── D3DKMTUnpinDirectFlipResources.S │ │ ├── D3DKMTUnregisterTrimNotification.S │ │ ├── D3DKMTUpdateAllocationProperty.S │ │ ├── D3DKMTUpdateGpuVirtualAddress.S │ │ ├── D3DKMTUpdateOverlay.S │ │ ├── D3DKMTVailConnect.S │ │ ├── D3DKMTVailDisconnect.S │ │ ├── D3DKMTVailPromoteCompositionSurface.S │ │ ├── D3DKMTWaitForIdle.S │ │ ├── D3DKMTWaitForSynchronizationObject.S │ │ ├── D3DKMTWaitForSynchronizationObject2.S │ │ ├── D3DKMTWaitForSynchronizationObjectFromCpu.S │ │ ├── D3DKMTWaitForSynchronizationObjectFromGpu.S │ │ ├── D3DKMTWaitForVerticalBlankEvent.S │ │ ├── D3DKMTWaitForVerticalBlankEvent2.S │ │ ├── DDCCIGetCapabilitiesString.S │ │ ├── DDCCIGetCapabilitiesStringLength.S │ │ ├── DDCCIGetTimingReport.S │ │ ├── DDCCIGetVCPFeature.S │ │ ├── DDCCISaveCurrentSettings.S │ │ ├── DDCCISetVCPFeature.S │ │ ├── DPtoLP.S │ │ ├── DdCreateFullscreenSprite.S │ │ ├── DdDestroyFullscreenSprite.S │ │ ├── DdNotifyFullscreenSpriteUpdate.S │ │ ├── DdQueryVisRgnUniqueness.S │ │ ├── DeleteColorSpace.S │ │ ├── DeleteDC.S │ │ ├── DeleteEnhMetaFile.S │ │ ├── DeleteMetaFile.S │ │ ├── DeleteObject.S │ │ ├── DescribePixelFormat.S │ │ ├── DestroyOPMProtectedOutput.S │ │ ├── DestroyPhysicalMonitorInternal.S │ │ ├── DrawEscape.S │ │ ├── DwmCreatedBitmapRemotingOutput.S │ │ ├── DxTrimNotificationListHead.S │ │ ├── Ellipse.S │ │ ├── EnableEUDC.S │ │ ├── EndDoc.S │ │ ├── EndFormPage.S │ │ ├── EndGdiRendering.S │ │ ├── EndPage.S │ │ ├── EndPath.S │ │ ├── EngAcquireSemaphore.S │ │ ├── EngAlphaBlend.S │ │ ├── EngAssociateSurface.S │ │ ├── EngBitBlt.S │ │ ├── EngCheckAbort.S │ │ ├── EngComputeGlyphSet.S │ │ ├── EngCopyBits.S │ │ ├── EngCreateBitmap.S │ │ ├── EngCreateClip.S │ │ ├── EngCreateDeviceBitmap.S │ │ ├── EngCreateDeviceSurface.S │ │ ├── EngCreatePalette.S │ │ ├── EngCreateSemaphore.S │ │ ├── EngDeleteClip.S │ │ ├── EngDeletePalette.S │ │ ├── EngDeletePath.S │ │ ├── EngDeleteSemaphore.S │ │ ├── EngDeleteSurface.S │ │ ├── EngEraseSurface.S │ │ ├── EngFillPath.S │ │ ├── EngFindResource.S │ │ ├── EngFreeModule.S │ │ ├── EngGetCurrentCodePage.S │ │ ├── EngGetDriverName.S │ │ ├── EngGetPrinterDataFileName.S │ │ ├── EngGradientFill.S │ │ ├── EngLineTo.S │ │ ├── EngLoadModule.S │ │ ├── EngLockSurface.S │ │ ├── EngMarkBandingSurface.S │ │ ├── EngMultiByteToUnicodeN.S │ │ ├── EngMultiByteToWideChar.S │ │ ├── EngPaint.S │ │ ├── EngPlgBlt.S │ │ ├── EngQueryEMFInfo.S │ │ ├── EngQueryLocalTime.S │ │ ├── EngReleaseSemaphore.S │ │ ├── EngStretchBlt.S │ │ ├── EngStretchBltROP.S │ │ ├── EngStrokeAndFillPath.S │ │ ├── EngStrokePath.S │ │ ├── EngTextOut.S │ │ ├── EngTransparentBlt.S │ │ ├── EngUnicodeToMultiByteN.S │ │ ├── EngUnlockSurface.S │ │ ├── EngWideCharToMultiByte.S │ │ ├── EnumEnhMetaFile.S │ │ ├── EnumFontFamiliesExW.S │ │ ├── EnumFontFamiliesW.S │ │ ├── EnumFontsW.S │ │ ├── EnumICMProfilesW.S │ │ ├── EnumMetaFile.S │ │ ├── EnumObjects.S │ │ ├── EqualRgn.S │ │ ├── Escape.S │ │ ├── EudcLoadLinkW.S │ │ ├── EudcUnloadLinkW.S │ │ ├── ExcludeClipRect.S │ │ ├── ExtCreatePen.S │ │ ├── ExtCreateRegion.S │ │ ├── ExtEscape.S │ │ ├── ExtFloodFill.S │ │ ├── ExtSelectClipRgn.S │ │ ├── ExtTextOutW.S │ │ ├── FONTOBJ_cGetAllGlyphHandles.S │ │ ├── FONTOBJ_cGetGlyphs.S │ │ ├── FONTOBJ_pQueryGlyphAttrs.S │ │ ├── FONTOBJ_pfdg.S │ │ ├── FONTOBJ_pifi.S │ │ ├── FONTOBJ_pvTrueTypeFontFile.S │ │ ├── FONTOBJ_pxoGetXform.S │ │ ├── FONTOBJ_vGetInfo.S │ │ ├── FillPath.S │ │ ├── FillRgn.S │ │ ├── FixBrushOrgEx.S │ │ ├── FlattenPath.S │ │ ├── FloodFill.S │ │ ├── FontIsLinked.S │ │ ├── FrameRgn.S │ │ ├── Gdi32DllInitialize.S │ │ ├── GdiAddFontResourceW.S │ │ ├── GdiAddGlsBounds.S │ │ ├── GdiAddGlsRecord.S │ │ ├── GdiAddInitialFonts.S │ │ ├── GdiAlphaBlend.S │ │ ├── GdiArtificialDecrementDriver.S │ │ ├── GdiBatchLimit.S │ │ ├── GdiCleanCacheDC.S │ │ ├── GdiComment.S │ │ ├── GdiConsoleTextOut.S │ │ ├── GdiConvertAndCheckDC.S │ │ ├── GdiConvertBitmap.S │ │ ├── GdiConvertBitmapV5.S │ │ ├── GdiConvertBrush.S │ │ ├── GdiConvertDC.S │ │ ├── GdiConvertEnhMetaFile.S │ │ ├── GdiConvertFont.S │ │ ├── GdiConvertMetaFilePict.S │ │ ├── GdiConvertPalette.S │ │ ├── GdiConvertRegion.S │ │ ├── GdiConvertToDevmodeW.S │ │ ├── GdiCreateLocalEnhMetaFile.S │ │ ├── GdiCreateLocalMetaFilePict.S │ │ ├── GdiDeleteLocalDC.S │ │ ├── GdiDeleteSpoolFileHandle.S │ │ ├── GdiDescribePixelFormat.S │ │ ├── GdiDllInitialize.S │ │ ├── GdiDrawStream.S │ │ ├── GdiEndDocEMF.S │ │ ├── GdiEndPageEMF.S │ │ ├── GdiFixUpHandle.S │ │ ├── GdiFlush.S │ │ ├── GdiFullscreenControl.S │ │ ├── GdiGetBatchLimit.S │ │ ├── GdiGetBitmapBitsSize.S │ │ ├── GdiGetCharDimensions.S │ │ ├── GdiGetCodePage.S │ │ ├── GdiGetDC.S │ │ ├── GdiGetDevmodeForPage.S │ │ ├── GdiGetEntry.S │ │ ├── GdiGetLocalBrush.S │ │ ├── GdiGetLocalDC.S │ │ ├── GdiGetLocalFont.S │ │ ├── GdiGetPageCount.S │ │ ├── GdiGetPageHandle.S │ │ ├── GdiGetSpoolFileHandle.S │ │ ├── GdiGetSpoolMessage.S │ │ ├── GdiGetVariationStoreDelta.S │ │ ├── GdiGradientFill.S │ │ ├── GdiInitSpool.S │ │ ├── GdiInitializeLanguagePack.S │ │ ├── GdiIsMetaFileDC.S │ │ ├── GdiIsMetaPrintDC.S │ │ ├── GdiIsPlayMetafileDC.S │ │ ├── GdiIsScreenDC.S │ │ ├── GdiIsTrackingEnabled.S │ │ ├── GdiIsUMPDSandboxingEnabled.S │ │ ├── GdiLoadType1Fonts.S │ │ ├── GdiPlayDCScript.S │ │ ├── GdiPlayEMF.S │ │ ├── GdiPlayJournal.S │ │ ├── GdiPlayPageEMF.S │ │ ├── GdiPlayPrivatePageEMF.S │ │ ├── GdiPlayScript.S │ │ ├── GdiPrinterThunk.S │ │ ├── GdiProcessSetup.S │ │ ├── GdiQueryFonts.S │ │ ├── GdiQueryTable.S │ │ ├── GdiRealizationInfo.S │ │ ├── GdiReleaseDC.S │ │ ├── GdiReleaseLocalDC.S │ │ ├── GdiResetDCEMF.S │ │ ├── GdiSetAttrs.S │ │ ├── GdiSetBatchLimit.S │ │ ├── GdiSetLastError.S │ │ ├── GdiSetPixelFormat.S │ │ ├── GdiSetServerAttr.S │ │ ├── GdiStartDocEMF.S │ │ ├── GdiStartPageEMF.S │ │ ├── GdiSupportsFontChangeEvent.S │ │ ├── GdiSwapBuffers.S │ │ ├── GdiTrackHCreate.S │ │ ├── GdiTrackHDelete.S │ │ ├── GdiTransparentBlt.S │ │ ├── GdiValidateHandle.S │ │ ├── GetArcDirection.S │ │ ├── GetAspectRatioFilterEx.S │ │ ├── GetBitmapAttributes.S │ │ ├── GetBitmapBits.S │ │ ├── GetBitmapDimensionEx.S │ │ ├── GetBitmapDpiScaleValue.S │ │ ├── GetBkColor.S │ │ ├── GetBkMode.S │ │ ├── GetBoundsRect.S │ │ ├── GetBrushAttributes.S │ │ ├── GetBrushOrgEx.S │ │ ├── GetCOPPCompatibleOPMInformation.S │ │ ├── GetCertificate.S │ │ ├── GetCertificateByHandle.S │ │ ├── GetCertificateSize.S │ │ ├── GetCertificateSizeByHandle.S │ │ ├── GetCharABCWidthsFloatI.S │ │ ├── GetCharABCWidthsFloatW.S │ │ ├── GetCharABCWidthsI.S │ │ ├── GetCharABCWidthsW.S │ │ ├── GetCharWidth32W.S │ │ ├── GetCharWidthFloatW.S │ │ ├── GetCharWidthI.S │ │ ├── GetCharWidthInfo.S │ │ ├── GetCharWidthW.S │ │ ├── GetCharacterPlacementW.S │ │ ├── GetClipBox.S │ │ ├── GetClipRgn.S │ │ ├── GetColorAdjustment.S │ │ ├── GetColorSpace.S │ │ ├── GetCurrentDpiInfo.S │ │ ├── GetCurrentObject.S │ │ ├── GetCurrentPositionEx.S │ │ ├── GetDCBrushColor.S │ │ ├── GetDCDpiScaleValue.S │ │ ├── GetDCOrgEx.S │ │ ├── GetDCPenColor.S │ │ ├── GetDIBColorTable.S │ │ ├── GetDIBits.S │ │ ├── GetDeviceCaps.S │ │ ├── GetDeviceGammaRamp.S │ │ ├── GetETM.S │ │ ├── GetEUDCTimeStamp.S │ │ ├── GetEUDCTimeStampExW.S │ │ ├── GetEnhMetaFileBits.S │ │ ├── GetEnhMetaFileDescriptionW.S │ │ ├── GetEnhMetaFileHeader.S │ │ ├── GetEnhMetaFilePaletteEntries.S │ │ ├── GetEnhMetaFilePixelFormat.S │ │ ├── GetEnhMetaFileW.S │ │ ├── GetFontAssocStatus.S │ │ ├── GetFontData.S │ │ ├── GetFontFileData.S │ │ ├── GetFontFileInfo.S │ │ ├── GetFontLanguageInfo.S │ │ ├── GetFontRealizationInfo.S │ │ ├── GetFontResourceInfoW.S │ │ ├── GetFontUnicodeRanges.S │ │ ├── GetGlyphIndicesW.S │ │ ├── GetGlyphOutlineW.S │ │ ├── GetGlyphOutlineWow.S │ │ ├── GetGraphicsMode.S │ │ ├── GetHFONT.S │ │ ├── GetICMProfileW.S │ │ ├── GetKerningPairsW.S │ │ ├── GetLayout.S │ │ ├── GetLogColorSpaceW.S │ │ ├── GetMapMode.S │ │ ├── GetMetaFileBitsEx.S │ │ ├── GetMetaFileW.S │ │ ├── GetMetaRgn.S │ │ ├── GetMiterLimit.S │ │ ├── GetNearestColor.S │ │ ├── GetNearestPaletteIndex.S │ │ ├── GetNumberOfPhysicalMonitors.S │ │ ├── GetOPMInformation.S │ │ ├── GetOPMRandomNumber.S │ │ ├── GetObjectType.S │ │ ├── GetObjectW.S │ │ ├── GetOutlineTextMetricsW.S │ │ ├── GetPaletteEntries.S │ │ ├── GetPath.S │ │ ├── GetPhysicalMonitorDescription.S │ │ ├── GetPhysicalMonitors.S │ │ ├── GetPixel.S │ │ ├── GetPixelFormat.S │ │ ├── GetPolyFillMode.S │ │ ├── GetProcessSessionFonts.S │ │ ├── GetROP2.S │ │ ├── GetRandomRgn.S │ │ ├── GetRasterizerCaps.S │ │ ├── GetRegionData.S │ │ ├── GetRelAbs.S │ │ ├── GetRgnBox.S │ │ ├── GetStockObject.S │ │ ├── GetStretchBltMode.S │ │ ├── GetStringBitmapW.S │ │ ├── GetSuggestedOPMProtectedOutputArraySize.S │ │ ├── GetSystemPaletteEntries.S │ │ ├── GetSystemPaletteUse.S │ │ ├── GetTextAlign.S │ │ ├── GetTextCharacterExtra.S │ │ ├── GetTextCharset.S │ │ ├── GetTextCharsetInfo.S │ │ ├── GetTextColor.S │ │ ├── GetTextExtentExPointI.S │ │ ├── GetTextExtentExPointW.S │ │ ├── GetTextExtentExPointWPri.S │ │ ├── GetTextExtentPoint32W.S │ │ ├── GetTextExtentPointI.S │ │ ├── GetTextExtentPointW.S │ │ ├── GetTextFaceAliasW.S │ │ ├── GetTextFaceW.S │ │ ├── GetTextMetricsW.S │ │ ├── GetTransform.S │ │ ├── GetViewportExtEx.S │ │ ├── GetViewportOrgEx.S │ │ ├── GetWinMetaFileBits.S │ │ ├── GetWindowExtEx.S │ │ ├── GetWindowOrgEx.S │ │ ├── GetWorldTransform.S │ │ ├── HT_Get8BPPFormatPalette.S │ │ ├── HT_Get8BPPMaskPalette.S │ │ ├── InternalDeleteDC.S │ │ ├── IntersectClipRect.S │ │ ├── InvertRgn.S │ │ ├── IsValidEnhMetaRecord.S │ │ ├── IsValidEnhMetaRecordOffExt.S │ │ ├── LPtoDP.S │ │ ├── LineTo.S │ │ ├── LpkEditControl.S │ │ ├── LpkGetEditControl.S │ │ ├── LpkpEditControlSize.S │ │ ├── LpkpInitializeEditControl.S │ │ ├── MaskBlt.S │ │ ├── MirrorRgn.S │ │ ├── ModerncoreGdiInit.S │ │ ├── ModifyWorldTransform.S │ │ ├── MoveToEx.S │ │ ├── NamedEscape.S │ │ ├── OffsetClipRgn.S │ │ ├── OffsetRgn.S │ │ ├── OffsetViewportOrgEx.S │ │ ├── OffsetWindowOrgEx.S │ │ ├── PATHOBJ_bEnum.S │ │ ├── PATHOBJ_bEnumClipLines.S │ │ ├── PATHOBJ_vEnumStart.S │ │ ├── PATHOBJ_vEnumStartClipLines.S │ │ ├── PATHOBJ_vGetBounds.S │ │ ├── PaintRgn.S │ │ ├── PatBlt.S │ │ ├── PathToRegion.S │ │ ├── Pie.S │ │ ├── PlayEnhMetaFile.S │ │ ├── PlayEnhMetaFileRecord.S │ │ ├── PlayMetaFile.S │ │ ├── PlayMetaFileRecord.S │ │ ├── PlgBlt.S │ │ ├── PolyBezier.S │ │ ├── PolyBezierTo.S │ │ ├── PolyDraw.S │ │ ├── PolyPatBlt.S │ │ ├── PolyPolygon.S │ │ ├── PolyPolyline.S │ │ ├── PolyTextOutW.S │ │ ├── Polygon.S │ │ ├── Polyline.S │ │ ├── PolylineTo.S │ │ ├── PtInRegion.S │ │ ├── PtVisible.S │ │ ├── QueryFontAssocStatus.S │ │ ├── RealizePalette.S │ │ ├── RectInRegion.S │ │ ├── RectVisible.S │ │ ├── Rectangle.S │ │ ├── RemoveFontMemResourceEx.S │ │ ├── RemoveFontResourceExW.S │ │ ├── RemoveFontResourceTracking.S │ │ ├── RemoveFontResourceW.S │ │ ├── ResetDCW.S │ │ ├── ResizePalette.S │ │ ├── RestoreDC.S │ │ ├── RoundRect.S │ │ ├── STROBJ_bEnum.S │ │ ├── STROBJ_bEnumPositionsOnly.S │ │ ├── STROBJ_bGetAdvanceWidths.S │ │ ├── STROBJ_dwGetCodePage.S │ │ ├── STROBJ_vEnumStart.S │ │ ├── SaveDC.S │ │ ├── ScaleRgn.S │ │ ├── ScaleValues.S │ │ ├── ScaleViewportExtEx.S │ │ ├── ScaleWindowExtEx.S │ │ ├── SelectBrushLocal.S │ │ ├── SelectClipPath.S │ │ ├── SelectClipRgn.S │ │ ├── SelectFontLocal.S │ │ ├── SelectObject.S │ │ ├── SelectPalette.S │ │ ├── SetAbortProc.S │ │ ├── SetArcDirection.S │ │ ├── SetBitmapAttributes.S │ │ ├── SetBitmapBits.S │ │ ├── SetBitmapDimensionEx.S │ │ ├── SetBkColor.S │ │ ├── SetBkMode.S │ │ ├── SetBoundsRect.S │ │ ├── SetBrushAttributes.S │ │ ├── SetBrushOrgEx.S │ │ ├── SetColorAdjustment.S │ │ ├── SetColorSpace.S │ │ ├── SetDCBrushColor.S │ │ ├── SetDCDpiScaleValue.S │ │ ├── SetDCPenColor.S │ │ ├── SetDIBColorTable.S │ │ ├── SetDIBits.S │ │ ├── SetDIBitsToDevice.S │ │ ├── SetDeviceGammaRamp.S │ │ ├── SetEnhMetaFileBits.S │ │ ├── SetFontEnumeration.S │ │ ├── SetGraphicsMode.S │ │ ├── SetICMMode.S │ │ ├── SetICMProfileW.S │ │ ├── SetLayout.S │ │ ├── SetLayoutWidth.S │ │ ├── SetMagicColors.S │ │ ├── SetMapMode.S │ │ ├── SetMapperFlags.S │ │ ├── SetMetaFileBitsEx.S │ │ ├── SetMetaRgn.S │ │ ├── SetMiterLimit.S │ │ ├── SetOPMSigningKeyAndSequenceNumbers.S │ │ ├── SetPaletteEntries.S │ │ ├── SetPixel.S │ │ ├── SetPixelFormat.S │ │ ├── SetPixelV.S │ │ ├── SetPolyFillMode.S │ │ ├── SetROP2.S │ │ ├── SetRectRgn.S │ │ ├── SetRelAbs.S │ │ ├── SetStretchBltMode.S │ │ ├── SetSystemPaletteUse.S │ │ ├── SetTextAlign.S │ │ ├── SetTextCharacterExtra.S │ │ ├── SetTextColor.S │ │ ├── SetTextJustification.S │ │ ├── SetViewportExtEx.S │ │ ├── SetViewportOrgEx.S │ │ ├── SetVirtualResolution.S │ │ ├── SetWinMetaFileBits.S │ │ ├── SetWindowExtEx.S │ │ ├── SetWindowOrgEx.S │ │ ├── SetWorldTransform.S │ │ ├── StartDocW.S │ │ ├── StartFormPage.S │ │ ├── StartPage.S │ │ ├── StretchBlt.S │ │ ├── StretchDIBits.S │ │ ├── StrokeAndFillPath.S │ │ ├── StrokePath.S │ │ ├── SwapBuffers.S │ │ ├── TextOutW.S │ │ ├── TranslateCharsetInfo.S │ │ ├── UnloadNetworkFonts.S │ │ ├── UnrealizeObject.S │ │ ├── UpdateColors.S │ │ ├── UpdateICMRegKeyW.S │ │ ├── WidenPath.S │ │ ├── XFORMOBJ_bApplyXform.S │ │ ├── XFORMOBJ_iGetXform.S │ │ ├── XLATEOBJ_cGetPalette.S │ │ ├── XLATEOBJ_hGetColorTransform.S │ │ ├── XLATEOBJ_iXlate.S │ │ ├── XLATEOBJ_piVector.S │ │ ├── cGetTTFFromFOT.S │ │ ├── fpClosePrinter.S │ │ ├── gMaxGdiHandleCount.S │ │ ├── gW32PID.S │ │ ├── g_systemCallFilterId.S │ │ └── gdiPlaySpoolStream.S │ ├── iocp.h │ ├── ipc.h │ ├── iphlpapi.h │ ├── iphlpapi │ │ ├── AddIPAddress.S │ │ ├── AllocateAndGetTcpExTableFromStack.S │ │ ├── AllocateAndGetUdpExTableFromStack.S │ │ ├── CancelIPChangeNotify.S │ │ ├── CaptureInterfaceHardwareCrossTimestamp.S │ │ ├── CreateIpForwardEntry.S │ │ ├── CreateIpNetEntry.S │ │ ├── CreatePersistentTcpPortReservation.S │ │ ├── CreatePersistentUdpPortReservation.S │ │ ├── CreateProxyArpEntry.S │ │ ├── DeleteIPAddress.S │ │ ├── DeleteIpForwardEntry.S │ │ ├── DeleteIpNetEntry.S │ │ ├── DeletePersistentTcpPortReservation.S │ │ ├── DeletePersistentUdpPortReservation.S │ │ ├── DeleteProxyArpEntry.S │ │ ├── DisableMediaSense.S │ │ ├── EnableRouter.S │ │ ├── FlushIpNetTable.S │ │ ├── GetAdapterIndex.S │ │ ├── GetAdapterOrderMap.S │ │ ├── GetAdaptersAddresses.S │ │ ├── GetAdaptersInfo.S │ │ ├── GetBestInterface.S │ │ ├── GetBestInterfaceEx.S │ │ ├── GetBestRoute.S │ │ ├── GetExtendedTcpTable.S │ │ ├── GetExtendedUdpTable.S │ │ ├── GetFriendlyIfIndex.S │ │ ├── GetIcmpStatistics.S │ │ ├── GetIcmpStatisticsEx.S │ │ ├── GetIfEntry.S │ │ ├── GetIfTable.S │ │ ├── GetInterfaceActiveTimestampCapabilities.S │ │ ├── GetInterfaceInfo.S │ │ ├── GetInterfaceSupportedTimestampCapabilities.S │ │ ├── GetIpAddrTable.S │ │ ├── GetIpErrorString.S │ │ ├── GetIpForwardTable.S │ │ ├── GetIpNetTable.S │ │ ├── GetIpStatistics.S │ │ ├── GetIpStatisticsEx.S │ │ ├── GetNetworkParams.S │ │ ├── GetNumberOfInterfaces.S │ │ ├── GetOwnerModuleFromTcp6Entry.S │ │ ├── GetOwnerModuleFromTcpEntry.S │ │ ├── GetOwnerModuleFromUdp6Entry.S │ │ ├── GetOwnerModuleFromUdpEntry.S │ │ ├── GetPerAdapterInfo.S │ │ ├── GetPerTcp6ConnectionEStats.S │ │ ├── GetPerTcpConnectionEStats.S │ │ ├── GetRTTAndHopCount.S │ │ ├── GetTcp6Table.S │ │ ├── GetTcp6Table2.S │ │ ├── GetTcpStatistics.S │ │ ├── GetTcpStatisticsEx.S │ │ ├── GetTcpStatisticsEx2.S │ │ ├── GetTcpTable.S │ │ ├── GetTcpTable2.S │ │ ├── GetUdp6Table.S │ │ ├── GetUdpStatistics.S │ │ ├── GetUdpStatisticsEx.S │ │ ├── GetUdpStatisticsEx2.S │ │ ├── GetUdpTable.S │ │ ├── GetUniDirectionalAdapterInfo.S │ │ ├── IpReleaseAddress.S │ │ ├── IpRenewAddress.S │ │ ├── LookupPersistentTcpPortReservation.S │ │ ├── LookupPersistentUdpPortReservation.S │ │ ├── NhpAllocateAndGetInterfaceInfoFromStack.S │ │ ├── NotifyAddrChange.S │ │ ├── NotifyRouteChange.S │ │ ├── ParseNetworkString.S │ │ ├── RegisterInterfaceTimestampConfigChange.S │ │ ├── ResolveNeighbor.S │ │ ├── RestoreMediaSense.S │ │ ├── SendARP.S │ │ ├── SetIfEntry.S │ │ ├── SetIpForwardEntry.S │ │ ├── SetIpNetEntry.S │ │ ├── SetIpStatistics.S │ │ ├── SetIpStatisticsEx.S │ │ ├── SetIpTTL.S │ │ ├── SetPerTcp6ConnectionEStats.S │ │ ├── SetPerTcpConnectionEStats.S │ │ ├── SetTcpEntry.S │ │ ├── UnenableRouter.S │ │ └── UnregisterInterfaceTimestampConfigChange.S │ ├── kernel32 │ │ ├── AcquireSRWLockExclusive.S │ │ ├── AcquireSRWLockShared.S │ │ ├── ActivateActCtx.S │ │ ├── ActivateActCtxWorker.S │ │ ├── AddAtomW.S │ │ ├── AddConsoleAliasW.S │ │ ├── AddDllDirectory.S │ │ ├── AddIntegrityLabelToBoundaryDescriptor.S │ │ ├── AddLocalAlternateComputerNameW.S │ │ ├── AddRefActCtx.S │ │ ├── AddRefActCtxWorker.S │ │ ├── AddResourceAttributeAce.S │ │ ├── AddSIDToBoundaryDescriptor.S │ │ ├── AddScopedPolicyIDAce.S │ │ ├── AddSecureMemoryCacheCallback.S │ │ ├── AddVectoredContinueHandler.S │ │ ├── AddVectoredExceptionHandler.S │ │ ├── AdjustCalendarDate.S │ │ ├── AllocConsole.S │ │ ├── AllocateUserPhysicalPages.S │ │ ├── AllocateUserPhysicalPagesNuma.S │ │ ├── ApplicationRecoveryFinished.S │ │ ├── ApplicationRecoveryInProgress.S │ │ ├── AreFileApisANSI.S │ │ ├── AssignProcessToJobObject.S │ │ ├── AttachConsole.S │ │ ├── BackupRead.S │ │ ├── BackupSeek.S │ │ ├── BackupWrite.S │ │ ├── BaseCheckAppcompatCacheExWorker.S │ │ ├── BaseCheckAppcompatCacheWorker.S │ │ ├── BaseCheckElevation.S │ │ ├── BaseCleanupAppcompatCacheSupportWorker.S │ │ ├── BaseDestroyVDMEnvironment.S │ │ ├── BaseDllReadWriteIniFile.S │ │ ├── BaseDumpAppcompatCacheWorker.S │ │ ├── BaseElevationPostProcessing.S │ │ ├── BaseFlushAppcompatCacheWorker.S │ │ ├── BaseFormatTimeOut.S │ │ ├── BaseFreeAppCompatDataForProcessWorker.S │ │ ├── BaseGenerateAppCompatData.S │ │ ├── BaseInitAppcompatCacheSupportWorker.S │ │ ├── BaseIsAppcompatInfrastructureDisabledWorker.S │ │ ├── BaseIsDosApplication.S │ │ ├── BaseQueryModuleData.S │ │ ├── BaseReadAppCompatDataForProcessWorker.S │ │ ├── BaseSetLastNTError.S │ │ ├── BaseThreadInitThunk.S │ │ ├── BaseUpdateAppcompatCacheWorker.S │ │ ├── BaseUpdateVDMEntry.S │ │ ├── BaseVerifyUnicodeString.S │ │ ├── BaseWriteErrorElevationRequiredEvent.S │ │ ├── Basep8BitStringToDynamicUnicodeString.S │ │ ├── BasepAllocateActivationContextActivationBlock.S │ │ ├── BasepAnsiStringToDynamicUnicodeString.S │ │ ├── BasepAppContainerEnvironmentExtension.S │ │ ├── BasepAppXExtension.S │ │ ├── BasepCheckAppCompat.S │ │ ├── BasepCheckWebBladeHashes.S │ │ ├── BasepCheckWinSaferRestrictions.S │ │ ├── BasepConstructSxsCreateProcessMessage.S │ │ ├── BasepCopyEncryption.S │ │ ├── BasepFreeActivationContextActivationBlock.S │ │ ├── BasepFreeAppCompatData.S │ │ ├── BasepGetAppCompatData.S │ │ ├── BasepGetComputerNameFromNtPath.S │ │ ├── BasepGetExeArchType.S │ │ ├── BasepInitAppCompatData.S │ │ ├── BasepIsProcessAllowed.S │ │ ├── BasepMapModuleHandle.S │ │ ├── BasepNotifyLoadStringResource.S │ │ ├── BasepPostSuccessAppXExtension.S │ │ ├── BasepProcessInvalidImage.S │ │ ├── BasepQueryAppCompat.S │ │ ├── BasepQueryModuleChpeSettings.S │ │ ├── BasepReleaseAppXContext.S │ │ ├── BasepReleaseSxsCreateProcessUtilityStruct.S │ │ ├── BasepReportFault.S │ │ ├── BasepSetFileEncryptionCompression.S │ │ ├── Beep.S │ │ ├── BeginUpdateResourceW.S │ │ ├── BindIoCompletionCallback.S │ │ ├── BuildCommDCBAndTimeoutsW.S │ │ ├── BuildCommDCBW.S │ │ ├── CallNamedPipeA.S │ │ ├── CallNamedPipeW.S │ │ ├── CallbackMayRunLong.S │ │ ├── CancelDeviceWakeupRequest.S │ │ ├── CancelIo.S │ │ ├── CancelIoEx.S │ │ ├── CancelSynchronousIo.S │ │ ├── CancelTimerQueueTimer.S │ │ ├── CancelWaitableTimer.S │ │ ├── CeipIsOptedIn.S │ │ ├── ChangeTimerQueueTimer.S │ │ ├── CheckElevation.S │ │ ├── CheckElevationEnabled.S │ │ ├── CheckForReadOnlyResource.S │ │ ├── CheckForReadOnlyResourceFilter.S │ │ ├── CheckNameLegalDOS8Dot3W.S │ │ ├── CheckRemoteDebuggerPresent.S │ │ ├── CheckTokenCapability.S │ │ ├── CheckTokenMembershipEx.S │ │ ├── ClearCommBreak.S │ │ ├── ClearCommError.S │ │ ├── CloseConsoleHandle.S │ │ ├── CloseHandle.S │ │ ├── ClosePackageInfo.S │ │ ├── ClosePrivateNamespace.S │ │ ├── CloseProfileUserMapping.S │ │ ├── CmdBatNotification.S │ │ ├── CommConfigDialogW.S │ │ ├── CompareCalendarDates.S │ │ ├── CompareFileTime.S │ │ ├── CompareStringEx.S │ │ ├── CompareStringOrdinal.S │ │ ├── CompareStringW.S │ │ ├── ConnectNamedPipe.S │ │ ├── ConsoleMenuControl.S │ │ ├── ContinueDebugEvent.S │ │ ├── ConvertCalDateTimeToSystemTime.S │ │ ├── ConvertDefaultLocale.S │ │ ├── ConvertFiberToThread.S │ │ ├── ConvertNLSDayOfWeekToWin32DayOfWeek.S │ │ ├── ConvertSystemTimeToCalDateTime.S │ │ ├── ConvertThreadToFiber.S │ │ ├── ConvertThreadToFiberEx.S │ │ ├── CopyContext.S │ │ ├── CopyFile2.S │ │ ├── CopyFileExW.S │ │ ├── CopyFileTransactedW.S │ │ ├── CopyFileW.S │ │ ├── CopyLZFile.S │ │ ├── CreateActCtxW.S │ │ ├── CreateActCtxWWorker.S │ │ ├── CreateBoundaryDescriptorW.S │ │ ├── CreateConsoleScreenBuffer.S │ │ ├── CreateDirectoryExW.S │ │ ├── CreateDirectoryTransactedW.S │ │ ├── CreateDirectoryW.S │ │ ├── CreateEventExW.S │ │ ├── CreateEventW.S │ │ ├── CreateFiber.S │ │ ├── CreateFiberEx.S │ │ ├── CreateFile2.S │ │ ├── CreateFileMappingFromApp.S │ │ ├── CreateFileMappingNumaW.S │ │ ├── CreateFileMappingW.S │ │ ├── CreateFileTransactedW.S │ │ ├── CreateFileW.S │ │ ├── CreateHardLinkTransactedW.S │ │ ├── CreateHardLinkW.S │ │ ├── CreateIoCompletionPort.S │ │ ├── CreateJobObjectW.S │ │ ├── CreateJobSet.S │ │ ├── CreateMailslotW.S │ │ ├── CreateMemoryResourceNotification.S │ │ ├── CreateMutexExW.S │ │ ├── CreateMutexW.S │ │ ├── CreateNamedPipeW.S │ │ ├── CreatePipe.S │ │ ├── CreatePrivateNamespaceW.S │ │ ├── CreateProcessW.S │ │ ├── CreateRemoteThread.S │ │ ├── CreateRemoteThreadEx.S │ │ ├── CreateSemaphoreExW.S │ │ ├── CreateSemaphoreW.S │ │ ├── CreateSymbolicLinkTransactedW.S │ │ ├── CreateSymbolicLinkW.S │ │ ├── CreateTapePartition.S │ │ ├── CreateThread.S │ │ ├── CreateThreadpool.S │ │ ├── CreateThreadpoolCleanupGroup.S │ │ ├── CreateThreadpoolIo.S │ │ ├── CreateThreadpoolTimer.S │ │ ├── CreateThreadpoolWait.S │ │ ├── CreateThreadpoolWork.S │ │ ├── CreateTimerQueue.S │ │ ├── CreateTimerQueueTimer.S │ │ ├── CreateToolhelp32Snapshot.S │ │ ├── CreateUmsCompletionList.S │ │ ├── CreateUmsThreadContext.S │ │ ├── CreateWaitableTimerExW.S │ │ ├── CreateWaitableTimerW.S │ │ ├── DeactivateActCtx.S │ │ ├── DeactivateActCtxWorker.S │ │ ├── DebugActiveProcess.S │ │ ├── DebugActiveProcessStop.S │ │ ├── DebugBreakProcess.S │ │ ├── DebugSetProcessKillOnExit.S │ │ ├── DefineDosDeviceW.S │ │ ├── DeleteAtom.S │ │ ├── DeleteBoundaryDescriptor.S │ │ ├── DeleteCriticalSection.S │ │ ├── DeleteFiber.S │ │ ├── DeleteFileTransactedW.S │ │ ├── DeleteFileW.S │ │ ├── DeleteProcThreadAttributeList.S │ │ ├── DeleteSynchronizationBarrier.S │ │ ├── DeleteTimerQueue.S │ │ ├── DeleteTimerQueueEx.S │ │ ├── DeleteTimerQueueTimer.S │ │ ├── DeleteUmsCompletionList.S │ │ ├── DeleteUmsThreadContext.S │ │ ├── DeleteVolumeMountPointW.S │ │ ├── DequeueUmsCompletionListItems.S │ │ ├── DeviceIoControl.S │ │ ├── DisableThreadLibraryCalls.S │ │ ├── DisableThreadProfiling.S │ │ ├── DiscardVirtualMemory.S │ │ ├── DisconnectNamedPipe.S │ │ ├── DnsHostnameToComputerNameW.S │ │ ├── DosDateTimeToFileTime.S │ │ ├── DosPathToSessionPathW.S │ │ ├── DuplicateConsoleHandle.S │ │ ├── DuplicateEncryptionInfoFileExt.S │ │ ├── DuplicateHandle.S │ │ ├── EnableThreadProfiling.S │ │ ├── EndUpdateResourceW.S │ │ ├── EnterCriticalSection.S │ │ ├── EnterSynchronizationBarrier.S │ │ ├── EnterUmsSchedulingMode.S │ │ ├── EnumCalendarInfoExEx.S │ │ ├── EnumCalendarInfoExW.S │ │ ├── EnumCalendarInfoW.S │ │ ├── EnumDateFormatsExEx.S │ │ ├── EnumDateFormatsExW.S │ │ ├── EnumDateFormatsW.S │ │ ├── EnumLanguageGroupLocalesW.S │ │ ├── EnumResourceLanguagesExW.S │ │ ├── EnumResourceLanguagesW.S │ │ ├── EnumResourceNamesExW.S │ │ ├── EnumResourceNamesW.S │ │ ├── EnumResourceTypesExW.S │ │ ├── EnumResourceTypesW.S │ │ ├── EnumSystemCodePagesW.S │ │ ├── EnumSystemFirmwareTables.S │ │ ├── EnumSystemGeoID.S │ │ ├── EnumSystemGeoNames.S │ │ ├── EnumSystemLanguageGroupsW.S │ │ ├── EnumSystemLocalesEx.S │ │ ├── EnumSystemLocalesW.S │ │ ├── EnumTimeFormatsEx.S │ │ ├── EnumTimeFormatsW.S │ │ ├── EnumUILanguagesW.S │ │ ├── EnumerateLocalComputerNamesW.S │ │ ├── EraseTape.S │ │ ├── EscapeCommFunction.S │ │ ├── ExecuteUmsThread.S │ │ ├── ExitProcess.S │ │ ├── ExitThread.S │ │ ├── ExitVDM.S │ │ ├── ExpandEnvironmentStringsW.S │ │ ├── FatalAppExitW.S │ │ ├── FatalExit.S │ │ ├── FileTimeToDosDateTime.S │ │ ├── FileTimeToLocalFileTime.S │ │ ├── FileTimeToSystemTime.S │ │ ├── FillConsoleOutputAttribute.S │ │ ├── FillConsoleOutputCharacterW.S │ │ ├── FindActCtxSectionGuid.S │ │ ├── FindActCtxSectionGuidWorker.S │ │ ├── FindActCtxSectionStringW.S │ │ ├── FindActCtxSectionStringWWorker.S │ │ ├── FindAtomW.S │ │ ├── FindClose.S │ │ ├── FindCloseChangeNotification.S │ │ ├── FindFirstChangeNotificationW.S │ │ ├── FindFirstFileExW.S │ │ ├── FindFirstFileNameTransactedW.S │ │ ├── FindFirstFileNameW.S │ │ ├── FindFirstFileTransactedW.S │ │ ├── FindFirstFileW.S │ │ ├── FindFirstStreamTransactedW.S │ │ ├── FindFirstStreamW.S │ │ ├── FindFirstVolumeMountPointW.S │ │ ├── FindFirstVolumeW.S │ │ ├── FindNLSString.S │ │ ├── FindNLSStringEx.S │ │ ├── FindNextChangeNotification.S │ │ ├── FindNextFileNameW.S │ │ ├── FindNextFileW.S │ │ ├── FindNextStreamW.S │ │ ├── FindNextVolumeMountPointW.S │ │ ├── FindNextVolumeW.S │ │ ├── FindPackagesByPackageFamily.S │ │ ├── FindResourceExW.S │ │ ├── FindResourceW.S │ │ ├── FindStringOrdinal.S │ │ ├── FindVolumeClose.S │ │ ├── FindVolumeMountPointClose.S │ │ ├── FlsAlloc.S │ │ ├── FlsFree.S │ │ ├── FlsGetValue.S │ │ ├── FlsSetValue.S │ │ ├── FlushConsoleInputBuffer.S │ │ ├── FlushFileBuffers.S │ │ ├── FlushInstructionCache.S │ │ ├── FlushViewOfFile.S │ │ ├── FoldStringW.S │ │ ├── FormatApplicationUserModelId.S │ │ ├── FormatMessageW.S │ │ ├── FreeConsole.S │ │ ├── FreeEnvironmentStringsW.S │ │ ├── FreeLibrary.S │ │ ├── FreeLibraryAndExitThread.S │ │ ├── FreeMemoryJobObject.S │ │ ├── FreeResource.S │ │ ├── FreeUserPhysicalPages.S │ │ ├── GenerateConsoleCtrlEvent.S │ │ ├── GetACP.S │ │ ├── GetActiveProcessorCount.S │ │ ├── GetActiveProcessorGroupCount.S │ │ ├── GetAppContainerNamedObjectPath.S │ │ ├── GetApplicationRecoveryCallback.S │ │ ├── GetApplicationRecoveryCallbackWorker.S │ │ ├── GetApplicationRestartSettings.S │ │ ├── GetApplicationRestartSettingsWorker.S │ │ ├── GetApplicationUserModelId.S │ │ ├── GetAtomNameW.S │ │ ├── GetBinaryTypeW.S │ │ ├── GetCPInfo.S │ │ ├── GetCPInfoExW.S │ │ ├── GetCalendarDateFormat.S │ │ ├── GetCalendarDateFormatEx.S │ │ ├── GetCalendarDaysInMonth.S │ │ ├── GetCalendarDifferenceInDays.S │ │ ├── GetCalendarInfoEx.S │ │ ├── GetCalendarInfoW.S │ │ ├── GetCalendarMonthsInYear.S │ │ ├── GetCalendarSupportedDateRange.S │ │ ├── GetCalendarWeekNumber.S │ │ ├── GetComPlusPackageInstallStatus.S │ │ ├── GetCommConfig.S │ │ ├── GetCommMask.S │ │ ├── GetCommModemStatus.S │ │ ├── GetCommProperties.S │ │ ├── GetCommState.S │ │ ├── GetCommTimeouts.S │ │ ├── GetCommandLineW.S │ │ ├── GetCompressedFileSizeTransactedW.S │ │ ├── GetCompressedFileSizeW.S │ │ ├── GetComputerNameExW.S │ │ ├── GetComputerNameW.S │ │ ├── GetConsoleAliasExesLengthW.S │ │ ├── GetConsoleAliasExesW.S │ │ ├── GetConsoleAliasW.S │ │ ├── GetConsoleAliasesLengthW.S │ │ ├── GetConsoleAliasesW.S │ │ ├── GetConsoleCP.S │ │ ├── GetConsoleCharType.S │ │ ├── GetConsoleCursorInfo.S │ │ ├── GetConsoleCursorMode.S │ │ ├── GetConsoleDisplayMode.S │ │ ├── GetConsoleFontInfo.S │ │ ├── GetConsoleFontSize.S │ │ ├── GetConsoleHardwareState.S │ │ ├── GetConsoleHistoryInfo.S │ │ ├── GetConsoleInputWaitHandle.S │ │ ├── GetConsoleKeyboardLayoutNameW.S │ │ ├── GetConsoleMode.S │ │ ├── GetConsoleNlsMode.S │ │ ├── GetConsoleOriginalTitleW.S │ │ ├── GetConsoleOutputCP.S │ │ ├── GetConsoleProcessList.S │ │ ├── GetConsoleScreenBufferInfo.S │ │ ├── GetConsoleScreenBufferInfoEx.S │ │ ├── GetConsoleSelectionInfo.S │ │ ├── GetConsoleTitleW.S │ │ ├── GetConsoleWindow.S │ │ ├── GetCurrencyFormatEx.S │ │ ├── GetCurrencyFormatW.S │ │ ├── GetCurrentActCtx.S │ │ ├── GetCurrentActCtxWorker.S │ │ ├── GetCurrentApplicationUserModelId.S │ │ ├── GetCurrentConsoleFont.S │ │ ├── GetCurrentConsoleFontEx.S │ │ ├── GetCurrentDirectoryW.S │ │ ├── GetCurrentPackageFamilyName.S │ │ ├── GetCurrentPackageFullName.S │ │ ├── GetCurrentPackageId.S │ │ ├── GetCurrentPackageInfo.S │ │ ├── GetCurrentPackagePath.S │ │ ├── GetCurrentProcess.S │ │ ├── GetCurrentProcessId.S │ │ ├── GetCurrentThread.S │ │ ├── GetCurrentThreadId.S │ │ ├── GetCurrentThreadStackLimits.S │ │ ├── GetCurrentUmsThread.S │ │ ├── GetDateFormatAWorker.S │ │ ├── GetDateFormatEx.S │ │ ├── GetDateFormatW.S │ │ ├── GetDateFormatWWorker.S │ │ ├── GetDefaultCommConfigW.S │ │ ├── GetDevicePowerState.S │ │ ├── GetDiskFreeSpaceExW.S │ │ ├── GetDiskFreeSpaceW.S │ │ ├── GetDllDirectoryW.S │ │ ├── GetDriveTypeW.S │ │ ├── GetDurationFormat.S │ │ ├── GetDurationFormatEx.S │ │ ├── GetDynamicTimeZoneInformation.S │ │ ├── GetEnabledXStateFeatures.S │ │ ├── GetEncryptedFileVersionExt.S │ │ ├── GetEnvironmentStringsW.S │ │ ├── GetEnvironmentVariableW.S │ │ ├── GetErrorMode.S │ │ ├── GetExitCodeProcess.S │ │ ├── GetExitCodeThread.S │ │ ├── GetExpandedNameW.S │ │ ├── GetFileAttributesExW.S │ │ ├── GetFileAttributesTransactedW.S │ │ ├── GetFileAttributesW.S │ │ ├── GetFileBandwidthReservation.S │ │ ├── GetFileInformationByHandle.S │ │ ├── GetFileInformationByHandleEx.S │ │ ├── GetFileMUIInfo.S │ │ ├── GetFileMUIPath.S │ │ ├── GetFileSize.S │ │ ├── GetFileSizeEx.S │ │ ├── GetFileTime.S │ │ ├── GetFileType.S │ │ ├── GetFinalPathNameByHandleW.S │ │ ├── GetFirmwareEnvironmentVariableExW.S │ │ ├── GetFirmwareEnvironmentVariableW.S │ │ ├── GetFirmwareType.S │ │ ├── GetFullPathNameTransactedW.S │ │ ├── GetFullPathNameW.S │ │ ├── GetGeoInfoW.S │ │ ├── GetHandleInformation.S │ │ ├── GetLargePageMinimum.S │ │ ├── GetLargestConsoleWindowSize.S │ │ ├── GetLastError.S │ │ ├── GetLocalTime.S │ │ ├── GetLocaleInfoEx.S │ │ ├── GetLocaleInfoW.S │ │ ├── GetLogicalDriveStringsW.S │ │ ├── GetLogicalDrives.S │ │ ├── GetLogicalProcessorInformation.S │ │ ├── GetLogicalProcessorInformationEx.S │ │ ├── GetLongPathNameTransactedW.S │ │ ├── GetLongPathNameW.S │ │ ├── GetMailslotInfo.S │ │ ├── GetMaximumProcessorCount.S │ │ ├── GetMaximumProcessorGroupCount.S │ │ ├── GetMemoryErrorHandlingCapabilities.S │ │ ├── GetModuleFileNameW.S │ │ ├── GetModuleHandleA.S │ │ ├── GetModuleHandleExW.S │ │ ├── GetModuleHandleW.S │ │ ├── GetNLSVersion.S │ │ ├── GetNLSVersionEx.S │ │ ├── GetNamedPipeClientComputerNameW.S │ │ ├── GetNamedPipeClientProcessId.S │ │ ├── GetNamedPipeClientSessionId.S │ │ ├── GetNamedPipeHandleStateW.S │ │ ├── GetNamedPipeInfo.S │ │ ├── GetNamedPipeServerProcessId.S │ │ ├── GetNamedPipeServerSessionId.S │ │ ├── GetNativeSystemInfo.S │ │ ├── GetNextUmsListItem.S │ │ ├── GetNextVDMCommand.S │ │ ├── GetNumaAvailableMemoryNode.S │ │ ├── GetNumaAvailableMemoryNodeEx.S │ │ ├── GetNumaHighestNodeNumber.S │ │ ├── GetNumaNodeNumberFromHandle.S │ │ ├── GetNumaNodeProcessorMask.S │ │ ├── GetNumaNodeProcessorMaskEx.S │ │ ├── GetNumaProcessorNode.S │ │ ├── GetNumaProcessorNodeEx.S │ │ ├── GetNumaProximityNode.S │ │ ├── GetNumaProximityNodeEx.S │ │ ├── GetNumberFormatEx.S │ │ ├── GetNumberFormatW.S │ │ ├── GetNumberOfConsoleFonts.S │ │ ├── GetNumberOfConsoleInputEvents.S │ │ ├── GetNumberOfConsoleMouseButtons.S │ │ ├── GetOEMCP.S │ │ ├── GetOverlappedResult.S │ │ ├── GetOverlappedResultEx.S │ │ ├── GetPackageApplicationIds.S │ │ ├── GetPackageFamilyName.S │ │ ├── GetPackageFullName.S │ │ ├── GetPackageId.S │ │ ├── GetPackageInfo.S │ │ ├── GetPackagePath.S │ │ ├── GetPackagePathByFullName.S │ │ ├── GetPackagesByPackageFamily.S │ │ ├── GetPhysicallyInstalledSystemMemory.S │ │ ├── GetPriorityClass.S │ │ ├── GetPrivateProfileIntW.S │ │ ├── GetPrivateProfileSectionNamesW.S │ │ ├── GetPrivateProfileSectionW.S │ │ ├── GetPrivateProfileStringW.S │ │ ├── GetPrivateProfileStructW.S │ │ ├── GetProcAddress.S │ │ ├── GetProcessAffinityMask.S │ │ ├── GetProcessDEPPolicy.S │ │ ├── GetProcessDefaultCpuSets.S │ │ ├── GetProcessGroupAffinity.S │ │ ├── GetProcessHandleCount.S │ │ ├── GetProcessHeap.S │ │ ├── GetProcessHeaps.S │ │ ├── GetProcessId.S │ │ ├── GetProcessIdOfThread.S │ │ ├── GetProcessInformation.S │ │ ├── GetProcessIoCounters.S │ │ ├── GetProcessMitigationPolicy.S │ │ ├── GetProcessPreferredUILanguages.S │ │ ├── GetProcessPriorityBoost.S │ │ ├── GetProcessShutdownParameters.S │ │ ├── GetProcessTimes.S │ │ ├── GetProcessVersion.S │ │ ├── GetProcessWorkingSetSize.S │ │ ├── GetProcessWorkingSetSizeEx.S │ │ ├── GetProcessorSystemCycleTime.S │ │ ├── GetProductInfo.S │ │ ├── GetProfileIntW.S │ │ ├── GetProfileSectionW.S │ │ ├── GetProfileStringW.S │ │ ├── GetQueuedCompletionStatus.S │ │ ├── GetQueuedCompletionStatusEx.S │ │ ├── GetShortPathNameW.S │ │ ├── GetStagedPackagePathByFullName.S │ │ ├── GetStartupInfoW.S │ │ ├── GetStdHandle.S │ │ ├── GetStringScripts.S │ │ ├── GetStringTypeExW.S │ │ ├── GetStringTypeW.S │ │ ├── GetSystemCpuSetInformation.S │ │ ├── GetSystemDEPPolicy.S │ │ ├── GetSystemDefaultLCID.S │ │ ├── GetSystemDefaultLangID.S │ │ ├── GetSystemDefaultLocaleName.S │ │ ├── GetSystemDefaultUILanguage.S │ │ ├── GetSystemDirectoryA.S │ │ ├── GetSystemDirectoryW.S │ │ ├── GetSystemFileCacheSize.S │ │ ├── GetSystemFirmwareTable.S │ │ ├── GetSystemInfo.S │ │ ├── GetSystemPowerStatus.S │ │ ├── GetSystemPreferredUILanguages.S │ │ ├── GetSystemRegistryQuota.S │ │ ├── GetSystemTime.S │ │ ├── GetSystemTimeAdjustment.S │ │ ├── GetSystemTimeAsFileTime.S │ │ ├── GetSystemTimePreciseAsFileTime.S │ │ ├── GetSystemTimes.S │ │ ├── GetSystemWindowsDirectoryW.S │ │ ├── GetTapeParameters.S │ │ ├── GetTapePosition.S │ │ ├── GetTapeStatus.S │ │ ├── GetTempFileNameW.S │ │ ├── GetTempPathA.S │ │ ├── GetTempPathW.S │ │ ├── GetThreadContext.S │ │ ├── GetThreadErrorMode.S │ │ ├── GetThreadGroupAffinity.S │ │ ├── GetThreadIOPendingFlag.S │ │ ├── GetThreadId.S │ │ ├── GetThreadIdealProcessorEx.S │ │ ├── GetThreadInformation.S │ │ ├── GetThreadLocale.S │ │ ├── GetThreadPreferredUILanguages.S │ │ ├── GetThreadPriority.S │ │ ├── GetThreadPriorityBoost.S │ │ ├── GetThreadSelectedCpuSets.S │ │ ├── GetThreadSelectorEntry.S │ │ ├── GetThreadTimes.S │ │ ├── GetThreadUILanguage.S │ │ ├── GetTickCount.S │ │ ├── GetTickCount64.S │ │ ├── GetTimeFormatAWorker.S │ │ ├── GetTimeFormatEx.S │ │ ├── GetTimeFormatW.S │ │ ├── GetTimeFormatWWorker.S │ │ ├── GetTimeZoneInformation.S │ │ ├── GetTimeZoneInformationForYear.S │ │ ├── GetUILanguageInfo.S │ │ ├── GetUmsCompletionListEvent.S │ │ ├── GetUmsSystemThreadInformation.S │ │ ├── GetUserDefaultLCID.S │ │ ├── GetUserDefaultLangID.S │ │ ├── GetUserDefaultLocaleName.S │ │ ├── GetUserDefaultUILanguage.S │ │ ├── GetUserGeoID.S │ │ ├── GetUserPreferredUILanguages.S │ │ ├── GetVDMCurrentDirectories.S │ │ ├── GetVersion.S │ │ ├── GetVersionExW.S │ │ ├── GetVolumeInformationByHandleW.S │ │ ├── GetVolumeInformationW.S │ │ ├── GetVolumeNameForVolumeMountPointW.S │ │ ├── GetVolumePathNameW.S │ │ ├── GetVolumePathNamesForVolumeNameW.S │ │ ├── GetWindowsDirectoryA.S │ │ ├── GetWindowsDirectoryW.S │ │ ├── GetWriteWatch.S │ │ ├── GetXStateFeaturesMask.S │ │ ├── GlobalAddAtomExW.S │ │ ├── GlobalAddAtomW.S │ │ ├── GlobalAlloc.S │ │ ├── GlobalCompact.S │ │ ├── GlobalDeleteAtom.S │ │ ├── GlobalFindAtomW.S │ │ ├── GlobalFix.S │ │ ├── GlobalFlags.S │ │ ├── GlobalFree.S │ │ ├── GlobalGetAtomNameW.S │ │ ├── GlobalHandle.S │ │ ├── GlobalLock.S │ │ ├── GlobalMemoryStatus.S │ │ ├── GlobalMemoryStatusEx.S │ │ ├── GlobalReAlloc.S │ │ ├── GlobalSize.S │ │ ├── GlobalUnWire.S │ │ ├── GlobalUnfix.S │ │ ├── GlobalUnlock.S │ │ ├── GlobalWire.S │ │ ├── Heap32First.S │ │ ├── Heap32ListFirst.S │ │ ├── Heap32ListNext.S │ │ ├── Heap32Next.S │ │ ├── HeapAlloc.S │ │ ├── HeapCompact.S │ │ ├── HeapCreate.S │ │ ├── HeapDestroy.S │ │ ├── HeapFree.S │ │ ├── HeapLock.S │ │ ├── HeapQueryInformation.S │ │ ├── HeapReAlloc.S │ │ ├── HeapSetInformation.S │ │ ├── HeapUnlock.S │ │ ├── HeapValidate.S │ │ ├── HeapWalk.S │ │ ├── IdnToAscii.S │ │ ├── IdnToNameprepUnicode.S │ │ ├── IdnToUnicode.S │ │ ├── InitAtomTable.S │ │ ├── InitOnceBeginInitialize.S │ │ ├── InitOnceComplete.S │ │ ├── InitOnceExecuteOnce.S │ │ ├── InitializeContext.S │ │ ├── InitializeCriticalSection.S │ │ ├── InitializeCriticalSectionAndSpinCount.S │ │ ├── InitializeCriticalSectionEx.S │ │ ├── InitializeProcThreadAttributeList.S │ │ ├── InitializeSRWLock.S │ │ ├── InitializeSynchronizationBarrier.S │ │ ├── InstallELAMCertificateInfo.S │ │ ├── InvalidateConsoleDIBits.S │ │ ├── IsBadCodePtr.S │ │ ├── IsBadHugeReadPtr.S │ │ ├── IsBadHugeWritePtr.S │ │ ├── IsBadReadPtr.S │ │ ├── IsBadStringPtrW.S │ │ ├── IsBadWritePtr.S │ │ ├── IsCalendarLeapDay.S │ │ ├── IsCalendarLeapMonth.S │ │ ├── IsCalendarLeapYear.S │ │ ├── IsDBCSLeadByte.S │ │ ├── IsDBCSLeadByteEx.S │ │ ├── IsNLSDefinedString.S │ │ ├── IsNativeVhdBoot.S │ │ ├── IsNormalizedString.S │ │ ├── IsProcessCritical.S │ │ ├── IsProcessInJob.S │ │ ├── IsProcessorFeaturePresent.S │ │ ├── IsSystemResumeAutomatic.S │ │ ├── IsThreadAFiber.S │ │ ├── IsValidCalDateTime.S │ │ ├── IsValidCodePage.S │ │ ├── IsValidLanguageGroup.S │ │ ├── IsValidLocale.S │ │ ├── IsValidLocaleName.S │ │ ├── IsValidNLSVersion.S │ │ ├── LCIDToLocaleName.S │ │ ├── LCMapStringEx.S │ │ ├── LCMapStringW.S │ │ ├── LZClose.S │ │ ├── LZCloseFile.S │ │ ├── LZCopy.S │ │ ├── LZCreateFileW.S │ │ ├── LZDone.S │ │ ├── LZInit.S │ │ ├── LZOpenFileW.S │ │ ├── LZRead.S │ │ ├── LZSeek.S │ │ ├── LZStart.S │ │ ├── LeaveCriticalSection.S │ │ ├── LoadLibraryExW.S │ │ ├── LoadLibraryW.S │ │ ├── LoadModule.S │ │ ├── LoadPackagedLibrary.S │ │ ├── LoadResource.S │ │ ├── LoadStringBaseW.S │ │ ├── LocalAlloc.S │ │ ├── LocalCompact.S │ │ ├── LocalFileTimeToFileTime.S │ │ ├── LocalFlags.S │ │ ├── LocalFree.S │ │ ├── LocalHandle.S │ │ ├── LocalLock.S │ │ ├── LocalReAlloc.S │ │ ├── LocalShrink.S │ │ ├── LocalSize.S │ │ ├── LocalUnlock.S │ │ ├── LocaleNameToLCID.S │ │ ├── LocateXStateFeature.S │ │ ├── LockFile.S │ │ ├── LockFileEx.S │ │ ├── LockResource.S │ │ ├── MapUserPhysicalPages.S │ │ ├── MapUserPhysicalPagesScatter.S │ │ ├── MapViewOfFile.S │ │ ├── MapViewOfFileEx.S │ │ ├── MapViewOfFileExNuma.S │ │ ├── MapViewOfFileFromApp.S │ │ ├── Module32FirstW.S │ │ ├── Module32NextW.S │ │ ├── MoveFileExW.S │ │ ├── MoveFileTransactedW.S │ │ ├── MoveFileW.S │ │ ├── MoveFileWithProgressW.S │ │ ├── MulDiv.S │ │ ├── MultiByteToWideChar.S │ │ ├── NeedCurrentDirectoryForExePathW.S │ │ ├── NormalizeString.S │ │ ├── NotifyUILanguageChange.S │ │ ├── NtVdm64CreateProcessInternalW.S │ │ ├── OOBEComplete.S │ │ ├── OfferVirtualMemory.S │ │ ├── OpenConsoleW.S │ │ ├── OpenConsoleWStub.S │ │ ├── OpenEventW.S │ │ ├── OpenFile.S │ │ ├── OpenFileById.S │ │ ├── OpenFileMappingW.S │ │ ├── OpenJobObjectW.S │ │ ├── OpenMutexW.S │ │ ├── OpenPackageInfoByFullName.S │ │ ├── OpenPrivateNamespaceW.S │ │ ├── OpenProcess.S │ │ ├── OpenProfileUserMapping.S │ │ ├── OpenSemaphoreW.S │ │ ├── OpenThread.S │ │ ├── OpenWaitableTimerW.S │ │ ├── OutputDebugStringW.S │ │ ├── PackageFamilyNameFromFullName.S │ │ ├── PackageFamilyNameFromId.S │ │ ├── PackageFullNameFromId.S │ │ ├── PackageIdFromFullName.S │ │ ├── PackageNameAndPublisherIdFromFamilyName.S │ │ ├── ParseApplicationUserModelId.S │ │ ├── PeekConsoleInputW.S │ │ ├── PeekNamedPipe.S │ │ ├── PostQueuedCompletionStatus.S │ │ ├── PowerClearRequest.S │ │ ├── PowerCreateRequest.S │ │ ├── PowerSetRequest.S │ │ ├── PrefetchVirtualMemory.S │ │ ├── PrepareTape.S │ │ ├── PrivMoveFileIdentityW.S │ │ ├── Process32FirstW.S │ │ ├── Process32NextW.S │ │ ├── ProcessIdToSessionId.S │ │ ├── PssCaptureSnapshot.S │ │ ├── PssDuplicateSnapshot.S │ │ ├── PssFreeSnapshot.S │ │ ├── PssQuerySnapshot.S │ │ ├── PssWalkMarkerCreate.S │ │ ├── PssWalkMarkerFree.S │ │ ├── PssWalkMarkerGetPosition.S │ │ ├── PssWalkMarkerRewind.S │ │ ├── PssWalkMarkerSeek.S │ │ ├── PssWalkMarkerSeekToBeginning.S │ │ ├── PssWalkMarkerSetPosition.S │ │ ├── PssWalkMarkerTell.S │ │ ├── PssWalkSnapshot.S │ │ ├── PulseEvent.S │ │ ├── PurgeComm.S │ │ ├── QueryActCtxSettingsW.S │ │ ├── QueryActCtxSettingsWWorker.S │ │ ├── QueryActCtxW.S │ │ ├── QueryActCtxWWorker.S │ │ ├── QueryDosDeviceW.S │ │ ├── QueryFullProcessImageNameW.S │ │ ├── QueryIdleProcessorCycleTime.S │ │ ├── QueryIdleProcessorCycleTimeEx.S │ │ ├── QueryInformationJobObject.S │ │ ├── QueryIoRateControlInformationJobObject.S │ │ ├── QueryMemoryResourceNotification.S │ │ ├── QueryPerformanceCounter.S │ │ ├── QueryPerformanceFrequency.S │ │ ├── QueryProcessAffinityUpdateMode.S │ │ ├── QueryProcessCycleTime.S │ │ ├── QueryProtectedPolicy.S │ │ ├── QueryThreadCycleTime.S │ │ ├── QueryThreadProfiling.S │ │ ├── QueryThreadpoolStackInformation.S │ │ ├── QueryUmsThreadInformation.S │ │ ├── QueryUnbiasedInterruptTime.S │ │ ├── QueueUserAPC.S │ │ ├── QueueUserWorkItem.S │ │ ├── QuirkGetData2Worker.S │ │ ├── QuirkGetDataWorker.S │ │ ├── QuirkIsEnabled2Worker.S │ │ ├── QuirkIsEnabled3Worker.S │ │ ├── QuirkIsEnabledForPackage2Worker.S │ │ ├── QuirkIsEnabledForPackage3Worker.S │ │ ├── QuirkIsEnabledForPackage4Worker.S │ │ ├── QuirkIsEnabledForPackageWorker.S │ │ ├── QuirkIsEnabledForProcessWorker.S │ │ ├── QuirkIsEnabledWorker.S │ │ ├── RaiseException.S │ │ ├── RaiseFailFastException.S │ │ ├── RaiseInvalid16BitExeError.S │ │ ├── ReOpenFile.S │ │ ├── ReadConsoleInputW.S │ │ ├── ReadConsoleOutputAttribute.S │ │ ├── ReadConsoleOutputCharacterW.S │ │ ├── ReadConsoleOutputW.S │ │ ├── ReadConsoleW.S │ │ ├── ReadDirectoryChangesW.S │ │ ├── ReadFile.S │ │ ├── ReadFileEx.S │ │ ├── ReadFileScatter.S │ │ ├── ReadProcessMemory.S │ │ ├── ReadThreadProfilingData.S │ │ ├── ReclaimVirtualMemory.S │ │ ├── RegDisablePredefinedCacheEx.S │ │ ├── RegisterApplicationRecoveryCallback.S │ │ ├── RegisterApplicationRestart.S │ │ ├── RegisterBadMemoryNotification.S │ │ ├── RegisterConsoleIME.S │ │ ├── RegisterConsoleOS2.S │ │ ├── RegisterConsoleVDM.S │ │ ├── RegisterWaitForInputIdle.S │ │ ├── RegisterWaitForSingleObject.S │ │ ├── RegisterWaitUntilOOBECompleted.S │ │ ├── RegisterWowBaseHandlers.S │ │ ├── RegisterWowExec.S │ │ ├── ReleaseActCtx.S │ │ ├── ReleaseActCtxWorker.S │ │ ├── ReleaseMutex.S │ │ ├── ReleaseSRWLockExclusive.S │ │ ├── ReleaseSRWLockShared.S │ │ ├── ReleaseSemaphore.S │ │ ├── RemoveDirectoryTransactedW.S │ │ ├── RemoveDirectoryW.S │ │ ├── RemoveDllDirectory.S │ │ ├── RemoveLocalAlternateComputerNameW.S │ │ ├── RemoveSecureMemoryCacheCallback.S │ │ ├── RemoveVectoredContinueHandler.S │ │ ├── RemoveVectoredExceptionHandler.S │ │ ├── ReplaceFileW.S │ │ ├── ReplacePartitionUnit.S │ │ ├── RequestDeviceWakeup.S │ │ ├── RequestWakeupLatency.S │ │ ├── ResetEvent.S │ │ ├── ResetWriteWatch.S │ │ ├── ResolveDelayLoadedAPI.S │ │ ├── ResolveDelayLoadsFromDll.S │ │ ├── ResolveLocaleName.S │ │ ├── ResumeThread.S │ │ ├── ScrollConsoleScreenBufferW.S │ │ ├── SearchPathW.S │ │ ├── SetCalendarInfoW.S │ │ ├── SetComPlusPackageInstallStatus.S │ │ ├── SetCommBreak.S │ │ ├── SetCommConfig.S │ │ ├── SetCommMask.S │ │ ├── SetCommState.S │ │ ├── SetCommTimeouts.S │ │ ├── SetComputerNameExW.S │ │ ├── SetComputerNameW.S │ │ ├── SetConsoleActiveScreenBuffer.S │ │ ├── SetConsoleCP.S │ │ ├── SetConsoleCtrlHandler.S │ │ ├── SetConsoleCursor.S │ │ ├── SetConsoleCursorInfo.S │ │ ├── SetConsoleCursorMode.S │ │ ├── SetConsoleCursorPosition.S │ │ ├── SetConsoleDisplayMode.S │ │ ├── SetConsoleFont.S │ │ ├── SetConsoleHardwareState.S │ │ ├── SetConsoleHistoryInfo.S │ │ ├── SetConsoleIcon.S │ │ ├── SetConsoleKeyShortcuts.S │ │ ├── SetConsoleLocalEUDC.S │ │ ├── SetConsoleMaximumWindowSize.S │ │ ├── SetConsoleMenuClose.S │ │ ├── SetConsoleMode.S │ │ ├── SetConsoleNlsMode.S │ │ ├── SetConsoleOS2OemFormat.S │ │ ├── SetConsoleOutputCP.S │ │ ├── SetConsolePalette.S │ │ ├── SetConsoleScreenBufferInfoEx.S │ │ ├── SetConsoleScreenBufferSize.S │ │ ├── SetConsoleTextAttribute.S │ │ ├── SetConsoleTitleW.S │ │ ├── SetConsoleWindowInfo.S │ │ ├── SetCriticalSectionSpinCount.S │ │ ├── SetCurrentConsoleFontEx.S │ │ ├── SetCurrentDirectoryW.S │ │ ├── SetDefaultCommConfigW.S │ │ ├── SetDefaultDllDirectories.S │ │ ├── SetDllDirectoryW.S │ │ ├── SetDynamicTimeZoneInformation.S │ │ ├── SetEndOfFile.S │ │ ├── SetEnvironmentVariableW.S │ │ ├── SetErrorMode.S │ │ ├── SetEvent.S │ │ ├── SetFileApisToANSI.S │ │ ├── SetFileApisToOEM.S │ │ ├── SetFileAttributesTransactedW.S │ │ ├── SetFileAttributesW.S │ │ ├── SetFileBandwidthReservation.S │ │ ├── SetFileCompletionNotificationModes.S │ │ ├── SetFileInformationByHandle.S │ │ ├── SetFileIoOverlappedRange.S │ │ ├── SetFilePointer.S │ │ ├── SetFilePointerEx.S │ │ ├── SetFileShortNameW.S │ │ ├── SetFileTime.S │ │ ├── SetFileValidData.S │ │ ├── SetFirmwareEnvironmentVariableExW.S │ │ ├── SetFirmwareEnvironmentVariableW.S │ │ ├── SetHandleCount.S │ │ ├── SetHandleInformation.S │ │ ├── SetInformationJobObject.S │ │ ├── SetIoRateControlInformationJobObject.S │ │ ├── SetLastError.S │ │ ├── SetLocalPrimaryComputerNameW.S │ │ ├── SetLocalTime.S │ │ ├── SetLocaleInfoW.S │ │ ├── SetMailslotInfo.S │ │ ├── SetMessageWaitingIndicator.S │ │ ├── SetNamedPipeAttribute.S │ │ ├── SetNamedPipeHandleState.S │ │ ├── SetPriorityClass.S │ │ ├── SetProcessAffinityMask.S │ │ ├── SetProcessAffinityUpdateMode.S │ │ ├── SetProcessDEPPolicy.S │ │ ├── SetProcessDefaultCpuSets.S │ │ ├── SetProcessInformation.S │ │ ├── SetProcessMitigationPolicy.S │ │ ├── SetProcessPreferredUILanguages.S │ │ ├── SetProcessPriorityBoost.S │ │ ├── SetProcessShutdownParameters.S │ │ ├── SetProcessWorkingSetSize.S │ │ ├── SetProcessWorkingSetSizeEx.S │ │ ├── SetProtectedPolicy.S │ │ ├── SetSearchPathMode.S │ │ ├── SetStdHandle.S │ │ ├── SetSystemFileCacheSize.S │ │ ├── SetSystemPowerState.S │ │ ├── SetSystemTime.S │ │ ├── SetSystemTimeAdjustment.S │ │ ├── SetTapeParameters.S │ │ ├── SetTapePosition.S │ │ ├── SetTermsrvAppInstallMode.S │ │ ├── SetThreadAffinityMask.S │ │ ├── SetThreadContext.S │ │ ├── SetThreadErrorMode.S │ │ ├── SetThreadExecutionState.S │ │ ├── SetThreadGroupAffinity.S │ │ ├── SetThreadIdealProcessor.S │ │ ├── SetThreadIdealProcessorEx.S │ │ ├── SetThreadInformation.S │ │ ├── SetThreadLocale.S │ │ ├── SetThreadPreferredUILanguages.S │ │ ├── SetThreadPriority.S │ │ ├── SetThreadPriorityBoost.S │ │ ├── SetThreadSelectedCpuSets.S │ │ ├── SetThreadStackGuarantee.S │ │ ├── SetThreadUILanguage.S │ │ ├── SetThreadpoolStackInformation.S │ │ ├── SetThreadpoolThreadMinimum.S │ │ ├── SetTimeZoneInformation.S │ │ ├── SetTimerQueueTimer.S │ │ ├── SetUmsThreadInformation.S │ │ ├── SetUnhandledExceptionFilter.S │ │ ├── SetUserGeoID.S │ │ ├── SetVDMCurrentDirectories.S │ │ ├── SetVolumeLabelW.S │ │ ├── SetVolumeMountPointW.S │ │ ├── SetVolumeMountPointWStub.S │ │ ├── SetWaitableTimer.S │ │ ├── SetWaitableTimerEx.S │ │ ├── SetXStateFeaturesMask.S │ │ ├── SetupComm.S │ │ ├── ShowConsoleCursor.S │ │ ├── SignalObjectAndWait.S │ │ ├── SizeofResource.S │ │ ├── Sleep.S │ │ ├── SleepConditionVariableCS.S │ │ ├── SleepConditionVariableSRW.S │ │ ├── SleepEx.S │ │ ├── SortCloseHandle.S │ │ ├── SortGetHandle.S │ │ ├── SuspendThread.S │ │ ├── SwitchToFiber.S │ │ ├── SwitchToThread.S │ │ ├── SystemTimeToFileTime.S │ │ ├── SystemTimeToTzSpecificLocalTime.S │ │ ├── SystemTimeToTzSpecificLocalTimeEx.S │ │ ├── TerminateJobObject.S │ │ ├── TerminateProcess.S │ │ ├── TerminateThread.S │ │ ├── TermsrvAppInstallMode.S │ │ ├── TermsrvConvertSysRootToUserDir.S │ │ ├── TermsrvCreateRegEntry.S │ │ ├── TermsrvDeleteKey.S │ │ ├── TermsrvDeleteValue.S │ │ ├── TermsrvGetPreSetValue.S │ │ ├── TermsrvGetWindowsDirectoryW.S │ │ ├── TermsrvOpenRegEntry.S │ │ ├── TermsrvOpenUserClasses.S │ │ ├── TermsrvRestoreKey.S │ │ ├── TermsrvSetKeySecurity.S │ │ ├── TermsrvSetValueKey.S │ │ ├── TermsrvSyncUserIniFileExt.S │ │ ├── Thread32First.S │ │ ├── Thread32Next.S │ │ ├── TlsAlloc.S │ │ ├── TlsFree.S │ │ ├── TlsGetValue.S │ │ ├── TlsSetValue.S │ │ ├── Toolhelp32ReadProcessMemory.S │ │ ├── TransactNamedPipe.S │ │ ├── TransmitCommChar.S │ │ ├── TryAcquireSRWLockExclusive.S │ │ ├── TryAcquireSRWLockShared.S │ │ ├── TryEnterCriticalSection.S │ │ ├── TrySubmitThreadpoolCallback.S │ │ ├── TzSpecificLocalTimeToSystemTime.S │ │ ├── TzSpecificLocalTimeToSystemTimeEx.S │ │ ├── UTRegister.S │ │ ├── UTUnRegister.S │ │ ├── UmsThreadYield.S │ │ ├── UnhandledExceptionFilter.S │ │ ├── UnlockFile.S │ │ ├── UnlockFileEx.S │ │ ├── UnmapViewOfFile.S │ │ ├── UnmapViewOfFile2.S │ │ ├── UnmapViewOfFileEx.S │ │ ├── UnregisterApplicationRecoveryCallback.S │ │ ├── UnregisterApplicationRestart.S │ │ ├── UnregisterBadMemoryNotification.S │ │ ├── UnregisterConsoleIME.S │ │ ├── UnregisterWait.S │ │ ├── UnregisterWaitEx.S │ │ ├── UnregisterWaitUntilOOBECompleted.S │ │ ├── UpdateCalendarDayOfWeek.S │ │ ├── UpdateProcThreadAttribute.S │ │ ├── UpdateResourceW.S │ │ ├── VDMConsoleOperation.S │ │ ├── VDMOperationStarted.S │ │ ├── VerLanguageNameW.S │ │ ├── VerifyConsoleIoHandle.S │ │ ├── VerifyScripts.S │ │ ├── VerifyVersionInfoW.S │ │ ├── VirtualAlloc.S │ │ ├── VirtualAllocEx.S │ │ ├── VirtualAllocExNuma.S │ │ ├── VirtualFree.S │ │ ├── VirtualFreeEx.S │ │ ├── VirtualLock.S │ │ ├── VirtualProtect.S │ │ ├── VirtualProtectEx.S │ │ ├── VirtualQuery.S │ │ ├── VirtualQueryEx.S │ │ ├── VirtualUnlock.S │ │ ├── WTSGetActiveConsoleSessionId.S │ │ ├── WaitCommEvent.S │ │ ├── WaitForDebugEvent.S │ │ ├── WaitForMultipleObjects.S │ │ ├── WaitForMultipleObjectsEx.S │ │ ├── WaitForSingleObject.S │ │ ├── WaitForSingleObjectEx.S │ │ ├── WaitNamedPipeW.S │ │ ├── WerGetFlags.S │ │ ├── WerGetFlagsWorker.S │ │ ├── WerRegisterFile.S │ │ ├── WerRegisterFileWorker.S │ │ ├── WerRegisterMemoryBlock.S │ │ ├── WerRegisterMemoryBlockWorker.S │ │ ├── WerRegisterRuntimeExceptionModule.S │ │ ├── WerRegisterRuntimeExceptionModuleWorker.S │ │ ├── WerSetFlags.S │ │ ├── WerSetFlagsWorker.S │ │ ├── WerUnregisterFile.S │ │ ├── WerUnregisterFileWorker.S │ │ ├── WerUnregisterMemoryBlock.S │ │ ├── WerUnregisterMemoryBlockWorker.S │ │ ├── WerUnregisterRuntimeExceptionModule.S │ │ ├── WerUnregisterRuntimeExceptionModuleWorker.S │ │ ├── WerpGetDebugger.S │ │ ├── WerpInitiateRemoteRecovery.S │ │ ├── WerpLaunchAeDebug.S │ │ ├── WerpNotifyLoadStringResourceWorker.S │ │ ├── WerpNotifyUseStringResourceWorker.S │ │ ├── WideCharToMultiByte.S │ │ ├── WinExec.S │ │ ├── WriteConsoleInputVDMW.S │ │ ├── WriteConsoleInputW.S │ │ ├── WriteConsoleOutputAttribute.S │ │ ├── WriteConsoleOutputCharacterW.S │ │ ├── WriteConsoleOutputW.S │ │ ├── WriteConsoleW.S │ │ ├── WriteFile.S │ │ ├── WriteFileEx.S │ │ ├── WriteFileGather.S │ │ ├── WritePrivateProfileSectionW.S │ │ ├── WritePrivateProfileStringW.S │ │ ├── WritePrivateProfileStructW.S │ │ ├── WriteProcessMemory.S │ │ ├── WriteProfileSectionW.S │ │ ├── WriteProfileStringW.S │ │ ├── WriteTapemark.S │ │ ├── ZombifyActCtx.S │ │ └── ZombifyActCtxWorker.S │ ├── master.sh │ ├── memory.h │ ├── messagebox.h │ ├── nt.mk │ ├── nt │ │ ├── debug.h │ │ ├── file.h │ │ ├── ipc.h │ │ ├── key.h │ │ ├── loader.h │ │ ├── memory.h │ │ ├── process.h │ │ ├── sections.h │ │ ├── signing.h │ │ ├── thread.h │ │ ├── thunk │ │ │ ├── process.inc │ │ │ └── time.inc │ │ └── time.h │ ├── ntdll.h │ ├── ntdll │ │ ├── AlpcAdjustCompletionListConcurrencyCount.S │ │ ├── AlpcFreeCompletionListMessage.S │ │ ├── AlpcGetCompletionListLastMessageInformation.S │ │ ├── AlpcGetCompletionListMessageAttributes.S │ │ ├── AlpcGetHeaderSize.S │ │ ├── AlpcGetMessageAttribute.S │ │ ├── AlpcGetMessageFromCompletionList.S │ │ ├── AlpcGetOutstandingCompletionListMessageCount.S │ │ ├── AlpcInitializeMessageAttribute.S │ │ ├── AlpcMaxAllowedMessageLength.S │ │ ├── AlpcRegisterCompletionList.S │ │ ├── AlpcRegisterCompletionListWorkerThread.S │ │ ├── AlpcRundownCompletionList.S │ │ ├── AlpcUnregisterCompletionList.S │ │ ├── AlpcUnregisterCompletionListWorkerThread.S │ │ ├── ApiSetQueryApiSetPresence.S │ │ ├── CsrAllocateCaptureBuffer.S │ │ ├── CsrAllocateMessagePointer.S │ │ ├── CsrCaptureMessageBuffer.S │ │ ├── CsrCaptureMessageMultiUnicodeStringsInPlace.S │ │ ├── CsrCaptureMessageString.S │ │ ├── CsrCaptureTimeout.S │ │ ├── CsrClientCallServer.S │ │ ├── CsrClientConnectToServer.S │ │ ├── CsrFreeCaptureBuffer.S │ │ ├── CsrGetProcessId.S │ │ ├── CsrIdentifyAlertableThread.S │ │ ├── CsrSetPriorityClass.S │ │ ├── CsrVerifyRegion.S │ │ ├── DbgBreakPoint.S │ │ ├── DbgPrint.S │ │ ├── DbgPrintEx.S │ │ ├── DbgPrintReturnControlC.S │ │ ├── DbgPrompt.S │ │ ├── DbgQueryDebugFilterState.S │ │ ├── DbgSetDebugFilterState.S │ │ ├── DbgUiConnectToDbg.S │ │ ├── DbgUiContinue.S │ │ ├── DbgUiConvertStateChangeStructure.S │ │ ├── DbgUiConvertStateChangeStructureEx.S │ │ ├── DbgUiDebugActiveProcess.S │ │ ├── DbgUiGetThreadDebugObject.S │ │ ├── DbgUiIssueRemoteBreakin.S │ │ ├── DbgUiRemoteBreakin.S │ │ ├── DbgUiSetThreadDebugObject.S │ │ ├── DbgUiStopDebugging.S │ │ ├── DbgUiWaitStateChange.S │ │ ├── DbgUserBreakPoint.S │ │ ├── EtwCheckCoverage.S │ │ ├── EtwCreateTraceInstanceId.S │ │ ├── EtwDeliverDataBlock.S │ │ ├── EtwEnumerateProcessRegGuids.S │ │ ├── EtwEventActivityIdControl.S │ │ ├── EtwEventEnabled.S │ │ ├── EtwEventProviderEnabled.S │ │ ├── EtwEventRegister.S │ │ ├── EtwEventSetInformation.S │ │ ├── EtwEventUnregister.S │ │ ├── EtwEventWrite.S │ │ ├── EtwEventWriteEndScenario.S │ │ ├── EtwEventWriteEx.S │ │ ├── EtwEventWriteFull.S │ │ ├── EtwEventWriteNoRegistration.S │ │ ├── EtwEventWriteStartScenario.S │ │ ├── EtwEventWriteString.S │ │ ├── EtwEventWriteTransfer.S │ │ ├── EtwGetTraceEnableFlags.S │ │ ├── EtwGetTraceEnableLevel.S │ │ ├── EtwGetTraceLoggerHandle.S │ │ ├── EtwLogTraceEvent.S │ │ ├── EtwNotificationRegister.S │ │ ├── EtwNotificationUnregister.S │ │ ├── EtwProcessPrivateLoggerRequest.S │ │ ├── EtwRegisterSecurityProvider.S │ │ ├── EtwRegisterTraceGuidsW.S │ │ ├── EtwReplyNotification.S │ │ ├── EtwSendNotification.S │ │ ├── EtwSetMark.S │ │ ├── EtwTraceEventInstance.S │ │ ├── EtwTraceMessage.S │ │ ├── EtwTraceMessageVa.S │ │ ├── EtwUnregisterTraceGuids.S │ │ ├── EtwWriteUMSecurityEvent.S │ │ ├── EtwpCreateEtwThread.S │ │ ├── EtwpGetCpuSpeed.S │ │ ├── EvtIntReportAuthzEventAndSourceAsync.S │ │ ├── EvtIntReportEventAndSourceAsync.S │ │ ├── ExpInterlockedPopEntrySListEnd.S │ │ ├── ExpInterlockedPopEntrySListFault.S │ │ ├── ExpInterlockedPopEntrySListResume.S │ │ ├── KiRaiseUserExceptionDispatcher.S │ │ ├── KiUserApcDispatcher.S │ │ ├── KiUserCallbackDispatcher.S │ │ ├── KiUserExceptionDispatcher.S │ │ ├── KiUserInvertedFunctionTable.S │ │ ├── LdrAccessResource.S │ │ ├── LdrAddDllDirectory.S │ │ ├── LdrAddLoadAsDataTable.S │ │ ├── LdrAddRefDll.S │ │ ├── LdrAppxHandleIntegrityFailure.S │ │ ├── LdrCallEnclave.S │ │ ├── LdrControlFlowGuardEnforced.S │ │ ├── LdrCreateEnclave.S │ │ ├── LdrDeleteEnclave.S │ │ ├── LdrDisableThreadCalloutsForDll.S │ │ ├── LdrEnumResources.S │ │ ├── LdrEnumerateLoadedModules.S │ │ ├── LdrFastFailInLoaderCallout.S │ │ ├── LdrFindEntryForAddress.S │ │ ├── LdrFindResourceDirectory_U.S │ │ ├── LdrFindResourceEx_U.S │ │ ├── LdrFindResource_U.S │ │ ├── LdrFlushAlternateResourceModules.S │ │ ├── LdrGetDllDirectory.S │ │ ├── LdrGetDllFullName.S │ │ ├── LdrGetDllHandle.S │ │ ├── LdrGetDllHandleByMapping.S │ │ ├── LdrGetDllHandleByName.S │ │ ├── LdrGetDllHandleEx.S │ │ ├── LdrGetDllPath.S │ │ ├── LdrGetFailureData.S │ │ ├── LdrGetFileNameFromLoadAsDataTable.S │ │ ├── LdrGetKnownDllSectionHandle.S │ │ ├── LdrGetProcedureAddress.S │ │ ├── LdrGetProcedureAddressEx.S │ │ ├── LdrGetProcedureAddressForCaller.S │ │ ├── LdrInitShimEngineDynamic.S │ │ ├── LdrInitializeEnclave.S │ │ ├── LdrInitializeThunk.S │ │ ├── LdrLoadAlternateResourceModule.S │ │ ├── LdrLoadAlternateResourceModuleEx.S │ │ ├── LdrLoadDll.S │ │ ├── LdrLoadEnclaveModule.S │ │ ├── LdrLockLoaderLock.S │ │ ├── LdrOpenImageFileOptionsKey.S │ │ ├── LdrProcessInitializationComplete.S │ │ ├── LdrProcessRelocationBlock.S │ │ ├── LdrProcessRelocationBlockEx.S │ │ ├── LdrQueryImageFileExecutionOptions.S │ │ ├── LdrQueryImageFileExecutionOptionsEx.S │ │ ├── LdrQueryImageFileKeyOption.S │ │ ├── LdrQueryModuleServiceTags.S │ │ ├── LdrQueryOptionalDelayLoadedAPI.S │ │ ├── LdrQueryProcessModuleInformation.S │ │ ├── LdrRegisterDllNotification.S │ │ ├── LdrRemoveDllDirectory.S │ │ ├── LdrRemoveLoadAsDataTable.S │ │ ├── LdrResFindResource.S │ │ ├── LdrResFindResourceDirectory.S │ │ ├── LdrResGetRCConfig.S │ │ ├── LdrResRelease.S │ │ ├── LdrResSearchResource.S │ │ ├── LdrResolveDelayLoadedAPI.S │ │ ├── LdrResolveDelayLoadsFromDll.S │ │ ├── LdrRscIsTypeExist.S │ │ ├── LdrSetAppCompatDllRedirectionCallback.S │ │ ├── LdrSetDefaultDllDirectories.S │ │ ├── LdrSetDllDirectory.S │ │ ├── LdrSetDllManifestProber.S │ │ ├── LdrSetImplicitPathOptions.S │ │ ├── LdrSetMUICacheType.S │ │ ├── LdrShutdownProcess.S │ │ ├── LdrShutdownThread.S │ │ ├── LdrStandardizeSystemPath.S │ │ ├── LdrSystemDllInitBlock.S │ │ ├── LdrUnloadAlternateResourceModule.S │ │ ├── LdrUnloadAlternateResourceModuleEx.S │ │ ├── LdrUnloadDll.S │ │ ├── LdrUnlockLoaderLock.S │ │ ├── LdrUnregisterDllNotification.S │ │ ├── LdrUpdatePackageSearchPath.S │ │ ├── LdrVerifyImageMatchesChecksum.S │ │ ├── LdrVerifyImageMatchesChecksumEx.S │ │ ├── LdrpResGetMappingSize.S │ │ ├── LdrpResGetResourceDirectory.S │ │ ├── MD4Final.S │ │ ├── MD4Init.S │ │ ├── MD4Update.S │ │ ├── NlsAnsiCodePage.S │ │ ├── NlsMbCodePageTag.S │ │ ├── NlsMbOemCodePageTag.S │ │ ├── NtAcceptConnectPort.S │ │ ├── NtAccessCheck.S │ │ ├── NtAccessCheckAndAuditAlarm.S │ │ ├── NtAccessCheckByType.S │ │ ├── NtAccessCheckByTypeAndAuditAlarm.S │ │ ├── NtAccessCheckByTypeResultList.S │ │ ├── NtAccessCheckByTypeResultListAndAuditAlarm.S │ │ ├── NtAccessCheckByTypeResultListAndAuditAlarmByHandle.S │ │ ├── NtAcquireProcessActivityReference.S │ │ ├── NtAddAtom.S │ │ ├── NtAddAtomEx.S │ │ ├── NtAddBootEntry.S │ │ ├── NtAddDriverEntry.S │ │ ├── NtAdjustGroupsToken.S │ │ ├── NtAdjustPrivilegesToken.S │ │ ├── NtAdjustTokenClaimsAndDeviceGroups.S │ │ ├── NtAlertResumeThread.S │ │ ├── NtAlertThread.S │ │ ├── NtAlertThreadByThreadId.S │ │ ├── NtAllocateLocallyUniqueId.S │ │ ├── NtAllocateReserveObject.S │ │ ├── NtAllocateUserPhysicalPages.S │ │ ├── NtAllocateUuids.S │ │ ├── NtAllocateVirtualMemory.S │ │ ├── NtAllocateVirtualMemoryEx.S │ │ ├── NtAlpcAcceptConnectPort.S │ │ ├── NtAlpcCancelMessage.S │ │ ├── NtAlpcConnectPort.S │ │ ├── NtAlpcConnectPortEx.S │ │ ├── NtAlpcCreatePort.S │ │ ├── NtAlpcCreatePortSection.S │ │ ├── NtAlpcCreateResourceReserve.S │ │ ├── NtAlpcCreateSectionView.S │ │ ├── NtAlpcCreateSecurityContext.S │ │ ├── NtAlpcDeletePortSection.S │ │ ├── NtAlpcDeleteResourceReserve.S │ │ ├── NtAlpcDeleteSectionView.S │ │ ├── NtAlpcDeleteSecurityContext.S │ │ ├── NtAlpcDisconnectPort.S │ │ ├── NtAlpcImpersonateClientContainerOfPort.S │ │ ├── NtAlpcImpersonateClientOfPort.S │ │ ├── NtAlpcOpenSenderProcess.S │ │ ├── NtAlpcOpenSenderThread.S │ │ ├── NtAlpcQueryInformation.S │ │ ├── NtAlpcQueryInformationMessage.S │ │ ├── NtAlpcRevokeSecurityContext.S │ │ ├── NtAlpcSendWaitReceivePort.S │ │ ├── NtAlpcSetInformation.S │ │ ├── NtApphelpCacheControl.S │ │ ├── NtAreMappedFilesTheSame.S │ │ ├── NtAssignProcessToJobObject.S │ │ ├── NtAssociateWaitCompletionPacket.S │ │ ├── NtCallEnclave.S │ │ ├── NtCallbackReturn.S │ │ ├── NtCancelIoFile.S │ │ ├── NtCancelIoFileEx.S │ │ ├── NtCancelSynchronousIoFile.S │ │ ├── NtCancelTimer.S │ │ ├── NtCancelTimer2.S │ │ ├── NtCancelWaitCompletionPacket.S │ │ ├── NtClearEvent.S │ │ ├── NtClose.S │ │ ├── NtCloseObjectAuditAlarm.S │ │ ├── NtCommitComplete.S │ │ ├── NtCommitEnlistment.S │ │ ├── NtCommitRegistryTransaction.S │ │ ├── NtCommitTransaction.S │ │ ├── NtCompactKeys.S │ │ ├── NtCompareObjects.S │ │ ├── NtCompareSigningLevels.S │ │ ├── NtCompareTokens.S │ │ ├── NtCompleteConnectPort.S │ │ ├── NtCompressKey.S │ │ ├── NtConnectPort.S │ │ ├── NtContinue.S │ │ ├── NtConvertBetweenAuxiliaryCounterAndPerformanceCounter.S │ │ ├── NtCreateDebugObject.S │ │ ├── NtCreateDirectoryObject.S │ │ ├── NtCreateDirectoryObjectEx.S │ │ ├── NtCreateEnclave.S │ │ ├── NtCreateEnlistment.S │ │ ├── NtCreateEvent.S │ │ ├── NtCreateEventPair.S │ │ ├── NtCreateFile.S │ │ ├── NtCreateIRTimer.S │ │ ├── NtCreateIoCompletion.S │ │ ├── NtCreateJobObject.S │ │ ├── NtCreateJobSet.S │ │ ├── NtCreateKey.S │ │ ├── NtCreateKeyTransacted.S │ │ ├── NtCreateKeyedEvent.S │ │ ├── NtCreateLowBoxToken.S │ │ ├── NtCreateMailslotFile.S │ │ ├── NtCreateMutant.S │ │ ├── NtCreateNamedPipeFile.S │ │ ├── NtCreatePagingFile.S │ │ ├── NtCreatePartition.S │ │ ├── NtCreatePort.S │ │ ├── NtCreatePrivateNamespace.S │ │ ├── NtCreateProcess.S │ │ ├── NtCreateProcessEx.S │ │ ├── NtCreateProfile.S │ │ ├── NtCreateProfileEx.S │ │ ├── NtCreateRegistryTransaction.S │ │ ├── NtCreateResourceManager.S │ │ ├── NtCreateSection.S │ │ ├── NtCreateSemaphore.S │ │ ├── NtCreateSymbolicLinkObject.S │ │ ├── NtCreateThread.S │ │ ├── NtCreateThreadEx.S │ │ ├── NtCreateTimer.S │ │ ├── NtCreateTimer2.S │ │ ├── NtCreateToken.S │ │ ├── NtCreateTokenEx.S │ │ ├── NtCreateTransaction.S │ │ ├── NtCreateTransactionManager.S │ │ ├── NtCreateUserProcess.S │ │ ├── NtCreateWaitCompletionPacket.S │ │ ├── NtCreateWaitablePort.S │ │ ├── NtCreateWnfStateName.S │ │ ├── NtCreateWorkerFactory.S │ │ ├── NtDebugActiveProcess.S │ │ ├── NtDebugContinue.S │ │ ├── NtDelayExecution.S │ │ ├── NtDeleteAtom.S │ │ ├── NtDeleteBootEntry.S │ │ ├── NtDeleteDriverEntry.S │ │ ├── NtDeleteFile.S │ │ ├── NtDeleteKey.S │ │ ├── NtDeleteObjectAuditAlarm.S │ │ ├── NtDeletePrivateNamespace.S │ │ ├── NtDeleteValueKey.S │ │ ├── NtDeleteWnfStateData.S │ │ ├── NtDeleteWnfStateName.S │ │ ├── NtDeviceIoControlFile.S │ │ ├── NtDisableLastKnownGood.S │ │ ├── NtDisplayString.S │ │ ├── NtDrawText.S │ │ ├── NtDuplicateObject.S │ │ ├── NtDuplicateToken.S │ │ ├── NtEnableLastKnownGood.S │ │ ├── NtEnumerateBootEntries.S │ │ ├── NtEnumerateDriverEntries.S │ │ ├── NtEnumerateKey.S │ │ ├── NtEnumerateSystemEnvironmentValuesEx.S │ │ ├── NtEnumerateTransactionObject.S │ │ ├── NtEnumerateValueKey.S │ │ ├── NtExtendSection.S │ │ ├── NtFilterBootOption.S │ │ ├── NtFilterToken.S │ │ ├── NtFilterTokenEx.S │ │ ├── NtFindAtom.S │ │ ├── NtFlushBuffersFile.S │ │ ├── NtFlushBuffersFileEx.S │ │ ├── NtFlushInstallUILanguage.S │ │ ├── NtFlushInstructionCache.S │ │ ├── NtFlushKey.S │ │ ├── NtFlushProcessWriteBuffers.S │ │ ├── NtFlushVirtualMemory.S │ │ ├── NtFlushWriteBuffer.S │ │ ├── NtFreeUserPhysicalPages.S │ │ ├── NtFreeVirtualMemory.S │ │ ├── NtFreezeRegistry.S │ │ ├── NtFreezeTransactions.S │ │ ├── NtFsControlFile.S │ │ ├── NtGetCachedSigningLevel.S │ │ ├── NtGetCompleteWnfStateSubscription.S │ │ ├── NtGetContextThread.S │ │ ├── NtGetCurrentProcessorNumber.S │ │ ├── NtGetCurrentProcessorNumberEx.S │ │ ├── NtGetDevicePowerState.S │ │ ├── NtGetMUIRegistryInfo.S │ │ ├── NtGetNextProcess.S │ │ ├── NtGetNextThread.S │ │ ├── NtGetNlsSectionPtr.S │ │ ├── NtGetNotificationResourceManager.S │ │ ├── NtGetTickCount.S │ │ ├── NtGetWriteWatch.S │ │ ├── NtImpersonateAnonymousToken.S │ │ ├── NtImpersonateClientOfPort.S │ │ ├── NtImpersonateThread.S │ │ ├── NtInitializeEnclave.S │ │ ├── NtInitializeNlsFiles.S │ │ ├── NtInitializeRegistry.S │ │ ├── NtInitiatePowerAction.S │ │ ├── NtIsProcessInJob.S │ │ ├── NtIsSystemResumeAutomatic.S │ │ ├── NtIsUILanguageComitted.S │ │ ├── NtListenPort.S │ │ ├── NtLoadDriver.S │ │ ├── NtLoadEnclaveData.S │ │ ├── NtLoadHotPatch.S │ │ ├── NtLoadKey.S │ │ ├── NtLoadKey2.S │ │ ├── NtLoadKeyEx.S │ │ ├── NtLockFile.S │ │ ├── NtLockProductActivationKeys.S │ │ ├── NtLockRegistryKey.S │ │ ├── NtLockVirtualMemory.S │ │ ├── NtMakePermanentObject.S │ │ ├── NtMakeTemporaryObject.S │ │ ├── NtManagePartition.S │ │ ├── NtMapCMFModule.S │ │ ├── NtMapUserPhysicalPages.S │ │ ├── NtMapUserPhysicalPagesScatter.S │ │ ├── NtMapViewOfSection.S │ │ ├── NtMapViewOfSectionEx.S │ │ ├── NtModifyBootEntry.S │ │ ├── NtModifyDriverEntry.S │ │ ├── NtNotifyChangeDirectoryFile.S │ │ ├── NtNotifyChangeDirectoryFileEx.S │ │ ├── NtNotifyChangeKey.S │ │ ├── NtNotifyChangeMultipleKeys.S │ │ ├── NtNotifyChangeSession.S │ │ ├── NtOpenDirectoryObject.S │ │ ├── NtOpenEnlistment.S │ │ ├── NtOpenEvent.S │ │ ├── NtOpenEventPair.S │ │ ├── NtOpenFile.S │ │ ├── NtOpenIoCompletion.S │ │ ├── NtOpenJobObject.S │ │ ├── NtOpenKey.S │ │ ├── NtOpenKeyEx.S │ │ ├── NtOpenKeyTransacted.S │ │ ├── NtOpenKeyTransactedEx.S │ │ ├── NtOpenKeyedEvent.S │ │ ├── NtOpenMutant.S │ │ ├── NtOpenObjectAuditAlarm.S │ │ ├── NtOpenPartition.S │ │ ├── NtOpenPrivateNamespace.S │ │ ├── NtOpenProcess.S │ │ ├── NtOpenProcessToken.S │ │ ├── NtOpenProcessTokenEx.S │ │ ├── NtOpenRegistryTransaction.S │ │ ├── NtOpenResourceManager.S │ │ ├── NtOpenSection.S │ │ ├── NtOpenSemaphore.S │ │ ├── NtOpenSession.S │ │ ├── NtOpenSymbolicLinkObject.S │ │ ├── NtOpenThread.S │ │ ├── NtOpenThreadToken.S │ │ ├── NtOpenThreadTokenEx.S │ │ ├── NtOpenTimer.S │ │ ├── NtOpenTransaction.S │ │ ├── NtOpenTransactionManager.S │ │ ├── NtPlugPlayControl.S │ │ ├── NtPowerInformation.S │ │ ├── NtPrePrepareComplete.S │ │ ├── NtPrePrepareEnlistment.S │ │ ├── NtPrepareComplete.S │ │ ├── NtPrepareEnlistment.S │ │ ├── NtPrivilegeCheck.S │ │ ├── NtPrivilegeObjectAuditAlarm.S │ │ ├── NtPrivilegedServiceAuditAlarm.S │ │ ├── NtPropagationComplete.S │ │ ├── NtPropagationFailed.S │ │ ├── NtProtectVirtualMemory.S │ │ ├── NtPulseEvent.S │ │ ├── NtQueryAttributesFile.S │ │ ├── NtQueryAuxiliaryCounterFrequency.S │ │ ├── NtQueryBootEntryOrder.S │ │ ├── NtQueryBootOptions.S │ │ ├── NtQueryDebugFilterState.S │ │ ├── NtQueryDefaultLocale.S │ │ ├── NtQueryDefaultUILanguage.S │ │ ├── NtQueryDirectoryFile.S │ │ ├── NtQueryDirectoryFileEx.S │ │ ├── NtQueryDirectoryObject.S │ │ ├── NtQueryDriverEntryOrder.S │ │ ├── NtQueryEaFile.S │ │ ├── NtQueryEvent.S │ │ ├── NtQueryFullAttributesFile.S │ │ ├── NtQueryInformationAtom.S │ │ ├── NtQueryInformationByName.S │ │ ├── NtQueryInformationEnlistment.S │ │ ├── NtQueryInformationFile.S │ │ ├── NtQueryInformationJobObject.S │ │ ├── NtQueryInformationPort.S │ │ ├── NtQueryInformationProcess.S │ │ ├── NtQueryInformationResourceManager.S │ │ ├── NtQueryInformationThread.S │ │ ├── NtQueryInformationToken.S │ │ ├── NtQueryInformationTransaction.S │ │ ├── NtQueryInformationTransactionManager.S │ │ ├── NtQueryInformationWorkerFactory.S │ │ ├── NtQueryInstallUILanguage.S │ │ ├── NtQueryIntervalProfile.S │ │ ├── NtQueryIoCompletion.S │ │ ├── NtQueryKey.S │ │ ├── NtQueryLicenseValue.S │ │ ├── NtQueryMultipleValueKey.S │ │ ├── NtQueryMutant.S │ │ ├── NtQueryObject.S │ │ ├── NtQueryOpenSubKeys.S │ │ ├── NtQueryOpenSubKeysEx.S │ │ ├── NtQueryPerformanceCounter.S │ │ ├── NtQueryPortInformationProcess.S │ │ ├── NtQueryQuotaInformationFile.S │ │ ├── NtQuerySection.S │ │ ├── NtQuerySecurityAttributesToken.S │ │ ├── NtQuerySecurityObject.S │ │ ├── NtQuerySecurityPolicy.S │ │ ├── NtQuerySemaphore.S │ │ ├── NtQuerySymbolicLinkObject.S │ │ ├── NtQuerySystemEnvironmentValue.S │ │ ├── NtQuerySystemEnvironmentValueEx.S │ │ ├── NtQuerySystemInformation.S │ │ ├── NtQuerySystemInformationEx.S │ │ ├── NtQuerySystemTime.S │ │ ├── NtQueryTimer.S │ │ ├── NtQueryTimerResolution.S │ │ ├── NtQueryValueKey.S │ │ ├── NtQueryVirtualMemory.S │ │ ├── NtQueryVolumeInformationFile.S │ │ ├── NtQueryWnfStateData.S │ │ ├── NtQueryWnfStateNameInformation.S │ │ ├── NtQueueApcThread.S │ │ ├── NtQueueApcThreadEx.S │ │ ├── NtRaiseException.S │ │ ├── NtRaiseHardError.S │ │ ├── NtReadFile.S │ │ ├── NtReadFileScatter.S │ │ ├── NtReadOnlyEnlistment.S │ │ ├── NtReadRequestData.S │ │ ├── NtReadVirtualMemory.S │ │ ├── NtRecoverEnlistment.S │ │ ├── NtRecoverResourceManager.S │ │ ├── NtRecoverTransactionManager.S │ │ ├── NtRegisterProtocolAddressInformation.S │ │ ├── NtRegisterThreadTerminatePort.S │ │ ├── NtReleaseKeyedEvent.S │ │ ├── NtReleaseMutant.S │ │ ├── NtReleaseSemaphore.S │ │ ├── NtReleaseWorkerFactoryWorker.S │ │ ├── NtRemoveIoCompletion.S │ │ ├── NtRemoveIoCompletionEx.S │ │ ├── NtRemoveProcessDebug.S │ │ ├── NtRenameKey.S │ │ ├── NtRenameTransactionManager.S │ │ ├── NtReplaceKey.S │ │ ├── NtReplacePartitionUnit.S │ │ ├── NtReplyPort.S │ │ ├── NtReplyWaitReceivePort.S │ │ ├── NtReplyWaitReceivePortEx.S │ │ ├── NtReplyWaitReplyPort.S │ │ ├── NtRequestPort.S │ │ ├── NtRequestWaitReplyPort.S │ │ ├── NtResetEvent.S │ │ ├── NtResetWriteWatch.S │ │ ├── NtRestoreKey.S │ │ ├── NtResumeProcess.S │ │ ├── NtResumeThread.S │ │ ├── NtRevertContainerImpersonation.S │ │ ├── NtRollbackComplete.S │ │ ├── NtRollbackEnlistment.S │ │ ├── NtRollbackRegistryTransaction.S │ │ ├── NtRollbackTransaction.S │ │ ├── NtRollforwardTransactionManager.S │ │ ├── NtSaveKey.S │ │ ├── NtSaveKeyEx.S │ │ ├── NtSaveMergedKeys.S │ │ ├── NtSecureConnectPort.S │ │ ├── NtSerializeBoot.S │ │ ├── NtSetBootEntryOrder.S │ │ ├── NtSetBootOptions.S │ │ ├── NtSetCachedSigningLevel.S │ │ ├── NtSetCachedSigningLevel2.S │ │ ├── NtSetContextThread.S │ │ ├── NtSetDebugFilterState.S │ │ ├── NtSetDefaultHardErrorPort.S │ │ ├── NtSetDefaultLocale.S │ │ ├── NtSetDefaultUILanguage.S │ │ ├── NtSetDriverEntryOrder.S │ │ ├── NtSetEaFile.S │ │ ├── NtSetEvent.S │ │ ├── NtSetEventBoostPriority.S │ │ ├── NtSetHighEventPair.S │ │ ├── NtSetHighWaitLowEventPair.S │ │ ├── NtSetIRTimer.S │ │ ├── NtSetInformationDebugObject.S │ │ ├── NtSetInformationEnlistment.S │ │ ├── NtSetInformationFile.S │ │ ├── NtSetInformationJobObject.S │ │ ├── NtSetInformationKey.S │ │ ├── NtSetInformationObject.S │ │ ├── NtSetInformationProcess.S │ │ ├── NtSetInformationResourceManager.S │ │ ├── NtSetInformationSymbolicLink.S │ │ ├── NtSetInformationThread.S │ │ ├── NtSetInformationToken.S │ │ ├── NtSetInformationTransaction.S │ │ ├── NtSetInformationTransactionManager.S │ │ ├── NtSetInformationVirtualMemory.S │ │ ├── NtSetInformationWorkerFactory.S │ │ ├── NtSetIntervalProfile.S │ │ ├── NtSetIoCompletion.S │ │ ├── NtSetIoCompletionEx.S │ │ ├── NtSetLdtEntries.S │ │ ├── NtSetLowEventPair.S │ │ ├── NtSetLowWaitHighEventPair.S │ │ ├── NtSetQuotaInformationFile.S │ │ ├── NtSetSecurityObject.S │ │ ├── NtSetSystemEnvironmentValue.S │ │ ├── NtSetSystemEnvironmentValueEx.S │ │ ├── NtSetSystemInformation.S │ │ ├── NtSetSystemPowerState.S │ │ ├── NtSetSystemTime.S │ │ ├── NtSetThreadExecutionState.S │ │ ├── NtSetTimer.S │ │ ├── NtSetTimer2.S │ │ ├── NtSetTimerEx.S │ │ ├── NtSetTimerResolution.S │ │ ├── NtSetUuidSeed.S │ │ ├── NtSetValueKey.S │ │ ├── NtSetVolumeInformationFile.S │ │ ├── NtSetWnfProcessNotificationEvent.S │ │ ├── NtShutdownSystem.S │ │ ├── NtShutdownWorkerFactory.S │ │ ├── NtSignalAndWaitForSingleObject.S │ │ ├── NtSinglePhaseReject.S │ │ ├── NtStartProfile.S │ │ ├── NtStopProfile.S │ │ ├── NtSubscribeWnfStateChange.S │ │ ├── NtSuspendProcess.S │ │ ├── NtSuspendThread.S │ │ ├── NtSystemDebugControl.S │ │ ├── NtTerminateEnclave.S │ │ ├── NtTerminateJobObject.S │ │ ├── NtTerminateProcess.S │ │ ├── NtTerminateThread.S │ │ ├── NtTestAlert.S │ │ ├── NtThawRegistry.S │ │ ├── NtThawTransactions.S │ │ ├── NtTraceControl.S │ │ ├── NtTraceEvent.S │ │ ├── NtTranslateFilePath.S │ │ ├── NtUmsThreadYield.S │ │ ├── NtUnloadDriver.S │ │ ├── NtUnloadKey.S │ │ ├── NtUnloadKey2.S │ │ ├── NtUnloadKeyEx.S │ │ ├── NtUnlockFile.S │ │ ├── NtUnlockVirtualMemory.S │ │ ├── NtUnmapViewOfSection.S │ │ ├── NtUnmapViewOfSectionEx.S │ │ ├── NtUnsubscribeWnfStateChange.S │ │ ├── NtUpdateWnfStateData.S │ │ ├── NtVdmControl.S │ │ ├── NtWaitForAlertByThreadId.S │ │ ├── NtWaitForDebugEvent.S │ │ ├── NtWaitForKeyedEvent.S │ │ ├── NtWaitForMultipleObjects.S │ │ ├── NtWaitForMultipleObjects32.S │ │ ├── NtWaitForSingleObject.S │ │ ├── NtWaitForWorkViaWorkerFactory.S │ │ ├── NtWaitHighEventPair.S │ │ ├── NtWaitLowEventPair.S │ │ ├── NtWorkerFactoryWorkerReady.S │ │ ├── NtWriteFile.S │ │ ├── NtWriteFileGather.S │ │ ├── NtWriteRequestData.S │ │ ├── NtWriteVirtualMemory.S │ │ ├── NtYieldExecution.S │ │ ├── NtdllDefWindowProc_W.S │ │ ├── NtdllDialogWndProc_W.S │ │ ├── PfxFindPrefix.S │ │ ├── PfxInitialize.S │ │ ├── PfxInsertPrefix.S │ │ ├── PfxRemovePrefix.S │ │ ├── PssNtCaptureSnapshot.S │ │ ├── PssNtDuplicateSnapshot.S │ │ ├── PssNtFreeRemoteSnapshot.S │ │ ├── PssNtFreeSnapshot.S │ │ ├── PssNtFreeWalkMarker.S │ │ ├── PssNtQuerySnapshot.S │ │ ├── PssNtValidateDescriptor.S │ │ ├── PssNtWalkSnapshot.S │ │ ├── RtlAbortRXact.S │ │ ├── RtlAbsoluteToSelfRelativeSD.S │ │ ├── RtlAcquirePebLock.S │ │ ├── RtlAcquirePrivilege.S │ │ ├── RtlAcquireReleaseSRWLockExclusive.S │ │ ├── RtlAcquireResourceExclusive.S │ │ ├── RtlAcquireResourceShared.S │ │ ├── RtlAcquireSRWLockExclusive.S │ │ ├── RtlAcquireSRWLockShared.S │ │ ├── RtlActivateActivationContext.S │ │ ├── RtlActivateActivationContextEx.S │ │ ├── RtlActivateActivationContextUnsafeFast.S │ │ ├── RtlAddAccessAllowedAce.S │ │ ├── RtlAddAccessAllowedAceEx.S │ │ ├── RtlAddAccessAllowedObjectAce.S │ │ ├── RtlAddAccessDeniedAce.S │ │ ├── RtlAddAccessDeniedAceEx.S │ │ ├── RtlAddAccessDeniedObjectAce.S │ │ ├── RtlAddAccessFilterAce.S │ │ ├── RtlAddAce.S │ │ ├── RtlAddActionToRXact.S │ │ ├── RtlAddAtomToAtomTable.S │ │ ├── RtlAddAttributeActionToRXact.S │ │ ├── RtlAddAuditAccessAce.S │ │ ├── RtlAddAuditAccessAceEx.S │ │ ├── RtlAddAuditAccessObjectAce.S │ │ ├── RtlAddCompoundAce.S │ │ ├── RtlAddFunctionTable.S │ │ ├── RtlAddGrowableFunctionTable.S │ │ ├── RtlAddIntegrityLabelToBoundaryDescriptor.S │ │ ├── RtlAddMandatoryAce.S │ │ ├── RtlAddProcessTrustLabelAce.S │ │ ├── RtlAddRefActivationContext.S │ │ ├── RtlAddRefMemoryStream.S │ │ ├── RtlAddResourceAttributeAce.S │ │ ├── RtlAddSIDToBoundaryDescriptor.S │ │ ├── RtlAddScopedPolicyIDAce.S │ │ ├── RtlAddVectoredContinueHandler.S │ │ ├── RtlAddVectoredExceptionHandler.S │ │ ├── RtlAddressInSectionTable.S │ │ ├── RtlAdjustPrivilege.S │ │ ├── RtlAllocateActivationContextStack.S │ │ ├── RtlAllocateAndInitializeSid.S │ │ ├── RtlAllocateAndInitializeSidEx.S │ │ ├── RtlAllocateHandle.S │ │ ├── RtlAllocateHeap.S │ │ ├── RtlAllocateMemoryBlockLookaside.S │ │ ├── RtlAllocateMemoryZone.S │ │ ├── RtlAllocateWnfSerializationGroup.S │ │ ├── RtlAnsiCharToUnicodeChar.S │ │ ├── RtlAnsiStringToUnicodeSize.S │ │ ├── RtlAnsiStringToUnicodeString.S │ │ ├── RtlAppendAsciizToString.S │ │ ├── RtlAppendPathElement.S │ │ ├── RtlAppendStringToString.S │ │ ├── RtlAppendUnicodeStringToString.S │ │ ├── RtlAppendUnicodeToString.S │ │ ├── RtlApplicationVerifierStop.S │ │ ├── RtlApplyRXact.S │ │ ├── RtlApplyRXactNoFlush.S │ │ ├── RtlAppxIsFileOwnedByTrustedInstaller.S │ │ ├── RtlAreAllAccessesGranted.S │ │ ├── RtlAreAnyAccessesGranted.S │ │ ├── RtlAreBitsClear.S │ │ ├── RtlAreBitsSet.S │ │ ├── RtlAreLongPathsEnabled.S │ │ ├── RtlAssert.S │ │ ├── RtlAvlInsertNodeEx.S │ │ ├── RtlAvlRemoveNode.S │ │ ├── RtlBarrier.S │ │ ├── RtlBarrierForDelete.S │ │ ├── RtlCallEnclaveReturn.S │ │ ├── RtlCancelTimer.S │ │ ├── RtlCanonicalizeDomainName.S │ │ ├── RtlCapabilityCheck.S │ │ ├── RtlCapabilityCheckForSingleSessionSku.S │ │ ├── RtlCaptureContext.S │ │ ├── RtlCaptureStackBackTrace.S │ │ ├── RtlCharToInteger.S │ │ ├── RtlCheckBootStatusIntegrity.S │ │ ├── RtlCheckForOrphanedCriticalSections.S │ │ ├── RtlCheckPortableOperatingSystem.S │ │ ├── RtlCheckRegistryKey.S │ │ ├── RtlCheckSandboxedToken.S │ │ ├── RtlCheckSystemBootStatusIntegrity.S │ │ ├── RtlCheckTokenCapability.S │ │ ├── RtlCheckTokenMembership.S │ │ ├── RtlCheckTokenMembershipEx.S │ │ ├── RtlCleanUpTEBLangLists.S │ │ ├── RtlClearAllBits.S │ │ ├── RtlClearBit.S │ │ ├── RtlClearBits.S │ │ ├── RtlClearThreadWorkOnBehalfTicket.S │ │ ├── RtlCloneMemoryStream.S │ │ ├── RtlCloneUserProcess.S │ │ ├── RtlCmDecodeMemIoResource.S │ │ ├── RtlCmEncodeMemIoResource.S │ │ ├── RtlCommitDebugInfo.S │ │ ├── RtlCommitMemoryStream.S │ │ ├── RtlCompactHeap.S │ │ ├── RtlCompareAltitudes.S │ │ ├── RtlCompareMemory.S │ │ ├── RtlCompareMemoryUlong.S │ │ ├── RtlCompareString.S │ │ ├── RtlCompareUnicodeString.S │ │ ├── RtlCompareUnicodeStrings.S │ │ ├── RtlCompleteProcessCloning.S │ │ ├── RtlCompressBuffer.S │ │ ├── RtlComputeCrc32.S │ │ ├── RtlComputeImportTableHash.S │ │ ├── RtlComputePrivatizedDllName_U.S │ │ ├── RtlConnectToSm.S │ │ ├── RtlConsoleMultiByteToUnicodeN.S │ │ ├── RtlContractHashTable.S │ │ ├── RtlConvertDeviceFamilyInfoToString.S │ │ ├── RtlConvertExclusiveToShared.S │ │ ├── RtlConvertLCIDToString.S │ │ ├── RtlConvertSRWLockExclusiveToShared.S │ │ ├── RtlConvertSharedToExclusive.S │ │ ├── RtlConvertSidToUnicodeString.S │ │ ├── RtlConvertToAutoInheritSecurityObject.S │ │ ├── RtlCopyBitMap.S │ │ ├── RtlCopyContext.S │ │ ├── RtlCopyExtendedContext.S │ │ ├── RtlCopyLuid.S │ │ ├── RtlCopyLuidAndAttributesArray.S │ │ ├── RtlCopyMappedMemory.S │ │ ├── RtlCopyMemory.S │ │ ├── RtlCopyMemoryNonTemporal.S │ │ ├── RtlCopyMemoryStreamTo.S │ │ ├── RtlCopyOutOfProcessMemoryStreamTo.S │ │ ├── RtlCopySecurityDescriptor.S │ │ ├── RtlCopySid.S │ │ ├── RtlCopySidAndAttributesArray.S │ │ ├── RtlCopyString.S │ │ ├── RtlCopyUnicodeString.S │ │ ├── RtlCrc32.S │ │ ├── RtlCrc64.S │ │ ├── RtlCreateAcl.S │ │ ├── RtlCreateActivationContext.S │ │ ├── RtlCreateAndSetSD.S │ │ ├── RtlCreateAtomTable.S │ │ ├── RtlCreateBootStatusDataFile.S │ │ ├── RtlCreateBoundaryDescriptor.S │ │ ├── RtlCreateEnvironment.S │ │ ├── RtlCreateEnvironmentEx.S │ │ ├── RtlCreateHashTable.S │ │ ├── RtlCreateHashTableEx.S │ │ ├── RtlCreateHeap.S │ │ ├── RtlCreateMemoryBlockLookaside.S │ │ ├── RtlCreateMemoryZone.S │ │ ├── RtlCreateProcessParameters.S │ │ ├── RtlCreateProcessParametersEx.S │ │ ├── RtlCreateProcessReflection.S │ │ ├── RtlCreateQueryDebugBuffer.S │ │ ├── RtlCreateRegistryKey.S │ │ ├── RtlCreateSecurityDescriptor.S │ │ ├── RtlCreateServiceSid.S │ │ ├── RtlCreateSystemVolumeInformationFolder.S │ │ ├── RtlCreateTagHeap.S │ │ ├── RtlCreateTimer.S │ │ ├── RtlCreateTimerQueue.S │ │ ├── RtlCreateUmsCompletionList.S │ │ ├── RtlCreateUmsThreadContext.S │ │ ├── RtlCreateUnicodeString.S │ │ ├── RtlCreateUnicodeStringFromAsciiz.S │ │ ├── RtlCreateUserProcess.S │ │ ├── RtlCreateUserProcessEx.S │ │ ├── RtlCreateUserSecurityObject.S │ │ ├── RtlCreateUserStack.S │ │ ├── RtlCreateUserThread.S │ │ ├── RtlCreateVirtualAccountSid.S │ │ ├── RtlCultureNameToLCID.S │ │ ├── RtlCustomCPToUnicodeN.S │ │ ├── RtlCutoverTimeToSystemTime.S │ │ ├── RtlDeCommitDebugInfo.S │ │ ├── RtlDeNormalizeProcessParams.S │ │ ├── RtlDeactivateActivationContext.S │ │ ├── RtlDeactivateActivationContextUnsafeFast.S │ │ ├── RtlDebugPrintTimes.S │ │ ├── RtlDecodePointer.S │ │ ├── RtlDecodeRemotePointer.S │ │ ├── RtlDecodeSystemPointer.S │ │ ├── RtlDecompressBuffer.S │ │ ├── RtlDecompressBufferEx.S │ │ ├── RtlDecompressFragment.S │ │ ├── RtlDefaultNpAcl.S │ │ ├── RtlDelete.S │ │ ├── RtlDeleteAce.S │ │ ├── RtlDeleteAtomFromAtomTable.S │ │ ├── RtlDeleteBarrier.S │ │ ├── RtlDeleteBoundaryDescriptor.S │ │ ├── RtlDeleteCriticalSection.S │ │ ├── RtlDeleteElementGenericTable.S │ │ ├── RtlDeleteElementGenericTableAvl.S │ │ ├── RtlDeleteElementGenericTableAvlEx.S │ │ ├── RtlDeleteFunctionTable.S │ │ ├── RtlDeleteGrowableFunctionTable.S │ │ ├── RtlDeleteHashTable.S │ │ ├── RtlDeleteNoSplay.S │ │ ├── RtlDeleteRegistryValue.S │ │ ├── RtlDeleteResource.S │ │ ├── RtlDeleteSecurityObject.S │ │ ├── RtlDeleteTimer.S │ │ ├── RtlDeleteTimerQueue.S │ │ ├── RtlDeleteTimerQueueEx.S │ │ ├── RtlDeleteUmsCompletionList.S │ │ ├── RtlDeleteUmsThreadContext.S │ │ ├── RtlDequeueUmsCompletionListItems.S │ │ ├── RtlDeregisterSecureMemoryCacheCallback.S │ │ ├── RtlDeregisterWait.S │ │ ├── RtlDeregisterWaitEx.S │ │ ├── RtlDeriveCapabilitySidsFromName.S │ │ ├── RtlDestroyAtomTable.S │ │ ├── RtlDestroyEnvironment.S │ │ ├── RtlDestroyHandleTable.S │ │ ├── RtlDestroyHeap.S │ │ ├── RtlDestroyMemoryBlockLookaside.S │ │ ├── RtlDestroyMemoryZone.S │ │ ├── RtlDestroyProcessParameters.S │ │ ├── RtlDestroyQueryDebugBuffer.S │ │ ├── RtlDetectHeapLeaks.S │ │ ├── RtlDetermineDosPathNameType_U.S │ │ ├── RtlDisableThreadProfiling.S │ │ ├── RtlDllShutdownInProgress.S │ │ ├── RtlDnsHostNameToComputerName.S │ │ ├── RtlDoesFileExists_U.S │ │ ├── RtlDosApplyFileIsolationRedirection_Ustr.S │ │ ├── RtlDosLongPathNameToNtPathName_U_WithStatus.S │ │ ├── RtlDosLongPathNameToRelativeNtPathName_U_WithStatus.S │ │ ├── RtlDosPathNameToNtPathName_U.S │ │ ├── RtlDosPathNameToNtPathName_U_WithStatus.S │ │ ├── RtlDosPathNameToRelativeNtPathName_U.S │ │ ├── RtlDosPathNameToRelativeNtPathName_U_WithStatus.S │ │ ├── RtlDosSearchPath_U.S │ │ ├── RtlDosSearchPath_Ustr.S │ │ ├── RtlDowncaseUnicodeChar.S │ │ ├── RtlDowncaseUnicodeString.S │ │ ├── RtlDrainNonVolatileFlush.S │ │ ├── RtlDumpResource.S │ │ ├── RtlDuplicateUnicodeString.S │ │ ├── RtlEmptyAtomTable.S │ │ ├── RtlEnableEarlyCriticalSectionEventCreation.S │ │ ├── RtlEnableThreadProfiling.S │ │ ├── RtlEnclaveCallDispatch.S │ │ ├── RtlEnclaveCallDispatchReturn.S │ │ ├── RtlEncodePointer.S │ │ ├── RtlEncodeRemotePointer.S │ │ ├── RtlEncodeSystemPointer.S │ │ ├── RtlEndEnumerationHashTable.S │ │ ├── RtlEndStrongEnumerationHashTable.S │ │ ├── RtlEndWeakEnumerationHashTable.S │ │ ├── RtlEnterCriticalSection.S │ │ ├── RtlEnterUmsSchedulingMode.S │ │ ├── RtlEnumProcessHeaps.S │ │ ├── RtlEnumerateEntryHashTable.S │ │ ├── RtlEnumerateGenericTable.S │ │ ├── RtlEnumerateGenericTableAvl.S │ │ ├── RtlEnumerateGenericTableLikeADirectory.S │ │ ├── RtlEnumerateGenericTableWithoutSplaying.S │ │ ├── RtlEnumerateGenericTableWithoutSplayingAvl.S │ │ ├── RtlEqualComputerName.S │ │ ├── RtlEqualDomainName.S │ │ ├── RtlEqualLuid.S │ │ ├── RtlEqualPrefixSid.S │ │ ├── RtlEqualSid.S │ │ ├── RtlEqualString.S │ │ ├── RtlEqualUnicodeString.S │ │ ├── RtlEqualWnfChangeStamps.S │ │ ├── RtlEraseUnicodeString.S │ │ ├── RtlEthernetAddressToStringW.S │ │ ├── RtlEthernetStringToAddressW.S │ │ ├── RtlExecuteUmsThread.S │ │ ├── RtlExitUserProcess.S │ │ ├── RtlExitUserThread.S │ │ ├── RtlExpandEnvironmentStrings.S │ │ ├── RtlExpandEnvironmentStrings_U.S │ │ ├── RtlExpandHashTable.S │ │ ├── RtlExtendCorrelationVector.S │ │ ├── RtlExtendMemoryBlockLookaside.S │ │ ├── RtlExtendMemoryZone.S │ │ ├── RtlExtractBitMap.S │ │ ├── RtlFillMemory.S │ │ ├── RtlFinalReleaseOutOfProcessMemoryStream.S │ │ ├── RtlFindAceByType.S │ │ ├── RtlFindActivationContextSectionGuid.S │ │ ├── RtlFindActivationContextSectionString.S │ │ ├── RtlFindCharInUnicodeString.S │ │ ├── RtlFindClearBits.S │ │ ├── RtlFindClearBitsAndSet.S │ │ ├── RtlFindClearRuns.S │ │ ├── RtlFindClosestEncodableLength.S │ │ ├── RtlFindExportedRoutineByName.S │ │ ├── RtlFindLastBackwardRunClear.S │ │ ├── RtlFindLeastSignificantBit.S │ │ ├── RtlFindLongestRunClear.S │ │ ├── RtlFindMessage.S │ │ ├── RtlFindMostSignificantBit.S │ │ ├── RtlFindNextForwardRunClear.S │ │ ├── RtlFindSetBits.S │ │ ├── RtlFindSetBitsAndClear.S │ │ ├── RtlFindUnicodeSubstring.S │ │ ├── RtlFirstEntrySList.S │ │ ├── RtlFirstFreeAce.S │ │ ├── RtlFlsAlloc.S │ │ ├── RtlFlsFree.S │ │ ├── RtlFlushHeaps.S │ │ ├── RtlFlushNonVolatileMemory.S │ │ ├── RtlFlushNonVolatileMemoryRanges.S │ │ ├── RtlFlushSecureMemoryCache.S │ │ ├── RtlFormatCurrentUserKeyPath.S │ │ ├── RtlFormatMessage.S │ │ ├── RtlFormatMessageEx.S │ │ ├── RtlFreeActivationContextStack.S │ │ ├── RtlFreeAnsiString.S │ │ ├── RtlFreeHandle.S │ │ ├── RtlFreeHeap.S │ │ ├── RtlFreeMemoryBlockLookaside.S │ │ ├── RtlFreeNonVolatileToken.S │ │ ├── RtlFreeOemString.S │ │ ├── RtlFreeSid.S │ │ ├── RtlFreeThreadActivationContextStack.S │ │ ├── RtlFreeUnicodeString.S │ │ ├── RtlFreeUserStack.S │ │ ├── RtlGUIDFromString.S │ │ ├── RtlGenerate8dot3Name.S │ │ ├── RtlGetAce.S │ │ ├── RtlGetActiveActivationContext.S │ │ ├── RtlGetActiveConsoleId.S │ │ ├── RtlGetAppContainerNamedObjectPath.S │ │ ├── RtlGetAppContainerParent.S │ │ ├── RtlGetAppContainerSidType.S │ │ ├── RtlGetCallersAddress.S │ │ ├── RtlGetCompressionWorkSpaceSize.S │ │ ├── RtlGetConsoleSessionForegroundProcessId.S │ │ ├── RtlGetControlSecurityDescriptor.S │ │ ├── RtlGetCriticalSectionRecursionCount.S │ │ ├── RtlGetCurrentDirectory_U.S │ │ ├── RtlGetCurrentPeb.S │ │ ├── RtlGetCurrentProcessorNumber.S │ │ ├── RtlGetCurrentProcessorNumberEx.S │ │ ├── RtlGetCurrentServiceSessionId.S │ │ ├── RtlGetCurrentTransaction.S │ │ ├── RtlGetCurrentUmsThread.S │ │ ├── RtlGetDaclSecurityDescriptor.S │ │ ├── RtlGetDeviceFamilyInfoEnum.S │ │ ├── RtlGetElementGenericTable.S │ │ ├── RtlGetElementGenericTableAvl.S │ │ ├── RtlGetEnabledExtendedFeatures.S │ │ ├── RtlGetExePath.S │ │ ├── RtlGetExtendedContextLength.S │ │ ├── RtlGetExtendedFeaturesMask.S │ │ ├── RtlGetFileMUIPath.S │ │ ├── RtlGetFrame.S │ │ ├── RtlGetFullPathName_U.S │ │ ├── RtlGetFullPathName_UEx.S │ │ ├── RtlGetFullPathName_UstrEx.S │ │ ├── RtlGetFunctionTableListHead.S │ │ ├── RtlGetGroupSecurityDescriptor.S │ │ ├── RtlGetIntegerAtom.S │ │ ├── RtlGetInterruptTimePrecise.S │ │ ├── RtlGetLastNtStatus.S │ │ ├── RtlGetLastWin32Error.S │ │ ├── RtlGetLengthWithoutLastFullDosOrNtPathElement.S │ │ ├── RtlGetLengthWithoutTrailingPathSeperators.S │ │ ├── RtlGetLocaleFileMappingAddress.S │ │ ├── RtlGetLongestNtPathLength.S │ │ ├── RtlGetNativeSystemInformation.S │ │ ├── RtlGetNextEntryHashTable.S │ │ ├── RtlGetNextUmsListItem.S │ │ ├── RtlGetNonVolatileToken.S │ │ ├── RtlGetNtGlobalFlags.S │ │ ├── RtlGetNtProductType.S │ │ ├── RtlGetNtSystemRoot.S │ │ ├── RtlGetNtVersionNumbers.S │ │ ├── RtlGetOwnerSecurityDescriptor.S │ │ ├── RtlGetParentLocaleName.S │ │ ├── RtlGetPersistedStateLocation.S │ │ ├── RtlGetProcessHeaps.S │ │ ├── RtlGetProcessPreferredUILanguages.S │ │ ├── RtlGetProductInfo.S │ │ ├── RtlGetSaclSecurityDescriptor.S │ │ ├── RtlGetSearchPath.S │ │ ├── RtlGetSecurityDescriptorRMControl.S │ │ ├── RtlGetSessionProperties.S │ │ ├── RtlGetSetBootStatusData.S │ │ ├── RtlGetSuiteMask.S │ │ ├── RtlGetSystemBootStatus.S │ │ ├── RtlGetSystemBootStatusEx.S │ │ ├── RtlGetSystemPreferredUILanguages.S │ │ ├── RtlGetSystemTimePrecise.S │ │ ├── RtlGetThreadErrorMode.S │ │ ├── RtlGetThreadLangIdByIndex.S │ │ ├── RtlGetThreadPreferredUILanguages.S │ │ ├── RtlGetThreadWorkOnBehalfTicket.S │ │ ├── RtlGetTokenNamedObjectPath.S │ │ ├── RtlGetUILanguageInfo.S │ │ ├── RtlGetUmsCompletionListEvent.S │ │ ├── RtlGetUnloadEventTrace.S │ │ ├── RtlGetUnloadEventTraceEx.S │ │ ├── RtlGetUserInfoHeap.S │ │ ├── RtlGetUserPreferredUILanguages.S │ │ ├── RtlGetVersion.S │ │ ├── RtlGrowFunctionTable.S │ │ ├── RtlGuardCheckLongJumpTarget.S │ │ ├── RtlHashUnicodeString.S │ │ ├── RtlHeapTrkInitialize.S │ │ ├── RtlIdentifierAuthoritySid.S │ │ ├── RtlIdnToAscii.S │ │ ├── RtlIdnToNameprepUnicode.S │ │ ├── RtlIdnToUnicode.S │ │ ├── RtlImageDirectoryEntryToData.S │ │ ├── RtlImageNtHeader.S │ │ ├── RtlImageNtHeaderEx.S │ │ ├── RtlImageRvaToSection.S │ │ ├── RtlImageRvaToVa.S │ │ ├── RtlImpersonateSelf.S │ │ ├── RtlImpersonateSelfEx.S │ │ ├── RtlIncrementCorrelationVector.S │ │ ├── RtlInitAnsiString.S │ │ ├── RtlInitAnsiStringEx.S │ │ ├── RtlInitBarrier.S │ │ ├── RtlInitCodePageTable.S │ │ ├── RtlInitEnumerationHashTable.S │ │ ├── RtlInitMemoryStream.S │ │ ├── RtlInitNlsTables.S │ │ ├── RtlInitOutOfProcessMemoryStream.S │ │ ├── RtlInitString.S │ │ ├── RtlInitStringEx.S │ │ ├── RtlInitStrongEnumerationHashTable.S │ │ ├── RtlInitUnicodeString.S │ │ ├── RtlInitUnicodeStringEx.S │ │ ├── RtlInitWeakEnumerationHashTable.S │ │ ├── RtlInitializeAtomPackage.S │ │ ├── RtlInitializeBitMap.S │ │ ├── RtlInitializeBitMapEx.S │ │ ├── RtlInitializeConditionVariable.S │ │ ├── RtlInitializeContext.S │ │ ├── RtlInitializeCorrelationVector.S │ │ ├── RtlInitializeCriticalSection.S │ │ ├── RtlInitializeCriticalSectionAndSpinCount.S │ │ ├── RtlInitializeCriticalSectionEx.S │ │ ├── RtlInitializeExtendedContext.S │ │ ├── RtlInitializeGenericTable.S │ │ ├── RtlInitializeGenericTableAvl.S │ │ ├── RtlInitializeHandleTable.S │ │ ├── RtlInitializeNtUserPfn.S │ │ ├── RtlInitializeRXact.S │ │ ├── RtlInitializeResource.S │ │ ├── RtlInitializeSListHead.S │ │ ├── RtlInitializeSRWLock.S │ │ ├── RtlInitializeSid.S │ │ ├── RtlInitializeSidEx.S │ │ ├── RtlInsertElementGenericTable.S │ │ ├── RtlInsertElementGenericTableAvl.S │ │ ├── RtlInsertElementGenericTableFull.S │ │ ├── RtlInsertElementGenericTableFullAvl.S │ │ ├── RtlInsertEntryHashTable.S │ │ ├── RtlInstallFunctionTableCallback.S │ │ ├── RtlInt64ToUnicodeString.S │ │ ├── RtlIntegerToChar.S │ │ ├── RtlIntegerToUnicodeString.S │ │ ├── RtlInterlockedClearBitRun.S │ │ ├── RtlInterlockedFlushSList.S │ │ ├── RtlInterlockedPopEntrySList.S │ │ ├── RtlInterlockedPushEntrySList.S │ │ ├── RtlInterlockedPushListSList.S │ │ ├── RtlInterlockedPushListSListEx.S │ │ ├── RtlInterlockedSetBitRun.S │ │ ├── RtlIoDecodeMemIoResource.S │ │ ├── RtlIoEncodeMemIoResource.S │ │ ├── RtlIpv4AddressToStringExW.S │ │ ├── RtlIpv4AddressToStringW.S │ │ ├── RtlIpv4StringToAddressExW.S │ │ ├── RtlIpv4StringToAddressW.S │ │ ├── RtlIpv6AddressToStringExW.S │ │ ├── RtlIpv6AddressToStringW.S │ │ ├── RtlIpv6StringToAddressExW.S │ │ ├── RtlIpv6StringToAddressW.S │ │ ├── RtlIsActivationContextActive.S │ │ ├── RtlIsCapabilitySid.S │ │ ├── RtlIsCloudFilesPlaceholder.S │ │ ├── RtlIsCriticalSectionLocked.S │ │ ├── RtlIsCriticalSectionLockedByThread.S │ │ ├── RtlIsCurrentProcess.S │ │ ├── RtlIsCurrentThread.S │ │ ├── RtlIsCurrentThreadAttachExempt.S │ │ ├── RtlIsDosDeviceName_U.S │ │ ├── RtlIsElevatedRid.S │ │ ├── RtlIsGenericTableEmpty.S │ │ ├── RtlIsGenericTableEmptyAvl.S │ │ ├── RtlIsMultiSessionSku.S │ │ ├── RtlIsMultiUsersInSessionSku.S │ │ ├── RtlIsNameInExpression.S │ │ ├── RtlIsNameInUnUpcasedExpression.S │ │ ├── RtlIsNameLegalDOS8Dot3.S │ │ ├── RtlIsNonEmptyDirectoryReparsePointAllowed.S │ │ ├── RtlIsNormalizedString.S │ │ ├── RtlIsPackageSid.S │ │ ├── RtlIsParentOfChildAppContainer.S │ │ ├── RtlIsPartialPlaceholder.S │ │ ├── RtlIsPartialPlaceholderFileHandle.S │ │ ├── RtlIsPartialPlaceholderFileInfo.S │ │ ├── RtlIsProcessorFeaturePresent.S │ │ ├── RtlIsStateSeparationEnabled.S │ │ ├── RtlIsTextUnicode.S │ │ ├── RtlIsThreadWithinLoaderCallout.S │ │ ├── RtlIsUntrustedObject.S │ │ ├── RtlIsValidHandle.S │ │ ├── RtlIsValidIndexHandle.S │ │ ├── RtlIsValidLocaleName.S │ │ ├── RtlIsValidProcessTrustLabelSid.S │ │ ├── RtlKnownExceptionFilter.S │ │ ├── RtlLCIDToCultureName.S │ │ ├── RtlLargeIntegerToChar.S │ │ ├── RtlLcidToLocaleName.S │ │ ├── RtlLeaveCriticalSection.S │ │ ├── RtlLengthRequiredSid.S │ │ ├── RtlLengthSecurityDescriptor.S │ │ ├── RtlLengthSid.S │ │ ├── RtlLengthSidAsUnicodeString.S │ │ ├── RtlLoadString.S │ │ ├── RtlLocalTimeToSystemTime.S │ │ ├── RtlLocaleNameToLcid.S │ │ ├── RtlLocateExtendedFeature.S │ │ ├── RtlLocateExtendedFeature2.S │ │ ├── RtlLocateLegacyContext.S │ │ ├── RtlLockBootStatusData.S │ │ ├── RtlLockCurrentThread.S │ │ ├── RtlLockHeap.S │ │ ├── RtlLockMemoryBlockLookaside.S │ │ ├── RtlLockMemoryStreamRegion.S │ │ ├── RtlLockMemoryZone.S │ │ ├── RtlLockModuleSection.S │ │ ├── RtlLogStackBackTrace.S │ │ ├── RtlLookupAtomInAtomTable.S │ │ ├── RtlLookupElementGenericTable.S │ │ ├── RtlLookupElementGenericTableAvl.S │ │ ├── RtlLookupElementGenericTableFull.S │ │ ├── RtlLookupElementGenericTableFullAvl.S │ │ ├── RtlLookupEntryHashTable.S │ │ ├── RtlLookupFirstMatchingElementGenericTableAvl.S │ │ ├── RtlLookupFunctionEntry.S │ │ ├── RtlLookupFunctionTable.S │ │ ├── RtlMakeSelfRelativeSD.S │ │ ├── RtlMapGenericMask.S │ │ ├── RtlMapSecurityErrorToNtStatus.S │ │ ├── RtlMoveMemory.S │ │ ├── RtlMultiAppendUnicodeStringBuffer.S │ │ ├── RtlMultiByteToUnicodeN.S │ │ ├── RtlMultiByteToUnicodeSize.S │ │ ├── RtlMultipleAllocateHeap.S │ │ ├── RtlMultipleFreeHeap.S │ │ ├── RtlNewInstanceSecurityObject.S │ │ ├── RtlNewSecurityGrantedAccess.S │ │ ├── RtlNewSecurityObject.S │ │ ├── RtlNewSecurityObjectEx.S │ │ ├── RtlNewSecurityObjectWithMultipleInheritance.S │ │ ├── RtlNormalizeProcessParams.S │ │ ├── RtlNormalizeString.S │ │ ├── RtlNtPathNameToDosPathName.S │ │ ├── RtlNtStatusToDosError.S │ │ ├── RtlNtStatusToDosErrorNoTeb.S │ │ ├── RtlNtdllName.S │ │ ├── RtlNumberGenericTableElements.S │ │ ├── RtlNumberGenericTableElementsAvl.S │ │ ├── RtlNumberOfClearBits.S │ │ ├── RtlNumberOfClearBitsInRange.S │ │ ├── RtlNumberOfSetBits.S │ │ ├── RtlNumberOfSetBitsInRange.S │ │ ├── RtlNumberOfSetBitsUlongPtr.S │ │ ├── RtlOemStringToUnicodeSize.S │ │ ├── RtlOemStringToUnicodeString.S │ │ ├── RtlOemToUnicodeN.S │ │ ├── RtlOpenCurrentUser.S │ │ ├── RtlOsDeploymentState.S │ │ ├── RtlOwnerAcesPresent.S │ │ ├── RtlPcToFileHeader.S │ │ ├── RtlPinAtomInAtomTable.S │ │ ├── RtlPopFrame.S │ │ ├── RtlPrefixString.S │ │ ├── RtlPrefixUnicodeString.S │ │ ├── RtlPrepareForProcessCloning.S │ │ ├── RtlProcessFlsData.S │ │ ├── RtlProtectHeap.S │ │ ├── RtlPublishWnfStateData.S │ │ ├── RtlPushFrame.S │ │ ├── RtlQueryActivationContextApplicationSettings.S │ │ ├── RtlQueryAtomInAtomTable.S │ │ ├── RtlQueryCriticalSectionOwner.S │ │ ├── RtlQueryDepthSList.S │ │ ├── RtlQueryDynamicTimeZoneInformation.S │ │ ├── RtlQueryElevationFlags.S │ │ ├── RtlQueryEnvironmentVariable.S │ │ ├── RtlQueryEnvironmentVariable_U.S │ │ ├── RtlQueryHeapInformation.S │ │ ├── RtlQueryImageMitigationPolicy.S │ │ ├── RtlQueryInformationAcl.S │ │ ├── RtlQueryInformationActivationContext.S │ │ ├── RtlQueryInformationActiveActivationContext.S │ │ ├── RtlQueryInterfaceMemoryStream.S │ │ ├── RtlQueryModuleInformation.S │ │ ├── RtlQueryPackageClaims.S │ │ ├── RtlQueryPackageIdentity.S │ │ ├── RtlQueryPackageIdentityEx.S │ │ ├── RtlQueryPerformanceCounter.S │ │ ├── RtlQueryPerformanceFrequency.S │ │ ├── RtlQueryProcessBackTraceInformation.S │ │ ├── RtlQueryProcessDebugInformation.S │ │ ├── RtlQueryProcessHeapInformation.S │ │ ├── RtlQueryProcessLockInformation.S │ │ ├── RtlQueryProcessPlaceholderCompatibilityMode.S │ │ ├── RtlQueryProtectedPolicy.S │ │ ├── RtlQueryRegistryValueWithFallback.S │ │ ├── RtlQueryRegistryValues.S │ │ ├── RtlQueryRegistryValuesEx.S │ │ ├── RtlQueryResourcePolicy.S │ │ ├── RtlQuerySecurityObject.S │ │ ├── RtlQueryTagHeap.S │ │ ├── RtlQueryThreadPlaceholderCompatibilityMode.S │ │ ├── RtlQueryThreadProfiling.S │ │ ├── RtlQueryTimeZoneInformation.S │ │ ├── RtlQueryTokenHostIdAsUlong64.S │ │ ├── RtlQueryUmsThreadInformation.S │ │ ├── RtlQueryUnbiasedInterruptTime.S │ │ ├── RtlQueryValidationRunlevel.S │ │ ├── RtlQueryWnfMetaNotification.S │ │ ├── RtlQueryWnfStateData.S │ │ ├── RtlQueryWnfStateDataWithExplicitScope.S │ │ ├── RtlQueueWorkItem.S │ │ ├── RtlRaiseCustomSystemEventTrigger.S │ │ ├── RtlRaiseException.S │ │ ├── RtlRaiseStatus.S │ │ ├── RtlRandom.S │ │ ├── RtlRandomEx.S │ │ ├── RtlRbInsertNodeEx.S │ │ ├── RtlRbRemoveNode.S │ │ ├── RtlReAllocateHeap.S │ │ ├── RtlReadMemoryStream.S │ │ ├── RtlReadOutOfProcessMemoryStream.S │ │ ├── RtlReadThreadProfilingData.S │ │ ├── RtlRealPredecessor.S │ │ ├── RtlRealSuccessor.S │ │ ├── RtlRegisterForWnfMetaNotification.S │ │ ├── RtlRegisterSecureMemoryCacheCallback.S │ │ ├── RtlRegisterThreadWithCsrss.S │ │ ├── RtlRegisterWait.S │ │ ├── RtlReleaseActivationContext.S │ │ ├── RtlReleaseMemoryStream.S │ │ ├── RtlReleasePath.S │ │ ├── RtlReleasePebLock.S │ │ ├── RtlReleasePrivilege.S │ │ ├── RtlReleaseRelativeName.S │ │ ├── RtlReleaseResource.S │ │ ├── RtlReleaseSRWLockExclusive.S │ │ ├── RtlReleaseSRWLockShared.S │ │ ├── RtlRemoteCall.S │ │ ├── RtlRemoveEntryHashTable.S │ │ ├── RtlRemovePrivileges.S │ │ ├── RtlRemoveVectoredContinueHandler.S │ │ ├── RtlRemoveVectoredExceptionHandler.S │ │ ├── RtlReplaceSidInSd.S │ │ ├── RtlReplaceSystemDirectoryInPath.S │ │ ├── RtlReportException.S │ │ ├── RtlReportExceptionEx.S │ │ ├── RtlReportSilentProcessExit.S │ │ ├── RtlReportSqmEscalation.S │ │ ├── RtlResetMemoryBlockLookaside.S │ │ ├── RtlResetMemoryZone.S │ │ ├── RtlResetNtUserPfn.S │ │ ├── RtlResetRtlTranslations.S │ │ ├── RtlRestoreBootStatusDefaults.S │ │ ├── RtlRestoreContext.S │ │ ├── RtlRestoreLastWin32Error.S │ │ ├── RtlRestoreSystemBootStatusDefaults.S │ │ ├── RtlRetrieveNtUserPfn.S │ │ ├── RtlRevertMemoryStream.S │ │ ├── RtlRunDecodeUnicodeString.S │ │ ├── RtlRunEncodeUnicodeString.S │ │ ├── RtlRunOnceBeginInitialize.S │ │ ├── RtlRunOnceComplete.S │ │ ├── RtlRunOnceExecuteOnce.S │ │ ├── RtlRunOnceInitialize.S │ │ ├── RtlSecondsSince1970ToTime.S │ │ ├── RtlSecondsSince1980ToTime.S │ │ ├── RtlSeekMemoryStream.S │ │ ├── RtlSelfRelativeToAbsoluteSD.S │ │ ├── RtlSelfRelativeToAbsoluteSD2.S │ │ ├── RtlSendMsgToSm.S │ │ ├── RtlSetAllBits.S │ │ ├── RtlSetAttributesSecurityDescriptor.S │ │ ├── RtlSetBit.S │ │ ├── RtlSetBits.S │ │ ├── RtlSetControlSecurityDescriptor.S │ │ ├── RtlSetCriticalSectionSpinCount.S │ │ ├── RtlSetCurrentDirectory_U.S │ │ ├── RtlSetCurrentEnvironment.S │ │ ├── RtlSetCurrentTransaction.S │ │ ├── RtlSetDaclSecurityDescriptor.S │ │ ├── RtlSetDynamicTimeZoneInformation.S │ │ ├── RtlSetEnvironmentStrings.S │ │ ├── RtlSetEnvironmentVar.S │ │ ├── RtlSetEnvironmentVariable.S │ │ ├── RtlSetExtendedFeaturesMask.S │ │ ├── RtlSetGroupSecurityDescriptor.S │ │ ├── RtlSetHeapInformation.S │ │ ├── RtlSetImageMitigationPolicy.S │ │ ├── RtlSetInformationAcl.S │ │ ├── RtlSetIoCompletionCallback.S │ │ ├── RtlSetLastWin32Error.S │ │ ├── RtlSetLastWin32ErrorAndNtStatusFromNtStatus.S │ │ ├── RtlSetMemoryStreamSize.S │ │ ├── RtlSetOwnerSecurityDescriptor.S │ │ ├── RtlSetPortableOperatingSystem.S │ │ ├── RtlSetProcessDebugInformation.S │ │ ├── RtlSetProcessIsCritical.S │ │ ├── RtlSetProcessPlaceholderCompatibilityMode.S │ │ ├── RtlSetProcessPreferredUILanguages.S │ │ ├── RtlSetProtectedPolicy.S │ │ ├── RtlSetProxiedProcessId.S │ │ ├── RtlSetSaclSecurityDescriptor.S │ │ ├── RtlSetSearchPathMode.S │ │ ├── RtlSetSecurityDescriptorRMControl.S │ │ ├── RtlSetSecurityObject.S │ │ ├── RtlSetSecurityObjectEx.S │ │ ├── RtlSetSystemBootStatus.S │ │ ├── RtlSetSystemBootStatusEx.S │ │ ├── RtlSetThreadErrorMode.S │ │ ├── RtlSetThreadIsCritical.S │ │ ├── RtlSetThreadPlaceholderCompatibilityMode.S │ │ ├── RtlSetThreadPoolStartFunc.S │ │ ├── RtlSetThreadPreferredUILanguages.S │ │ ├── RtlSetThreadSubProcessTag.S │ │ ├── RtlSetThreadWorkOnBehalfTicket.S │ │ ├── RtlSetTimeZoneInformation.S │ │ ├── RtlSetTimer.S │ │ ├── RtlSetUmsThreadInformation.S │ │ ├── RtlSetUnhandledExceptionFilter.S │ │ ├── RtlSetUserFlagsHeap.S │ │ ├── RtlSetUserValueHeap.S │ │ ├── RtlSidDominates.S │ │ ├── RtlSidDominatesForTrust.S │ │ ├── RtlSidEqualLevel.S │ │ ├── RtlSidHashInitialize.S │ │ ├── RtlSidHashLookup.S │ │ ├── RtlSidIsHigherLevel.S │ │ ├── RtlSizeHeap.S │ │ ├── RtlSleepConditionVariableCS.S │ │ ├── RtlSleepConditionVariableSRW.S │ │ ├── RtlSplay.S │ │ ├── RtlStartRXact.S │ │ ├── RtlStatMemoryStream.S │ │ ├── RtlStringFromGUID.S │ │ ├── RtlStringFromGUIDEx.S │ │ ├── RtlStronglyEnumerateEntryHashTable.S │ │ ├── RtlSubAuthorityCountSid.S │ │ ├── RtlSubAuthoritySid.S │ │ ├── RtlSubscribeWnfStateChangeNotification.S │ │ ├── RtlSubtreePredecessor.S │ │ ├── RtlSubtreeSuccessor.S │ │ ├── RtlSwitchedVVI.S │ │ ├── RtlSystemTimeToLocalTime.S │ │ ├── RtlTestAndPublishWnfStateData.S │ │ ├── RtlTestBit.S │ │ ├── RtlTestBitEx.S │ │ ├── RtlTestProtectedAccess.S │ │ ├── RtlTimeFieldsToTime.S │ │ ├── RtlTimeToElapsedTimeFields.S │ │ ├── RtlTimeToSecondsSince1970.S │ │ ├── RtlTimeToSecondsSince1980.S │ │ ├── RtlTimeToTimeFields.S │ │ ├── RtlTraceDatabaseAdd.S │ │ ├── RtlTraceDatabaseCreate.S │ │ ├── RtlTraceDatabaseDestroy.S │ │ ├── RtlTraceDatabaseEnumerate.S │ │ ├── RtlTraceDatabaseFind.S │ │ ├── RtlTraceDatabaseLock.S │ │ ├── RtlTraceDatabaseUnlock.S │ │ ├── RtlTraceDatabaseValidate.S │ │ ├── RtlTryAcquirePebLock.S │ │ ├── RtlTryAcquireSRWLockExclusive.S │ │ ├── RtlTryAcquireSRWLockShared.S │ │ ├── RtlTryConvertSRWLockSharedToExclusiveOrRelease.S │ │ ├── RtlTryEnterCriticalSection.S │ │ ├── RtlUTF8ToUnicodeN.S │ │ ├── RtlUmsThreadYield.S │ │ ├── RtlUnhandledExceptionFilter.S │ │ ├── RtlUnhandledExceptionFilter2.S │ │ ├── RtlUnicodeStringToAnsiSize.S │ │ ├── RtlUnicodeStringToAnsiString.S │ │ ├── RtlUnicodeStringToCountedOemString.S │ │ ├── RtlUnicodeStringToInteger.S │ │ ├── RtlUnicodeStringToOemSize.S │ │ ├── RtlUnicodeStringToOemString.S │ │ ├── RtlUnicodeToCustomCPN.S │ │ ├── RtlUnicodeToMultiByteN.S │ │ ├── RtlUnicodeToMultiByteSize.S │ │ ├── RtlUnicodeToOemN.S │ │ ├── RtlUnicodeToUTF8N.S │ │ ├── RtlUniform.S │ │ ├── RtlUnlockBootStatusData.S │ │ ├── RtlUnlockCurrentThread.S │ │ ├── RtlUnlockHeap.S │ │ ├── RtlUnlockMemoryBlockLookaside.S │ │ ├── RtlUnlockMemoryStreamRegion.S │ │ ├── RtlUnlockMemoryZone.S │ │ ├── RtlUnlockModuleSection.S │ │ ├── RtlUnsubscribeWnfNotificationWaitForCompletion.S │ │ ├── RtlUnsubscribeWnfNotificationWithCompletionCallback.S │ │ ├── RtlUnsubscribeWnfStateChangeNotification.S │ │ ├── RtlUnwind.S │ │ ├── RtlUnwindEx.S │ │ ├── RtlUpcaseUnicodeChar.S │ │ ├── RtlUpcaseUnicodeString.S │ │ ├── RtlUpcaseUnicodeStringToAnsiString.S │ │ ├── RtlUpcaseUnicodeStringToCountedOemString.S │ │ ├── RtlUpcaseUnicodeStringToOemString.S │ │ ├── RtlUpcaseUnicodeToCustomCPN.S │ │ ├── RtlUpcaseUnicodeToMultiByteN.S │ │ ├── RtlUpcaseUnicodeToOemN.S │ │ ├── RtlUpdateClonedCriticalSection.S │ │ ├── RtlUpdateClonedSRWLock.S │ │ ├── RtlUpdateTimer.S │ │ ├── RtlUpperChar.S │ │ ├── RtlUpperString.S │ │ ├── RtlUserThreadStart.S │ │ ├── RtlValidAcl.S │ │ ├── RtlValidProcessProtection.S │ │ ├── RtlValidRelativeSecurityDescriptor.S │ │ ├── RtlValidSecurityDescriptor.S │ │ ├── RtlValidSid.S │ │ ├── RtlValidateCorrelationVector.S │ │ ├── RtlValidateHeap.S │ │ ├── RtlValidateProcessHeaps.S │ │ ├── RtlValidateUnicodeString.S │ │ ├── RtlVerifyVersionInfo.S │ │ ├── RtlVirtualUnwind.S │ │ ├── RtlWaitForWnfMetaNotification.S │ │ ├── RtlWaitOnAddress.S │ │ ├── RtlWakeAddressAll.S │ │ ├── RtlWakeAddressAllNoFence.S │ │ ├── RtlWakeAddressSingle.S │ │ ├── RtlWakeAddressSingleNoFence.S │ │ ├── RtlWakeAllConditionVariable.S │ │ ├── RtlWakeConditionVariable.S │ │ ├── RtlWalkFrameChain.S │ │ ├── RtlWalkHeap.S │ │ ├── RtlWeaklyEnumerateEntryHashTable.S │ │ ├── RtlWerpReportException.S │ │ ├── RtlWnfCompareChangeStamp.S │ │ ├── RtlWnfDllUnloadCallback.S │ │ ├── RtlWriteMemoryStream.S │ │ ├── RtlWriteNonVolatileMemory.S │ │ ├── RtlWriteRegistryValue.S │ │ ├── RtlZeroHeap.S │ │ ├── RtlZeroMemory.S │ │ ├── RtlZombifyActivationContext.S │ │ ├── RtlpApplyLengthFunction.S │ │ ├── RtlpCheckDynamicTimeZoneInformation.S │ │ ├── RtlpCleanupRegistryKeys.S │ │ ├── RtlpConvertAbsoluteToRelativeSecurityAttribute.S │ │ ├── RtlpConvertCultureNamesToLCIDs.S │ │ ├── RtlpConvertLCIDsToCultureNames.S │ │ ├── RtlpConvertRelativeToAbsoluteSecurityAttribute.S │ │ ├── RtlpCreateProcessRegistryInfo.S │ │ ├── RtlpEnsureBufferSize.S │ │ ├── RtlpExecuteUmsThread.S │ │ ├── RtlpFreezeTimeBias.S │ │ ├── RtlpGetDeviceFamilyInfoEnum.S │ │ ├── RtlpGetLCIDFromLangInfoNode.S │ │ ├── RtlpGetNameFromLangInfoNode.S │ │ ├── RtlpGetSystemDefaultUILanguage.S │ │ ├── RtlpGetUserOrMachineUILanguage4NLS.S │ │ ├── RtlpInitializeLangRegistryInfo.S │ │ ├── RtlpIsQualifiedLanguage.S │ │ ├── RtlpLoadMachineUIByPolicy.S │ │ ├── RtlpLoadUserUIByPolicy.S │ │ ├── RtlpMergeSecurityAttributeInformation.S │ │ ├── RtlpMuiFreeLangRegistryInfo.S │ │ ├── RtlpMuiRegCreateRegistryInfo.S │ │ ├── RtlpMuiRegFreeRegistryInfo.S │ │ ├── RtlpMuiRegLoadRegistryInfo.S │ │ ├── RtlpNotOwnerCriticalSection.S │ │ ├── RtlpNtCreateKey.S │ │ ├── RtlpNtEnumerateSubKey.S │ │ ├── RtlpNtMakeTemporaryKey.S │ │ ├── RtlpNtOpenKey.S │ │ ├── RtlpNtQueryValueKey.S │ │ ├── RtlpNtSetValueKey.S │ │ ├── RtlpQueryDefaultUILanguage.S │ │ ├── RtlpQueryProcessDebugInformationRemote.S │ │ ├── RtlpRefreshCachedUILanguage.S │ │ ├── RtlpSetInstallLanguage.S │ │ ├── RtlpSetPreferredUILanguages.S │ │ ├── RtlpSetUserPreferredUILanguages.S │ │ ├── RtlpUmsExecuteYieldThreadEnd.S │ │ ├── RtlpUmsThreadYield.S │ │ ├── RtlpUnWaitCriticalSection.S │ │ ├── RtlpVerifyAndCommitUILanguageSettings.S │ │ ├── RtlpWaitForCriticalSection.S │ │ ├── RtlxAnsiStringToUnicodeSize.S │ │ ├── RtlxOemStringToUnicodeSize.S │ │ ├── RtlxUnicodeStringToAnsiSize.S │ │ ├── RtlxUnicodeStringToOemSize.S │ │ ├── SbExecuteProcedure.S │ │ ├── SbSelectProcedure.S │ │ ├── ShipAssert.S │ │ ├── ShipAssertGetBufferInfo.S │ │ ├── ShipAssertMsgW.S │ │ ├── TpAllocAlpcCompletion.S │ │ ├── TpAllocAlpcCompletionEx.S │ │ ├── TpAllocCleanupGroup.S │ │ ├── TpAllocIoCompletion.S │ │ ├── TpAllocJobNotification.S │ │ ├── TpAllocPool.S │ │ ├── TpAllocTimer.S │ │ ├── TpAllocWait.S │ │ ├── TpAllocWork.S │ │ ├── TpAlpcRegisterCompletionList.S │ │ ├── TpAlpcUnregisterCompletionList.S │ │ ├── TpCallbackDetectedUnrecoverableError.S │ │ ├── TpCallbackIndependent.S │ │ ├── TpCallbackLeaveCriticalSectionOnCompletion.S │ │ ├── TpCallbackMayRunLong.S │ │ ├── TpCallbackReleaseMutexOnCompletion.S │ │ ├── TpCallbackReleaseSemaphoreOnCompletion.S │ │ ├── TpCallbackSendAlpcMessageOnCompletion.S │ │ ├── TpCallbackSendPendingAlpcMessage.S │ │ ├── TpCallbackSetEventOnCompletion.S │ │ ├── TpCallbackUnloadDllOnCompletion.S │ │ ├── TpCancelAsyncIoOperation.S │ │ ├── TpCaptureCaller.S │ │ ├── TpCheckTerminateWorker.S │ │ ├── TpDbgDumpHeapUsage.S │ │ ├── TpDbgSetLogRoutine.S │ │ ├── TpDisablePoolCallbackChecks.S │ │ ├── TpDisassociateCallback.S │ │ ├── TpIsTimerSet.S │ │ ├── TpPostWork.S │ │ ├── TpQueryPoolStackInformation.S │ │ ├── TpReleaseAlpcCompletion.S │ │ ├── TpReleaseCleanupGroup.S │ │ ├── TpReleaseCleanupGroupMembers.S │ │ ├── TpReleaseIoCompletion.S │ │ ├── TpReleaseJobNotification.S │ │ ├── TpReleasePool.S │ │ ├── TpReleaseTimer.S │ │ ├── TpReleaseWait.S │ │ ├── TpReleaseWork.S │ │ ├── TpSetDefaultPoolMaxThreads.S │ │ ├── TpSetDefaultPoolStackInformation.S │ │ ├── TpSetPoolMaxThreads.S │ │ ├── TpSetPoolMaxThreadsSoftLimit.S │ │ ├── TpSetPoolMinThreads.S │ │ ├── TpSetPoolStackInformation.S │ │ ├── TpSetPoolThreadBasePriority.S │ │ ├── TpSetPoolWorkerThreadIdleTimeout.S │ │ ├── TpSetTimer.S │ │ ├── TpSetTimerEx.S │ │ ├── TpSetWait.S │ │ ├── TpSetWaitEx.S │ │ ├── TpSimpleTryPost.S │ │ ├── TpStartAsyncIoOperation.S │ │ ├── TpTimerOutstandingCallbackCount.S │ │ ├── TpTrimPools.S │ │ ├── TpWaitForAlpcCompletion.S │ │ ├── TpWaitForIoCompletion.S │ │ ├── TpWaitForJobNotification.S │ │ ├── TpWaitForTimer.S │ │ ├── TpWaitForWait.S │ │ ├── TpWaitForWork.S │ │ ├── VerSetConditionMask.S │ │ ├── WerReportExceptionWorker.S │ │ ├── WerReportSQMEvent.S │ │ ├── WinSqmAddToAverageDWORD.S │ │ ├── WinSqmAddToStream.S │ │ ├── WinSqmAddToStreamEx.S │ │ ├── WinSqmCheckEscalationAddToStreamEx.S │ │ ├── WinSqmCheckEscalationSetDWORD.S │ │ ├── WinSqmCheckEscalationSetDWORD64.S │ │ ├── WinSqmCheckEscalationSetString.S │ │ ├── WinSqmCommonDatapointDelete.S │ │ ├── WinSqmCommonDatapointSetDWORD.S │ │ ├── WinSqmCommonDatapointSetDWORD64.S │ │ ├── WinSqmCommonDatapointSetStreamEx.S │ │ ├── WinSqmCommonDatapointSetString.S │ │ ├── WinSqmEndSession.S │ │ ├── WinSqmEventEnabled.S │ │ ├── WinSqmEventWrite.S │ │ ├── WinSqmGetEscalationRuleStatus.S │ │ ├── WinSqmGetInstrumentationProperty.S │ │ ├── WinSqmIncrementDWORD.S │ │ ├── WinSqmIsOptedIn.S │ │ ├── WinSqmIsOptedInEx.S │ │ ├── WinSqmIsSessionDisabled.S │ │ ├── WinSqmSetDWORD.S │ │ ├── WinSqmSetDWORD64.S │ │ ├── WinSqmSetEscalationInfo.S │ │ ├── WinSqmSetIfMaxDWORD.S │ │ ├── WinSqmSetIfMinDWORD.S │ │ ├── WinSqmSetString.S │ │ ├── WinSqmStartSession.S │ │ ├── WinSqmStartSessionForPartner.S │ │ ├── WinSqmStartSqmOptinListener.S │ │ ├── ZwAcceptConnectPort.S │ │ ├── ZwAccessCheck.S │ │ ├── ZwAccessCheckAndAuditAlarm.S │ │ ├── ZwAccessCheckByType.S │ │ ├── ZwAccessCheckByTypeAndAuditAlarm.S │ │ ├── ZwAccessCheckByTypeResultList.S │ │ ├── ZwAccessCheckByTypeResultListAndAuditAlarm.S │ │ ├── ZwAccessCheckByTypeResultListAndAuditAlarmByHandle.S │ │ ├── ZwAcquireProcessActivityReference.S │ │ ├── ZwAddAtom.S │ │ ├── ZwAddAtomEx.S │ │ ├── ZwAddBootEntry.S │ │ ├── ZwAddDriverEntry.S │ │ ├── ZwAdjustGroupsToken.S │ │ ├── ZwAdjustPrivilegesToken.S │ │ ├── ZwAdjustTokenClaimsAndDeviceGroups.S │ │ ├── ZwAlertResumeThread.S │ │ ├── ZwAlertThread.S │ │ ├── ZwAlertThreadByThreadId.S │ │ ├── ZwAllocateLocallyUniqueId.S │ │ ├── ZwAllocateReserveObject.S │ │ ├── ZwAllocateUserPhysicalPages.S │ │ ├── ZwAllocateUuids.S │ │ ├── ZwAllocateVirtualMemory.S │ │ ├── ZwAllocateVirtualMemoryEx.S │ │ ├── ZwAlpcAcceptConnectPort.S │ │ ├── ZwAlpcCancelMessage.S │ │ ├── ZwAlpcConnectPort.S │ │ ├── ZwAlpcConnectPortEx.S │ │ ├── ZwAlpcCreatePort.S │ │ ├── ZwAlpcCreatePortSection.S │ │ ├── ZwAlpcCreateResourceReserve.S │ │ ├── ZwAlpcCreateSectionView.S │ │ ├── ZwAlpcCreateSecurityContext.S │ │ ├── ZwAlpcDeletePortSection.S │ │ ├── ZwAlpcDeleteResourceReserve.S │ │ ├── ZwAlpcDeleteSectionView.S │ │ ├── ZwAlpcDeleteSecurityContext.S │ │ ├── ZwAlpcDisconnectPort.S │ │ ├── ZwAlpcImpersonateClientContainerOfPort.S │ │ ├── ZwAlpcImpersonateClientOfPort.S │ │ ├── ZwAlpcOpenSenderProcess.S │ │ ├── ZwAlpcOpenSenderThread.S │ │ ├── ZwAlpcQueryInformation.S │ │ ├── ZwAlpcQueryInformationMessage.S │ │ ├── ZwAlpcRevokeSecurityContext.S │ │ ├── ZwAlpcSendWaitReceivePort.S │ │ ├── ZwAlpcSetInformation.S │ │ ├── ZwApphelpCacheControl.S │ │ ├── ZwAreMappedFilesTheSame.S │ │ ├── ZwAssignProcessToJobObject.S │ │ ├── ZwAssociateWaitCompletionPacket.S │ │ ├── ZwCallEnclave.S │ │ ├── ZwCallbackReturn.S │ │ ├── ZwCancelIoFile.S │ │ ├── ZwCancelIoFileEx.S │ │ ├── ZwCancelSynchronousIoFile.S │ │ ├── ZwCancelTimer.S │ │ ├── ZwCancelTimer2.S │ │ ├── ZwCancelWaitCompletionPacket.S │ │ ├── ZwClearEvent.S │ │ ├── ZwClose.S │ │ ├── ZwCloseObjectAuditAlarm.S │ │ ├── ZwCommitComplete.S │ │ ├── ZwCommitEnlistment.S │ │ ├── ZwCommitRegistryTransaction.S │ │ ├── ZwCommitTransaction.S │ │ ├── ZwCompactKeys.S │ │ ├── ZwCompareObjects.S │ │ ├── ZwCompareSigningLevels.S │ │ ├── ZwCompareTokens.S │ │ ├── ZwCompleteConnectPort.S │ │ ├── ZwCompressKey.S │ │ ├── ZwConnectPort.S │ │ ├── ZwContinue.S │ │ ├── ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter.S │ │ ├── ZwCreateDebugObject.S │ │ ├── ZwCreateDirectoryObject.S │ │ ├── ZwCreateDirectoryObjectEx.S │ │ ├── ZwCreateEnclave.S │ │ ├── ZwCreateEnlistment.S │ │ ├── ZwCreateEvent.S │ │ ├── ZwCreateEventPair.S │ │ ├── ZwCreateFile.S │ │ ├── ZwCreateIRTimer.S │ │ ├── ZwCreateIoCompletion.S │ │ ├── ZwCreateJobObject.S │ │ ├── ZwCreateJobSet.S │ │ ├── ZwCreateKey.S │ │ ├── ZwCreateKeyTransacted.S │ │ ├── ZwCreateKeyedEvent.S │ │ ├── ZwCreateLowBoxToken.S │ │ ├── ZwCreateMailslotFile.S │ │ ├── ZwCreateMutant.S │ │ ├── ZwCreateNamedPipeFile.S │ │ ├── ZwCreatePagingFile.S │ │ ├── ZwCreatePartition.S │ │ ├── ZwCreatePort.S │ │ ├── ZwCreatePrivateNamespace.S │ │ ├── ZwCreateProcess.S │ │ ├── ZwCreateProcessEx.S │ │ ├── ZwCreateProfile.S │ │ ├── ZwCreateProfileEx.S │ │ ├── ZwCreateRegistryTransaction.S │ │ ├── ZwCreateResourceManager.S │ │ ├── ZwCreateSection.S │ │ ├── ZwCreateSemaphore.S │ │ ├── ZwCreateSymbolicLinkObject.S │ │ ├── ZwCreateThread.S │ │ ├── ZwCreateThreadEx.S │ │ ├── ZwCreateTimer.S │ │ ├── ZwCreateTimer2.S │ │ ├── ZwCreateToken.S │ │ ├── ZwCreateTokenEx.S │ │ ├── ZwCreateTransaction.S │ │ ├── ZwCreateTransactionManager.S │ │ ├── ZwCreateUserProcess.S │ │ ├── ZwCreateWaitCompletionPacket.S │ │ ├── ZwCreateWaitablePort.S │ │ ├── ZwCreateWnfStateName.S │ │ ├── ZwCreateWorkerFactory.S │ │ ├── ZwDebugActiveProcess.S │ │ ├── ZwDebugContinue.S │ │ ├── ZwDelayExecution.S │ │ ├── ZwDeleteAtom.S │ │ ├── ZwDeleteBootEntry.S │ │ ├── ZwDeleteDriverEntry.S │ │ ├── ZwDeleteFile.S │ │ ├── ZwDeleteKey.S │ │ ├── ZwDeleteObjectAuditAlarm.S │ │ ├── ZwDeletePrivateNamespace.S │ │ ├── ZwDeleteValueKey.S │ │ ├── ZwDeleteWnfStateData.S │ │ ├── ZwDeleteWnfStateName.S │ │ ├── ZwDeviceIoControlFile.S │ │ ├── ZwDisableLastKnownGood.S │ │ ├── ZwDisplayString.S │ │ ├── ZwDrawText.S │ │ ├── ZwDuplicateObject.S │ │ ├── ZwDuplicateToken.S │ │ ├── ZwEnableLastKnownGood.S │ │ ├── ZwEnumerateBootEntries.S │ │ ├── ZwEnumerateDriverEntries.S │ │ ├── ZwEnumerateKey.S │ │ ├── ZwEnumerateSystemEnvironmentValuesEx.S │ │ ├── ZwEnumerateTransactionObject.S │ │ ├── ZwEnumerateValueKey.S │ │ ├── ZwExtendSection.S │ │ ├── ZwFilterBootOption.S │ │ ├── ZwFilterToken.S │ │ ├── ZwFilterTokenEx.S │ │ ├── ZwFindAtom.S │ │ ├── ZwFlushBuffersFile.S │ │ ├── ZwFlushBuffersFileEx.S │ │ ├── ZwFlushInstallUILanguage.S │ │ ├── ZwFlushInstructionCache.S │ │ ├── ZwFlushKey.S │ │ ├── ZwFlushProcessWriteBuffers.S │ │ ├── ZwFlushVirtualMemory.S │ │ ├── ZwFlushWriteBuffer.S │ │ ├── ZwFreeUserPhysicalPages.S │ │ ├── ZwFreeVirtualMemory.S │ │ ├── ZwFreezeRegistry.S │ │ ├── ZwFreezeTransactions.S │ │ ├── ZwFsControlFile.S │ │ ├── ZwGetCachedSigningLevel.S │ │ ├── ZwGetCompleteWnfStateSubscription.S │ │ ├── ZwGetContextThread.S │ │ ├── ZwGetCurrentProcessorNumber.S │ │ ├── ZwGetCurrentProcessorNumberEx.S │ │ ├── ZwGetDevicePowerState.S │ │ ├── ZwGetMUIRegistryInfo.S │ │ ├── ZwGetNextProcess.S │ │ ├── ZwGetNextThread.S │ │ ├── ZwGetNlsSectionPtr.S │ │ ├── ZwGetNotificationResourceManager.S │ │ ├── ZwGetWriteWatch.S │ │ ├── ZwImpersonateAnonymousToken.S │ │ ├── ZwImpersonateClientOfPort.S │ │ ├── ZwImpersonateThread.S │ │ ├── ZwInitializeEnclave.S │ │ ├── ZwInitializeNlsFiles.S │ │ ├── ZwInitializeRegistry.S │ │ ├── ZwInitiatePowerAction.S │ │ ├── ZwIsProcessInJob.S │ │ ├── ZwIsSystemResumeAutomatic.S │ │ ├── ZwIsUILanguageComitted.S │ │ ├── ZwListenPort.S │ │ ├── ZwLoadDriver.S │ │ ├── ZwLoadEnclaveData.S │ │ ├── ZwLoadHotPatch.S │ │ ├── ZwLoadKey.S │ │ ├── ZwLoadKey2.S │ │ ├── ZwLoadKeyEx.S │ │ ├── ZwLockFile.S │ │ ├── ZwLockProductActivationKeys.S │ │ ├── ZwLockRegistryKey.S │ │ ├── ZwLockVirtualMemory.S │ │ ├── ZwMakePermanentObject.S │ │ ├── ZwMakeTemporaryObject.S │ │ ├── ZwManagePartition.S │ │ ├── ZwMapCMFModule.S │ │ ├── ZwMapUserPhysicalPages.S │ │ ├── ZwMapUserPhysicalPagesScatter.S │ │ ├── ZwMapViewOfSection.S │ │ ├── ZwMapViewOfSectionEx.S │ │ ├── ZwModifyBootEntry.S │ │ ├── ZwModifyDriverEntry.S │ │ ├── ZwNotifyChangeDirectoryFile.S │ │ ├── ZwNotifyChangeDirectoryFileEx.S │ │ ├── ZwNotifyChangeKey.S │ │ ├── ZwNotifyChangeMultipleKeys.S │ │ ├── ZwNotifyChangeSession.S │ │ ├── ZwOpenDirectoryObject.S │ │ ├── ZwOpenEnlistment.S │ │ ├── ZwOpenEvent.S │ │ ├── ZwOpenEventPair.S │ │ ├── ZwOpenFile.S │ │ ├── ZwOpenIoCompletion.S │ │ ├── ZwOpenJobObject.S │ │ ├── ZwOpenKey.S │ │ ├── ZwOpenKeyEx.S │ │ ├── ZwOpenKeyTransacted.S │ │ ├── ZwOpenKeyTransactedEx.S │ │ ├── ZwOpenKeyedEvent.S │ │ ├── ZwOpenMutant.S │ │ ├── ZwOpenObjectAuditAlarm.S │ │ ├── ZwOpenPartition.S │ │ ├── ZwOpenPrivateNamespace.S │ │ ├── ZwOpenProcess.S │ │ ├── ZwOpenProcessToken.S │ │ ├── ZwOpenProcessTokenEx.S │ │ ├── ZwOpenRegistryTransaction.S │ │ ├── ZwOpenResourceManager.S │ │ ├── ZwOpenSection.S │ │ ├── ZwOpenSemaphore.S │ │ ├── ZwOpenSession.S │ │ ├── ZwOpenSymbolicLinkObject.S │ │ ├── ZwOpenThread.S │ │ ├── ZwOpenThreadToken.S │ │ ├── ZwOpenThreadTokenEx.S │ │ ├── ZwOpenTimer.S │ │ ├── ZwOpenTransaction.S │ │ ├── ZwOpenTransactionManager.S │ │ ├── ZwPlugPlayControl.S │ │ ├── ZwPowerInformation.S │ │ ├── ZwPrePrepareComplete.S │ │ ├── ZwPrePrepareEnlistment.S │ │ ├── ZwPrepareComplete.S │ │ ├── ZwPrepareEnlistment.S │ │ ├── ZwPrivilegeCheck.S │ │ ├── ZwPrivilegeObjectAuditAlarm.S │ │ ├── ZwPrivilegedServiceAuditAlarm.S │ │ ├── ZwPropagationComplete.S │ │ ├── ZwPropagationFailed.S │ │ ├── ZwProtectVirtualMemory.S │ │ ├── ZwPulseEvent.S │ │ ├── ZwQueryAttributesFile.S │ │ ├── ZwQueryAuxiliaryCounterFrequency.S │ │ ├── ZwQueryBootEntryOrder.S │ │ ├── ZwQueryBootOptions.S │ │ ├── ZwQueryDebugFilterState.S │ │ ├── ZwQueryDefaultLocale.S │ │ ├── ZwQueryDefaultUILanguage.S │ │ ├── ZwQueryDirectoryFile.S │ │ ├── ZwQueryDirectoryFileEx.S │ │ ├── ZwQueryDirectoryObject.S │ │ ├── ZwQueryDriverEntryOrder.S │ │ ├── ZwQueryEaFile.S │ │ ├── ZwQueryEvent.S │ │ ├── ZwQueryFullAttributesFile.S │ │ ├── ZwQueryInformationAtom.S │ │ ├── ZwQueryInformationByName.S │ │ ├── ZwQueryInformationEnlistment.S │ │ ├── ZwQueryInformationFile.S │ │ ├── ZwQueryInformationJobObject.S │ │ ├── ZwQueryInformationPort.S │ │ ├── ZwQueryInformationProcess.S │ │ ├── ZwQueryInformationResourceManager.S │ │ ├── ZwQueryInformationThread.S │ │ ├── ZwQueryInformationToken.S │ │ ├── ZwQueryInformationTransaction.S │ │ ├── ZwQueryInformationTransactionManager.S │ │ ├── ZwQueryInformationWorkerFactory.S │ │ ├── ZwQueryInstallUILanguage.S │ │ ├── ZwQueryIntervalProfile.S │ │ ├── ZwQueryIoCompletion.S │ │ ├── ZwQueryKey.S │ │ ├── ZwQueryLicenseValue.S │ │ ├── ZwQueryMultipleValueKey.S │ │ ├── ZwQueryMutant.S │ │ ├── ZwQueryObject.S │ │ ├── ZwQueryOpenSubKeys.S │ │ ├── ZwQueryOpenSubKeysEx.S │ │ ├── ZwQueryPerformanceCounter.S │ │ ├── ZwQueryPortInformationProcess.S │ │ ├── ZwQueryQuotaInformationFile.S │ │ ├── ZwQuerySection.S │ │ ├── ZwQuerySecurityAttributesToken.S │ │ ├── ZwQuerySecurityObject.S │ │ ├── ZwQuerySecurityPolicy.S │ │ ├── ZwQuerySemaphore.S │ │ ├── ZwQuerySymbolicLinkObject.S │ │ ├── ZwQuerySystemEnvironmentValue.S │ │ ├── ZwQuerySystemEnvironmentValueEx.S │ │ ├── ZwQuerySystemInformation.S │ │ ├── ZwQuerySystemInformationEx.S │ │ ├── ZwQuerySystemTime.S │ │ ├── ZwQueryTimer.S │ │ ├── ZwQueryTimerResolution.S │ │ ├── ZwQueryValueKey.S │ │ ├── ZwQueryVirtualMemory.S │ │ ├── ZwQueryVolumeInformationFile.S │ │ ├── ZwQueryWnfStateData.S │ │ ├── ZwQueryWnfStateNameInformation.S │ │ ├── ZwQueueApcThread.S │ │ ├── ZwQueueApcThreadEx.S │ │ ├── ZwRaiseException.S │ │ ├── ZwRaiseHardError.S │ │ ├── ZwReadFile.S │ │ ├── ZwReadFileScatter.S │ │ ├── ZwReadOnlyEnlistment.S │ │ ├── ZwReadRequestData.S │ │ ├── ZwReadVirtualMemory.S │ │ ├── ZwRecoverEnlistment.S │ │ ├── ZwRecoverResourceManager.S │ │ ├── ZwRecoverTransactionManager.S │ │ ├── ZwRegisterProtocolAddressInformation.S │ │ ├── ZwRegisterThreadTerminatePort.S │ │ ├── ZwReleaseKeyedEvent.S │ │ ├── ZwReleaseMutant.S │ │ ├── ZwReleaseSemaphore.S │ │ ├── ZwReleaseWorkerFactoryWorker.S │ │ ├── ZwRemoveIoCompletion.S │ │ ├── ZwRemoveIoCompletionEx.S │ │ ├── ZwRemoveProcessDebug.S │ │ ├── ZwRenameKey.S │ │ ├── ZwRenameTransactionManager.S │ │ ├── ZwReplaceKey.S │ │ ├── ZwReplacePartitionUnit.S │ │ ├── ZwReplyPort.S │ │ ├── ZwReplyWaitReceivePort.S │ │ ├── ZwReplyWaitReceivePortEx.S │ │ ├── ZwReplyWaitReplyPort.S │ │ ├── ZwRequestPort.S │ │ ├── ZwRequestWaitReplyPort.S │ │ ├── ZwResetEvent.S │ │ ├── ZwResetWriteWatch.S │ │ ├── ZwRestoreKey.S │ │ ├── ZwResumeProcess.S │ │ ├── ZwResumeThread.S │ │ ├── ZwRevertContainerImpersonation.S │ │ ├── ZwRollbackComplete.S │ │ ├── ZwRollbackEnlistment.S │ │ ├── ZwRollbackRegistryTransaction.S │ │ ├── ZwRollbackTransaction.S │ │ ├── ZwRollforwardTransactionManager.S │ │ ├── ZwSaveKey.S │ │ ├── ZwSaveKeyEx.S │ │ ├── ZwSaveMergedKeys.S │ │ ├── ZwSecureConnectPort.S │ │ ├── ZwSerializeBoot.S │ │ ├── ZwSetBootEntryOrder.S │ │ ├── ZwSetBootOptions.S │ │ ├── ZwSetCachedSigningLevel.S │ │ ├── ZwSetCachedSigningLevel2.S │ │ ├── ZwSetContextThread.S │ │ ├── ZwSetDebugFilterState.S │ │ ├── ZwSetDefaultHardErrorPort.S │ │ ├── ZwSetDefaultLocale.S │ │ ├── ZwSetDefaultUILanguage.S │ │ ├── ZwSetDriverEntryOrder.S │ │ ├── ZwSetEaFile.S │ │ ├── ZwSetEvent.S │ │ ├── ZwSetEventBoostPriority.S │ │ ├── ZwSetHighEventPair.S │ │ ├── ZwSetHighWaitLowEventPair.S │ │ ├── ZwSetIRTimer.S │ │ ├── ZwSetInformationDebugObject.S │ │ ├── ZwSetInformationEnlistment.S │ │ ├── ZwSetInformationFile.S │ │ ├── ZwSetInformationJobObject.S │ │ ├── ZwSetInformationKey.S │ │ ├── ZwSetInformationObject.S │ │ ├── ZwSetInformationProcess.S │ │ ├── ZwSetInformationResourceManager.S │ │ ├── ZwSetInformationSymbolicLink.S │ │ ├── ZwSetInformationThread.S │ │ ├── ZwSetInformationToken.S │ │ ├── ZwSetInformationTransaction.S │ │ ├── ZwSetInformationTransactionManager.S │ │ ├── ZwSetInformationVirtualMemory.S │ │ ├── ZwSetInformationWorkerFactory.S │ │ ├── ZwSetIntervalProfile.S │ │ ├── ZwSetIoCompletion.S │ │ ├── ZwSetIoCompletionEx.S │ │ ├── ZwSetLdtEntries.S │ │ ├── ZwSetLowEventPair.S │ │ ├── ZwSetLowWaitHighEventPair.S │ │ ├── ZwSetQuotaInformationFile.S │ │ ├── ZwSetSecurityObject.S │ │ ├── ZwSetSystemEnvironmentValue.S │ │ ├── ZwSetSystemEnvironmentValueEx.S │ │ ├── ZwSetSystemInformation.S │ │ ├── ZwSetSystemPowerState.S │ │ ├── ZwSetSystemTime.S │ │ ├── ZwSetThreadExecutionState.S │ │ ├── ZwSetTimer.S │ │ ├── ZwSetTimer2.S │ │ ├── ZwSetTimerEx.S │ │ ├── ZwSetTimerResolution.S │ │ ├── ZwSetUuidSeed.S │ │ ├── ZwSetValueKey.S │ │ ├── ZwSetVolumeInformationFile.S │ │ ├── ZwSetWnfProcessNotificationEvent.S │ │ ├── ZwShutdownSystem.S │ │ ├── ZwShutdownWorkerFactory.S │ │ ├── ZwSignalAndWaitForSingleObject.S │ │ ├── ZwSinglePhaseReject.S │ │ ├── ZwStartProfile.S │ │ ├── ZwStopProfile.S │ │ ├── ZwSubscribeWnfStateChange.S │ │ ├── ZwSuspendProcess.S │ │ ├── ZwSuspendThread.S │ │ ├── ZwSystemDebugControl.S │ │ ├── ZwTerminateEnclave.S │ │ ├── ZwTerminateJobObject.S │ │ ├── ZwTerminateProcess.S │ │ ├── ZwTerminateThread.S │ │ ├── ZwTestAlert.S │ │ ├── ZwThawRegistry.S │ │ ├── ZwThawTransactions.S │ │ ├── ZwTraceControl.S │ │ ├── ZwTraceEvent.S │ │ ├── ZwTranslateFilePath.S │ │ ├── ZwUmsThreadYield.S │ │ ├── ZwUnloadDriver.S │ │ ├── ZwUnloadKey.S │ │ ├── ZwUnloadKey2.S │ │ ├── ZwUnloadKeyEx.S │ │ ├── ZwUnlockFile.S │ │ ├── ZwUnlockVirtualMemory.S │ │ ├── ZwUnmapViewOfSection.S │ │ ├── ZwUnmapViewOfSectionEx.S │ │ ├── ZwUnsubscribeWnfStateChange.S │ │ ├── ZwUpdateWnfStateData.S │ │ ├── ZwVdmControl.S │ │ ├── ZwWaitForAlertByThreadId.S │ │ ├── ZwWaitForDebugEvent.S │ │ ├── ZwWaitForKeyedEvent.S │ │ ├── ZwWaitForMultipleObjects.S │ │ ├── ZwWaitForMultipleObjects32.S │ │ ├── ZwWaitForSingleObject.S │ │ ├── ZwWaitForWorkViaWorkerFactory.S │ │ ├── ZwWaitHighEventPair.S │ │ ├── ZwWaitLowEventPair.S │ │ ├── ZwWorkerFactoryWorkerReady.S │ │ ├── ZwWriteFile.S │ │ ├── ZwWriteFileGather.S │ │ ├── ZwWriteRequestData.S │ │ ├── ZwWriteVirtualMemory.S │ │ └── ZwYieldExecution.S │ ├── ntdllimport.S │ ├── ntdllimport.h │ ├── paint.h │ ├── pdh.h │ ├── pdh │ │ ├── CounterPathCallBack.S │ │ ├── LoadPerfCounterTextStringsW.S │ │ ├── PdhAddCounterW.S │ │ ├── PdhAddEnglishCounterW.S │ │ ├── PdhBindInputDataSourceW.S │ │ ├── PdhBrowseCountersHW.S │ │ ├── PdhBrowseCountersW.S │ │ ├── PdhCalculateCounterFromRawValue.S │ │ ├── PdhCloseLog.S │ │ ├── PdhCloseQuery.S │ │ ├── PdhCollectQueryData.S │ │ ├── PdhCollectQueryDataEx.S │ │ ├── PdhCollectQueryDataWithTime.S │ │ ├── PdhComputeCounterStatistics.S │ │ ├── PdhConnectMachineW.S │ │ ├── PdhEnumLogSetNamesW.S │ │ ├── PdhEnumMachinesHW.S │ │ ├── PdhEnumMachinesW.S │ │ ├── PdhEnumObjectItemsHW.S │ │ ├── PdhEnumObjectItemsW.S │ │ ├── PdhEnumObjectsHW.S │ │ ├── PdhEnumObjectsW.S │ │ ├── PdhExpandCounterPathW.S │ │ ├── PdhExpandWildCardPathHW.S │ │ ├── PdhExpandWildCardPathW.S │ │ ├── PdhFormatFromRawValue.S │ │ ├── PdhGetCounterInfoW.S │ │ ├── PdhGetCounterTimeBase.S │ │ ├── PdhGetDataSourceTimeRangeH.S │ │ ├── PdhGetDataSourceTimeRangeW.S │ │ ├── PdhGetDefaultPerfCounterHW.S │ │ ├── PdhGetDefaultPerfCounterW.S │ │ ├── PdhGetDefaultPerfObjectHW.S │ │ ├── PdhGetDefaultPerfObjectW.S │ │ ├── PdhGetDllVersion.S │ │ ├── PdhGetFormattedCounterArrayW.S │ │ ├── PdhGetFormattedCounterValue.S │ │ ├── PdhGetLogFileSize.S │ │ ├── PdhGetRawCounterArrayW.S │ │ ├── PdhGetRawCounterValue.S │ │ ├── PdhIsRealTimeQuery.S │ │ ├── PdhLookupPerfIndexByNameW.S │ │ ├── PdhLookupPerfNameByIndexW.S │ │ ├── PdhMakeCounterPathW.S │ │ ├── PdhOpenLogW.S │ │ ├── PdhOpenQueryH.S │ │ ├── PdhOpenQueryW.S │ │ ├── PdhParseCounterPathW.S │ │ ├── PdhParseInstanceNameW.S │ │ ├── PdhReadRawLogRecord.S │ │ ├── PdhRemoveCounter.S │ │ ├── PdhSelectDataSourceW.S │ │ ├── PdhSetCounterScaleFactor.S │ │ ├── PdhSetDefaultRealTimeDataSource.S │ │ ├── PdhSetQueryTimeRange.S │ │ ├── PdhUpdateLogFileCatalog.S │ │ ├── PdhUpdateLogW.S │ │ ├── PdhValidatePathExW.S │ │ ├── PdhValidatePathW.S │ │ ├── PerfAddCounters.S │ │ ├── PerfCloseQueryHandle.S │ │ ├── PerfCreateInstance.S │ │ ├── PerfDecrementULongCounterValue.S │ │ ├── PerfDecrementULongLongCounterValue.S │ │ ├── PerfDeleteCounters.S │ │ ├── PerfDeleteInstance.S │ │ ├── PerfEnumerateCounterSet.S │ │ ├── PerfEnumerateCounterSetInstances.S │ │ ├── PerfIncrementULongCounterValue.S │ │ ├── PerfIncrementULongLongCounterValue.S │ │ ├── PerfOpenQueryHandle.S │ │ ├── PerfQueryCounterData.S │ │ ├── PerfQueryCounterInfo.S │ │ ├── PerfQueryCounterSetRegistrationInfo.S │ │ ├── PerfQueryInstance.S │ │ ├── PerfSetCounterRefValue.S │ │ ├── PerfSetCounterSetInfo.S │ │ ├── PerfSetULongCounterValue.S │ │ ├── PerfSetULongLongCounterValue.S │ │ ├── PerfStartProvider.S │ │ ├── PerfStartProviderEx.S │ │ ├── PerfStopProvider.S │ │ └── UnloadPerfCounterTextStringsW.S │ ├── pedef.internal.h │ ├── privilege.h │ ├── process.h │ ├── psapi │ │ ├── EmptyWorkingSet.S │ │ ├── EnumDeviceDrivers.S │ │ ├── EnumPageFilesW.S │ │ ├── EnumProcessModules.S │ │ ├── EnumProcessModulesEx.S │ │ ├── EnumProcesses.S │ │ ├── GetDeviceDriverBaseNameW.S │ │ ├── GetDeviceDriverFileNameW.S │ │ ├── GetMappedFileNameW.S │ │ ├── GetModuleBaseNameW.S │ │ ├── GetModuleFileNameExW.S │ │ ├── GetModuleInformation.S │ │ ├── GetPerformanceInfo.S │ │ ├── GetProcessImageFileNameW.S │ │ ├── GetProcessMemoryInfo.S │ │ ├── GetWsChanges.S │ │ ├── GetWsChangesEx.S │ │ ├── InitializeProcessForWsWatch.S │ │ ├── QueryWorkingSet.S │ │ └── QueryWorkingSetEx.S │ ├── registry.h │ ├── runtime.h │ ├── signals.h │ ├── startupinfo.h │ ├── struct │ │ ├── acl.h │ │ ├── afd.h │ │ ├── ansistring.h │ │ ├── byhandlefileinformation.h │ │ ├── charinfo.h │ │ ├── clientid.h │ │ ├── consolecursorinfo.h │ │ ├── consolescreenbufferinfo.h │ │ ├── consolescreenbufferinfoex.h │ │ ├── consoleselectioninfo.h │ │ ├── context.h │ │ ├── coord.h │ │ ├── criticalsection.h │ │ ├── criticalsectiondebug.h │ │ ├── drawtextparams.h │ │ ├── editmenu.h │ │ ├── exceptionframe.h │ │ ├── fdset.h │ │ ├── fileaccessinformation.h │ │ ├── filealignmentinformation.h │ │ ├── fileallinformation.h │ │ ├── fileallocationinformation.h │ │ ├── fileattributetaginformation.h │ │ ├── filebasicinfo.h │ │ ├── filebasicinformation.h │ │ ├── filebothdirectoryinformation.h │ │ ├── filecompressioninfo.h │ │ ├── filedirectoryinformation.h │ │ ├── filedispositioninformation.h │ │ ├── fileeainformation.h │ │ ├── fileendoffileinformation.h │ │ ├── filefsfullsizeinformation.h │ │ ├── filefulldirectoryinformation.h │ │ ├── filefulleainformation.h │ │ ├── fileinternalinformation.h │ │ ├── filemailslotqueryinformation.h │ │ ├── filemailslotsetinformation.h │ │ ├── filemodeinformation.h │ │ ├── filenameinformation.h │ │ ├── filenamesinformation.h │ │ ├── filenetworkopeninformation.h │ │ ├── filepipelocalinformation.h │ │ ├── filepositioninformation.h │ │ ├── filerenameinformation.h │ │ ├── filesegmentelement.h │ │ ├── filestandardinformation.h │ │ ├── filestreaminformation.h │ │ ├── filetime.h │ │ ├── filezerodatainformation.h │ │ ├── fpodata.h │ │ ├── genericmapping.h │ │ ├── guid.h │ │ ├── imagearchivememberheader.internal.h │ │ ├── imageauxsymbol.internal.h │ │ ├── imageauxsymbolex.internal.h │ │ ├── imageauxsymboltokendef.internal.h │ │ ├── imagebaserelocation.internal.h │ │ ├── imageboundforwarderref.internal.h │ │ ├── imageboundimportdescriptor.internal.h │ │ ├── imageceruntimefunctionentry.internal.h │ │ ├── imagecoffsymbolsheader.internal.h │ │ ├── imagedatadirectory.internal.h │ │ ├── imagedebugdirectory.internal.h │ │ ├── imagedebugmisc.internal.h │ │ ├── imagedelayloaddescriptor.internal.h │ │ ├── imagedosheader.internal.h │ │ ├── imagedynamicrelocation.internal.h │ │ ├── imagedynamicrelocationtable.internal.h │ │ ├── imagedynamicrelocationv2.internal.h │ │ ├── imageenclaveconfig.internal.h │ │ ├── imageenclaveimport.internal.h │ │ ├── imageepiloguedynamicrelocationheader.internal.h │ │ ├── imageexportdirectory.internal.h │ │ ├── imagefileheader.internal.h │ │ ├── imagehotpatchbase.internal.h │ │ ├── imagehotpatchhashes.internal.h │ │ ├── imagehotpatchinfo.internal.h │ │ ├── imageimportbyname.internal.h │ │ ├── imageimportdescriptor.internal.h │ │ ├── imagelinenumber.internal.h │ │ ├── imageloadconfigcodeintegrity.internal.h │ │ ├── imageloadconfigdirectory.internal.h │ │ ├── imagentheaders.internal.h │ │ ├── imageoptionalheader.internal.h │ │ ├── imageprologuedynamicrelocationheader.internal.h │ │ ├── imagerelocation.internal.h │ │ ├── imageresourcedataentry.internal.h │ │ ├── imageresourcedirectory.internal.h │ │ ├── imageresourcedirectoryentry.internal.h │ │ ├── imageresourcedirstring.internal.h │ │ ├── imageromoptionalheader.internal.h │ │ ├── imageruntimefunctionentry.internal.h │ │ ├── imagesectionheader.internal.h │ │ ├── imageseparatedebugheader.internal.h │ │ ├── imagesymbol.internal.h │ │ ├── imagesymbolex.internal.h │ │ ├── imagethunkdata.internal.h │ │ ├── imagetlsdirectory.internal.h │ │ ├── importobjectheader.internal.h │ │ ├── inputrecord.h │ │ ├── iocounters.h │ │ ├── iostatusblock.h │ │ ├── iovec.h │ │ ├── ipadapteraddresses.h │ │ ├── kernelusertimes.h │ │ ├── ldr.h │ │ ├── ldrdatatableentry.h │ │ ├── linger.h │ │ ├── linkedlist.h │ │ ├── luid.h │ │ ├── luidandattributes.h │ │ ├── memorybasicinformation.h │ │ ├── memoryrangeentry.h │ │ ├── memorystatusex.h │ │ ├── msg.h │ │ ├── nonpageddebuginfo.h │ │ ├── ntexceptionpointers.h │ │ ├── ntexceptionrecord.h │ │ ├── objectallinformation.h │ │ ├── objectattributes.h │ │ ├── objectbasicinformation.h │ │ ├── objectnameinformation.h │ │ ├── objecttypeinformation.h │ │ ├── openfilename.h │ │ ├── osversioninfo.h │ │ ├── overlapped.h │ │ ├── overlappedentry.h │ │ ├── paintstruct.h │ │ ├── pdhfmtcountervalue.h │ │ ├── peb.h │ │ ├── point.h │ │ ├── pollfd.h │ │ ├── privilegeset.h │ │ ├── processbasicinformation.h │ │ ├── processentry32.h │ │ ├── processinformation.h │ │ ├── processmemorycounters.h │ │ ├── procthreadattributelist.h │ │ ├── rect.h │ │ ├── reparsedatabuffer.h │ │ ├── rtluserprocessinformation.h │ │ ├── rtluserprocessparameters.h │ │ ├── sectionimageinformation.h │ │ ├── securityattributes.h │ │ ├── securitydescriptor.h │ │ ├── size.h │ │ ├── smallrect.h │ │ ├── startupinfo.h │ │ ├── startupinfoex.h │ │ ├── systembasicinformation.h │ │ ├── systemexceptioninformation.h │ │ ├── systemhandleentry.h │ │ ├── systemhandleinformation.h │ │ ├── systeminfo.h │ │ ├── systeminterruptinformation.h │ │ ├── systemlookasideinformation.h │ │ ├── systemperformanceinformation.h │ │ ├── systemprocessinformation.h │ │ ├── systemprocessorinformation.h │ │ ├── systemprocessorperformanceinformation.h │ │ ├── systemregistryquotainformation.h │ │ ├── systemthreads.h │ │ ├── systemtime.h │ │ ├── systemtimeofdayinformation.h │ │ ├── teb.h │ │ ├── timeval.h │ │ ├── tokenprivileges.h │ │ ├── unicodestring.h │ │ ├── userstack.h │ │ ├── valent.h │ │ ├── vmcounters.h │ │ ├── win32fileattributedata.h │ │ ├── win32finddata.h │ │ ├── windowplacement.h │ │ ├── wndclass.h │ │ └── wndclassex.h │ ├── synchronization.h │ ├── system.h │ ├── systeminfo.h │ ├── sysv2nt.S │ ├── thread.h │ ├── thunk │ │ ├── accounting.inc │ │ ├── console.inc │ │ ├── files.inc │ │ ├── memory.inc │ │ ├── msabi.h │ │ ├── ntdll.inc │ │ ├── ntfile.inc │ │ ├── paint.inc │ │ ├── process.inc │ │ ├── runtime.inc │ │ ├── signals.inc │ │ ├── startupinfo.inc │ │ ├── synchronization.inc │ │ ├── systeminfo.inc │ │ ├── thread.inc │ │ └── winsock.inc │ ├── typedef │ │ ├── exceptionhandler.h │ │ ├── handlerroutine.h │ │ ├── hookproc.h │ │ ├── imagetlscallback.h │ │ ├── ioapcroutine.h │ │ ├── pknormalroutine.h │ │ ├── timerproc.h │ │ ├── wambda.h │ │ ├── wndenumproc.h │ │ └── wndproc.h │ ├── url │ │ ├── AddMIMEFileTypesPS.S │ │ ├── AutodialHookCallback.S │ │ ├── FileProtocolHandler.S │ │ ├── InetIsOffline.S │ │ ├── MIMEAssociationDialogW.S │ │ ├── MailToProtocolHandler.S │ │ ├── OpenURL.S │ │ ├── TelnetProtocolHandler.S │ │ ├── TranslateURLW.S │ │ └── URLAssociationDialogW.S │ ├── user32 │ │ ├── ActivateKeyboardLayout.S │ │ ├── AddClipboardFormatListener.S │ │ ├── AdjustWindowRect.S │ │ ├── AdjustWindowRectEx.S │ │ ├── AdjustWindowRectExForDpi.S │ │ ├── AlignRects.S │ │ ├── AllowForegroundActivation.S │ │ ├── AllowSetForegroundWindow.S │ │ ├── AnimateWindow.S │ │ ├── AnyPopup.S │ │ ├── AppendMenuA.S │ │ ├── AppendMenuW.S │ │ ├── AreDpiAwarenessContextsEqual.S │ │ ├── ArrangeIconicWindows.S │ │ ├── AttachThreadInput.S │ │ ├── BeginDeferWindowPos.S │ │ ├── BeginPaint.S │ │ ├── BlockInput.S │ │ ├── BringWindowToTop.S │ │ ├── BroadcastSystemMessageExW.S │ │ ├── BroadcastSystemMessageW.S │ │ ├── BuildReasonArray.S │ │ ├── CalcMenuBar.S │ │ ├── CalculatePopupWindowPosition.S │ │ ├── CallMsgFilterW.S │ │ ├── CallNextHookEx.S │ │ ├── CallWindowProcW.S │ │ ├── CancelShutdown.S │ │ ├── CascadeChildWindows.S │ │ ├── CascadeWindows.S │ │ ├── ChangeClipboardChain.S │ │ ├── ChangeDisplaySettingsExW.S │ │ ├── ChangeDisplaySettingsW.S │ │ ├── ChangeMenuW.S │ │ ├── ChangeWindowMessageFilter.S │ │ ├── ChangeWindowMessageFilterEx.S │ │ ├── CharToOemBuffW.S │ │ ├── CharToOemW.S │ │ ├── CheckDBCSEnabledExt.S │ │ ├── CheckDlgButton.S │ │ ├── CheckMenuItem.S │ │ ├── CheckMenuRadioItem.S │ │ ├── CheckProcessForClipboardAccess.S │ │ ├── CheckProcessSession.S │ │ ├── CheckRadioButton.S │ │ ├── CheckWindowThreadDesktop.S │ │ ├── ChildWindowFromPoint.S │ │ ├── ChildWindowFromPointEx.S │ │ ├── CliImmSetHotKey.S │ │ ├── ClientThreadSetup.S │ │ ├── ClientToScreen.S │ │ ├── ClipCursor.S │ │ ├── CloseClipboard.S │ │ ├── CloseDesktop.S │ │ ├── CloseGestureInfoHandle.S │ │ ├── CloseTouchInputHandle.S │ │ ├── CloseWindow.S │ │ ├── CloseWindowStation.S │ │ ├── ConsoleControl.S │ │ ├── ControlMagnification.S │ │ ├── CopyAcceleratorTableW.S │ │ ├── CopyIcon.S │ │ ├── CopyImage.S │ │ ├── CopyRect.S │ │ ├── CountClipboardFormats.S │ │ ├── CreateAcceleratorTableW.S │ │ ├── CreateCaret.S │ │ ├── CreateCursor.S │ │ ├── CreateDCompositionHwndTarget.S │ │ ├── CreateDesktopExW.S │ │ ├── CreateDesktopW.S │ │ ├── CreateDialogIndirectParamAorW.S │ │ ├── CreateDialogIndirectParamW.S │ │ ├── CreateDialogParamW.S │ │ ├── CreateIcon.S │ │ ├── CreateIconFromResource.S │ │ ├── CreateIconFromResourceEx.S │ │ ├── CreateIconIndirect.S │ │ ├── CreateMDIWindowW.S │ │ ├── CreateMenu.S │ │ ├── CreatePalmRejectionDelayZone.S │ │ ├── CreatePopupMenu.S │ │ ├── CreateSystemThreads.S │ │ ├── CreateWindowExW.S │ │ ├── CreateWindowInBand.S │ │ ├── CreateWindowInBandEx.S │ │ ├── CreateWindowIndirect.S │ │ ├── CreateWindowStationW.S │ │ ├── CsrBroadcastSystemMessageExW.S │ │ ├── CtxInitUser32.S │ │ ├── DWMBindCursorToOutputConfig.S │ │ ├── DWMCommitInputSystemOutputConfig.S │ │ ├── DWMSetCursorOrientation.S │ │ ├── DWMSetInputSystemOutputConfig.S │ │ ├── DdeAbandonTransaction.S │ │ ├── DdeAccessData.S │ │ ├── DdeAddData.S │ │ ├── DdeClientTransaction.S │ │ ├── DdeCmpStringHandles.S │ │ ├── DdeConnect.S │ │ ├── DdeConnectList.S │ │ ├── DdeCreateDataHandle.S │ │ ├── DdeCreateStringHandleW.S │ │ ├── DdeDisconnect.S │ │ ├── DdeDisconnectList.S │ │ ├── DdeEnableCallback.S │ │ ├── DdeFreeDataHandle.S │ │ ├── DdeFreeStringHandle.S │ │ ├── DdeGetData.S │ │ ├── DdeGetLastError.S │ │ ├── DdeGetQualityOfService.S │ │ ├── DdeImpersonateClient.S │ │ ├── DdeInitializeW.S │ │ ├── DdeKeepStringHandle.S │ │ ├── DdeNameService.S │ │ ├── DdePostAdvise.S │ │ ├── DdeQueryConvInfo.S │ │ ├── DdeQueryNextServer.S │ │ ├── DdeQueryStringW.S │ │ ├── DdeReconnect.S │ │ ├── DdeSetQualityOfService.S │ │ ├── DdeSetUserHandle.S │ │ ├── DdeUnaccessData.S │ │ ├── DdeUninitialize.S │ │ ├── DefFrameProcW.S │ │ ├── DefMDIChildProcW.S │ │ ├── DefRawInputProc.S │ │ ├── DefWindowProcW.S │ │ ├── DeferWindowPos.S │ │ ├── DeferWindowPosAndBand.S │ │ ├── DelegateInput.S │ │ ├── DeleteMenu.S │ │ ├── DeregisterShellHookWindow.S │ │ ├── DestroyAcceleratorTable.S │ │ ├── DestroyCaret.S │ │ ├── DestroyCursor.S │ │ ├── DestroyDCompositionHwndTarget.S │ │ ├── DestroyIcon.S │ │ ├── DestroyMenu.S │ │ ├── DestroyPalmRejectionDelayZone.S │ │ ├── DestroyReasons.S │ │ ├── DestroyWindow.S │ │ ├── DialogBoxIndirectParamAorW.S │ │ ├── DialogBoxIndirectParamW.S │ │ ├── DialogBoxParamW.S │ │ ├── DisableProcessWindowsGhosting.S │ │ ├── DispatchMessageW.S │ │ ├── DisplayConfigGetDeviceInfo.S │ │ ├── DisplayConfigSetDeviceInfo.S │ │ ├── DisplayExitWindowsWarnings.S │ │ ├── DlgDirListComboBoxW.S │ │ ├── DlgDirListW.S │ │ ├── DlgDirSelectComboBoxExW.S │ │ ├── DlgDirSelectExW.S │ │ ├── DoSoundConnect.S │ │ ├── DoSoundDisconnect.S │ │ ├── DragDetect.S │ │ ├── DragObject.S │ │ ├── DrawAnimatedRects.S │ │ ├── DrawCaption.S │ │ ├── DrawCaptionTempW.S │ │ ├── DrawEdge.S │ │ ├── DrawFocusRect.S │ │ ├── DrawFrame.S │ │ ├── DrawFrameControl.S │ │ ├── DrawIcon.S │ │ ├── DrawIconEx.S │ │ ├── DrawMenuBar.S │ │ ├── DrawMenuBarTemp.S │ │ ├── DrawStateW.S │ │ ├── DrawTextExW.S │ │ ├── DrawTextW.S │ │ ├── DwmGetDxRgn.S │ │ ├── DwmGetDxSharedSurface.S │ │ ├── DwmGetRemoteSessionOcclusionEvent.S │ │ ├── DwmGetRemoteSessionOcclusionState.S │ │ ├── DwmKernelShutdown.S │ │ ├── DwmKernelStartup.S │ │ ├── DwmLockScreenUpdates.S │ │ ├── DwmValidateWindow.S │ │ ├── EditWndProc.S │ │ ├── EmptyClipboard.S │ │ ├── EnableMenuItem.S │ │ ├── EnableMouseInPointer.S │ │ ├── EnableNonClientDpiScaling.S │ │ ├── EnableOneCoreTransformMode.S │ │ ├── EnableScrollBar.S │ │ ├── EnableSessionForMMCSS.S │ │ ├── EnableWindow.S │ │ ├── EndDeferWindowPos.S │ │ ├── EndDeferWindowPosEx.S │ │ ├── EndDialog.S │ │ ├── EndMenu.S │ │ ├── EndPaint.S │ │ ├── EndTask.S │ │ ├── EnterReaderModeHelper.S │ │ ├── EnumChildWindows.S │ │ ├── EnumClipboardFormats.S │ │ ├── EnumDesktopWindows.S │ │ ├── EnumDesktopsW.S │ │ ├── EnumDisplayDevicesW.S │ │ ├── EnumDisplayMonitors.S │ │ ├── EnumDisplaySettingsExW.S │ │ ├── EnumDisplaySettingsW.S │ │ ├── EnumPropsExW.S │ │ ├── EnumPropsW.S │ │ ├── EnumThreadWindows.S │ │ ├── EnumWindowStationsW.S │ │ ├── EnumWindows.S │ │ ├── EqualRect.S │ │ ├── EvaluateProximityToPolygon.S │ │ ├── EvaluateProximityToRect.S │ │ ├── ExcludeUpdateRgn.S │ │ ├── ExitWindowsEx.S │ │ ├── FillRect.S │ │ ├── FindWindowExW.S │ │ ├── FindWindowW.S │ │ ├── FlashWindow.S │ │ ├── FlashWindowEx.S │ │ ├── FrameRect.S │ │ ├── FreeDDElParam.S │ │ ├── FrostCrashedWindow.S │ │ ├── GetActiveWindow.S │ │ ├── GetAltTabInfoW.S │ │ ├── GetAncestor.S │ │ ├── GetAppCompatFlags.S │ │ ├── GetAppCompatFlags2.S │ │ ├── GetAsyncKeyState.S │ │ ├── GetAutoRotationState.S │ │ ├── GetAwarenessFromDpiAwarenessContext.S │ │ ├── GetCIMSSM.S │ │ ├── GetCapture.S │ │ ├── GetCaretBlinkTime.S │ │ ├── GetCaretPos.S │ │ ├── GetClassInfoExW.S │ │ ├── GetClassInfoW.S │ │ ├── GetClassLongPtrW.S │ │ ├── GetClassLongW.S │ │ ├── GetClassNameW.S │ │ ├── GetClassWord.S │ │ ├── GetClientRect.S │ │ ├── GetClipCursor.S │ │ ├── GetClipboardAccessToken.S │ │ ├── GetClipboardData.S │ │ ├── GetClipboardFormatNameW.S │ │ ├── GetClipboardOwner.S │ │ ├── GetClipboardSequenceNumber.S │ │ ├── GetClipboardViewer.S │ │ ├── GetComboBoxInfo.S │ │ ├── GetCurrentInputMessageSource.S │ │ ├── GetCursor.S │ │ ├── GetCursorFrameInfo.S │ │ ├── GetCursorInfo.S │ │ ├── GetCursorPos.S │ │ ├── GetDC.S │ │ ├── GetDCEx.S │ │ ├── GetDesktopID.S │ │ ├── GetDesktopWindow.S │ │ ├── GetDialogBaseUnits.S │ │ ├── GetDialogControlDpiChangeBehavior.S │ │ ├── GetDialogDpiChangeBehavior.S │ │ ├── GetDisplayAutoRotationPreferences.S │ │ ├── GetDisplayConfigBufferSizes.S │ │ ├── GetDlgCtrlID.S │ │ ├── GetDlgItem.S │ │ ├── GetDlgItemInt.S │ │ ├── GetDlgItemTextW.S │ │ ├── GetDoubleClickTime.S │ │ ├── GetDpiForMonitorInternal.S │ │ ├── GetDpiForSystem.S │ │ ├── GetDpiForWindow.S │ │ ├── GetDpiFromDpiAwarenessContext.S │ │ ├── GetFocus.S │ │ ├── GetForegroundWindow.S │ │ ├── GetGUIThreadInfo.S │ │ ├── GetGestureConfig.S │ │ ├── GetGestureExtraArgs.S │ │ ├── GetGestureInfo.S │ │ ├── GetGuiResources.S │ │ ├── GetIconInfo.S │ │ ├── GetIconInfoExW.S │ │ ├── GetInputDesktop.S │ │ ├── GetInputLocaleInfo.S │ │ ├── GetInputState.S │ │ ├── GetInternalWindowPos.S │ │ ├── GetKBCodePage.S │ │ ├── GetKeyNameTextW.S │ │ ├── GetKeyState.S │ │ ├── GetKeyboardLayout.S │ │ ├── GetKeyboardLayoutList.S │ │ ├── GetKeyboardLayoutNameW.S │ │ ├── GetKeyboardState.S │ │ ├── GetKeyboardType.S │ │ ├── GetLastActivePopup.S │ │ ├── GetLastInputInfo.S │ │ ├── GetLayeredWindowAttributes.S │ │ ├── GetListBoxInfo.S │ │ ├── GetMagnificationDesktopColorEffect.S │ │ ├── GetMagnificationDesktopMagnification.S │ │ ├── GetMagnificationDesktopSamplingMode.S │ │ ├── GetMagnificationLensCtxInformation.S │ │ ├── GetMenu.S │ │ ├── GetMenuBarInfo.S │ │ ├── GetMenuCheckMarkDimensions.S │ │ ├── GetMenuContextHelpId.S │ │ ├── GetMenuDefaultItem.S │ │ ├── GetMenuInfo.S │ │ ├── GetMenuItemCount.S │ │ ├── GetMenuItemID.S │ │ ├── GetMenuItemInfoW.S │ │ ├── GetMenuItemRect.S │ │ ├── GetMenuState.S │ │ ├── GetMenuStringW.S │ │ ├── GetMessageExtraInfo.S │ │ ├── GetMessagePos.S │ │ ├── GetMessageTime.S │ │ ├── GetMessageW.S │ │ ├── GetMonitorInfoW.S │ │ ├── GetMouseMovePointsEx.S │ │ ├── GetNextDlgGroupItem.S │ │ ├── GetNextDlgTabItem.S │ │ ├── GetOpenClipboardWindow.S │ │ ├── GetParent.S │ │ ├── GetPhysicalCursorPos.S │ │ ├── GetPointerCursorId.S │ │ ├── GetPointerDevice.S │ │ ├── GetPointerDeviceCursors.S │ │ ├── GetPointerDeviceProperties.S │ │ ├── GetPointerDeviceRects.S │ │ ├── GetPointerDevices.S │ │ ├── GetPointerFrameArrivalTimes.S │ │ ├── GetPointerFrameInfo.S │ │ ├── GetPointerFrameInfoHistory.S │ │ ├── GetPointerFramePenInfo.S │ │ ├── GetPointerFramePenInfoHistory.S │ │ ├── GetPointerFrameTouchInfo.S │ │ ├── GetPointerFrameTouchInfoHistory.S │ │ ├── GetPointerInfo.S │ │ ├── GetPointerInfoHistory.S │ │ ├── GetPointerInputTransform.S │ │ ├── GetPointerPenInfo.S │ │ ├── GetPointerPenInfoHistory.S │ │ ├── GetPointerTouchInfo.S │ │ ├── GetPointerTouchInfoHistory.S │ │ ├── GetPointerType.S │ │ ├── GetPriorityClipboardFormat.S │ │ ├── GetProcessDefaultLayout.S │ │ ├── GetProcessDpiAwarenessInternal.S │ │ ├── GetProcessUIContextInformation.S │ │ ├── GetProcessWindowStation.S │ │ ├── GetProgmanWindow.S │ │ ├── GetPropW.S │ │ ├── GetQueueStatus.S │ │ ├── GetRawInputBuffer.S │ │ ├── GetRawInputData.S │ │ ├── GetRawInputDeviceInfoW.S │ │ ├── GetRawInputDeviceList.S │ │ ├── GetRawPointerDeviceData.S │ │ ├── GetReasonTitleFromReasonCode.S │ │ ├── GetRegisteredRawInputDevices.S │ │ ├── GetScrollBarInfo.S │ │ ├── GetScrollInfo.S │ │ ├── GetScrollPos.S │ │ ├── GetScrollRange.S │ │ ├── GetSendMessageReceiver.S │ │ ├── GetShellWindow.S │ │ ├── GetSubMenu.S │ │ ├── GetSysColor.S │ │ ├── GetSysColorBrush.S │ │ ├── GetSystemDpiForProcess.S │ │ ├── GetSystemMenu.S │ │ ├── GetSystemMetrics.S │ │ ├── GetSystemMetricsForDpi.S │ │ ├── GetTabbedTextExtentW.S │ │ ├── GetTaskmanWindow.S │ │ ├── GetThreadDesktop.S │ │ ├── GetThreadDpiAwarenessContext.S │ │ ├── GetThreadDpiHostingBehavior.S │ │ ├── GetTitleBarInfo.S │ │ ├── GetTopLevelWindow.S │ │ ├── GetTopWindow.S │ │ ├── GetTouchInputInfo.S │ │ ├── GetUnpredictedMessagePos.S │ │ ├── GetUpdateRect.S │ │ ├── GetUpdateRgn.S │ │ ├── GetUpdatedClipboardFormats.S │ │ ├── GetUserObjectInformationW.S │ │ ├── GetUserObjectSecurity.S │ │ ├── GetWinStationInfo.S │ │ ├── GetWindow.S │ │ ├── GetWindowBand.S │ │ ├── GetWindowCompositionAttribute.S │ │ ├── GetWindowCompositionInfo.S │ │ ├── GetWindowContextHelpId.S │ │ ├── GetWindowDC.S │ │ ├── GetWindowDisplayAffinity.S │ │ ├── GetWindowDpiAwarenessContext.S │ │ ├── GetWindowDpiHostingBehavior.S │ │ ├── GetWindowFeedbackSetting.S │ │ ├── GetWindowInfo.S │ │ ├── GetWindowLongPtrW.S │ │ ├── GetWindowLongW.S │ │ ├── GetWindowMinimizeRect.S │ │ ├── GetWindowModuleFileNameW.S │ │ ├── GetWindowPlacement.S │ │ ├── GetWindowProcessHandle.S │ │ ├── GetWindowRect.S │ │ ├── GetWindowRgn.S │ │ ├── GetWindowRgnBox.S │ │ ├── GetWindowRgnEx.S │ │ ├── GetWindowTextLengthW.S │ │ ├── GetWindowTextW.S │ │ ├── GetWindowThreadProcessId.S │ │ ├── GetWindowWord.S │ │ ├── GhostWindowFromHungWindow.S │ │ ├── GrayStringW.S │ │ ├── HandleDelegatedInput.S │ │ ├── HideCaret.S │ │ ├── HiliteMenuItem.S │ │ ├── HungWindowFromGhostWindow.S │ │ ├── IMPGetIMEW.S │ │ ├── IMPQueryIMEW.S │ │ ├── IMPSetIMEW.S │ │ ├── ImpersonateDdeClientWindow.S │ │ ├── InSendMessage.S │ │ ├── InSendMessageEx.S │ │ ├── InflateRect.S │ │ ├── InheritWindowMonitor.S │ │ ├── InitDManipHook.S │ │ ├── InitializeGenericHidInjection.S │ │ ├── InitializeInputDeviceInjection.S │ │ ├── InitializeLpkHooks.S │ │ ├── InitializePointerDeviceInjection.S │ │ ├── InitializePointerDeviceInjectionEx.S │ │ ├── InitializeTouchInjection.S │ │ ├── InjectDeviceInput.S │ │ ├── InjectGenericHidInput.S │ │ ├── InjectKeyboardInput.S │ │ ├── InjectMouseInput.S │ │ ├── InjectPointerInput.S │ │ ├── InjectTouchInput.S │ │ ├── InsertMenuItemW.S │ │ ├── InsertMenuW.S │ │ ├── InternalGetWindowIcon.S │ │ ├── InternalGetWindowText.S │ │ ├── IntersectRect.S │ │ ├── InvalidateRect.S │ │ ├── InvalidateRgn.S │ │ ├── InvertRect.S │ │ ├── IsChild.S │ │ ├── IsClipboardFormatAvailable.S │ │ ├── IsDialogMessageW.S │ │ ├── IsDlgButtonChecked.S │ │ ├── IsGUIThread.S │ │ ├── IsHungAppWindow.S │ │ ├── IsIconic.S │ │ ├── IsImmersiveProcess.S │ │ ├── IsInDesktopWindowBand.S │ │ ├── IsMenu.S │ │ ├── IsMouseInPointerEnabled.S │ │ ├── IsOneCoreTransformMode.S │ │ ├── IsProcessDPIAware.S │ │ ├── IsQueueAttached.S │ │ ├── IsRectEmpty.S │ │ ├── IsSETEnabled.S │ │ ├── IsServerSideWindow.S │ │ ├── IsThreadDesktopComposited.S │ │ ├── IsThreadMessageQueueAttached.S │ │ ├── IsThreadTSFEventAware.S │ │ ├── IsTopLevelWindow.S │ │ ├── IsTouchWindow.S │ │ ├── IsValidDpiAwarenessContext.S │ │ ├── IsWinEventHookInstalled.S │ │ ├── IsWindow.S │ │ ├── IsWindowArranged.S │ │ ├── IsWindowEnabled.S │ │ ├── IsWindowInDestroy.S │ │ ├── IsWindowRedirectedForPrint.S │ │ ├── IsWindowUnicode.S │ │ ├── IsWindowVisible.S │ │ ├── IsZoomed.S │ │ ├── KillTimer.S │ │ ├── LoadAcceleratorsW.S │ │ ├── LoadBitmapW.S │ │ ├── LoadCursorFromFileW.S │ │ ├── LoadCursorW.S │ │ ├── LoadIconW.S │ │ ├── LoadImageW.S │ │ ├── LoadKeyboardLayoutEx.S │ │ ├── LoadKeyboardLayoutW.S │ │ ├── LoadLocalFonts.S │ │ ├── LoadMenuIndirectW.S │ │ ├── LoadMenuW.S │ │ ├── LoadRemoteFonts.S │ │ ├── LockSetForegroundWindow.S │ │ ├── LockWindowStation.S │ │ ├── LockWindowUpdate.S │ │ ├── LockWorkStation.S │ │ ├── LogicalToPhysicalPoint.S │ │ ├── LogicalToPhysicalPointForPerMonitorDPI.S │ │ ├── LookupIconIdFromDirectory.S │ │ ├── LookupIconIdFromDirectoryEx.S │ │ ├── MBToWCSEx.S │ │ ├── MBToWCSExt.S │ │ ├── MB_GetString.S │ │ ├── MITActivateInputProcessing.S │ │ ├── MITBindInputTypeToMonitors.S │ │ ├── MITCoreMsgKGetConnectionHandle.S │ │ ├── MITCoreMsgKOpenConnectionTo.S │ │ ├── MITCoreMsgKSend.S │ │ ├── MITDeactivateInputProcessing.S │ │ ├── MITDisableMouseIntercept.S │ │ ├── MITDispatchCompletion.S │ │ ├── MITEnableMouseIntercept.S │ │ ├── MITGetCursorUpdateHandle.S │ │ ├── MITInjectLegacyISMTouchFrame.S │ │ ├── MITRegisterManipulationThread.S │ │ ├── MITSetForegroundRoutingInfo.S │ │ ├── MITSetInputCallbacks.S │ │ ├── MITSetInputDelegationMode.S │ │ ├── MITSetLastInputRecipient.S │ │ ├── MITSetManipulationInputTarget.S │ │ ├── MITStopAndEndInertia.S │ │ ├── MITSynthesizeMouseInput.S │ │ ├── MITSynthesizeMouseWheel.S │ │ ├── MITSynthesizeTouchInput.S │ │ ├── MITUpdateInputGlobals.S │ │ ├── MITWaitForMultipleObjectsEx.S │ │ ├── MakeThreadTSFEventAware.S │ │ ├── MapDialogRect.S │ │ ├── MapVirtualKeyExW.S │ │ ├── MapVirtualKeyW.S │ │ ├── MapVisualRelativePoints.S │ │ ├── MapWindowPoints.S │ │ ├── MenuItemFromPoint.S │ │ ├── MenuWindowProcW.S │ │ ├── MessageBeep.S │ │ ├── MessageBoxExW.S │ │ ├── MessageBoxIndirectW.S │ │ ├── MessageBoxTimeoutW.S │ │ ├── MessageBoxW.S │ │ ├── ModifyMenuW.S │ │ ├── MonitorFromPoint.S │ │ ├── MonitorFromRect.S │ │ ├── MonitorFromWindow.S │ │ ├── MoveWindow.S │ │ ├── MsgWaitForMultipleObjects.S │ │ ├── MsgWaitForMultipleObjectsEx.S │ │ ├── NotifyOverlayWindow.S │ │ ├── NotifyWinEvent.S │ │ ├── OemKeyScan.S │ │ ├── OemToCharBuffW.S │ │ ├── OemToCharW.S │ │ ├── OffsetRect.S │ │ ├── OpenClipboard.S │ │ ├── OpenDesktopW.S │ │ ├── OpenIcon.S │ │ ├── OpenInputDesktop.S │ │ ├── OpenThreadDesktop.S │ │ ├── OpenWindowStationW.S │ │ ├── PackDDElParam.S │ │ ├── PackTouchHitTestingProximityEvaluation.S │ │ ├── PaintDesktop.S │ │ ├── PaintMenuBar.S │ │ ├── PaintMonitor.S │ │ ├── PeekMessageW.S │ │ ├── PhysicalToLogicalPoint.S │ │ ├── PhysicalToLogicalPointForPerMonitorDPI.S │ │ ├── PostMessageW.S │ │ ├── PostQuitMessage.S │ │ ├── PostThreadMessageW.S │ │ ├── PrintWindow.S │ │ ├── PrivateExtractIconExW.S │ │ ├── PrivateExtractIconsW.S │ │ ├── PrivateRegisterICSProc.S │ │ ├── PtInRect.S │ │ ├── QueryBSDRWindow.S │ │ ├── QueryDisplayConfig.S │ │ ├── QuerySendMessage.S │ │ ├── RIMAddInputObserver.S │ │ ├── RIMAreSiblingDevices.S │ │ ├── RIMDeviceIoControl.S │ │ ├── RIMEnableMonitorMappingForDevice.S │ │ ├── RIMFreeInputBuffer.S │ │ ├── RIMGetDevicePreparsedData.S │ │ ├── RIMGetDevicePreparsedDataLockfree.S │ │ ├── RIMGetDeviceProperties.S │ │ ├── RIMGetDevicePropertiesLockfree.S │ │ ├── RIMGetPhysicalDeviceRect.S │ │ ├── RIMGetSourceProcessId.S │ │ ├── RIMObserveNextInput.S │ │ ├── RIMOnPnpNotification.S │ │ ├── RIMOnTimerNotification.S │ │ ├── RIMReadInput.S │ │ ├── RIMRegisterForInput.S │ │ ├── RIMRemoveInputObserver.S │ │ ├── RIMSetTestModeStatus.S │ │ ├── RIMUnregisterForInput.S │ │ ├── RIMUpdateInputObserverRegistration.S │ │ ├── RealChildWindowFromPoint.S │ │ ├── RealGetWindowClassW.S │ │ ├── ReasonCodeNeedsBugID.S │ │ ├── ReasonCodeNeedsComment.S │ │ ├── RecordShutdownReason.S │ │ ├── RedrawWindow.S │ │ ├── RegisterBSDRWindow.S │ │ ├── RegisterClassExW.S │ │ ├── RegisterClassW.S │ │ ├── RegisterClipboardFormatW.S │ │ ├── RegisterDManipHook.S │ │ ├── RegisterDeviceNotificationW.S │ │ ├── RegisterErrorReportingDialog.S │ │ ├── RegisterFrostWindow.S │ │ ├── RegisterGhostWindow.S │ │ ├── RegisterHotKey.S │ │ ├── RegisterLogonProcess.S │ │ ├── RegisterMessagePumpHook.S │ │ ├── RegisterPointerDeviceNotifications.S │ │ ├── RegisterPointerInputTarget.S │ │ ├── RegisterPointerInputTargetEx.S │ │ ├── RegisterPowerSettingNotification.S │ │ ├── RegisterRawInputDevices.S │ │ ├── RegisterServicesProcess.S │ │ ├── RegisterSessionPort.S │ │ ├── RegisterShellHookWindow.S │ │ ├── RegisterSuspendResumeNotification.S │ │ ├── RegisterSystemThread.S │ │ ├── RegisterTasklist.S │ │ ├── RegisterTouchHitTestingWindow.S │ │ ├── RegisterTouchWindow.S │ │ ├── RegisterUserApiHook.S │ │ ├── RegisterWindowMessageW.S │ │ ├── ReleaseCapture.S │ │ ├── ReleaseDC.S │ │ ├── ReleaseDwmHitTestWaiters.S │ │ ├── RemoveClipboardFormatListener.S │ │ ├── RemoveInjectionDevice.S │ │ ├── RemoveMenu.S │ │ ├── RemovePropW.S │ │ ├── RemoveThreadTSFEventAwareness.S │ │ ├── ReplyMessage.S │ │ ├── ReportInertia.S │ │ ├── ResolveDesktopForWOW.S │ │ ├── ReuseDDElParam.S │ │ ├── ScreenToClient.S │ │ ├── ScrollChildren.S │ │ ├── ScrollDC.S │ │ ├── ScrollWindow.S │ │ ├── ScrollWindowEx.S │ │ ├── SendDlgItemMessageW.S │ │ ├── SendIMEMessageExW.S │ │ ├── SendInput.S │ │ ├── SendMessageCallbackW.S │ │ ├── SendMessageTimeoutW.S │ │ ├── SendMessageW.S │ │ ├── SendNotifyMessageW.S │ │ ├── SetActiveWindow.S │ │ ├── SetCapture.S │ │ ├── SetCaretBlinkTime.S │ │ ├── SetCaretPos.S │ │ ├── SetClassLongPtrW.S │ │ ├── SetClassLongW.S │ │ ├── SetClassWord.S │ │ ├── SetClipboardData.S │ │ ├── SetClipboardViewer.S │ │ ├── SetCoalescableTimer.S │ │ ├── SetCoreWindow.S │ │ ├── SetCursor.S │ │ ├── SetCursorContents.S │ │ ├── SetCursorPos.S │ │ ├── SetDebugErrorLevel.S │ │ ├── SetDeskWallpaper.S │ │ ├── SetDesktopColorTransform.S │ │ ├── SetDialogControlDpiChangeBehavior.S │ │ ├── SetDialogDpiChangeBehavior.S │ │ ├── SetDisplayAutoRotationPreferences.S │ │ ├── SetDisplayConfig.S │ │ ├── SetDlgItemInt.S │ │ ├── SetDlgItemTextW.S │ │ ├── SetDoubleClickTime.S │ │ ├── SetFeatureReportResponse.S │ │ ├── SetFocus.S │ │ ├── SetForegroundWindow.S │ │ ├── SetGestureConfig.S │ │ ├── SetInternalWindowPos.S │ │ ├── SetKeyboardState.S │ │ ├── SetLastErrorEx.S │ │ ├── SetLayeredWindowAttributes.S │ │ ├── SetMagnificationDesktopColorEffect.S │ │ ├── SetMagnificationDesktopMagnification.S │ │ ├── SetMagnificationDesktopSamplingMode.S │ │ ├── SetMagnificationLensCtxInformation.S │ │ ├── SetMenu.S │ │ ├── SetMenuContextHelpId.S │ │ ├── SetMenuDefaultItem.S │ │ ├── SetMenuInfo.S │ │ ├── SetMenuItemBitmaps.S │ │ ├── SetMenuItemInfoW.S │ │ ├── SetMessageExtraInfo.S │ │ ├── SetMessageQueue.S │ │ ├── SetMirrorRendering.S │ │ ├── SetParent.S │ │ ├── SetPhysicalCursorPos.S │ │ ├── SetProcessDPIAware.S │ │ ├── SetProcessDefaultLayout.S │ │ ├── SetProcessDpiAwarenessContext.S │ │ ├── SetProcessDpiAwarenessInternal.S │ │ ├── SetProcessRestrictionExemption.S │ │ ├── SetProcessWindowStation.S │ │ ├── SetProgmanWindow.S │ │ ├── SetPropW.S │ │ ├── SetRect.S │ │ ├── SetRectEmpty.S │ │ ├── SetScrollInfo.S │ │ ├── SetScrollPos.S │ │ ├── SetScrollRange.S │ │ ├── SetShellWindow.S │ │ ├── SetShellWindowEx.S │ │ ├── SetSysColors.S │ │ ├── SetSysColorsTemp.S │ │ ├── SetSystemCursor.S │ │ ├── SetSystemMenu.S │ │ ├── SetTaskmanWindow.S │ │ ├── SetThreadDesktop.S │ │ ├── SetThreadDpiAwarenessContext.S │ │ ├── SetThreadDpiHostingBehavior.S │ │ ├── SetThreadInputBlocked.S │ │ ├── SetTimer.S │ │ ├── SetUserObjectInformationW.S │ │ ├── SetUserObjectSecurity.S │ │ ├── SetWinEventHook.S │ │ ├── SetWindowBand.S │ │ ├── SetWindowCompositionAttribute.S │ │ ├── SetWindowCompositionTransition.S │ │ ├── SetWindowContextHelpId.S │ │ ├── SetWindowDisplayAffinity.S │ │ ├── SetWindowFeedbackSetting.S │ │ ├── SetWindowLongPtrW.S │ │ ├── SetWindowLongW.S │ │ ├── SetWindowPlacement.S │ │ ├── SetWindowPos.S │ │ ├── SetWindowRgn.S │ │ ├── SetWindowRgnEx.S │ │ ├── SetWindowStationUser.S │ │ ├── SetWindowTextW.S │ │ ├── SetWindowWord.S │ │ ├── SetWindowsHookExW.S │ │ ├── SetWindowsHookW.S │ │ ├── ShowCaret.S │ │ ├── ShowCursor.S │ │ ├── ShowOwnedPopups.S │ │ ├── ShowScrollBar.S │ │ ├── ShowStartGlass.S │ │ ├── ShowSystemCursor.S │ │ ├── ShowWindow.S │ │ ├── ShowWindowAsync.S │ │ ├── ShutdownBlockReasonCreate.S │ │ ├── ShutdownBlockReasonDestroy.S │ │ ├── ShutdownBlockReasonQuery.S │ │ ├── SignalRedirectionStartComplete.S │ │ ├── SkipPointerFrameMessages.S │ │ ├── SoftModalMessageBox.S │ │ ├── SoundSentry.S │ │ ├── SubtractRect.S │ │ ├── SwapMouseButton.S │ │ ├── SwitchDesktop.S │ │ ├── SwitchDesktopWithFade.S │ │ ├── SwitchToThisWindow.S │ │ ├── SystemParametersInfoForDpi.S │ │ ├── SystemParametersInfoW.S │ │ ├── TabbedTextOutW.S │ │ ├── TileChildWindows.S │ │ ├── TileWindows.S │ │ ├── ToAscii.S │ │ ├── ToAsciiEx.S │ │ ├── ToUnicode.S │ │ ├── ToUnicodeEx.S │ │ ├── TrackMouseEvent.S │ │ ├── TrackPopupMenu.S │ │ ├── TrackPopupMenuEx.S │ │ ├── TranslateAcceleratorW.S │ │ ├── TranslateMDISysAccel.S │ │ ├── TranslateMessage.S │ │ ├── TranslateMessageEx.S │ │ ├── UndelegateInput.S │ │ ├── UnhookWinEvent.S │ │ ├── UnhookWindowsHook.S │ │ ├── UnhookWindowsHookEx.S │ │ ├── UnionRect.S │ │ ├── UnloadKeyboardLayout.S │ │ ├── UnlockWindowStation.S │ │ ├── UnpackDDElParam.S │ │ ├── UnregisterClassW.S │ │ ├── UnregisterDeviceNotification.S │ │ ├── UnregisterHotKey.S │ │ ├── UnregisterMessagePumpHook.S │ │ ├── UnregisterPointerInputTarget.S │ │ ├── UnregisterPointerInputTargetEx.S │ │ ├── UnregisterPowerSettingNotification.S │ │ ├── UnregisterSessionPort.S │ │ ├── UnregisterSuspendResumeNotification.S │ │ ├── UnregisterTouchWindow.S │ │ ├── UnregisterUserApiHook.S │ │ ├── UpdateDefaultDesktopThumbnail.S │ │ ├── UpdateLayeredWindow.S │ │ ├── UpdateLayeredWindowIndirect.S │ │ ├── UpdatePerUserSystemParameters.S │ │ ├── UpdateWindow.S │ │ ├── UpdateWindowInputSinkHints.S │ │ ├── User32InitializeImmEntryTable.S │ │ ├── UserClientDllInitialize.S │ │ ├── UserHandleGrantAccess.S │ │ ├── UserLpkPSMTextOut.S │ │ ├── UserLpkTabbedTextOut.S │ │ ├── UserRealizePalette.S │ │ ├── UserRegisterWowHandlers.S │ │ ├── VRipOutput.S │ │ ├── VTagOutput.S │ │ ├── ValidateRect.S │ │ ├── ValidateRgn.S │ │ ├── VkKeyScanExW.S │ │ ├── VkKeyScanW.S │ │ ├── WCSToMBEx.S │ │ ├── WINNLSEnableIME.S │ │ ├── WINNLSGetEnableStatus.S │ │ ├── WINNLSGetIMEHotkey.S │ │ ├── WaitForInputIdle.S │ │ ├── WaitForRedirectionStartComplete.S │ │ ├── WaitMessage.S │ │ ├── WinHelpW.S │ │ ├── WindowFromDC.S │ │ ├── WindowFromPhysicalPoint.S │ │ └── WindowFromPoint.S │ ├── version.h │ ├── windows.h │ ├── winsock.h │ └── ws2_32 │ │ ├── FreeAddrInfoExW.S │ │ ├── FreeAddrInfoW.S │ │ ├── GetAddrInfoExCancel.S │ │ ├── GetAddrInfoExOverlappedResult.S │ │ ├── GetAddrInfoExW.S │ │ ├── GetAddrInfoW.S │ │ ├── GetHostNameW.S │ │ ├── GetNameInfoW.S │ │ ├── SetAddrInfoExW.S │ │ ├── WSAAccept.S │ │ ├── WSAAddressToStringW.S │ │ ├── WSAAsyncGetHostByAddr.S │ │ ├── WSAAsyncGetHostByName.S │ │ ├── WSAAsyncGetProtoByName.S │ │ ├── WSAAsyncGetProtoByNumber.S │ │ ├── WSAAsyncGetServByName.S │ │ ├── WSAAsyncGetServByPort.S │ │ ├── WSAAsyncSelect.S │ │ ├── WSACancelAsyncRequest.S │ │ ├── WSACancelBlockingCall.S │ │ ├── WSACleanup.S │ │ ├── WSACloseEvent.S │ │ ├── WSAConnect.S │ │ ├── WSAConnectByList.S │ │ ├── WSAConnectByNameW.S │ │ ├── WSACreateEvent.S │ │ ├── WSADuplicateSocketW.S │ │ ├── WSAEnumNameSpaceProvidersExW.S │ │ ├── WSAEnumNameSpaceProvidersW.S │ │ ├── WSAEnumNetworkEvents.S │ │ ├── WSAEnumProtocolsW.S │ │ ├── WSAEventSelect.S │ │ ├── WSAGetLastError.S │ │ ├── WSAGetOverlappedResult.S │ │ ├── WSAGetQOSByName.S │ │ ├── WSAGetServiceClassInfoW.S │ │ ├── WSAGetServiceClassNameByClassIdW.S │ │ ├── WSAInstallServiceClassW.S │ │ ├── WSAIoctl.S │ │ ├── WSAJoinLeaf.S │ │ ├── WSALookupServiceBeginW.S │ │ ├── WSALookupServiceEnd.S │ │ ├── WSALookupServiceNextW.S │ │ ├── WSANSPIoctl.S │ │ ├── WSAPoll.S │ │ ├── WSAProviderCompleteAsyncCall.S │ │ ├── WSAProviderConfigChange.S │ │ ├── WSARecv.S │ │ ├── WSARecvDisconnect.S │ │ ├── WSARecvFrom.S │ │ ├── WSARemoveServiceClass.S │ │ ├── WSAResetEvent.S │ │ ├── WSASend.S │ │ ├── WSASendDisconnect.S │ │ ├── WSASendMsg.S │ │ ├── WSASendTo.S │ │ ├── WSASetBlockingHook.S │ │ ├── WSASetEvent.S │ │ ├── WSASetLastError.S │ │ ├── WSASetServiceW.S │ │ ├── WSASocketW.S │ │ ├── WSAStartup.S │ │ ├── WSAStringToAddressW.S │ │ ├── WSAUnadvertiseProvider.S │ │ ├── WSAUnhookBlockingHook.S │ │ ├── WSAWaitForMultipleEvents.S │ │ ├── WSApSetPostRoutine.S │ │ ├── WSCDeinstallProvider.S │ │ ├── WSCDeinstallProvider32.S │ │ ├── WSCDeinstallProviderEx.S │ │ ├── WSCEnableNSProvider.S │ │ ├── WSCEnableNSProvider32.S │ │ ├── WSCEnumNameSpaceProviders32.S │ │ ├── WSCEnumNameSpaceProvidersEx32.S │ │ ├── WSCEnumProtocols.S │ │ ├── WSCEnumProtocols32.S │ │ ├── WSCEnumProtocolsEx.S │ │ ├── WSCGetApplicationCategory.S │ │ ├── WSCGetApplicationCategoryEx.S │ │ ├── WSCGetProviderInfo.S │ │ ├── WSCGetProviderInfo32.S │ │ ├── WSCGetProviderPath.S │ │ ├── WSCGetProviderPath32.S │ │ ├── WSCInstallNameSpace.S │ │ ├── WSCInstallNameSpace32.S │ │ ├── WSCInstallNameSpaceEx.S │ │ ├── WSCInstallNameSpaceEx2.S │ │ ├── WSCInstallNameSpaceEx32.S │ │ ├── WSCInstallProvider.S │ │ ├── WSCInstallProvider64_32.S │ │ ├── WSCInstallProviderAndChains64_32.S │ │ ├── WSCInstallProviderEx.S │ │ ├── WSCSetApplicationCategory.S │ │ ├── WSCSetApplicationCategoryEx.S │ │ ├── WSCSetProviderInfo.S │ │ ├── WSCSetProviderInfo32.S │ │ ├── WSCUnInstallNameSpace.S │ │ ├── WSCUnInstallNameSpace32.S │ │ ├── WSCUnInstallNameSpaceEx2.S │ │ ├── WSCUpdateProvider.S │ │ ├── WSCUpdateProvider32.S │ │ ├── WSCUpdateProviderEx.S │ │ ├── WSCWriteNameSpaceOrder.S │ │ ├── WSCWriteNameSpaceOrder32.S │ │ ├── WSCWriteProviderOrder.S │ │ ├── WSCWriteProviderOrder32.S │ │ ├── WSCWriteProviderOrderEx.S │ │ ├── accept.S │ │ ├── bind.S │ │ ├── closesocket.S │ │ ├── connect.S │ │ ├── freeaddrinfo.S │ │ ├── getaddrinfo.S │ │ ├── gethostbyaddr.S │ │ ├── gethostbyname.S │ │ ├── gethostname.S │ │ ├── getnameinfo.S │ │ ├── getpeername.S │ │ ├── getprotobyname.S │ │ ├── getprotobynumber.S │ │ ├── getservbyname.S │ │ ├── getservbyport.S │ │ ├── getsockname.S │ │ ├── getsockopt.S │ │ ├── ioctlsocket.S │ │ ├── listen.S │ │ ├── recv.S │ │ ├── recvfrom.S │ │ ├── select.S │ │ ├── send.S │ │ ├── sendto.S │ │ ├── setsockopt.S │ │ ├── shutdown.S │ │ └── socket.S ├── paths.h ├── runtime │ ├── __sigsetjmp_tail.c │ ├── abort.c │ ├── clktck.c │ ├── clktck.h │ ├── clone-linux.S │ ├── clone-nt.S │ ├── clone-openbsd.S │ ├── clone-xnu.S │ ├── clone.c │ ├── closesymboltable.c │ ├── cocmd.c │ ├── cosmo.S │ ├── cosmo2.c │ ├── daemon.c │ ├── dlfcn.h │ ├── dsohandle.S │ ├── e820.internal.h │ ├── efimain.greg.c │ ├── efipostboot.S │ ├── enable_threads.c │ ├── enable_tls.c │ ├── exit.c │ ├── fenv.h │ ├── fesetround.c │ ├── findcombinary.c │ ├── finddebugbinary.c │ ├── fltrounds.c │ ├── fork-nt.c │ ├── fork-sysv.c │ ├── fork.c │ ├── fpathconf.c │ ├── fpreset.S │ ├── ftrace-hook.S │ ├── ftrace_install.c │ ├── ftrace_stackdigs.c │ ├── ftraceinit.greg.c │ ├── ftracer.c │ ├── getargmax.c │ ├── getdosargv.c │ ├── getdosenviron.c │ ├── getinterpreterexecutablename.c │ ├── getlogin.c │ ├── getlogin_r.c │ ├── getmaxfd.c │ ├── getmemtracksize.c │ ├── getpagesize.c │ ├── getresourcelimit.c │ ├── getsymbol.c │ ├── getsymbolbyaddr.c │ ├── getsymbolname.c │ ├── getsymboltable.c │ ├── grow.c │ ├── hook.greg.c │ ├── inflate.c │ ├── init.S │ ├── interceptflag.greg.c │ ├── internal.h │ ├── isdynamicexecutable.c │ ├── isheap.c │ ├── ismemtracked.greg.c │ ├── jmpstack.S │ ├── ldso.c │ ├── login_tty.c │ ├── mapanon.c │ ├── mapshared.c │ ├── mapstack.c │ ├── memtrack.internal.h │ ├── memtrack64.txt │ ├── memtracknt.c │ ├── metalprintf.greg.c │ ├── metalprintf.internal.h │ ├── mman.internal.h │ ├── mmap.c │ ├── morph.greg.c │ ├── morph.h │ ├── morph_tls.c │ ├── mprotect-nt.greg.c │ ├── mprotect.c │ ├── msync-nt.c │ ├── msync.c │ ├── munmap.c │ ├── openexecutable.S │ ├── opensymboltable.greg.c │ ├── pathconf.h │ ├── pc.internal.h │ ├── printargs.c │ ├── printgarbage.c │ ├── printmaps.c │ ├── progname.S │ ├── runtime.h │ ├── runtime.mk │ ├── set_tls.c │ ├── sigsetjmp.S │ ├── stack.h │ ├── stackuse.c │ ├── straceinit.greg.c │ ├── symbols.c │ ├── symbols.internal.h │ ├── sysconf.c │ ├── sysconf.h │ ├── syslib.internal.h │ ├── untrackmemoryintervals.c │ ├── unwind.c │ ├── unwind.h │ ├── utmp.c │ ├── utmp.h │ ├── utmpx.h │ ├── valist.c │ ├── vfork.S │ ├── warnifpowersave.c │ ├── weakfree.c │ ├── winargs.internal.h │ └── winmain.greg.c ├── sock │ ├── accept-nt.c │ ├── accept-sysv.c │ ├── accept.c │ ├── accept4-sysv.c │ ├── accept4.c │ ├── alg.h │ ├── asanmsghdr.c │ ├── basesocket.c │ ├── bind-nt.c │ ├── bind-sysv.c │ ├── bind.c │ ├── closesocket-nt.c │ ├── connect-nt.c │ ├── connect-sysv.c │ ├── connect.c │ ├── dupsockfd.c │ ├── epoll.c │ ├── epoll.h │ ├── fixupnewsockfd.c │ ├── gethostips.c │ ├── getpeername-nt.c │ ├── getpeername-sysv.c │ ├── getpeername.c │ ├── getsockname-nt.c │ ├── getsockname-sysv.c │ ├── getsockname.c │ ├── getsockopt-nt.c │ ├── getsockopt.c │ ├── goodsocket.c │ ├── goodsocket.internal.h │ ├── inet_addr.c │ ├── inet_aton.c │ ├── inet_ntoa.c │ ├── inet_ntop.c │ ├── inet_pton.c │ ├── internal.h │ ├── iovec2nt.c │ ├── ipclassify.internal.h │ ├── kntwsadata.c │ ├── listen-nt.c │ ├── listen.c │ ├── nointernet.c │ ├── parseport.c │ ├── pselect.c │ ├── recv-nt.c │ ├── recv.c │ ├── recvfrom-nt.c │ ├── recvfrom.c │ ├── recvmsg.c │ ├── select-nt.c │ ├── select.c │ ├── select.h │ ├── send-nt.c │ ├── send.c │ ├── sendfile.c │ ├── sendfile.internal.h │ ├── sendmsg.c │ ├── sendto-nt.c │ ├── sendto.c │ ├── setsockopt-nt.c │ ├── setsockopt.c │ ├── shutdown-nt.c │ ├── shutdown.c │ ├── sock.h │ ├── sock.mk │ ├── sockaddr2bsd.c │ ├── sockaddr2linux.c │ ├── sockatmark.c │ ├── sockdebug.c │ ├── socket-nt.c │ ├── socket-sysv.c │ ├── socket.c │ ├── socketpair-nt.c │ ├── socketpair-sysv.c │ ├── socketpair.c │ ├── struct │ │ ├── arphdr.h │ │ ├── arpreq.h │ │ ├── cmsghdr.h │ │ ├── cmsghdr.internal.h │ │ ├── ether_header.h │ │ ├── ifconf.h │ │ ├── ifreq.h │ │ ├── in6_pktinfo.h │ │ ├── in_pktinfo.h │ │ ├── ip_mreq.h │ │ ├── linger.h │ │ ├── msghdr.h │ │ ├── msghdr.internal.h │ │ ├── pollfd.h │ │ ├── pollfd.internal.h │ │ ├── sockaddr.h │ │ ├── sockaddr.internal.h │ │ ├── sockaddr6-bsd.internal.h │ │ └── sockaddr6.h │ ├── sys_sendfile_freebsd.S │ ├── sys_sendfile_xnu.S │ ├── syscall_fd.internal.h │ ├── syslog.c │ ├── syslog.h │ ├── winsockblock.c │ ├── wsablock.c │ ├── xinet_ntop.c │ └── yoink.inc ├── stdalign.internal.h ├── stdckdint.h ├── stdio │ ├── __fpurge.c │ ├── __fseterr.c │ ├── alloc.c │ ├── alphasort.c │ ├── append.h │ ├── appendd.c │ ├── appendf.c │ ├── appendr.c │ ├── appends.c │ ├── appendstrlist.c │ ├── appendw.c │ ├── appendz.c │ ├── asprintf.c │ ├── big5.inc │ ├── clearerr.c │ ├── clearerr_unlocked.c │ ├── codepages.inc │ ├── ctermid.c │ ├── demangle.c │ ├── dirstream.c │ ├── dprintf.c │ ├── dprintf.h │ ├── dumphexc.c │ ├── ecvt.c │ ├── fbufsize.c │ ├── fclose.c │ ├── fdopen.c │ ├── feof.c │ ├── feof_unlocked.c │ ├── ferror.c │ ├── ferror_unlocked.c │ ├── fflush.c │ ├── fflush.internal.h │ ├── fflush_unlocked.c │ ├── fflushimpl.c │ ├── fgetc.c │ ├── fgetc_unlocked.c │ ├── fgetln.c │ ├── fgetpos.c │ ├── fgets.c │ ├── fgets_unlocked.c │ ├── fgetwc.c │ ├── fgetwc_unlocked.c │ ├── fgetws.c │ ├── fgetws_unlocked.c │ ├── fileno.c │ ├── fileno_unlocked.c │ ├── flbf.c │ ├── flockfile.c │ ├── flushlbf.c │ ├── fmemopen.c │ ├── fmt.c │ ├── fopen.c │ ├── fopenflags.c │ ├── fpending.c │ ├── fprintf.c │ ├── fprintf_unlocked.c │ ├── fpurge.c │ ├── fputc.c │ ├── fputc_unlocked.c │ ├── fputs.c │ ├── fputs_unlocked.c │ ├── fputwc.c │ ├── fputwc_unlocked.c │ ├── fputws.c │ ├── fputws_unlocked.c │ ├── fread.c │ ├── fread_unlocked.c │ ├── freadable.c │ ├── freading.c │ ├── freestrlist.c │ ├── freopen.c │ ├── fscanf.c │ ├── fseeko.c │ ├── fseeko_unlocked.c │ ├── fsetlocking.c │ ├── fsetpos.c │ ├── ftello.c │ ├── ftrylockfile.c │ ├── ftw.c │ ├── ftw.h │ ├── funlockfile.c │ ├── fwritable.c │ ├── fwrite.c │ ├── fwrite_unlocked.c │ ├── fwriting.c │ ├── g_rando.c │ ├── gb18030.inc │ ├── gcvt.c │ ├── getchar.c │ ├── getchar_unlocked.c │ ├── getdelim.c │ ├── getdelim_unlocked.c │ ├── getentropy.c │ ├── getline.c │ ├── getrandom.c │ ├── gets.c │ ├── getwchar.c │ ├── getwchar_unlocked.c │ ├── hex.internal.h │ ├── hkscs.inc │ ├── iconv.c │ ├── iconv.h │ ├── internal.h │ ├── jis0208.inc │ ├── joinstrlist.c │ ├── kappendf.c │ ├── ksc.inc │ ├── kvappendf.c │ ├── lcg.internal.h │ ├── legacychars.inc │ ├── lemur64.c │ ├── lock.internal.h │ ├── mkdtemp.c │ ├── mkostemp.c │ ├── mkostemps.c │ ├── mkostempsm.c │ ├── mkstemp.c │ ├── mkstemps.c │ ├── mktemp.c │ ├── mt19937.c │ ├── nftw.c │ ├── paginate.c │ ├── pclose.c │ ├── popen.c │ ├── posix_spawn.c │ ├── posix_spawn.h │ ├── posix_spawn.internal.h │ ├── posix_spawn_file_actions.c │ ├── posix_spawnattr.c │ ├── posix_spawnp.c │ ├── printf.c │ ├── putchar.c │ ├── putchar_unlocked.c │ ├── puts.c │ ├── putwc_unlocked.c │ ├── putwchar.c │ ├── putwchar_unlocked.c │ ├── rand.c │ ├── rand.h │ ├── random.c │ ├── rdrand.c │ ├── rdrand_init.c │ ├── rdseed.c │ ├── readdir64.S │ ├── real1.c │ ├── real2.c │ ├── real3.c │ ├── revjis.inc │ ├── rewind.c │ ├── rngset.c │ ├── scandir.c │ ├── scanf.c │ ├── setbuf.c │ ├── setbuffer.c │ ├── setlinebuf.c │ ├── setvbuf.c │ ├── snprintf.c │ ├── sortstrlist.c │ ├── sprintf.c │ ├── srand.c │ ├── sscanf.c │ ├── stdbuf.c │ ├── stderr.c │ ├── stdin.c │ ├── stdio.h │ ├── stdio.mk │ ├── stdio_ext.h │ ├── stdout.c │ ├── strfry.c │ ├── strlist.internal.h │ ├── swprintf.c │ ├── syscall.c │ ├── syscall.h │ ├── system.c │ ├── temp.h │ ├── tmpfile.c │ ├── ungetc.c │ ├── ungetc_unlocked.c │ ├── ungetwc.c │ ├── ungetwc_unlocked.c │ ├── vappendf.c │ ├── vasprintf.c │ ├── vcscanf.c │ ├── vdprintf.c │ ├── versionsort.c │ ├── vfprintf.c │ ├── vfprintf_unlocked.c │ ├── vfscanf.c │ ├── vigna.c │ ├── vprintf.c │ ├── vscanf.c │ ├── vsnprintf.c │ ├── vsprintf.c │ ├── vsscanf.c │ ├── xorshift.h │ ├── xorshift32.c │ └── xorshift64.c ├── str │ ├── SpecialCasing.txt │ ├── a64l.c │ ├── bcmp.c │ ├── blake2.c │ ├── blake2.h │ ├── blocks.txt │ ├── btowc.c │ ├── c16rtomb.c │ ├── c32rtomb.c │ ├── chomp.c │ ├── chomp16.c │ ├── classifypath.c │ ├── compareslices.c │ ├── compareslicescase.c │ ├── crc32c.c │ ├── djbsort.c │ ├── dosdatetimetounix.c │ ├── eastasianwidth.txt │ ├── endswith.c │ ├── endswith16.c │ ├── escapedos.c │ ├── freelocale.c │ ├── getcachesize.c │ ├── getx86processormodel.c │ ├── getzipcdircomment.c │ ├── getzipcdircommentsize.c │ ├── getzipcdiroffset.c │ ├── getzipcdirrecords.c │ ├── getzipcdirsize.c │ ├── getzipcfilecompressedsize.c │ ├── getzipcfilemode.c │ ├── getzipcfileoffset.c │ ├── getzipcfiletimestamps.c │ ├── getzipcfileuncompressedsize.c │ ├── getzipeocd.c │ ├── getziplfilecompressedsize.c │ ├── getziplfileuncompressedsize.c │ ├── hexpcpy.c │ ├── hextoint.c │ ├── highwayhash64.c │ ├── highwayhash64.h │ ├── indexdoublenulstring.c │ ├── internal.h │ ├── intsort.c │ ├── isabspath.c │ ├── isalnum.c │ ├── isalpha.c │ ├── isascii.c │ ├── isblank.c │ ├── iscntrl.c │ ├── isdigit.c │ ├── isdirsep.c │ ├── isgraph.c │ ├── islower.c │ ├── isprint.c │ ├── ispunct.c │ ├── isspace.c │ ├── istext.c │ ├── isupper.c │ ├── isutf8.c │ ├── iswalnum.c │ ├── iswalpha.c │ ├── iswblank.c │ ├── iswcntrl.c │ ├── iswctype.c │ ├── iswdigit.c │ ├── iswgraph.c │ ├── iswlower.c │ ├── iswprint.c │ ├── iswpunct.c │ ├── iswseparator.c │ ├── iswspace.c │ ├── iswupper.c │ ├── iswxdigit.c │ ├── isxdigit.c │ ├── iszipeocd32.c │ ├── iszipeocd64.c │ ├── kcombiningchars.S │ ├── keastasianwidth.S │ ├── khextoint.c │ ├── kmonthyearday.c │ ├── kx86processormodels.c │ ├── l64a.c │ ├── langinfo.c │ ├── langinfo.h │ ├── locale.h │ ├── localeconv.c │ ├── longsort.c │ ├── lz4check.c │ ├── lz4cpy.c │ ├── lz4decode.c │ ├── mb.c │ ├── mb.internal.h │ ├── mblen.c │ ├── mbrlen.c │ ├── mbrtoc16.c │ ├── mbrtoc32.c │ ├── mbrtowc.c │ ├── mbsinit.c │ ├── mbsnrtowcs.c │ ├── mbsrtowcs.c │ ├── mbstowcs.c │ ├── mbtowc.c │ ├── memcasecmp.c │ ├── memccpy.c │ ├── memchr16.c │ ├── memfrob.c │ ├── memmem.c │ ├── memrchr16.c │ ├── memset16.c │ ├── newlocale.c │ ├── nltypes.h │ ├── path.h │ ├── rawmemchr.c │ ├── rawmemchr16.c │ ├── rldecode2.c │ ├── setlocale.c │ ├── slice.h │ ├── smoothsort.c │ ├── startswith.c │ ├── startswith16.c │ ├── startswithi.c │ ├── stpncpy.c │ ├── str.h │ ├── str.mk │ ├── strcasecmp.c │ ├── strcasecmp16.c │ ├── strcasestr.c │ ├── strcat.c │ ├── strcat16.c │ ├── strchr16.c │ ├── strchrnul16.c │ ├── strcmp16.c │ ├── strcoll.c │ ├── strcpy16.c │ ├── strcspn.c │ ├── strcspn16.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strlen16.c │ ├── strncasecmp.c │ ├── strncasecmp16.c │ ├── strncat.c │ ├── strncat16.c │ ├── strncmp16.c │ ├── strncpy.c │ ├── strnlen16.c │ ├── strnlen_s.c │ ├── strntolower.c │ ├── strntoupper.c │ ├── strnwidth.c │ ├── strnwidth16.c │ ├── strpbrk.c │ ├── strpbrk16.c │ ├── strrchr16.c │ ├── strsep.c │ ├── strspn.c │ ├── strspn16.c │ ├── strstr.c │ ├── strstr16.c │ ├── strtok.c │ ├── strtok_r.c │ ├── strtolower.c │ ├── strtoupper.c │ ├── strverscmp.c │ ├── strwidth.c │ ├── strwidth.h │ ├── strwidth16.c │ ├── strxfrm.c │ ├── tab.internal.h │ ├── thompike.h │ ├── timespectowindowstime.c │ ├── timevaltowindowstime.c │ ├── timingsafe_bcmp.c │ ├── timingsafe_memcmp.c │ ├── toascii.c │ ├── tolower.c │ ├── toupper.c │ ├── towctrans.c │ ├── towlower.c │ ├── towupper.c │ ├── tpdecodecb.internal.h │ ├── tprecode16to8.c │ ├── tprecode8to16.c │ ├── unicode-properties.txt │ ├── unicode.h │ ├── unicodedata.txt │ ├── update.sh │ ├── uselocale.c │ ├── utf16.h │ ├── wchomp.c │ ├── wcrtomb.c │ ├── wcscasecmp.c │ ├── wcscat.c │ ├── wcschr.c │ ├── wcschrnul.c │ ├── wcscmp.c │ ├── wcscpy.c │ ├── wcscspn.c │ ├── wcsendswith.c │ ├── wcslen.c │ ├── wcsncasecmp.c │ ├── wcsncat.c │ ├── wcsncmp.c │ ├── wcsncpy.c │ ├── wcsnlen.c │ ├── wcsnlen_s.c │ ├── wcsnrtombs.c │ ├── wcsnwidth.c │ ├── wcspbrk.c │ ├── wcsrchr.c │ ├── wcsrtombs.c │ ├── wcsspn.c │ ├── wcsstartswith.c │ ├── wcsstr.c │ ├── wcstok.c │ ├── wcstombs.c │ ├── wcswidth.c │ ├── wcsxfrm.c │ ├── wctob.c │ ├── wctomb.c │ ├── wctrans.c │ ├── wctype.c │ ├── wcwidth.c │ ├── wcwidth_osx.c │ ├── wcwidth_osx.internal.h │ ├── windowsdurationtotimespec.c │ ├── windowsdurationtotimeval.c │ ├── windowstimetotimespec.c │ ├── windowstimetotimeval.c │ ├── wmemchr.c │ ├── wmemcmp.c │ ├── wmemcpy.c │ ├── wmemmove.c │ ├── wmempcpy.c │ ├── wmemrchr.c │ └── wmemset.c ├── sysv │ ├── README.md │ ├── calls │ │ ├── __bsd_setegid.S │ │ ├── __bsd_seteuid.S │ │ ├── __sys_accept.S │ │ ├── __sys_accept4.S │ │ ├── __sys_bind.S │ │ ├── __sys_clock_nanosleep.S │ │ ├── __sys_connect.S │ │ ├── __sys_dup3.S │ │ ├── __sys_execve.S │ │ ├── __sys_fcntl.S │ │ ├── __sys_fcntl_cp.S │ │ ├── __sys_fork.S │ │ ├── __sys_fstat.S │ │ ├── __sys_fstatat.S │ │ ├── __sys_getpeername.S │ │ ├── __sys_getrusage.S │ │ ├── __sys_getsockname.S │ │ ├── __sys_gettid.S │ │ ├── __sys_lstat.S │ │ ├── __sys_mmap.S │ │ ├── __sys_mremap.S │ │ ├── __sys_munmap.S │ │ ├── __sys_openat.S │ │ ├── __sys_openat_nc.S │ │ ├── __sys_pipe.S │ │ ├── __sys_pipe2.S │ │ ├── __sys_poll.S │ │ ├── __sys_ptrace.S │ │ ├── __sys_sigprocmask.S │ │ ├── __sys_socket.S │ │ ├── __sys_socketpair.S │ │ ├── __sys_stat.S │ │ ├── __sys_utimensat.S │ │ ├── __sys_wait4.S │ │ ├── get_mempolicy.S │ │ ├── getpagesize_freebsd.S │ │ ├── ioprio_get.S │ │ ├── ioprio_set.S │ │ ├── set_mempolicy.S │ │ ├── sys_acct.S │ │ ├── sys_add_key.S │ │ ├── sys_adjtime.S │ │ ├── sys_adjtimex.S │ │ ├── sys_aio_cancel.S │ │ ├── sys_aio_error.S │ │ ├── sys_aio_fsync.S │ │ ├── sys_aio_mlock.S │ │ ├── sys_aio_read.S │ │ ├── sys_aio_return.S │ │ ├── sys_aio_suspend.S │ │ ├── sys_aio_suspend_nocancel.S │ │ ├── sys_aio_waitcomplete.S │ │ ├── sys_aio_write.S │ │ ├── sys_alarm.S │ │ ├── sys_arch_prctl.S │ │ ├── sys_audit.S │ │ ├── sys_auditctl.S │ │ ├── sys_auditon.S │ │ ├── sys_bogus.S │ │ ├── sys_bpf.S │ │ ├── sys_bsdthread_register.S │ │ ├── sys_capget.S │ │ ├── sys_capset.S │ │ ├── sys_chdir.S │ │ ├── sys_chflags.S │ │ ├── sys_chflagsat.S │ │ ├── sys_chroot.S │ │ ├── sys_clock_adjtime.S │ │ ├── sys_clock_getres.S │ │ ├── sys_clock_gettime.S │ │ ├── sys_clock_settime.S │ │ ├── sys_clone.S │ │ ├── sys_clone3.S │ │ ├── sys_close.S │ │ ├── sys_close_range.S │ │ ├── sys_closefrom.S │ │ ├── sys_copy_file_range.S │ │ ├── sys_delete_module.S │ │ ├── sys_dup.S │ │ ├── sys_dup2.S │ │ ├── sys_epoll_create.S │ │ ├── sys_epoll_create1.S │ │ ├── sys_epoll_ctl.S │ │ ├── sys_epoll_pwait.S │ │ ├── sys_epoll_pwait2.S │ │ ├── sys_epoll_wait.S │ │ ├── sys_eventfd.S │ │ ├── sys_eventfd2.S │ │ ├── sys_execveat.S │ │ ├── sys_exit.S │ │ ├── sys_faccessat.S │ │ ├── sys_faccessat2.S │ │ ├── sys_fadvise.S │ │ ├── sys_fallocate.S │ │ ├── sys_fanotify_init.S │ │ ├── sys_fanotify_mark.S │ │ ├── sys_fchdir.S │ │ ├── sys_fchflags.S │ │ ├── sys_fchmod.S │ │ ├── sys_fchmodat.S │ │ ├── sys_fchown.S │ │ ├── sys_fchownat.S │ │ ├── sys_fdatasync.S │ │ ├── sys_fexecve.S │ │ ├── sys_fgetxattr.S │ │ ├── sys_fhopen.S │ │ ├── sys_fhstat.S │ │ ├── sys_fhstatfs.S │ │ ├── sys_finit_module.S │ │ ├── sys_flistxattr.S │ │ ├── sys_flock.S │ │ ├── sys_fpathconf.S │ │ ├── sys_fremovexattr.S │ │ ├── sys_fsconfig.S │ │ ├── sys_fsetxattr.S │ │ ├── sys_fsmount.S │ │ ├── sys_fsopen.S │ │ ├── sys_fspick.S │ │ ├── sys_fstatfs.S │ │ ├── sys_fsync.S │ │ ├── sys_ftruncate.S │ │ ├── sys_futex.S │ │ ├── sys_futex_cp.S │ │ ├── sys_futex_waitv.S │ │ ├── sys_futimens.S │ │ ├── sys_futimes.S │ │ ├── sys_get_robust_list.S │ │ ├── sys_getaudit_addr.S │ │ ├── sys_getauid.S │ │ ├── sys_getcontext.S │ │ ├── sys_getcpu.S │ │ ├── sys_getcwd.S │ │ ├── sys_getdents.S │ │ ├── sys_getdirentries.S │ │ ├── sys_getdtablesize.S │ │ ├── sys_getegid.S │ │ ├── sys_geteuid.S │ │ ├── sys_getfh.S │ │ ├── sys_getfsstat.S │ │ ├── sys_getgid.S │ │ ├── sys_getgroups.S │ │ ├── sys_getitimer.S │ │ ├── sys_getlogin.S │ │ ├── sys_getpgid.S │ │ ├── sys_getpid.S │ │ ├── sys_getppid.S │ │ ├── sys_getpriority.S │ │ ├── sys_getrandom.S │ │ ├── sys_getresgid.S │ │ ├── sys_getresuid.S │ │ ├── sys_getrlimit.S │ │ ├── sys_getsid.S │ │ ├── sys_getsockopt.S │ │ ├── sys_gettimeofday.S │ │ ├── sys_getuid.S │ │ ├── sys_getxattr.S │ │ ├── sys_init_module.S │ │ ├── sys_inotify_add_watch.S │ │ ├── sys_inotify_init.S │ │ ├── sys_inotify_init1.S │ │ ├── sys_inotify_rm_watch.S │ │ ├── sys_io_cancel.S │ │ ├── sys_io_destroy.S │ │ ├── sys_io_getevents.S │ │ ├── sys_io_pgetevents.S │ │ ├── sys_io_setup.S │ │ ├── sys_io_submit.S │ │ ├── sys_io_uring_enter.S │ │ ├── sys_io_uring_register.S │ │ ├── sys_io_uring_setup.S │ │ ├── sys_ioctl.S │ │ ├── sys_ioctl_cp.S │ │ ├── sys_ioperm.S │ │ ├── sys_iopl.S │ │ ├── sys_issetugid.S │ │ ├── sys_kcmp.S │ │ ├── sys_kevent.S │ │ ├── sys_kexec_file_load.S │ │ ├── sys_kexec_load.S │ │ ├── sys_keyctl.S │ │ ├── sys_kill.S │ │ ├── sys_killpg.S │ │ ├── sys_kqueue.S │ │ ├── sys_ktimer_create.S │ │ ├── sys_ktimer_delete.S │ │ ├── sys_ktimer_getoverrun.S │ │ ├── sys_ktimer_gettime.S │ │ ├── sys_ktimer_settime.S │ │ ├── sys_ktrace.S │ │ ├── sys_landlock_add_rule.S │ │ ├── sys_landlock_create_ruleset.S │ │ ├── sys_landlock_restrict_self.S │ │ ├── sys_lgetxattr.S │ │ ├── sys_linkat.S │ │ ├── sys_lio_listio.S │ │ ├── sys_listen.S │ │ ├── sys_listxattr.S │ │ ├── sys_llistxattr.S │ │ ├── sys_lookup_dcookie.S │ │ ├── sys_lremovexattr.S │ │ ├── sys_lseek.S │ │ ├── sys_lsetxattr.S │ │ ├── sys_lutimes.S │ │ ├── sys_madvise.S │ │ ├── sys_mbind.S │ │ ├── sys_membarrier.S │ │ ├── sys_memfd_create.S │ │ ├── sys_memfd_secret.S │ │ ├── sys_migrate_pages.S │ │ ├── sys_mincore.S │ │ ├── sys_minherit.S │ │ ├── sys_mkdirat.S │ │ ├── sys_mkfifo.S │ │ ├── sys_mkfifoat.S │ │ ├── sys_mknod.S │ │ ├── sys_mknodat.S │ │ ├── sys_mlock.S │ │ ├── sys_mlock2.S │ │ ├── sys_mlockall.S │ │ ├── sys_modify_ldt.S │ │ ├── sys_mount.S │ │ ├── sys_mount_setattr.S │ │ ├── sys_move_mount.S │ │ ├── sys_move_pages.S │ │ ├── sys_mprotect.S │ │ ├── sys_mq_getsetattr.S │ │ ├── sys_mq_notify.S │ │ ├── sys_mq_open.S │ │ ├── sys_mq_timedreceive.S │ │ ├── sys_mq_timedsend.S │ │ ├── sys_mq_unlink.S │ │ ├── sys_msgctl.S │ │ ├── sys_msgget.S │ │ ├── sys_msgrcv.S │ │ ├── sys_msgsnd.S │ │ ├── sys_msgsys.S │ │ ├── sys_msync.S │ │ ├── sys_msyscall.S │ │ ├── sys_munlock.S │ │ ├── sys_munlockall.S │ │ ├── sys_name_to_handle_at.S │ │ ├── sys_nanosleep.S │ │ ├── sys_nfssvc.S │ │ ├── sys_ntp_adjtime.S │ │ ├── sys_ntp_gettime.S │ │ ├── sys_open_by_handle_at.S │ │ ├── sys_open_tree.S │ │ ├── sys_openat2.S │ │ ├── sys_pathconf.S │ │ ├── sys_pause.S │ │ ├── sys_perf_event_open.S │ │ ├── sys_personality.S │ │ ├── sys_pidfd_getfd.S │ │ ├── sys_pidfd_open.S │ │ ├── sys_pidfd_send_signal.S │ │ ├── sys_pivot_root.S │ │ ├── sys_pkey_alloc.S │ │ ├── sys_pkey_free.S │ │ ├── sys_pkey_mprotect.S │ │ ├── sys_pledge.S │ │ ├── sys_posix_fallocate.S │ │ ├── sys_posix_openpt.S │ │ ├── sys_posix_spawn.S │ │ ├── sys_ppoll.S │ │ ├── sys_pread.S │ │ ├── sys_preadv.S │ │ ├── sys_preadv2.S │ │ ├── sys_prlimit.S │ │ ├── sys_process_madvise.S │ │ ├── sys_process_mrelease.S │ │ ├── sys_process_vm_readv.S │ │ ├── sys_process_vm_writev.S │ │ ├── sys_profil.S │ │ ├── sys_pselect.S │ │ ├── sys_pwrite.S │ │ ├── sys_pwritev.S │ │ ├── sys_pwritev2.S │ │ ├── sys_quotactl.S │ │ ├── sys_quotactl_fd.S │ │ ├── sys_read.S │ │ ├── sys_readahead.S │ │ ├── sys_readlinkat.S │ │ ├── sys_readv.S │ │ ├── sys_reboot.S │ │ ├── sys_recvfrom.S │ │ ├── sys_recvmmsg.S │ │ ├── sys_recvmsg.S │ │ ├── sys_removexattr.S │ │ ├── sys_renameat.S │ │ ├── sys_renameat2.S │ │ ├── sys_request_key.S │ │ ├── sys_restart_syscall.S │ │ ├── sys_revoke.S │ │ ├── sys_rseq.S │ │ ├── sys_rtprio_thread.S │ │ ├── sys_sched_get_priority_max.S │ │ ├── sys_sched_get_priority_min.S │ │ ├── sys_sched_getaffinity.S │ │ ├── sys_sched_getattr.S │ │ ├── sys_sched_getparam.S │ │ ├── sys_sched_getscheduler.S │ │ ├── sys_sched_rr_get_interval.S │ │ ├── sys_sched_setaffinity.S │ │ ├── sys_sched_setattr.S │ │ ├── sys_sched_setparam.S │ │ ├── sys_sched_setscheduler.S │ │ ├── sys_sched_yield.S │ │ ├── sys_select.S │ │ ├── sys_sem_close.S │ │ ├── sys_sem_destroy.S │ │ ├── sys_sem_getvalue.S │ │ ├── sys_sem_init.S │ │ ├── sys_sem_open.S │ │ ├── sys_sem_post.S │ │ ├── sys_sem_timedwait.S │ │ ├── sys_sem_trywait.S │ │ ├── sys_sem_unlink.S │ │ ├── sys_sem_wait.S │ │ ├── sys_sem_wait_nocancel.S │ │ ├── sys_semctl.S │ │ ├── sys_semget.S │ │ ├── sys_semop.S │ │ ├── sys_semsys.S │ │ ├── sys_semtimedop.S │ │ ├── sys_sendfile.S │ │ ├── sys_sendmsg.S │ │ ├── sys_sendto.S │ │ ├── sys_set_mempolicy_home_node.S │ │ ├── sys_set_robust_list.S │ │ ├── sys_set_tid_address.S │ │ ├── sys_set_tls.S │ │ ├── sys_setaudit_addr.S │ │ ├── sys_setauid.S │ │ ├── sys_setdomainname.S │ │ ├── sys_setfsgid.S │ │ ├── sys_setfsuid.S │ │ ├── sys_setgid.S │ │ ├── sys_setgroups.S │ │ ├── sys_sethostname.S │ │ ├── sys_setitimer.S │ │ ├── sys_setlogin.S │ │ ├── sys_setns.S │ │ ├── sys_setpgid.S │ │ ├── sys_setpriority.S │ │ ├── sys_setregid.S │ │ ├── sys_setresgid.S │ │ ├── sys_setresuid.S │ │ ├── sys_setreuid.S │ │ ├── sys_setrlimit.S │ │ ├── sys_setsid.S │ │ ├── sys_setsockopt.S │ │ ├── sys_settimeofday.S │ │ ├── sys_setuid.S │ │ ├── sys_setxattr.S │ │ ├── sys_shm_open.S │ │ ├── sys_shm_unlink.S │ │ ├── sys_shmat.S │ │ ├── sys_shmctl.S │ │ ├── sys_shmdt.S │ │ ├── sys_shmget.S │ │ ├── sys_shmsys.S │ │ ├── sys_shutdown.S │ │ ├── sys_sigaction.S │ │ ├── sys_sigaltstack.S │ │ ├── sys_signalfd.S │ │ ├── sys_signalfd4.S │ │ ├── sys_sigpending.S │ │ ├── sys_sigqueue.S │ │ ├── sys_sigqueueinfo.S │ │ ├── sys_sigsuspend.S │ │ ├── sys_sigtimedwait.S │ │ ├── sys_sigwait.S │ │ ├── sys_splice.S │ │ ├── sys_statfs.S │ │ ├── sys_statx.S │ │ ├── sys_swapoff.S │ │ ├── sys_swapon.S │ │ ├── sys_symlinkat.S │ │ ├── sys_sync.S │ │ ├── sys_sync_file_range.S │ │ ├── sys_syncfs.S │ │ ├── sys_sysctl.S │ │ ├── sys_sysfs.S │ │ ├── sys_sysinfo.S │ │ ├── sys_syslog.S │ │ ├── sys_tee.S │ │ ├── sys_tgkill.S │ │ ├── sys_tgsigqueueinfo.S │ │ ├── sys_timer_create.S │ │ ├── sys_timer_delete.S │ │ ├── sys_timer_getoverrun.S │ │ ├── sys_timer_gettime.S │ │ ├── sys_timer_settime.S │ │ ├── sys_timerfd_create.S │ │ ├── sys_timerfd_gettime.S │ │ ├── sys_timerfd_settime.S │ │ ├── sys_times.S │ │ ├── sys_tkill.S │ │ ├── sys_truncate.S │ │ ├── sys_umask.S │ │ ├── sys_umount2.S │ │ ├── sys_uname.S │ │ ├── sys_undelete.S │ │ ├── sys_unlink.S │ │ ├── sys_unlinkat.S │ │ ├── sys_unmount.S │ │ ├── sys_unshare.S │ │ ├── sys_unveil.S │ │ ├── sys_userfaultfd.S │ │ ├── sys_ustat.S │ │ ├── sys_utime.S │ │ ├── sys_utimes.S │ │ ├── sys_utrace.S │ │ ├── sys_vhangup.S │ │ ├── sys_vmsplice.S │ │ ├── sys_waitid.S │ │ ├── sys_write.S │ │ └── sys_writev.S │ ├── consts.sh │ ├── consts │ │ ├── ABORTED_COMMAND.S │ │ ├── ACCT_BYTEORDER.S │ │ ├── ACCT_COMM.S │ │ ├── ACK.S │ │ ├── ACORE.S │ │ ├── AFORK.S │ │ ├── AF_ALG.S │ │ ├── AF_APPLETALK.S │ │ ├── AF_ASH.S │ │ ├── AF_ATMPVC.S │ │ ├── AF_ATMSVC.S │ │ ├── AF_AX25.S │ │ ├── AF_BLUETOOTH.S │ │ ├── AF_BRIDGE.S │ │ ├── AF_CAIF.S │ │ ├── AF_CAN.S │ │ ├── AF_ECONET.S │ │ ├── AF_FILE.S │ │ ├── AF_IB.S │ │ ├── AF_IEEE802154.S │ │ ├── AF_INET.S │ │ ├── AF_INET6.S │ │ ├── AF_IPX.S │ │ ├── AF_IRDA.S │ │ ├── AF_ISDN.S │ │ ├── AF_IUCV.S │ │ ├── AF_KCM.S │ │ ├── AF_KEY.S │ │ ├── AF_LINK.S │ │ ├── AF_LLC.S │ │ ├── AF_LOCAL.S │ │ ├── AF_MAX.S │ │ ├── AF_MPLS.S │ │ ├── AF_NETBEUI.S │ │ ├── AF_NETLINK.S │ │ ├── AF_NETROM.S │ │ ├── AF_NFC.S │ │ ├── AF_PACKET.S │ │ ├── AF_PHONET.S │ │ ├── AF_PPPOX.S │ │ ├── AF_RDS.S │ │ ├── AF_ROSE.S │ │ ├── AF_ROUTE.S │ │ ├── AF_RXRPC.S │ │ ├── AF_SECURITY.S │ │ ├── AF_SNA.S │ │ ├── AF_TIPC.S │ │ ├── AF_UNIX.S │ │ ├── AF_UNSPEC.S │ │ ├── AF_VSOCK.S │ │ ├── AF_WANPIPE.S │ │ ├── AF_X25.S │ │ ├── AIO_ALLDONE.S │ │ ├── AIO_CANCELED.S │ │ ├── AIO_NOTCANCELED.S │ │ ├── ALG_SET_AEAD_ASSOCLEN.S │ │ ├── ALG_SET_AEAD_AUTHSIZE.S │ │ ├── ALG_SET_DRBG_ENTROPY.S │ │ ├── ALG_SET_IV.S │ │ ├── ALG_SET_KEY.S │ │ ├── ALG_SET_OP.S │ │ ├── AREGTYPE.S │ │ ├── AT_BASE.S │ │ ├── AT_BASE_PLATFORM.S │ │ ├── AT_CANARY.S │ │ ├── AT_CANARYLEN.S │ │ ├── AT_CLKTCK.S │ │ ├── AT_DCACHEBSIZE.S │ │ ├── AT_EACCESS.S │ │ ├── AT_EGID.S │ │ ├── AT_EHDRFLAGS.S │ │ ├── AT_EMPTY_PATH.S │ │ ├── AT_ENTRY.S │ │ ├── AT_EUID.S │ │ ├── AT_EXECFD.S │ │ ├── AT_EXECFN.S │ │ ├── AT_EXECPATH.S │ │ ├── AT_FDCWD.S │ │ ├── AT_FLAGS.S │ │ ├── AT_GID.S │ │ ├── AT_HWCAP.S │ │ ├── AT_HWCAP2.S │ │ ├── AT_ICACHEBSIZE.S │ │ ├── AT_MINSIGSTKSZ.S │ │ ├── AT_NCPUS.S │ │ ├── AT_NOTELF.S │ │ ├── AT_NO_AUTOMOUNT.S │ │ ├── AT_OSRELDATE.S │ │ ├── AT_PAGESIZES.S │ │ ├── AT_PAGESIZESLEN.S │ │ ├── AT_PAGESZ.S │ │ ├── AT_PHDR.S │ │ ├── AT_PHENT.S │ │ ├── AT_PHNUM.S │ │ ├── AT_PLATFORM.S │ │ ├── AT_RANDOM.S │ │ ├── AT_REMOVEDIR.S │ │ ├── AT_SECURE.S │ │ ├── AT_STACKBASE.S │ │ ├── AT_STACKPROT.S │ │ ├── AT_SYMLINK_FOLLOW.S │ │ ├── AT_SYMLINK_NOFOLLOW.S │ │ ├── AT_SYSINFO_EHDR.S │ │ ├── AT_TIMEKEEP.S │ │ ├── AT_UCACHEBSIZE.S │ │ ├── AT_UID.S │ │ ├── B0.S │ │ ├── B1000000.S │ │ ├── B110.S │ │ ├── B115200.S │ │ ├── B1152000.S │ │ ├── B1200.S │ │ ├── B134.S │ │ ├── B150.S │ │ ├── B1500000.S │ │ ├── B1800.S │ │ ├── B19200.S │ │ ├── B200.S │ │ ├── B2000000.S │ │ ├── B230400.S │ │ ├── B2400.S │ │ ├── B2500000.S │ │ ├── B300.S │ │ ├── B3000000.S │ │ ├── B3500000.S │ │ ├── B38400.S │ │ ├── B4000000.S │ │ ├── B4800.S │ │ ├── B50.S │ │ ├── B500000.S │ │ ├── B57600.S │ │ ├── B576000.S │ │ ├── B600.S │ │ ├── B75.S │ │ ├── B9600.S │ │ ├── BC_BASE_MAX.S │ │ ├── BC_DIM_MAX.S │ │ ├── BC_SCALE_MAX.S │ │ ├── BC_STRING_MAX.S │ │ ├── BRKINT.S │ │ ├── BS1.S │ │ ├── BSDLY.S │ │ ├── BUS_ADRALN.S │ │ ├── BUS_ADRERR.S │ │ ├── BUS_MCEERR_AO.S │ │ ├── BUS_MCEERR_AR.S │ │ ├── BUS_OBJERR.S │ │ ├── BUS_OOMERR.S │ │ ├── CDISCARD.S │ │ ├── CEOT.S │ │ ├── CERASE.S │ │ ├── CHRTYPE.S │ │ ├── CKILL.S │ │ ├── CLD_CONTINUED.S │ │ ├── CLD_DUMPED.S │ │ ├── CLD_EXITED.S │ │ ├── CLD_KILLED.S │ │ ├── CLD_STOPPED.S │ │ ├── CLD_TRAPPED.S │ │ ├── CLNEXT.S │ │ ├── CLOCAL.S │ │ ├── CLOCK_BOOTTIME.S │ │ ├── CLOCK_BOOTTIME_ALARM.S │ │ ├── CLOCK_MONOTONIC.S │ │ ├── CLOCK_MONOTONIC_COARSE.S │ │ ├── CLOCK_MONOTONIC_FAST.S │ │ ├── CLOCK_MONOTONIC_PRECISE.S │ │ ├── CLOCK_MONOTONIC_RAW.S │ │ ├── CLOCK_PROCESS_CPUTIME_ID.S │ │ ├── CLOCK_PROF.S │ │ ├── CLOCK_REALTIME.S │ │ ├── CLOCK_REALTIME_ALARM.S │ │ ├── CLOCK_REALTIME_COARSE.S │ │ ├── CLOCK_REALTIME_FAST.S │ │ ├── CLOCK_REALTIME_PRECISE.S │ │ ├── CLOCK_SECOND.S │ │ ├── CLOCK_TAI.S │ │ ├── CLOCK_THREAD_CPUTIME_ID.S │ │ ├── CLOCK_UPTIME.S │ │ ├── CLOCK_UPTIME_FAST.S │ │ ├── CLOCK_UPTIME_PRECISE.S │ │ ├── CLONE_VM.S │ │ ├── CLOSE_RANGE_CLOEXEC.S │ │ ├── CLOSE_RANGE_UNSHARE.S │ │ ├── CMIN.S │ │ ├── CMSPAR.S │ │ ├── COMMAND_COMPLETE.S │ │ ├── COMMAND_TERMINATED.S │ │ ├── COMPLETE.S │ │ ├── CONTINUE.S │ │ ├── CONTTYPE.S │ │ ├── COPY_ABORTED.S │ │ ├── COPY_VERIFY.S │ │ ├── CQUIT.S │ │ ├── CR1.S │ │ ├── CR2.S │ │ ├── CR3.S │ │ ├── CRDLY.S │ │ ├── CREAD.S │ │ ├── CREPRINT.S │ │ ├── CRPRNT.S │ │ ├── CRTSCTS.S │ │ ├── CS5.S │ │ ├── CS6.S │ │ ├── CS7.S │ │ ├── CS8.S │ │ ├── CSIZE.S │ │ ├── CSTART.S │ │ ├── CSTOP.S │ │ ├── CSTOPB.S │ │ ├── CTIME.S │ │ ├── DATA.S │ │ ├── DEV_BSIZE.S │ │ ├── DIRTYPE.S │ │ ├── DT_BLK.S │ │ ├── DT_CHR.S │ │ ├── DT_DIR.S │ │ ├── DT_FIFO.S │ │ ├── DT_LNK.S │ │ ├── DT_REG.S │ │ ├── DT_SOCK.S │ │ ├── DT_UNKNOWN.S │ │ ├── D_FMT.S │ │ ├── D_T_FMT.S │ │ ├── E2BIG.S │ │ ├── EACCES.S │ │ ├── EADDRINUSE.S │ │ ├── EADDRNOTAVAIL.S │ │ ├── EADV.S │ │ ├── EAFNOSUPPORT.S │ │ ├── EAGAIN.S │ │ ├── EALREADY.S │ │ ├── EAUTH.S │ │ ├── EBADARCH.S │ │ ├── EBADE.S │ │ ├── EBADEXEC.S │ │ ├── EBADF.S │ │ ├── EBADFD.S │ │ ├── EBADMACHO.S │ │ ├── EBADMSG.S │ │ ├── EBADR.S │ │ ├── EBADRPC.S │ │ ├── EBADRQC.S │ │ ├── EBADSLT.S │ │ ├── EBUSY.S │ │ ├── ECANCELED.S │ │ ├── ECHILD.S │ │ ├── ECHO.S │ │ ├── ECHOCTL.S │ │ ├── ECHOE.S │ │ ├── ECHOK.S │ │ ├── ECHOKE.S │ │ ├── ECHONL.S │ │ ├── ECHOPRT.S │ │ ├── ECHRNG.S │ │ ├── ECOMM.S │ │ ├── ECONNABORTED.S │ │ ├── ECONNREFUSED.S │ │ ├── ECONNRESET.S │ │ ├── EDEADLK.S │ │ ├── EDESTADDRREQ.S │ │ ├── EDEVERR.S │ │ ├── EDOM.S │ │ ├── EDOTDOT.S │ │ ├── EDQUOT.S │ │ ├── EEXIST.S │ │ ├── EFAULT.S │ │ ├── EFBIG.S │ │ ├── EFD_CLOEXEC.S │ │ ├── EFD_NONBLOCK.S │ │ ├── EFD_SEMAPHORE.S │ │ ├── EFTYPE.S │ │ ├── EHOSTDOWN.S │ │ ├── EHOSTUNREACH.S │ │ ├── EHWPOISON.S │ │ ├── EIDRM.S │ │ ├── EILSEQ.S │ │ ├── EINPROGRESS.S │ │ ├── EINTR.S │ │ ├── EINVAL.S │ │ ├── EIO.S │ │ ├── EISCONN.S │ │ ├── EISDIR.S │ │ ├── EISNAM.S │ │ ├── EKEYEXPIRED.S │ │ ├── EKEYREJECTED.S │ │ ├── EKEYREVOKED.S │ │ ├── EL2HLT.S │ │ ├── EL2NSYNC.S │ │ ├── EL3HLT.S │ │ ├── EL3RST.S │ │ ├── ELF_NGREG.S │ │ ├── ELF_PRARGSZ.S │ │ ├── ELIBACC.S │ │ ├── ELIBBAD.S │ │ ├── ELIBEXEC.S │ │ ├── ELIBMAX.S │ │ ├── ELIBSCN.S │ │ ├── ELNRNG.S │ │ ├── ELOOP.S │ │ ├── EMEDIUMTYPE.S │ │ ├── EMFILE.S │ │ ├── EMLINK.S │ │ ├── EMSGSIZE.S │ │ ├── EMULTIHOP.S │ │ ├── EM_ALTERA_NIOS2.S │ │ ├── EM_LATTICEMICO32.S │ │ ├── ENAMETOOLONG.S │ │ ├── ENAVAIL.S │ │ ├── ENEEDAUTH.S │ │ ├── ENETDOWN.S │ │ ├── ENETRESET.S │ │ ├── ENETUNREACH.S │ │ ├── ENFILE.S │ │ ├── ENOANO.S │ │ ├── ENOATTR.S │ │ ├── ENOBUFS.S │ │ ├── ENOCSI.S │ │ ├── ENODATA.S │ │ ├── ENODEV.S │ │ ├── ENOENT.S │ │ ├── ENOEXEC.S │ │ ├── ENOKEY.S │ │ ├── ENOLCK.S │ │ ├── ENOLINK.S │ │ ├── ENOMEDIUM.S │ │ ├── ENOMEM.S │ │ ├── ENOMSG.S │ │ ├── ENONET.S │ │ ├── ENOPKG.S │ │ ├── ENOPOLICY.S │ │ ├── ENOPROTOOPT.S │ │ ├── ENOSPC.S │ │ ├── ENOSR.S │ │ ├── ENOSTR.S │ │ ├── ENOSYS.S │ │ ├── ENOTBLK.S │ │ ├── ENOTCONN.S │ │ ├── ENOTDIR.S │ │ ├── ENOTEMPTY.S │ │ ├── ENOTNAM.S │ │ ├── ENOTRECOVERABLE.S │ │ ├── ENOTSOCK.S │ │ ├── ENOTSUP.S │ │ ├── ENOTTY.S │ │ ├── ENOTUNIQ.S │ │ ├── ENXIO.S │ │ ├── EOPNOTSUPP.S │ │ ├── EOVERFLOW.S │ │ ├── EOWNERDEAD.S │ │ ├── EPERM.S │ │ ├── EPFNOSUPPORT.S │ │ ├── EPIPE.S │ │ ├── EPOLLERR.S │ │ ├── EPOLLET.S │ │ ├── EPOLLEXCLUSIVE.S │ │ ├── EPOLLHUP.S │ │ ├── EPOLLIN.S │ │ ├── EPOLLMSG.S │ │ ├── EPOLLONESHOT.S │ │ ├── EPOLLOUT.S │ │ ├── EPOLLPRI.S │ │ ├── EPOLLRDBAND.S │ │ ├── EPOLLRDHUP.S │ │ ├── EPOLLRDNORM.S │ │ ├── EPOLLWAKEUP.S │ │ ├── EPOLLWRBAND.S │ │ ├── EPOLLWRNORM.S │ │ ├── EPOLL_CLOEXEC.S │ │ ├── EPOLL_CTL_ADD.S │ │ ├── EPOLL_CTL_DEL.S │ │ ├── EPOLL_CTL_MOD.S │ │ ├── EPROCLIM.S │ │ ├── EPROCUNAVAIL.S │ │ ├── EPROGMISMATCH.S │ │ ├── EPROGUNAVAIL.S │ │ ├── EPROTO.S │ │ ├── EPROTONOSUPPORT.S │ │ ├── EPROTOTYPE.S │ │ ├── EPWROFF.S │ │ ├── ERANGE.S │ │ ├── EREMCHG.S │ │ ├── EREMOTE.S │ │ ├── EREMOTEIO.S │ │ ├── ERESTART.S │ │ ├── ERFKILL.S │ │ ├── EROFS.S │ │ ├── ERPCMISMATCH.S │ │ ├── ESHLIBVERS.S │ │ ├── ESHUTDOWN.S │ │ ├── ESOCKTNOSUPPORT.S │ │ ├── ESPIPE.S │ │ ├── ESRCH.S │ │ ├── ESRMNT.S │ │ ├── ESTALE.S │ │ ├── ESTRPIPE.S │ │ ├── ETIME.S │ │ ├── ETIMEDOUT.S │ │ ├── ETOOMANYREFS.S │ │ ├── ETXTBSY.S │ │ ├── EUCLEAN.S │ │ ├── EUNATCH.S │ │ ├── EUSERS.S │ │ ├── EWOULDBLOCK.S │ │ ├── EXDEV.S │ │ ├── EXFULL.S │ │ ├── EXPR_NEST_MAX.S │ │ ├── EXTPROC.S │ │ ├── FALLOC_FL_COLLAPSE_RANGE.S │ │ ├── FALLOC_FL_INSERT_RANGE.S │ │ ├── FALLOC_FL_KEEP_SIZE.S │ │ ├── FALLOC_FL_NO_HIDE_STALE.S │ │ ├── FALLOC_FL_PUNCH_HOLE.S │ │ ├── FALLOC_FL_UNSHARE_RANGE.S │ │ ├── FALLOC_FL_ZERO_RANGE.S │ │ ├── FBIOGETCMAP.S │ │ ├── FBIOGET_FSCREENINFO.S │ │ ├── FBIOGET_VSCREENINFO.S │ │ ├── FBIOPAN_DISPLAY.S │ │ ├── FBIOPUTCMAP.S │ │ ├── FBIOPUT_VSCREENINFO.S │ │ ├── FBIO_WAITFORVSYNC.S │ │ ├── FD_CLOEXEC.S │ │ ├── FD_SETSIZE.S │ │ ├── FF1.S │ │ ├── FFDLY.S │ │ ├── FIFOTYPE.S │ │ ├── FIOASYNC.S │ │ ├── FIOCLEX.S │ │ ├── FIONBIO.S │ │ ├── FIONCLEX.S │ │ ├── FIONREAD.S │ │ ├── FLUSHO.S │ │ ├── FPE_FLTDIV.S │ │ ├── FPE_FLTINV.S │ │ ├── FPE_FLTOVF.S │ │ ├── FPE_FLTRES.S │ │ ├── FPE_FLTSUB.S │ │ ├── FPE_FLTUND.S │ │ ├── FPE_INTDIV.S │ │ ├── FPE_INTOVF.S │ │ ├── FREAD.S │ │ ├── FSETLOCKING_BYCALLER.S │ │ ├── FSETLOCKING_INTERNAL.S │ │ ├── FSETLOCKING_QUERY.S │ │ ├── FUTEX_PRIVATE_FLAG.S │ │ ├── FUTEX_REQUEUE.S │ │ ├── FUTEX_WAIT.S │ │ ├── FUTEX_WAKE.S │ │ ├── FWRITE.S │ │ ├── F_BARRIERFSYNC.S │ │ ├── F_DUPFD.S │ │ ├── F_DUPFD_CLOEXEC.S │ │ ├── F_FULLFSYNC.S │ │ ├── F_GETFD.S │ │ ├── F_GETFL.S │ │ ├── F_GETLEASE.S │ │ ├── F_GETLK.S │ │ ├── F_GETLK64.S │ │ ├── F_GETNOSIGPIPE.S │ │ ├── F_GETOWN.S │ │ ├── F_GETOWN_EX.S │ │ ├── F_GETPATH.S │ │ ├── F_GETPIPE_SZ.S │ │ ├── F_GETSIG.S │ │ ├── F_MAXFD.S │ │ ├── F_NOCACHE.S │ │ ├── F_NOTIFY.S │ │ ├── F_OFD_GETLK.S │ │ ├── F_OFD_SETLK.S │ │ ├── F_OFD_SETLKW.S │ │ ├── F_OK.S │ │ ├── F_RDLCK.S │ │ ├── F_SETFD.S │ │ ├── F_SETFL.S │ │ ├── F_SETLEASE.S │ │ ├── F_SETLK.S │ │ ├── F_SETLK64.S │ │ ├── F_SETLKW.S │ │ ├── F_SETLKW64.S │ │ ├── F_SETNOSIGPIPE.S │ │ ├── F_SETOWN.S │ │ ├── F_SETOWN_EX.S │ │ ├── F_SETPIPE_SZ.S │ │ ├── F_SETSIG.S │ │ ├── F_UNLCK.S │ │ ├── F_WRLCK.S │ │ ├── GIO_FONT.S │ │ ├── GIO_FONTX.S │ │ ├── GRPQUOTA.S │ │ ├── HOST_NAME_MAX.S │ │ ├── HUPCL.S │ │ ├── ICANON.S │ │ ├── ICMP6_DST_UNREACH.S │ │ ├── ICMP6_DST_UNREACH_ADDR.S │ │ ├── ICMP6_DST_UNREACH_ADMIN.S │ │ ├── ICMP6_DST_UNREACH_BEYONDSCOPE.S │ │ ├── ICMP6_DST_UNREACH_NOPORT.S │ │ ├── ICMP6_DST_UNREACH_NOROUTE.S │ │ ├── ICMP6_ECHO_REPLY.S │ │ ├── ICMP6_ECHO_REQUEST.S │ │ ├── ICMP6_FILTER.S │ │ ├── ICMP6_INFOMSG_MASK.S │ │ ├── ICMP6_PACKET_TOO_BIG.S │ │ ├── ICMP6_PARAMPROB_HEADER.S │ │ ├── ICMP6_PARAMPROB_NEXTHEADER.S │ │ ├── ICMP6_PARAMPROB_OPTION.S │ │ ├── ICMP6_PARAM_PROB.S │ │ ├── ICMP6_ROUTER_RENUMBERING.S │ │ ├── ICMP6_RR_FLAGS_FORCEAPPLY.S │ │ ├── ICMP6_RR_FLAGS_PREVDONE.S │ │ ├── ICMP6_RR_FLAGS_REQRESULT.S │ │ ├── ICMP6_RR_FLAGS_SPECSITE.S │ │ ├── ICMP6_RR_FLAGS_TEST.S │ │ ├── ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.S │ │ ├── ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.S │ │ ├── ICMP6_RR_PCOUSE_RAFLAGS_AUTO.S │ │ ├── ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.S │ │ ├── ICMP6_RR_RESULT_FLAGS_FORBIDDEN.S │ │ ├── ICMP6_RR_RESULT_FLAGS_OOB.S │ │ ├── ICMP6_TIME_EXCEEDED.S │ │ ├── ICMP6_TIME_EXCEED_REASSEMBLY.S │ │ ├── ICMP6_TIME_EXCEED_TRANSIT.S │ │ ├── ICRNL.S │ │ ├── IEXTEN.S │ │ ├── IFF_ALLMULTI.S │ │ ├── IFF_AUTOMEDIA.S │ │ ├── IFF_BROADCAST.S │ │ ├── IFF_DEBUG.S │ │ ├── IFF_DYNAMIC.S │ │ ├── IFF_LOOPBACK.S │ │ ├── IFF_MASTER.S │ │ ├── IFF_MULTICAST.S │ │ ├── IFF_NOARP.S │ │ ├── IFF_NOTRAILERS.S │ │ ├── IFF_POINTOPOINT.S │ │ ├── IFF_PORTSEL.S │ │ ├── IFF_PROMISC.S │ │ ├── IFF_RUNNING.S │ │ ├── IFF_SLAVE.S │ │ ├── IFF_UP.S │ │ ├── IF_NAMESIZE.S │ │ ├── IGNBRK.S │ │ ├── IGNCR.S │ │ ├── IGNPAR.S │ │ ├── ILL_BADSTK.S │ │ ├── ILL_COPROC.S │ │ ├── ILL_ILLADR.S │ │ ├── ILL_ILLOPC.S │ │ ├── ILL_ILLOPN.S │ │ ├── ILL_ILLTRP.S │ │ ├── ILL_PRVOPC.S │ │ ├── ILL_PRVREG.S │ │ ├── IMAXBEL.S │ │ ├── INET6_ADDRSTRLEN.S │ │ ├── INET_ADDRSTRLEN.S │ │ ├── INLCR.S │ │ ├── INPCK.S │ │ ├── INTERMEDIATE_C_GOOD.S │ │ ├── INTERMEDIATE_GOOD.S │ │ ├── IOV_MAX.S │ │ ├── IP6F_MORE_FRAG.S │ │ ├── IP6F_OFF_MASK.S │ │ ├── IP6F_RESERVED_MASK.S │ │ ├── IPPORT_USERRESERVED.S │ │ ├── IPPROTO_AH.S │ │ ├── IPPROTO_BEETPH.S │ │ ├── IPPROTO_COMP.S │ │ ├── IPPROTO_DCCP.S │ │ ├── IPPROTO_DSTOPTS.S │ │ ├── IPPROTO_EGP.S │ │ ├── IPPROTO_ENCAP.S │ │ ├── IPPROTO_ESP.S │ │ ├── IPPROTO_FRAGMENT.S │ │ ├── IPPROTO_GRE.S │ │ ├── IPPROTO_HOPOPTS.S │ │ ├── IPPROTO_ICMP.S │ │ ├── IPPROTO_ICMPV6.S │ │ ├── IPPROTO_IDP.S │ │ ├── IPPROTO_IGMP.S │ │ ├── IPPROTO_IP.S │ │ ├── IPPROTO_IPIP.S │ │ ├── IPPROTO_IPV6.S │ │ ├── IPPROTO_MH.S │ │ ├── IPPROTO_MPLS.S │ │ ├── IPPROTO_MTP.S │ │ ├── IPPROTO_NONE.S │ │ ├── IPPROTO_PIM.S │ │ ├── IPPROTO_PUP.S │ │ ├── IPPROTO_RAW.S │ │ ├── IPPROTO_ROUTING.S │ │ ├── IPPROTO_RSVP.S │ │ ├── IPPROTO_SCTP.S │ │ ├── IPPROTO_TCP.S │ │ ├── IPPROTO_TP.S │ │ ├── IPPROTO_UDP.S │ │ ├── IPPROTO_UDPLITE.S │ │ ├── IPV6_2292DSTOPTS.S │ │ ├── IPV6_2292HOPLIMIT.S │ │ ├── IPV6_2292HOPOPTS.S │ │ ├── IPV6_2292PKTINFO.S │ │ ├── IPV6_2292PKTOPTIONS.S │ │ ├── IPV6_2292RTHDR.S │ │ ├── IPV6_ADDRFORM.S │ │ ├── IPV6_ADD_MEMBERSHIP.S │ │ ├── IPV6_AUTHHDR.S │ │ ├── IPV6_AUTOFLOWLABEL.S │ │ ├── IPV6_CHECKSUM.S │ │ ├── IPV6_DONTFRAG.S │ │ ├── IPV6_DROP_MEMBERSHIP.S │ │ ├── IPV6_DSTOPTS.S │ │ ├── IPV6_HDRINCL.S │ │ ├── IPV6_HOPLIMIT.S │ │ ├── IPV6_HOPOPTS.S │ │ ├── IPV6_IPSEC_POLICY.S │ │ ├── IPV6_JOIN_ANYCAST.S │ │ ├── IPV6_JOIN_GROUP.S │ │ ├── IPV6_LEAVE_ANYCAST.S │ │ ├── IPV6_LEAVE_GROUP.S │ │ ├── IPV6_MINHOPCOUNT.S │ │ ├── IPV6_MTU.S │ │ ├── IPV6_MTU_DISCOVER.S │ │ ├── IPV6_MULTICAST_HOPS.S │ │ ├── IPV6_MULTICAST_IF.S │ │ ├── IPV6_MULTICAST_LOOP.S │ │ ├── IPV6_NEXTHOP.S │ │ ├── IPV6_ORIGDSTADDR.S │ │ ├── IPV6_PATHMTU.S │ │ ├── IPV6_PKTINFO.S │ │ ├── IPV6_PMTUDISC_DO.S │ │ ├── IPV6_PMTUDISC_DONT.S │ │ ├── IPV6_PMTUDISC_INTERFACE.S │ │ ├── IPV6_PMTUDISC_OMIT.S │ │ ├── IPV6_PMTUDISC_PROBE.S │ │ ├── IPV6_PMTUDISC_WANT.S │ │ ├── IPV6_RECVDSTOPTS.S │ │ ├── IPV6_RECVERR.S │ │ ├── IPV6_RECVHOPLIMIT.S │ │ ├── IPV6_RECVHOPOPTS.S │ │ ├── IPV6_RECVORIGDSTADDR.S │ │ ├── IPV6_RECVPATHMTU.S │ │ ├── IPV6_RECVPKTINFO.S │ │ ├── IPV6_RECVRTHDR.S │ │ ├── IPV6_RECVTCLASS.S │ │ ├── IPV6_ROUTER_ALERT.S │ │ ├── IPV6_RTHDR.S │ │ ├── IPV6_RTHDRDSTOPTS.S │ │ ├── IPV6_RTHDR_LOOSE.S │ │ ├── IPV6_RTHDR_STRICT.S │ │ ├── IPV6_RTHDR_TYPE_0.S │ │ ├── IPV6_RXDSTOPTS.S │ │ ├── IPV6_RXHOPOPTS.S │ │ ├── IPV6_TCLASS.S │ │ ├── IPV6_UNICAST_HOPS.S │ │ ├── IPV6_V6ONLY.S │ │ ├── IPV6_XFRM_POLICY.S │ │ ├── IP_ADD_MEMBERSHIP.S │ │ ├── IP_ADD_SOURCE_MEMBERSHIP.S │ │ ├── IP_BIND_ADDRESS_NO_PORT.S │ │ ├── IP_BLOCK_SOURCE.S │ │ ├── IP_CHECKSUM.S │ │ ├── IP_DEFAULT_MULTICAST_LOOP.S │ │ ├── IP_DEFAULT_MULTICAST_TTL.S │ │ ├── IP_DROP_MEMBERSHIP.S │ │ ├── IP_DROP_SOURCE_MEMBERSHIP.S │ │ ├── IP_FREEBIND.S │ │ ├── IP_HDRINCL.S │ │ ├── IP_IPSEC_POLICY.S │ │ ├── IP_MAX_MEMBERSHIPS.S │ │ ├── IP_MINTTL.S │ │ ├── IP_MSFILTER.S │ │ ├── IP_MTU.S │ │ ├── IP_MTU_DISCOVER.S │ │ ├── IP_MULTICAST_ALL.S │ │ ├── IP_MULTICAST_IF.S │ │ ├── IP_MULTICAST_LOOP.S │ │ ├── IP_MULTICAST_TTL.S │ │ ├── IP_NODEFRAG.S │ │ ├── IP_OPTIONS.S │ │ ├── IP_ORIGDSTADDR.S │ │ ├── IP_PASSSEC.S │ │ ├── IP_PKTINFO.S │ │ ├── IP_PKTOPTIONS.S │ │ ├── IP_PMTUDISC.S │ │ ├── IP_PMTUDISC_DO.S │ │ ├── IP_PMTUDISC_DONT.S │ │ ├── IP_PMTUDISC_INTERFACE.S │ │ ├── IP_PMTUDISC_OMIT.S │ │ ├── IP_PMTUDISC_PROBE.S │ │ ├── IP_PMTUDISC_WANT.S │ │ ├── IP_RECVDSTADDR.S │ │ ├── IP_RECVERR.S │ │ ├── IP_RECVOPTS.S │ │ ├── IP_RECVORIGDSTADDR.S │ │ ├── IP_RECVRETOPTS.S │ │ ├── IP_RECVTOS.S │ │ ├── IP_RECVTTL.S │ │ ├── IP_RETOPTS.S │ │ ├── IP_ROUTER_ALERT.S │ │ ├── IP_TOS.S │ │ ├── IP_TRANSPARENT.S │ │ ├── IP_TTL.S │ │ ├── IP_UNBLOCK_SOURCE.S │ │ ├── IP_UNICAST_IF.S │ │ ├── IP_XFRM_POLICY.S │ │ ├── ISIG.S │ │ ├── ISTRIP.S │ │ ├── IUCLC.S │ │ ├── IUTF8.S │ │ ├── IXANY.S │ │ ├── IXOFF.S │ │ ├── IXON.S │ │ ├── KDFONTOP.S │ │ ├── LINE_MAX.S │ │ ├── LINKED_CMD_COMPLETE.S │ │ ├── LINKED_FLG_CMD_COMPLETE.S │ │ ├── LINK_MAX.S │ │ ├── LIO_NOP.S │ │ ├── LIO_NOWAIT.S │ │ ├── LIO_READ.S │ │ ├── LIO_WAIT.S │ │ ├── LIO_WRITE.S │ │ ├── LNKTYPE.S │ │ ├── LOCAL_PEERCRED.S │ │ ├── LOCK_EX.S │ │ ├── LOCK_NB.S │ │ ├── LOCK_SH.S │ │ ├── LOCK_UN.S │ │ ├── LOCK_UNLOCK_CACHE.S │ │ ├── LOGIN_NAME_MAX.S │ │ ├── LOGIN_PROCESS.S │ │ ├── L_INCR.S │ │ ├── L_SET.S │ │ ├── L_XTND.S │ │ ├── MADV_DODUMP.S │ │ ├── MADV_DOFORK.S │ │ ├── MADV_DONTDUMP.S │ │ ├── MADV_DONTFORK.S │ │ ├── MADV_DONTNEED.S │ │ ├── MADV_FREE.S │ │ ├── MADV_HUGEPAGE.S │ │ ├── MADV_HWPOISON.S │ │ ├── MADV_MERGEABLE.S │ │ ├── MADV_NOHUGEPAGE.S │ │ ├── MADV_NORMAL.S │ │ ├── MADV_RANDOM.S │ │ ├── MADV_REMOVE.S │ │ ├── MADV_SEQUENTIAL.S │ │ ├── MADV_UNMERGEABLE.S │ │ ├── MADV_WILLNEED.S │ │ ├── MAP_32BIT.S │ │ ├── MAP_ANON.S │ │ ├── MAP_ANONYMOUS.S │ │ ├── MAP_CONCEAL.S │ │ ├── MAP_DENYWRITE.S │ │ ├── MAP_EXECUTABLE.S │ │ ├── MAP_FILE.S │ │ ├── MAP_FIXED.S │ │ ├── MAP_FIXED_NOREPLACE.S │ │ ├── MAP_GROWSDOWN.S │ │ ├── MAP_HASSEMAPHORE.S │ │ ├── MAP_INHERIT.S │ │ ├── MAP_LOCKED.S │ │ ├── MAP_NOCORE.S │ │ ├── MAP_NONBLOCK.S │ │ ├── MAP_NORESERVE.S │ │ ├── MAP_NOSYNC.S │ │ ├── MAP_POPULATE.S │ │ ├── MAP_PRIVATE.S │ │ ├── MAP_SHARED.S │ │ ├── MAP_SHARED_VALIDATE.S │ │ ├── MAP_STACK.S │ │ ├── MAP_SYNC.S │ │ ├── MAP_TYPE.S │ │ ├── MATH_ERREXCEPT.S │ │ ├── MATH_ERRNO.S │ │ ├── MAXNAMLEN.S │ │ ├── MAXQUOTAS.S │ │ ├── MAX_CANON.S │ │ ├── MAX_DQ_TIME.S │ │ ├── MAX_HANDLE_SZ.S │ │ ├── MAX_INPUT.S │ │ ├── MAX_IQ_TIME.S │ │ ├── MCAST_BLOCK_SOURCE.S │ │ ├── MCAST_EXCLUDE.S │ │ ├── MCAST_INCLUDE.S │ │ ├── MCAST_JOIN_GROUP.S │ │ ├── MCAST_JOIN_SOURCE_GROUP.S │ │ ├── MCAST_LEAVE_GROUP.S │ │ ├── MCAST_LEAVE_SOURCE_GROUP.S │ │ ├── MCAST_MSFILTER.S │ │ ├── MCAST_UNBLOCK_SOURCE.S │ │ ├── MCL_CURRENT.S │ │ ├── MCL_FUTURE.S │ │ ├── MCL_ONFAULT.S │ │ ├── MEDIUM_ERROR.S │ │ ├── MEDIUM_SCAN.S │ │ ├── MLD_LISTENER_QUERY.S │ │ ├── MLD_LISTENER_REDUCTION.S │ │ ├── MLD_LISTENER_REPORT.S │ │ ├── MNT_ASYNC.S │ │ ├── MNT_BYFSID.S │ │ ├── MNT_DETACH.S │ │ ├── MNT_EXPIRE.S │ │ ├── MNT_FORCE.S │ │ ├── MNT_NOATIME.S │ │ ├── MNT_NOCLUSTERR.S │ │ ├── MNT_NOCLUSTERW.S │ │ ├── MNT_NODEV.S │ │ ├── MNT_NOEXEC.S │ │ ├── MNT_NOSUID.S │ │ ├── MNT_RDONLY.S │ │ ├── MNT_RELATIME.S │ │ ├── MNT_RELOAD.S │ │ ├── MNT_SNAPSHOT.S │ │ ├── MNT_STRICTATIME.S │ │ ├── MNT_SUIDDIR.S │ │ ├── MNT_SYNCHRONOUS.S │ │ ├── MNT_UPDATE.S │ │ ├── MREMAP_FIXED.S │ │ ├── MREMAP_MAYMOVE.S │ │ ├── MSG_BATCH.S │ │ ├── MSG_BCAST.S │ │ ├── MSG_CMSG_CLOEXEC.S │ │ ├── MSG_CONFIRM.S │ │ ├── MSG_CTRUNC.S │ │ ├── MSG_DONTROUTE.S │ │ ├── MSG_DONTWAIT.S │ │ ├── MSG_EOF.S │ │ ├── MSG_EOR.S │ │ ├── MSG_ERRQUEUE.S │ │ ├── MSG_EXCEPT.S │ │ ├── MSG_FASTOPEN.S │ │ ├── MSG_FIN.S │ │ ├── MSG_INFO.S │ │ ├── MSG_MCAST.S │ │ ├── MSG_MORE.S │ │ ├── MSG_NOERROR.S │ │ ├── MSG_NOSIGNAL.S │ │ ├── MSG_NOTIFICATION.S │ │ ├── MSG_OOB.S │ │ ├── MSG_PARITY_ERROR.S │ │ ├── MSG_PEEK.S │ │ ├── MSG_PROXY.S │ │ ├── MSG_RST.S │ │ ├── MSG_STAT.S │ │ ├── MSG_SYN.S │ │ ├── MSG_TRUNC.S │ │ ├── MSG_WAITALL.S │ │ ├── MSG_WAITFORONE.S │ │ ├── MS_ACTIVE.S │ │ ├── MS_ASYNC.S │ │ ├── MS_BIND.S │ │ ├── MS_DIRSYNC.S │ │ ├── MS_INVALIDATE.S │ │ ├── MS_I_VERSION.S │ │ ├── MS_KERNMOUNT.S │ │ ├── MS_LAZYTIME.S │ │ ├── MS_MANDLOCK.S │ │ ├── MS_MGC_MSK.S │ │ ├── MS_MGC_VAL.S │ │ ├── MS_MOVE.S │ │ ├── MS_NOATIME.S │ │ ├── MS_NODEV.S │ │ ├── MS_NODIRATIME.S │ │ ├── MS_NOEXEC.S │ │ ├── MS_NOSUID.S │ │ ├── MS_NOUSER.S │ │ ├── MS_POSIXACL.S │ │ ├── MS_PRIVATE.S │ │ ├── MS_RDONLY.S │ │ ├── MS_REC.S │ │ ├── MS_RELATIME.S │ │ ├── MS_REMOUNT.S │ │ ├── MS_RMT_MASK.S │ │ ├── MS_SHARED.S │ │ ├── MS_SILENT.S │ │ ├── MS_SLAVE.S │ │ ├── MS_STRICTATIME.S │ │ ├── MS_SYNC.S │ │ ├── MS_SYNCHRONOUS.S │ │ ├── MS_UNBINDABLE.S │ │ ├── NBBY.S │ │ ├── NGROUPS_MAX.S │ │ ├── NL1.S │ │ ├── NL2.S │ │ ├── NL3.S │ │ ├── NLDLY.S │ │ ├── NOFLSH.S │ │ ├── NO_ADDRESS.S │ │ ├── NO_SENSE.S │ │ ├── NR_DQHASH.S │ │ ├── NR_DQUOTS.S │ │ ├── OCRNL.S │ │ ├── OFDEL.S │ │ ├── OFILL.S │ │ ├── OLCUC.S │ │ ├── ONLCR.S │ │ ├── ONLRET.S │ │ ├── ONOCR.S │ │ ├── OPOST.S │ │ ├── O_APPEND.S │ │ ├── O_ASYNC.S │ │ ├── O_CLOEXEC.S │ │ ├── O_COMPRESSED.S │ │ ├── O_CREAT.S │ │ ├── O_DIRECT.S │ │ ├── O_DIRECTORY.S │ │ ├── O_DSYNC.S │ │ ├── O_EXCL.S │ │ ├── O_EXEC.S │ │ ├── O_EXLOCK.S │ │ ├── O_INDEXED.S │ │ ├── O_LARGEFILE.S │ │ ├── O_NDELAY.S │ │ ├── O_NOATIME.S │ │ ├── O_NOCTTY.S │ │ ├── O_NOFOLLOW.S │ │ ├── O_NOFOLLOW_ANY.S │ │ ├── O_NONBLOCK.S │ │ ├── O_PATH.S │ │ ├── O_RANDOM.S │ │ ├── O_RDWR.S │ │ ├── O_RSYNC.S │ │ ├── O_SEARCH.S │ │ ├── O_SEQUENTIAL.S │ │ ├── O_SHLOCK.S │ │ ├── O_SPARSE.S │ │ ├── O_SYNC.S │ │ ├── O_TMPFILE.S │ │ ├── O_TRUNC.S │ │ ├── O_TTY_INIT.S │ │ ├── O_VERIFY.S │ │ ├── PARENB.S │ │ ├── PARMRK.S │ │ ├── PARODD.S │ │ ├── PENDIN.S │ │ ├── PERSISTENT_RESERVE_IN.S │ │ ├── PERSISTENT_RESERVE_OUT.S │ │ ├── PF_ALG.S │ │ ├── PF_APPLETALK.S │ │ ├── PF_ASH.S │ │ ├── PF_ATMPVC.S │ │ ├── PF_ATMSVC.S │ │ ├── PF_AX25.S │ │ ├── PF_BLUETOOTH.S │ │ ├── PF_BRIDGE.S │ │ ├── PF_CAIF.S │ │ ├── PF_CAN.S │ │ ├── PF_ECONET.S │ │ ├── PF_FILE.S │ │ ├── PF_IB.S │ │ ├── PF_IEEE802154.S │ │ ├── PF_INET.S │ │ ├── PF_INET6.S │ │ ├── PF_IPX.S │ │ ├── PF_IRDA.S │ │ ├── PF_ISDN.S │ │ ├── PF_IUCV.S │ │ ├── PF_KCM.S │ │ ├── PF_KEY.S │ │ ├── PF_LLC.S │ │ ├── PF_LOCAL.S │ │ ├── PF_MAX.S │ │ ├── PF_MPLS.S │ │ ├── PF_NETBEUI.S │ │ ├── PF_NETLINK.S │ │ ├── PF_NETROM.S │ │ ├── PF_NFC.S │ │ ├── PF_PACKET.S │ │ ├── PF_PHONET.S │ │ ├── PF_PPPOX.S │ │ ├── PF_RDS.S │ │ ├── PF_ROSE.S │ │ ├── PF_ROUTE.S │ │ ├── PF_RXRPC.S │ │ ├── PF_SECURITY.S │ │ ├── PF_SNA.S │ │ ├── PF_TIPC.S │ │ ├── PF_UNIX.S │ │ ├── PF_UNSPEC.S │ │ ├── PF_VSOCK.S │ │ ├── PF_WANPIPE.S │ │ ├── PF_X25.S │ │ ├── PIO_FONT.S │ │ ├── PIO_FONT8x14.S │ │ ├── PIO_FONT8x16.S │ │ ├── PIO_FONT8x8.S │ │ ├── PIO_FONTRESET.S │ │ ├── PIO_FONTX.S │ │ ├── PIO_VFONT.S │ │ ├── PIPE_BUF.S │ │ ├── POLLERR.S │ │ ├── POLLHUP.S │ │ ├── POLLIN.S │ │ ├── POLLNVAL.S │ │ ├── POLLOUT.S │ │ ├── POLLPRI.S │ │ ├── POLLRDBAND.S │ │ ├── POLLRDHUP.S │ │ ├── POLLRDNORM.S │ │ ├── POLLWRBAND.S │ │ ├── POLLWRNORM.S │ │ ├── POLL_ERR.S │ │ ├── POLL_HUP.S │ │ ├── POLL_IN.S │ │ ├── POLL_MSG.S │ │ ├── POLL_OUT.S │ │ ├── POLL_PRI.S │ │ ├── POSIX_FADV_DONTNEED.S │ │ ├── POSIX_FADV_NOREUSE.S │ │ ├── POSIX_FADV_NORMAL.S │ │ ├── POSIX_FADV_RANDOM.S │ │ ├── POSIX_FADV_SEQUENTIAL.S │ │ ├── POSIX_FADV_WILLNEED.S │ │ ├── POSIX_MADV_DONTNEED.S │ │ ├── POSIX_MADV_NORMAL.S │ │ ├── POSIX_MADV_RANDOM.S │ │ ├── POSIX_MADV_SEQUENTIAL.S │ │ ├── POSIX_MADV_WILLNEED.S │ │ ├── PRELIM.S │ │ ├── PRIO_MAX.S │ │ ├── PRIO_MIN.S │ │ ├── PRIO_PGRP.S │ │ ├── PRIO_PROCESS.S │ │ ├── PRIO_USER.S │ │ ├── PROT_EXEC.S │ │ ├── PROT_GROWSDOWN.S │ │ ├── PROT_GROWSUP.S │ │ ├── PROT_NONE.S │ │ ├── PROT_READ.S │ │ ├── PROT_WRITE.S │ │ ├── PTRACE_ATTACH.S │ │ ├── PTRACE_CONT.S │ │ ├── PTRACE_DETACH.S │ │ ├── PTRACE_EVENT_CLONE.S │ │ ├── PTRACE_EVENT_EXEC.S │ │ ├── PTRACE_EVENT_EXIT.S │ │ ├── PTRACE_EVENT_FORK.S │ │ ├── PTRACE_EVENT_SECCOMP.S │ │ ├── PTRACE_EVENT_STOP.S │ │ ├── PTRACE_EVENT_VFORK.S │ │ ├── PTRACE_EVENT_VFORK_DONE.S │ │ ├── PTRACE_GETEVENTMSG.S │ │ ├── PTRACE_GETFPREGS.S │ │ ├── PTRACE_GETFPXREGS.S │ │ ├── PTRACE_GETREGS.S │ │ ├── PTRACE_GETREGSET.S │ │ ├── PTRACE_GETSIGINFO.S │ │ ├── PTRACE_GETSIGMASK.S │ │ ├── PTRACE_INTERRUPT.S │ │ ├── PTRACE_KILL.S │ │ ├── PTRACE_LISTEN.S │ │ ├── PTRACE_O_MASK.S │ │ ├── PTRACE_O_TRACECLONE.S │ │ ├── PTRACE_O_TRACEEXEC.S │ │ ├── PTRACE_O_TRACEEXIT.S │ │ ├── PTRACE_O_TRACEFORK.S │ │ ├── PTRACE_O_TRACESECCOMP.S │ │ ├── PTRACE_O_TRACESYSGOOD.S │ │ ├── PTRACE_O_TRACEVFORK.S │ │ ├── PTRACE_O_TRACEVFORKDONE.S │ │ ├── PTRACE_PEEKDATA.S │ │ ├── PTRACE_PEEKSIGINFO.S │ │ ├── PTRACE_PEEKTEXT.S │ │ ├── PTRACE_PEEKUSER.S │ │ ├── PTRACE_POKEDATA.S │ │ ├── PTRACE_POKETEXT.S │ │ ├── PTRACE_POKEUSER.S │ │ ├── PTRACE_SECCOMP_GET_FILTER.S │ │ ├── PTRACE_SEIZE.S │ │ ├── PTRACE_SETFPREGS.S │ │ ├── PTRACE_SETFPXREGS.S │ │ ├── PTRACE_SETOPTIONS.S │ │ ├── PTRACE_SETREGS.S │ │ ├── PTRACE_SETREGSET.S │ │ ├── PTRACE_SETSIGINFO.S │ │ ├── PTRACE_SETSIGMASK.S │ │ ├── PTRACE_SINGLESTEP.S │ │ ├── PTRACE_SYSCALL.S │ │ ├── PTRACE_TRACEME.S │ │ ├── Q_GETFMT.S │ │ ├── Q_GETINFO.S │ │ ├── Q_GETQUOTA.S │ │ ├── Q_QUOTAOFF.S │ │ ├── Q_QUOTAON.S │ │ ├── Q_SETINFO.S │ │ ├── Q_SETQUOTA.S │ │ ├── Q_SYNC.S │ │ ├── RB_AUTOBOOT.S │ │ ├── RB_DISABLE_CAD.S │ │ ├── RB_ENABLE_CAD.S │ │ ├── RB_HALT.S │ │ ├── RB_HALT_SYSTEM.S │ │ ├── RB_KEXEC.S │ │ ├── RB_NOSYNC.S │ │ ├── RB_POWERDOWN.S │ │ ├── RB_POWEROFF.S │ │ ├── RB_POWER_OFF.S │ │ ├── RB_SW_SUSPEND.S │ │ ├── REGTYPE.S │ │ ├── RES_PRF_CLASS.S │ │ ├── RHF_GUARANTEE_START_INIT.S │ │ ├── RHF_NO_LIBRARY_REPLACEMENT.S │ │ ├── RLIMIT_AS.S │ │ ├── RLIMIT_CORE.S │ │ ├── RLIMIT_CPU.S │ │ ├── RLIMIT_DATA.S │ │ ├── RLIMIT_FSIZE.S │ │ ├── RLIMIT_LOCKS.S │ │ ├── RLIMIT_MEMLOCK.S │ │ ├── RLIMIT_MSGQUEUE.S │ │ ├── RLIMIT_NICE.S │ │ ├── RLIMIT_NOFILE.S │ │ ├── RLIMIT_NPROC.S │ │ ├── RLIMIT_NPTS.S │ │ ├── RLIMIT_RSS.S │ │ ├── RLIMIT_RTPRIO.S │ │ ├── RLIMIT_RTTIME.S │ │ ├── RLIMIT_SBSIZE.S │ │ ├── RLIMIT_SIGPENDING.S │ │ ├── RLIMIT_STACK.S │ │ ├── RLIMIT_SWAP.S │ │ ├── RLIMIT_VMEM.S │ │ ├── RLIM_INFINITY.S │ │ ├── RLIM_NLIMITS.S │ │ ├── RLIM_SAVED_CUR.S │ │ ├── RLIM_SAVED_MAX.S │ │ ├── RPM_PCO_ADD.S │ │ ├── RPM_PCO_CHANGE.S │ │ ├── RPM_PCO_SETGLOBAL.S │ │ ├── RRQ.S │ │ ├── RTF_NOFORWARD.S │ │ ├── RTF_NOPMTUDISC.S │ │ ├── RUSAGE_BOTH.S │ │ ├── RUSAGE_CHILDREN.S │ │ ├── RUSAGE_SELF.S │ │ ├── RUSAGE_THREAD.S │ │ ├── R_OK.S │ │ ├── SARMAG.S │ │ ├── SA_NOCLDSTOP.S │ │ ├── SA_NOCLDWAIT.S │ │ ├── SA_NODEFER.S │ │ ├── SA_NOMASK.S │ │ ├── SA_ONESHOT.S │ │ ├── SA_ONSTACK.S │ │ ├── SA_RESETHAND.S │ │ ├── SA_RESTART.S │ │ ├── SA_SIGINFO.S │ │ ├── SCHED_BATCH.S │ │ ├── SCHED_DEADLINE.S │ │ ├── SCHED_FIFO.S │ │ ├── SCHED_IDLE.S │ │ ├── SCHED_OTHER.S │ │ ├── SCHED_RESET_ON_FORK.S │ │ ├── SCHED_RR.S │ │ ├── SCM_CREDENTIALS.S │ │ ├── SCM_RIGHTS.S │ │ ├── SCM_TIMESTAMP.S │ │ ├── SCM_TIMESTAMPING.S │ │ ├── SCM_TIMESTAMPNS.S │ │ ├── SCM_WIFI_STATUS.S │ │ ├── SEEK_DATA.S │ │ ├── SEEK_HOLE.S │ │ ├── SEGSIZE.S │ │ ├── SEGV_ACCERR.S │ │ ├── SEGV_MAPERR.S │ │ ├── SEGV_PKUERR.S │ │ ├── SEND_DIAGNOSTIC.S │ │ ├── SEND_VOLUME_TAG.S │ │ ├── SET_LIMITS.S │ │ ├── SET_WINDOW.S │ │ ├── SFD_CLOEXEC.S │ │ ├── SFD_NONBLOCK.S │ │ ├── SF_MNOWAIT.S │ │ ├── SF_NODISKIO.S │ │ ├── SF_SYNC.S │ │ ├── SHM_ANON.S │ │ ├── SHM_DEST.S │ │ ├── SHM_EXEC.S │ │ ├── SHM_HUGETLB.S │ │ ├── SHM_INFO.S │ │ ├── SHM_LOCK.S │ │ ├── SHM_LOCKED.S │ │ ├── SHM_NORESERVE.S │ │ ├── SHM_R.S │ │ ├── SHM_RDONLY.S │ │ ├── SHM_REMAP.S │ │ ├── SHM_RND.S │ │ ├── SHM_STAT.S │ │ ├── SHM_UNLOCK.S │ │ ├── SHM_W.S │ │ ├── SHUT_RD.S │ │ ├── SHUT_RDWR.S │ │ ├── SHUT_WR.S │ │ ├── SIGABRT.S │ │ ├── SIGALRM.S │ │ ├── SIGBUS.S │ │ ├── SIGCHLD.S │ │ ├── SIGCONT.S │ │ ├── SIGEMT.S │ │ ├── SIGEV_NONE.S │ │ ├── SIGEV_SIGNAL.S │ │ ├── SIGEV_THREAD.S │ │ ├── SIGFPE.S │ │ ├── SIGHUP.S │ │ ├── SIGILL.S │ │ ├── SIGINFO.S │ │ ├── SIGINT.S │ │ ├── SIGIO.S │ │ ├── SIGIOT.S │ │ ├── SIGKILL.S │ │ ├── SIGPIPE.S │ │ ├── SIGPOLL.S │ │ ├── SIGPROF.S │ │ ├── SIGPWR.S │ │ ├── SIGQUIT.S │ │ ├── SIGRTMAX.S │ │ ├── SIGRTMIN.S │ │ ├── SIGSEGV.S │ │ ├── SIGSTKFLT.S │ │ ├── SIGSTOP.S │ │ ├── SIGSYS.S │ │ ├── SIGTERM.S │ │ ├── SIGTHR.S │ │ ├── SIGTRAP.S │ │ ├── SIGTSTP.S │ │ ├── SIGTTIN.S │ │ ├── SIGTTOU.S │ │ ├── SIGURG.S │ │ ├── SIGUSR1.S │ │ ├── SIGUSR2.S │ │ ├── SIGVTALRM.S │ │ ├── SIGWINCH.S │ │ ├── SIGXCPU.S │ │ ├── SIGXFSZ.S │ │ ├── SIG_BLOCK.S │ │ ├── SIG_SETMASK.S │ │ ├── SIG_UNBLOCK.S │ │ ├── SIOCADDDLCI.S │ │ ├── SIOCADDMULTI.S │ │ ├── SIOCADDRT.S │ │ ├── SIOCATMARK.S │ │ ├── SIOCDARP.S │ │ ├── SIOCDELDLCI.S │ │ ├── SIOCDELMULTI.S │ │ ├── SIOCDELRT.S │ │ ├── SIOCDEVPRIVATE.S │ │ ├── SIOCDIFADDR.S │ │ ├── SIOCDRARP.S │ │ ├── SIOCGARP.S │ │ ├── SIOCGIFADDR.S │ │ ├── SIOCGIFBR.S │ │ ├── SIOCGIFBRDADDR.S │ │ ├── SIOCGIFCONF.S │ │ ├── SIOCGIFCOUNT.S │ │ ├── SIOCGIFDSTADDR.S │ │ ├── SIOCGIFENCAP.S │ │ ├── SIOCGIFFLAGS.S │ │ ├── SIOCGIFHWADDR.S │ │ ├── SIOCGIFINDEX.S │ │ ├── SIOCGIFMAP.S │ │ ├── SIOCGIFMEM.S │ │ ├── SIOCGIFMETRIC.S │ │ ├── SIOCGIFMTU.S │ │ ├── SIOCGIFNAME.S │ │ ├── SIOCGIFNETMASK.S │ │ ├── SIOCGIFPFLAGS.S │ │ ├── SIOCGIFSLAVE.S │ │ ├── SIOCGIFTXQLEN.S │ │ ├── SIOCGPGRP.S │ │ ├── SIOCGRARP.S │ │ ├── SIOCGSTAMP.S │ │ ├── SIOCGSTAMPNS.S │ │ ├── SIOCPROTOPRIVATE.S │ │ ├── SIOCRTMSG.S │ │ ├── SIOCSARP.S │ │ ├── SIOCSIFADDR.S │ │ ├── SIOCSIFBR.S │ │ ├── SIOCSIFBRDADDR.S │ │ ├── SIOCSIFDSTADDR.S │ │ ├── SIOCSIFENCAP.S │ │ ├── SIOCSIFFLAGS.S │ │ ├── SIOCSIFHWADDR.S │ │ ├── SIOCSIFHWBROADCAST.S │ │ ├── SIOCSIFLINK.S │ │ ├── SIOCSIFMAP.S │ │ ├── SIOCSIFMEM.S │ │ ├── SIOCSIFMETRIC.S │ │ ├── SIOCSIFMTU.S │ │ ├── SIOCSIFNAME.S │ │ ├── SIOCSIFNETMASK.S │ │ ├── SIOCSIFPFLAGS.S │ │ ├── SIOCSIFSLAVE.S │ │ ├── SIOCSIFTXQLEN.S │ │ ├── SIOCSPGRP.S │ │ ├── SIOCSRARP.S │ │ ├── SIOGIFINDEX.S │ │ ├── SI_ASYNCIO.S │ │ ├── SI_ASYNCNL.S │ │ ├── SI_KERNEL.S │ │ ├── SI_MESGQ.S │ │ ├── SI_NOINFO.S │ │ ├── SI_QUEUE.S │ │ ├── SI_TIMER.S │ │ ├── SI_TKILL.S │ │ ├── SI_USER.S │ │ ├── SOCK_CLOEXEC.S │ │ ├── SOCK_DCCP.S │ │ ├── SOCK_DGRAM.S │ │ ├── SOCK_NONBLOCK.S │ │ ├── SOCK_PACKET.S │ │ ├── SOCK_RAW.S │ │ ├── SOCK_RDM.S │ │ ├── SOCK_SEQPACKET.S │ │ ├── SOCK_STREAM.S │ │ ├── SOL_AAL.S │ │ ├── SOL_ALG.S │ │ ├── SOL_ATM.S │ │ ├── SOL_BLUETOOTH.S │ │ ├── SOL_CAIF.S │ │ ├── SOL_DCCP.S │ │ ├── SOL_DECNET.S │ │ ├── SOL_ICMPV6.S │ │ ├── SOL_IP.S │ │ ├── SOL_IPV6.S │ │ ├── SOL_IRDA.S │ │ ├── SOL_IUCV.S │ │ ├── SOL_KCM.S │ │ ├── SOL_LLC.S │ │ ├── SOL_NETBEUI.S │ │ ├── SOL_NETLINK.S │ │ ├── SOL_NFC.S │ │ ├── SOL_PACKET.S │ │ ├── SOL_PNPIPE.S │ │ ├── SOL_PPPOL2TP.S │ │ ├── SOL_RAW.S │ │ ├── SOL_RDS.S │ │ ├── SOL_RXRPC.S │ │ ├── SOL_SOCKET.S │ │ ├── SOL_TCP.S │ │ ├── SOL_TIPC.S │ │ ├── SOL_UDP.S │ │ ├── SOL_X25.S │ │ ├── SOMAXCONN.S │ │ ├── SO_ACCEPTCONN.S │ │ ├── SO_ATTACH_BPF.S │ │ ├── SO_ATTACH_FILTER.S │ │ ├── SO_ATTACH_REUSEPORT_CBPF.S │ │ ├── SO_ATTACH_REUSEPORT_EBPF.S │ │ ├── SO_BINDTODEVICE.S │ │ ├── SO_BPF_EXTENSIONS.S │ │ ├── SO_BROADCAST.S │ │ ├── SO_BSDCOMPAT.S │ │ ├── SO_BUSY_POLL.S │ │ ├── SO_CNX_ADVICE.S │ │ ├── SO_DEBUG.S │ │ ├── SO_DETACH_BPF.S │ │ ├── SO_DETACH_FILTER.S │ │ ├── SO_DOMAIN.S │ │ ├── SO_DONTLINGER.S │ │ ├── SO_DONTROUTE.S │ │ ├── SO_ERROR.S │ │ ├── SO_EXCLUSIVEADDRUSE.S │ │ ├── SO_GET_FILTER.S │ │ ├── SO_INCOMING_CPU.S │ │ ├── SO_KEEPALIVE.S │ │ ├── SO_LINGER.S │ │ ├── SO_LOCK_FILTER.S │ │ ├── SO_MARK.S │ │ ├── SO_MAX_PACING_RATE.S │ │ ├── SO_NOFCS.S │ │ ├── SO_NO_CHECK.S │ │ ├── SO_OOBINLINE.S │ │ ├── SO_PASSCRED.S │ │ ├── SO_PASSSEC.S │ │ ├── SO_PEEK_OFF.S │ │ ├── SO_PEERCRED.S │ │ ├── SO_PEERNAME.S │ │ ├── SO_PEERSEC.S │ │ ├── SO_PRIORITY.S │ │ ├── SO_PROTOCOL.S │ │ ├── SO_RCVBUF.S │ │ ├── SO_RCVBUFFORCE.S │ │ ├── SO_RCVLOWAT.S │ │ ├── SO_RCVTIMEO.S │ │ ├── SO_REUSEADDR.S │ │ ├── SO_REUSEPORT.S │ │ ├── SO_RXQ_OVFL.S │ │ ├── SO_SECURITY_AUTHENTICATION.S │ │ ├── SO_SECURITY_ENCRYPTION_NETWORK.S │ │ ├── SO_SECURITY_ENCRYPTION_TRANSPORT.S │ │ ├── SO_SELECT_ERR_QUEUE.S │ │ ├── SO_SETFIB.S │ │ ├── SO_SNDBUF.S │ │ ├── SO_SNDBUFFORCE.S │ │ ├── SO_SNDLOWAT.S │ │ ├── SO_SNDTIMEO.S │ │ ├── SO_TIMESTAMP.S │ │ ├── SO_TIMESTAMPING.S │ │ ├── SO_TIMESTAMPNS.S │ │ ├── SO_TYPE.S │ │ ├── SO_USELOOPBACK.S │ │ ├── SO_WIFI_STATUS.S │ │ ├── SPLICE_F_GIFT.S │ │ ├── SPLICE_F_MORE.S │ │ ├── SPLICE_F_MOVE.S │ │ ├── SPLICE_F_NONBLOCK.S │ │ ├── SS_DISABLE.S │ │ ├── SS_ONSTACK.S │ │ ├── ST_APPEND.S │ │ ├── ST_IMMUTABLE.S │ │ ├── ST_MANDLOCK.S │ │ ├── ST_NOATIME.S │ │ ├── ST_NODEV.S │ │ ├── ST_NODIRATIME.S │ │ ├── ST_NOEXEC.S │ │ ├── ST_NOSUID.S │ │ ├── ST_RDONLY.S │ │ ├── ST_RELATIME.S │ │ ├── ST_SYNCHRONOUS.S │ │ ├── ST_WRITE.S │ │ ├── SUBCMDMASK.S │ │ ├── SUBCMDSHIFT.S │ │ ├── SYMTYPE.S │ │ ├── SYNC_FILE_RANGE_WAIT_AFTER.S │ │ ├── SYNC_FILE_RANGE_WAIT_BEFORE.S │ │ ├── SYNC_FILE_RANGE_WRITE.S │ │ ├── SYS_SECCOMP.S │ │ ├── SYS_USER_DISPATCH.S │ │ ├── TAB1.S │ │ ├── TAB2.S │ │ ├── TAB3.S │ │ ├── TABDLY.S │ │ ├── TCGETS.S │ │ ├── TCIFLUSH.S │ │ ├── TCIOFLUSH.S │ │ ├── TCOFLUSH.S │ │ ├── TCP_CC_INFO.S │ │ ├── TCP_CONGESTION.S │ │ ├── TCP_COOKIE_TRANSACTIONS.S │ │ ├── TCP_CORK.S │ │ ├── TCP_DEFER_ACCEPT.S │ │ ├── TCP_FASTOPEN.S │ │ ├── TCP_FASTOPEN_CONNECT.S │ │ ├── TCP_INFO.S │ │ ├── TCP_KEEPCNT.S │ │ ├── TCP_KEEPIDLE.S │ │ ├── TCP_KEEPINTVL.S │ │ ├── TCP_LINGER2.S │ │ ├── TCP_MAXSEG.S │ │ ├── TCP_MD5SIG.S │ │ ├── TCP_MD5SIG_MAXKEYLEN.S │ │ ├── TCP_NODELAY.S │ │ ├── TCP_NOTSENT_LOWAT.S │ │ ├── TCP_QUEUE_SEQ.S │ │ ├── TCP_QUICKACK.S │ │ ├── TCP_REPAIR.S │ │ ├── TCP_REPAIR_OPTIONS.S │ │ ├── TCP_REPAIR_QUEUE.S │ │ ├── TCP_SAVED_SYN.S │ │ ├── TCP_SAVE_SYN.S │ │ ├── TCP_SYNCNT.S │ │ ├── TCP_THIN_DUPACK.S │ │ ├── TCP_THIN_LINEAR_TIMEOUTS.S │ │ ├── TCP_TIMESTAMP.S │ │ ├── TCP_ULP.S │ │ ├── TCP_USER_TIMEOUT.S │ │ ├── TCP_WINDOW_CLAMP.S │ │ ├── TCSETS.S │ │ ├── TEST_UNIT_READY.S │ │ ├── TFD_CLOEXEC.S │ │ ├── TFD_NONBLOCK.S │ │ ├── TFD_TIMER_ABSTIME.S │ │ ├── TGEXEC.S │ │ ├── TGREAD.S │ │ ├── TGWRITE.S │ │ ├── TIOCCONS.S │ │ ├── TIOCGETD.S │ │ ├── TIOCGWINSZ.S │ │ ├── TIOCINQ.S │ │ ├── TIOCMBIC.S │ │ ├── TIOCMBIS.S │ │ ├── TIOCMGET.S │ │ ├── TIOCMODG.S │ │ ├── TIOCMODS.S │ │ ├── TIOCMSDTRWAIT.S │ │ ├── TIOCMSET.S │ │ ├── TIOCM_CAR.S │ │ ├── TIOCM_CD.S │ │ ├── TIOCM_CTS.S │ │ ├── TIOCM_DCD.S │ │ ├── TIOCM_DSR.S │ │ ├── TIOCM_DTR.S │ │ ├── TIOCM_LE.S │ │ ├── TIOCM_RI.S │ │ ├── TIOCM_RNG.S │ │ ├── TIOCM_RTS.S │ │ ├── TIOCM_SR.S │ │ ├── TIOCM_ST.S │ │ ├── TIOCNOTTY.S │ │ ├── TIOCNXCL.S │ │ ├── TIOCOUTQ.S │ │ ├── TIOCPKT.S │ │ ├── TIOCPKT_DATA.S │ │ ├── TIOCPKT_DOSTOP.S │ │ ├── TIOCPKT_FLUSHREAD.S │ │ ├── TIOCPKT_FLUSHWRITE.S │ │ ├── TIOCPKT_IOCTL.S │ │ ├── TIOCPKT_NOSTOP.S │ │ ├── TIOCPKT_START.S │ │ ├── TIOCPKT_STOP.S │ │ ├── TIOCSCTTY.S │ │ ├── TIOCSETD.S │ │ ├── TIOCSIG.S │ │ ├── TIOCSPGRP.S │ │ ├── TIOCSTI.S │ │ ├── TIOCSWINSZ.S │ │ ├── TMAGLEN.S │ │ ├── TOEXEC.S │ │ ├── TOREAD.S │ │ ├── TOSTOP.S │ │ ├── TOWRITE.S │ │ ├── TRANSIENT.S │ │ ├── TRAP_BRKPT.S │ │ ├── TRAP_TRACE.S │ │ ├── TSGID.S │ │ ├── TSUID.S │ │ ├── TSVTX.S │ │ ├── TTYDEF_CFLAG.S │ │ ├── TTYDEF_IFLAG.S │ │ ├── TTYDEF_LFLAG.S │ │ ├── TTYDEF_OFLAG.S │ │ ├── TTYDEF_SPEED.S │ │ ├── TUEXEC.S │ │ ├── TUREAD.S │ │ ├── TUWRITE.S │ │ ├── TVERSLEN.S │ │ ├── T_FMT.S │ │ ├── T_FMT_AMPM.S │ │ ├── UDP_ENCAP_ESPINUDP_NON_IKE.S │ │ ├── UDP_NO_CHECK6_RX.S │ │ ├── UDP_NO_CHECK6_TX.S │ │ ├── UL_GETFSIZE.S │ │ ├── UL_SETFSIZE.S │ │ ├── UMOUNT_NOFOLLOW.S │ │ ├── USRQUOTA.S │ │ ├── UTIME_NOW.S │ │ ├── UTIME_OMIT.S │ │ ├── VDISCARD.S │ │ ├── VEOF.S │ │ ├── VEOL.S │ │ ├── VEOL2.S │ │ ├── VERASE.S │ │ ├── VINTR.S │ │ ├── VKILL.S │ │ ├── VLNEXT.S │ │ ├── VMIN.S │ │ ├── VQUIT.S │ │ ├── VREPRINT.S │ │ ├── VSTART.S │ │ ├── VSTOP.S │ │ ├── VSUSP.S │ │ ├── VSWTC.S │ │ ├── VT1.S │ │ ├── VTDLY.S │ │ ├── VTIME.S │ │ ├── VWERASE.S │ │ ├── WCONTINUED.S │ │ ├── WEOF.S │ │ ├── WEXITED.S │ │ ├── WNOHANG.S │ │ ├── WNOWAIT.S │ │ ├── WORD_BIT.S │ │ ├── WRQ.S │ │ ├── WSTOPPED.S │ │ ├── WUNTRACED.S │ │ ├── W_OK.S │ │ ├── XATTR_CREATE.S │ │ ├── XATTR_REPLACE.S │ │ ├── XCASE.S │ │ ├── XTABS.S │ │ ├── X_OK.S │ │ ├── _ARG_MAX.S │ │ ├── _LINUX_QUOTA_VERSION.S │ │ ├── _NAME_MAX.S │ │ ├── _NSIG.S │ │ ├── _PATH_MAX.S │ │ ├── _POSIX_VDISABLE.S │ │ ├── _SEM_SEMUN_UNDEFINED.S │ │ ├── __NR__sysctl.S │ │ ├── __NR_accept.S │ │ ├── __NR_accept4.S │ │ ├── __NR_access.S │ │ ├── __NR_acct.S │ │ ├── __NR_add_key.S │ │ ├── __NR_adjtimex.S │ │ ├── __NR_alarm.S │ │ ├── __NR_arch_prctl.S │ │ ├── __NR_bind.S │ │ ├── __NR_bpf.S │ │ ├── __NR_capget.S │ │ ├── __NR_capset.S │ │ ├── __NR_chdir.S │ │ ├── __NR_chmod.S │ │ ├── __NR_chown.S │ │ ├── __NR_chroot.S │ │ ├── __NR_clock_adjtime.S │ │ ├── __NR_clock_getres.S │ │ ├── __NR_clock_gettime.S │ │ ├── __NR_clock_nanosleep.S │ │ ├── __NR_clock_settime.S │ │ ├── __NR_clone.S │ │ ├── __NR_close.S │ │ ├── __NR_connect.S │ │ ├── __NR_copy_file_range.S │ │ ├── __NR_cpuset_getaffinity.S │ │ ├── __NR_cpuset_setaffinity.S │ │ ├── __NR_creat.S │ │ ├── __NR_delete_module.S │ │ ├── __NR_dup.S │ │ ├── __NR_dup2.S │ │ ├── __NR_dup3.S │ │ ├── __NR_epoll_create.S │ │ ├── __NR_epoll_create1.S │ │ ├── __NR_epoll_ctl.S │ │ ├── __NR_epoll_pwait.S │ │ ├── __NR_epoll_wait.S │ │ ├── __NR_eventfd.S │ │ ├── __NR_eventfd2.S │ │ ├── __NR_execve.S │ │ ├── __NR_execveat.S │ │ ├── __NR_exit.S │ │ ├── __NR_exit_group.S │ │ ├── __NR_faccessat.S │ │ ├── __NR_fadvise.S │ │ ├── __NR_fallocate.S │ │ ├── __NR_fanotify_init.S │ │ ├── __NR_fanotify_mark.S │ │ ├── __NR_fchdir.S │ │ ├── __NR_fchmod.S │ │ ├── __NR_fchmodat.S │ │ ├── __NR_fchown.S │ │ ├── __NR_fchownat.S │ │ ├── __NR_fcntl.S │ │ ├── __NR_fdatasync.S │ │ ├── __NR_fgetxattr.S │ │ ├── __NR_finit_module.S │ │ ├── __NR_flistxattr.S │ │ ├── __NR_flock.S │ │ ├── __NR_fork.S │ │ ├── __NR_fremovexattr.S │ │ ├── __NR_fsetxattr.S │ │ ├── __NR_fstat.S │ │ ├── __NR_fstatat.S │ │ ├── __NR_fstatfs.S │ │ ├── __NR_fsync.S │ │ ├── __NR_ftruncate.S │ │ ├── __NR_futex.S │ │ ├── __NR_futimens.S │ │ ├── __NR_futimes.S │ │ ├── __NR_futimesat.S │ │ ├── __NR_get_mempolicy.S │ │ ├── __NR_get_robust_list.S │ │ ├── __NR_getcpu.S │ │ ├── __NR_getcwd.S │ │ ├── __NR_getdents.S │ │ ├── __NR_getegid.S │ │ ├── __NR_geteuid.S │ │ ├── __NR_getgid.S │ │ ├── __NR_getgroups.S │ │ ├── __NR_getitimer.S │ │ ├── __NR_getpeername.S │ │ ├── __NR_getpgid.S │ │ ├── __NR_getpgrp.S │ │ ├── __NR_getpid.S │ │ ├── __NR_getppid.S │ │ ├── __NR_getpriority.S │ │ ├── __NR_getrandom.S │ │ ├── __NR_getresgid.S │ │ ├── __NR_getresuid.S │ │ ├── __NR_getrlimit.S │ │ ├── __NR_getrusage.S │ │ ├── __NR_getsid.S │ │ ├── __NR_getsockname.S │ │ ├── __NR_getsockopt.S │ │ ├── __NR_gettid.S │ │ ├── __NR_gettimeofday.S │ │ ├── __NR_getuid.S │ │ ├── __NR_getxattr.S │ │ ├── __NR_init_module.S │ │ ├── __NR_inotify_add_watch.S │ │ ├── __NR_inotify_init.S │ │ ├── __NR_inotify_init1.S │ │ ├── __NR_inotify_rm_watch.S │ │ ├── __NR_io_cancel.S │ │ ├── __NR_io_destroy.S │ │ ├── __NR_io_getevents.S │ │ ├── __NR_io_pgetevents.S │ │ ├── __NR_io_setup.S │ │ ├── __NR_io_submit.S │ │ ├── __NR_io_uring_enter.S │ │ ├── __NR_io_uring_register.S │ │ ├── __NR_io_uring_setup.S │ │ ├── __NR_ioctl.S │ │ ├── __NR_ioperm.S │ │ ├── __NR_iopl.S │ │ ├── __NR_ioprio_get.S │ │ ├── __NR_ioprio_set.S │ │ ├── __NR_kcmp.S │ │ ├── __NR_kexec_file_load.S │ │ ├── __NR_kexec_load.S │ │ ├── __NR_keyctl.S │ │ ├── __NR_kill.S │ │ ├── __NR_killpg.S │ │ ├── __NR_ktrace.S │ │ ├── __NR_lchown.S │ │ ├── __NR_lgetxattr.S │ │ ├── __NR_link.S │ │ ├── __NR_linkat.S │ │ ├── __NR_listen.S │ │ ├── __NR_listxattr.S │ │ ├── __NR_llistxattr.S │ │ ├── __NR_lookup_dcookie.S │ │ ├── __NR_lremovexattr.S │ │ ├── __NR_lseek.S │ │ ├── __NR_lsetxattr.S │ │ ├── __NR_lstat.S │ │ ├── __NR_madvise.S │ │ ├── __NR_mbind.S │ │ ├── __NR_membarrier.S │ │ ├── __NR_memfd_create.S │ │ ├── __NR_migrate_pages.S │ │ ├── __NR_mincore.S │ │ ├── __NR_mkdir.S │ │ ├── __NR_mkdirat.S │ │ ├── __NR_mkfifo.S │ │ ├── __NR_mkfifoat.S │ │ ├── __NR_mknod.S │ │ ├── __NR_mknodat.S │ │ ├── __NR_mlock.S │ │ ├── __NR_mlock2.S │ │ ├── __NR_mlockall.S │ │ ├── __NR_mmap.S │ │ ├── __NR_modify_ldt.S │ │ ├── __NR_mount.S │ │ ├── __NR_move_pages.S │ │ ├── __NR_mprotect.S │ │ ├── __NR_mq_getsetattr.S │ │ ├── __NR_mq_notify.S │ │ ├── __NR_mq_open.S │ │ ├── __NR_mq_timedreceive.S │ │ ├── __NR_mq_timedsend.S │ │ ├── __NR_mq_unlink.S │ │ ├── __NR_mremap.S │ │ ├── __NR_msgctl.S │ │ ├── __NR_msgget.S │ │ ├── __NR_msgrcv.S │ │ ├── __NR_msgsnd.S │ │ ├── __NR_msync.S │ │ ├── __NR_msyscall.S │ │ ├── __NR_munlock.S │ │ ├── __NR_munlockall.S │ │ ├── __NR_munmap.S │ │ ├── __NR_name_to_handle_at.S │ │ ├── __NR_nanosleep.S │ │ ├── __NR_open.S │ │ ├── __NR_open_by_handle_at.S │ │ ├── __NR_openat.S │ │ ├── __NR_pause.S │ │ ├── __NR_perf_event_open.S │ │ ├── __NR_personality.S │ │ ├── __NR_pidfd_send_signal.S │ │ ├── __NR_pipe.S │ │ ├── __NR_pipe2.S │ │ ├── __NR_pivot_root.S │ │ ├── __NR_pkey_alloc.S │ │ ├── __NR_pkey_free.S │ │ ├── __NR_pkey_mprotect.S │ │ ├── __NR_pledge.S │ │ ├── __NR_poll.S │ │ ├── __NR_posix_fallocate.S │ │ ├── __NR_posix_spawn.S │ │ ├── __NR_ppoll.S │ │ ├── __NR_prctl.S │ │ ├── __NR_pread.S │ │ ├── __NR_preadv.S │ │ ├── __NR_preadv2.S │ │ ├── __NR_prlimit.S │ │ ├── __NR_process_vm_readv.S │ │ ├── __NR_process_vm_writev.S │ │ ├── __NR_pselect.S │ │ ├── __NR_pselect6.S │ │ ├── __NR_ptrace.S │ │ ├── __NR_pwrite.S │ │ ├── __NR_pwritev.S │ │ ├── __NR_pwritev2.S │ │ ├── __NR_quotactl.S │ │ ├── __NR_read.S │ │ ├── __NR_readahead.S │ │ ├── __NR_readlink.S │ │ ├── __NR_readlinkat.S │ │ ├── __NR_readv.S │ │ ├── __NR_reboot.S │ │ ├── __NR_recvfrom.S │ │ ├── __NR_recvmmsg.S │ │ ├── __NR_recvmsg.S │ │ ├── __NR_removexattr.S │ │ ├── __NR_rename.S │ │ ├── __NR_renameat.S │ │ ├── __NR_renameat2.S │ │ ├── __NR_request_key.S │ │ ├── __NR_restart_syscall.S │ │ ├── __NR_rmdir.S │ │ ├── __NR_rseq.S │ │ ├── __NR_sched_get_priority_max.S │ │ ├── __NR_sched_get_priority_min.S │ │ ├── __NR_sched_getaffinity.S │ │ ├── __NR_sched_getattr.S │ │ ├── __NR_sched_getparam.S │ │ ├── __NR_sched_getscheduler.S │ │ ├── __NR_sched_rr_get_interval.S │ │ ├── __NR_sched_setaffinity.S │ │ ├── __NR_sched_setattr.S │ │ ├── __NR_sched_setparam.S │ │ ├── __NR_sched_setscheduler.S │ │ ├── __NR_sched_yield.S │ │ ├── __NR_seccomp.S │ │ ├── __NR_select.S │ │ ├── __NR_semctl.S │ │ ├── __NR_semget.S │ │ ├── __NR_semop.S │ │ ├── __NR_semtimedop.S │ │ ├── __NR_sendfile.S │ │ ├── __NR_sendmmsg.S │ │ ├── __NR_sendmsg.S │ │ ├── __NR_sendto.S │ │ ├── __NR_set_mempolicy.S │ │ ├── __NR_set_robust_list.S │ │ ├── __NR_set_tid_address.S │ │ ├── __NR_setdomainname.S │ │ ├── __NR_setfsgid.S │ │ ├── __NR_setfsuid.S │ │ ├── __NR_setgid.S │ │ ├── __NR_setgroups.S │ │ ├── __NR_sethostname.S │ │ ├── __NR_setitimer.S │ │ ├── __NR_setns.S │ │ ├── __NR_setpgid.S │ │ ├── __NR_setpriority.S │ │ ├── __NR_setregid.S │ │ ├── __NR_setresgid.S │ │ ├── __NR_setresuid.S │ │ ├── __NR_setreuid.S │ │ ├── __NR_setrlimit.S │ │ ├── __NR_setsid.S │ │ ├── __NR_setsockopt.S │ │ ├── __NR_settimeofday.S │ │ ├── __NR_setuid.S │ │ ├── __NR_setxattr.S │ │ ├── __NR_shmat.S │ │ ├── __NR_shmctl.S │ │ ├── __NR_shmdt.S │ │ ├── __NR_shmget.S │ │ ├── __NR_shutdown.S │ │ ├── __NR_sigaction.S │ │ ├── __NR_sigaltstack.S │ │ ├── __NR_signalfd.S │ │ ├── __NR_signalfd4.S │ │ ├── __NR_sigpending.S │ │ ├── __NR_sigprocmask.S │ │ ├── __NR_sigqueueinfo.S │ │ ├── __NR_sigsuspend.S │ │ ├── __NR_sigtimedwait.S │ │ ├── __NR_socket.S │ │ ├── __NR_socketpair.S │ │ ├── __NR_splice.S │ │ ├── __NR_stat.S │ │ ├── __NR_statfs.S │ │ ├── __NR_statx.S │ │ ├── __NR_swapoff.S │ │ ├── __NR_swapon.S │ │ ├── __NR_symlink.S │ │ ├── __NR_symlinkat.S │ │ ├── __NR_sync.S │ │ ├── __NR_sync_file_range.S │ │ ├── __NR_syncfs.S │ │ ├── __NR_sysfs.S │ │ ├── __NR_sysinfo.S │ │ ├── __NR_syslog.S │ │ ├── __NR_tee.S │ │ ├── __NR_tgkill.S │ │ ├── __NR_tgsigqueueinfo.S │ │ ├── __NR_timer_create.S │ │ ├── __NR_timer_delete.S │ │ ├── __NR_timer_getoverrun.S │ │ ├── __NR_timer_gettime.S │ │ ├── __NR_timer_settime.S │ │ ├── __NR_timerfd_create.S │ │ ├── __NR_timerfd_gettime.S │ │ ├── __NR_timerfd_settime.S │ │ ├── __NR_times.S │ │ ├── __NR_tkill.S │ │ ├── __NR_truncate.S │ │ ├── __NR_umask.S │ │ ├── __NR_umount2.S │ │ ├── __NR_uname.S │ │ ├── __NR_unlink.S │ │ ├── __NR_unlinkat.S │ │ ├── __NR_unshare.S │ │ ├── __NR_userfaultfd.S │ │ ├── __NR_ustat.S │ │ ├── __NR_utime.S │ │ ├── __NR_utimensat.S │ │ ├── __NR_utimes.S │ │ ├── __NR_vfork.S │ │ ├── __NR_vhangup.S │ │ ├── __NR_vmsplice.S │ │ ├── __NR_wait4.S │ │ ├── __NR_waitid.S │ │ ├── __NR_write.S │ │ ├── __NR_writev.S │ │ ├── _posix.h │ │ ├── af.h │ │ ├── alg.h │ │ ├── arch.h │ │ ├── arp.h │ │ ├── arphrd.h │ │ ├── at.h │ │ ├── audit.h │ │ ├── auxv.h │ │ ├── baud.internal.h │ │ ├── c.h │ │ ├── cap.h │ │ ├── clock.h │ │ ├── clone.h │ │ ├── close.h │ │ ├── dn.h │ │ ├── dt.h │ │ ├── endian.h │ │ ├── epoll.h │ │ ├── ethernet.h │ │ ├── ex.h │ │ ├── exit.h │ │ ├── f.h │ │ ├── falloc.h │ │ ├── fan.h │ │ ├── fbio.h │ │ ├── fd.h │ │ ├── fileno.h │ │ ├── fio.h │ │ ├── fs.h │ │ ├── futex.h │ │ ├── grnd.h │ │ ├── hwcap.h │ │ ├── icmp6.h │ │ ├── iff.h │ │ ├── in.h │ │ ├── inaddr.h │ │ ├── inet6.h │ │ ├── io.h │ │ ├── ioprio.h │ │ ├── iov.h │ │ ├── ip.h │ │ ├── ipport.h │ │ ├── ipproto.h │ │ ├── ipv6.h │ │ ├── itimer.h │ │ ├── kd.h │ │ ├── kern.h │ │ ├── l.h │ │ ├── limits.h │ │ ├── lio.h │ │ ├── lock.h │ │ ├── log.h │ │ ├── loglevel.h │ │ ├── madv.h │ │ ├── map.h │ │ ├── mcast.h │ │ ├── mfd.h │ │ ├── mlock.h │ │ ├── modem.h │ │ ├── mount.h │ │ ├── mremap.h │ │ ├── msg.h │ │ ├── msync.h │ │ ├── nr.h │ │ ├── nrlinux.h │ │ ├── o.h │ │ ├── ok.h │ │ ├── personality.h │ │ ├── pf.h │ │ ├── poll.h │ │ ├── posix.h │ │ ├── pr.h │ │ ├── prio.h │ │ ├── prot.h │ │ ├── pt.h │ │ ├── ptrace.h │ │ ├── pty.h │ │ ├── read.h │ │ ├── reboot.h │ │ ├── rlim.h │ │ ├── rlimit.h │ │ ├── rusage.h │ │ ├── s.h │ │ ├── sa.h │ │ ├── sched.h │ │ ├── scm.h │ │ ├── seek.h │ │ ├── sf.h │ │ ├── shm.h │ │ ├── shut.h │ │ ├── sicode.h │ │ ├── sig.h │ │ ├── sio.h │ │ ├── so.h │ │ ├── sock.h │ │ ├── sol.h │ │ ├── splice.h │ │ ├── ss.h │ │ ├── st.h │ │ ├── syscon.internal.h │ │ ├── tcp.h │ │ ├── tcpopt.h │ │ ├── termios.h │ │ ├── th.h │ │ ├── timer.h │ │ ├── uc.h │ │ ├── unmount.h │ │ ├── utime.h │ │ ├── w.h │ │ ├── waitid.h │ │ └── xopen.h │ ├── describeos.greg.c │ ├── dos2errno.sh │ ├── dos2errno │ │ ├── EACCES.S │ │ ├── EADDRINUSE.S │ │ ├── EADDRNOTAVAIL.S │ │ ├── EAGAIN.S │ │ ├── EBADF.S │ │ ├── ECONNABORTED.S │ │ ├── ECONNREFUSED.S │ │ ├── ECONNRESET.S │ │ ├── EDQUOT.S │ │ ├── EEXIST.S │ │ ├── EFAULT.S │ │ ├── EHOSTUNREACH.S │ │ ├── EINPROGRESS.S │ │ ├── EINTR.S │ │ ├── EINVAL.S │ │ ├── EISCONN.S │ │ ├── EMSGSIZE.S │ │ ├── ENAMETOOLONG.S │ │ ├── ENETDOWN.S │ │ ├── ENETUNREACH.S │ │ ├── ENOENT.S │ │ ├── ENOMEM.S │ │ ├── ENOSYS.S │ │ ├── ENOTEMPTY.S │ │ ├── ENOTSUP.S │ │ ├── EPIPE.S │ │ ├── ETIMEDOUT.S │ │ └── EWOULDBLOCK.S │ ├── errfun.S │ ├── errfun2.c │ ├── errfuns.h │ ├── errfuns.sh │ ├── errfuns │ │ ├── e2big.S │ │ ├── eacces.S │ │ ├── eaddrinuse.S │ │ ├── eaddrnotavail.S │ │ ├── eadv.S │ │ ├── eafnosupport.S │ │ ├── eagain.S │ │ ├── ealready.S │ │ ├── ebade.S │ │ ├── ebadf.S │ │ ├── ebadfd.S │ │ ├── ebadmsg.S │ │ ├── ebadr.S │ │ ├── ebadrqc.S │ │ ├── ebadslt.S │ │ ├── ebusy.S │ │ ├── ecanceled.S │ │ ├── echild.S │ │ ├── echrng.S │ │ ├── ecomm.S │ │ ├── econnaborted.S │ │ ├── econnrefused.S │ │ ├── econnreset.S │ │ ├── edeadlk.S │ │ ├── edestaddrreq.S │ │ ├── edom.S │ │ ├── edotdot.S │ │ ├── edquot.S │ │ ├── eexist.S │ │ ├── efault.S │ │ ├── efbig.S │ │ ├── ehostdown.S │ │ ├── ehostunreach.S │ │ ├── ehwpoison.S │ │ ├── eidrm.S │ │ ├── eilseq.S │ │ ├── einprogress.S │ │ ├── eintr.S │ │ ├── einval.S │ │ ├── eio.S │ │ ├── eisconn.S │ │ ├── eisdir.S │ │ ├── eisnam.S │ │ ├── ekeyexpired.S │ │ ├── ekeyrejected.S │ │ ├── ekeyrevoked.S │ │ ├── el2hlt.S │ │ ├── el2nsync.S │ │ ├── el3hlt.S │ │ ├── el3rst.S │ │ ├── elibacc.S │ │ ├── elibbad.S │ │ ├── elibexec.S │ │ ├── elibmax.S │ │ ├── elibscn.S │ │ ├── elnrng.S │ │ ├── eloop.S │ │ ├── emediumtype.S │ │ ├── emfile.S │ │ ├── emlink.S │ │ ├── emsgsize.S │ │ ├── emultihop.S │ │ ├── enametoolong.S │ │ ├── enavail.S │ │ ├── enetdown.S │ │ ├── enetreset.S │ │ ├── enetunreach.S │ │ ├── enfile.S │ │ ├── enoano.S │ │ ├── enobufs.S │ │ ├── enocsi.S │ │ ├── enodata.S │ │ ├── enodev.S │ │ ├── enoent.S │ │ ├── enoexec.S │ │ ├── enokey.S │ │ ├── enolck.S │ │ ├── enolink.S │ │ ├── enomedium.S │ │ ├── enomem.S │ │ ├── enomsg.S │ │ ├── enonet.S │ │ ├── enopkg.S │ │ ├── enoprotoopt.S │ │ ├── enospc.S │ │ ├── enosr.S │ │ ├── enostr.S │ │ ├── enosys.S │ │ ├── enotblk.S │ │ ├── enotconn.S │ │ ├── enotdir.S │ │ ├── enotempty.S │ │ ├── enotnam.S │ │ ├── enotrecoverable.S │ │ ├── enotsock.S │ │ ├── enotsup.S │ │ ├── enotty.S │ │ ├── enotuniq.S │ │ ├── enxio.S │ │ ├── eopnotsupp.S │ │ ├── eoverflow.S │ │ ├── eownerdead.S │ │ ├── eperm.S │ │ ├── epfnosupport.S │ │ ├── epipe.S │ │ ├── eproto.S │ │ ├── eprotonosupport.S │ │ ├── eprototype.S │ │ ├── erange.S │ │ ├── eremchg.S │ │ ├── eremote.S │ │ ├── eremoteio.S │ │ ├── erestart.S │ │ ├── erfkill.S │ │ ├── erofs.S │ │ ├── eshutdown.S │ │ ├── esocktnosupport.S │ │ ├── espipe.S │ │ ├── esrch.S │ │ ├── esrmnt.S │ │ ├── estale.S │ │ ├── estrpipe.S │ │ ├── etime.S │ │ ├── etimedout.S │ │ ├── etoomanyrefs.S │ │ ├── etxtbsy.S │ │ ├── euclean.S │ │ ├── eunatch.S │ │ ├── eusers.S │ │ ├── exdev.S │ │ └── exfull.S │ ├── errno.c │ ├── errno_location.greg.c │ ├── gen.sh │ ├── hostos.S │ ├── macros.internal.h │ ├── restorert.S │ ├── strace.greg.c │ ├── syscall.S │ ├── syscalls.sh │ ├── syscon.S │ ├── syscount.S │ ├── syslib.S │ ├── sysret.c │ ├── systemfive.S │ └── sysv.mk ├── testlib │ ├── almostequal.c │ ├── almostequalf.c │ ├── almostequallongdouble.c │ ├── bench.S │ ├── bench.h │ ├── benchrunner.c │ ├── binequals.c │ ├── blocktronics.S │ ├── blocktronics.h │ ├── blocktronics.txt │ ├── clearxmmregisters.c │ ├── combo.S │ ├── comborunner.c │ ├── contains.c │ ├── endswith.c │ ├── extract.c │ ├── ezbench.h │ ├── ezbenchcontrol.c │ ├── ezbenchreport.c │ ├── ezbenchwarn.c │ ├── fastrandomstring.h │ ├── fixture.S │ ├── fixturerunner.c │ ├── formatbinaryasglyphs.c │ ├── formatbinaryashex.c │ ├── formatbool.c │ ├── formatfloat.c │ ├── formatint.c │ ├── formatrange.c │ ├── formatstr.c │ ├── getcore.c │ ├── geterrno.c │ ├── getinterrupts.c │ ├── globals.c │ ├── hexequals.c │ ├── hyperion.S │ ├── hyperion.h │ ├── hyperion.txt │ ├── incrementfailed.c │ ├── memoryexists.c │ ├── moby.S │ ├── moby.h │ ├── moby.txt │ ├── polluteregisters.S │ ├── quota.c │ ├── runner.c │ ├── seterrno.c │ ├── shoulddebugbreak.c │ ├── showerror.c │ ├── startswith.c │ ├── strcaseequals.c │ ├── strequals.c │ ├── strerror.c │ ├── subprocess.h │ ├── testcase.S │ ├── testlib.h │ ├── testlib.mk │ ├── testmain.c │ ├── testrunner.c │ ├── thunks.c │ ├── viewables.S │ ├── viewables.h │ ├── viewables.txt │ ├── waitforexit.c │ ├── waitforterm.c │ └── yield.c ├── thread │ ├── README.md │ ├── freebsd.internal.h │ ├── makecontext.c │ ├── mktls.c │ ├── openbsd.internal.h │ ├── posixthread.internal.h │ ├── pthread_atfork.c │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getguardsize.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getsigmask_np.c │ ├── pthread_attr_getstack.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setguardsize.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setsigmask_np.c │ ├── pthread_attr_setstack.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_broadcast.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_timedwait.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_create.c │ ├── pthread_decimate_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getaffinity_np.c │ ├── pthread_getattr_np.c │ ├── pthread_getname_np.c │ ├── pthread_getschedparam.c │ ├── pthread_getthreadid_np.c │ ├── pthread_getunique_np.c │ ├── pthread_join.c │ ├── pthread_kill.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_orphan_np.c │ ├── pthread_reschedule.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setaffinity_np.c │ ├── pthread_setcanceltype.c │ ├── pthread_setname_np.c │ ├── pthread_setschedparam.c │ ├── pthread_setschedparam_freebsd.c │ ├── pthread_setschedprio.c │ ├── pthread_sigmask.c │ ├── pthread_timedjoin_np.c │ ├── pthread_tryjoin_np.c │ ├── pthread_ungarbage.c │ ├── pthread_zombify.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_path_np.c │ ├── sem_post.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_wait.c │ ├── semaphore.h │ ├── spawn.c │ ├── spawn.h │ ├── thread.h │ ├── thread.mk │ ├── thread2.h │ ├── tls.h │ ├── tls2.h │ ├── wait0.c │ ├── wait0.internal.h │ └── xnu.internal.h ├── time │ ├── asctime.c │ ├── clockstonanos.internal.h │ ├── ctime.c │ ├── ctime_r.c │ ├── difftime.c │ ├── dsleep.c │ ├── futimesat.c │ ├── iso8601.c │ ├── iso8601us.c │ ├── kmonthname.S │ ├── kmonthnameshort.S │ ├── kweekdayname.S │ ├── kweekdaynameshort.S │ ├── localtime.c │ ├── strftime.c │ ├── strptime.c │ ├── struct │ │ ├── timezone.h │ │ ├── tm.h │ │ ├── utimbuf.h │ │ └── utimbuf.internal.h │ ├── time.h │ ├── time.mk │ ├── times.c │ ├── timezone.c │ ├── tz.internal.h │ ├── tzfile.internal.h │ └── xiso8601.c ├── tinymath │ ├── LICENSE.fdlibm │ ├── LICENSE.freebsd │ ├── LICENSE.musl │ ├── LICENSE.openbsd │ ├── LICENSE.optimized-routines │ ├── README.cosmo │ ├── __cexp.c │ ├── __cexpf.c │ ├── __math_divzero.c │ ├── __math_divzerof.c │ ├── __math_invalid.c │ ├── __math_invalidf.c │ ├── __math_invalidl.c │ ├── __math_oflow.c │ ├── __math_oflowf.c │ ├── __math_uflow.c │ ├── __math_uflowf.c │ ├── __math_xflow.c │ ├── __math_xflowf.c │ ├── acos.c │ ├── acosf.c │ ├── acosh.c │ ├── acoshf.c │ ├── acoshl.c │ ├── acosl.c │ ├── asin.c │ ├── asinf.c │ ├── asinh.c │ ├── asinhf.c │ ├── asinhl.c │ ├── asinl.c │ ├── atan.c │ ├── atan2.c │ ├── atan2f.c │ ├── atan2l.c │ ├── atan_common.internal.h │ ├── atan_data.c │ ├── atan_data.internal.h │ ├── atanf.c │ ├── atanf_common.internal.h │ ├── atanf_data.c │ ├── atanf_data.internal.h │ ├── atanh.c │ ├── atanhf.c │ ├── atanhl.c │ ├── atanl.c │ ├── cabs.c │ ├── cabsf.c │ ├── cabsl.c │ ├── cacos.c │ ├── cacosf.c │ ├── cacosh.c │ ├── cacoshf.c │ ├── cacoshl.c │ ├── cacosl.c │ ├── carg.c │ ├── cargf.c │ ├── cargl.c │ ├── casin.c │ ├── casinf.c │ ├── casinh.c │ ├── casinhf.c │ ├── casinhl.c │ ├── casinl.c │ ├── catan.c │ ├── catanf.c │ ├── catanh.c │ ├── catanhf.c │ ├── catanhl.c │ ├── catanl.c │ ├── cbrt.c │ ├── cbrtf.c │ ├── cbrtl.c │ ├── ccos.c │ ├── ccosf.c │ ├── ccosh.c │ ├── ccoshf.c │ ├── ccoshl.c │ ├── ccosl.c │ ├── ceil.c │ ├── ceilf.c │ ├── ceill.c │ ├── cexp.c │ ├── cexpf.c │ ├── cexpl.c │ ├── cimag.c │ ├── cimagf.c │ ├── cimagl.c │ ├── clog.c │ ├── clogf.c │ ├── clogl.c │ ├── complex.internal.h │ ├── conj.c │ ├── conjf.c │ ├── conjl.c │ ├── copysign.c │ ├── copysignf.c │ ├── copysignl.c │ ├── cos.c │ ├── cosdf.c │ ├── cosf.c │ ├── cosh.c │ ├── coshf.c │ ├── coshl.c │ ├── cosl.c │ ├── cpow.c │ ├── cpowf.c │ ├── cpowl.c │ ├── cproj.c │ ├── cprojf.c │ ├── cprojl.c │ ├── creal.c │ ├── crealf.c │ ├── creall.c │ ├── csin.c │ ├── csinf.c │ ├── csinh.c │ ├── csinhf.c │ ├── csinhl.c │ ├── csinl.c │ ├── csqrt.c │ ├── csqrtf.c │ ├── csqrtl.c │ ├── ctan.c │ ├── ctanf.c │ ├── ctanh.c │ ├── ctanhf.c │ ├── ctanhl.c │ ├── ctanl.c │ ├── emod.h │ ├── emodl.h │ ├── erf.c │ ├── erff.c │ ├── estrin_wrap.internal.h │ ├── exp.c │ ├── exp10.c │ ├── exp10f.c │ ├── exp10l.c │ ├── exp2.c │ ├── exp2f.c │ ├── exp2f_data.c │ ├── exp2f_data.internal.h │ ├── exp2l.c │ ├── exp_data.c │ ├── exp_data.internal.h │ ├── expf.c │ ├── expl.c │ ├── expm1.c │ ├── expm1f.c │ ├── expm1l.c │ ├── expo.internal.h │ ├── expo2.c │ ├── expo2f.c │ ├── fabs.c │ ├── fabsf.c │ ├── fabsl.c │ ├── fdim.c │ ├── fdimf.c │ ├── fdiml.c │ ├── feval.internal.h │ ├── finite.c │ ├── finitef.c │ ├── finitel.c │ ├── floor.c │ ├── floorf.c │ ├── floorl.c │ ├── fma.c │ ├── fmaf.c │ ├── fmin.c │ ├── fminf.c │ ├── fminl.c │ ├── fmod.c │ ├── fmodf.c │ ├── fmodl.c │ ├── freebsd.internal.h │ ├── frexp.c │ ├── frexpf.c │ ├── frexpl.c │ ├── fsum.c │ ├── fsumf.c │ ├── gamma.c │ ├── horner.internal.h │ ├── horner_wrap.internal.h │ ├── hornerf.internal.h │ ├── hypot.c │ ├── hypotf.c │ ├── hypotl.c │ ├── ilogb.c │ ├── ilogbf.c │ ├── internal.h │ ├── invtrigl.c │ ├── invtrigl.internal.h │ ├── j0.c │ ├── j0f.c │ ├── j1.c │ ├── j1f.c │ ├── jn.c │ ├── jnf.c │ ├── kcos.c │ ├── kcosl.c │ ├── kernel.internal.h │ ├── kexpl.c │ ├── ksin.c │ ├── ksinl.c │ ├── ktan.c │ ├── ktanl.c │ ├── ldshape.internal.h │ ├── lgamma.c │ ├── lgamma_r.c │ ├── lgammaf.c │ ├── lgammaf_r.c │ ├── log.c │ ├── log10.c │ ├── log10f.c │ ├── log10l.c │ ├── log1p.c │ ├── log1pf.c │ ├── log1pf_data.c │ ├── log1pf_data.internal.h │ ├── log1pl.c │ ├── log2.c │ ├── log2_data.c │ ├── log2_data.internal.h │ ├── log2f.c │ ├── log2f_data.c │ ├── log2f_data.internal.h │ ├── log2l.c │ ├── log_data.c │ ├── log_data.internal.h │ ├── logb.c │ ├── logbf.c │ ├── logf.c │ ├── logf_data.c │ ├── logf_data.internal.h │ ├── logl.c │ ├── loglq.c │ ├── lrint.c │ ├── lrintf.c │ ├── lrintl.c │ ├── lround.c │ ├── lroundf.c │ ├── lroundl.c │ ├── magicu.c │ ├── magicu.h │ ├── measureentropy.c │ ├── modf.c │ ├── modff.c │ ├── modfl.c │ ├── nan.c │ ├── nanf.c │ ├── nanl.c │ ├── nearbyint.c │ ├── nearbyintf.c │ ├── nearbyintl.c │ ├── nextafter.c │ ├── nextafterf.c │ ├── nextafterl.c │ ├── nexttoward.c │ ├── nexttowardf.c │ ├── nexttowardl.c │ ├── polevll.c │ ├── pow.c │ ├── pow_data.c │ ├── pow_data.internal.h │ ├── powf.c │ ├── powf_data.c │ ├── powf_data.internal.h │ ├── powl.c │ ├── poz.c │ ├── randtest.c │ ├── remainder.c │ ├── remainderf.c │ ├── remainderl.c │ ├── rempio2.c │ ├── rempio2f.c │ ├── rempio2l.c │ ├── rempio2large.c │ ├── remquo.c │ ├── remquof.c │ ├── remquol.c │ ├── rint.c │ ├── rintf.c │ ├── rintl.c │ ├── round.c │ ├── roundf.c │ ├── roundl.c │ ├── scalb.c │ ├── scalbf.c │ ├── scalbln.c │ ├── scalblnf.c │ ├── signgam.c │ ├── significand.c │ ├── significandf.c │ ├── significandl.c │ ├── sin.c │ ├── sincos.c │ ├── sincosf.c │ ├── sincosf.internal.h │ ├── sincosf_data.c │ ├── sincosl.c │ ├── sindf.c │ ├── sinf.c │ ├── sinh.c │ ├── sinhf.c │ ├── sinhl.c │ ├── sinl.c │ ├── sqrt.c │ ├── sqrt_data.c │ ├── sqrtf.c │ ├── sqrtl.c │ ├── tan.c │ ├── tandf.c │ ├── tanf.c │ ├── tanh.c │ ├── tanhf.c │ ├── tanhl.c │ ├── tanl.c │ ├── tgamma.c │ ├── tgammaf.c │ ├── tinymath.mk │ ├── trunc.c │ ├── truncf.c │ └── truncl.c ├── type2str.h ├── vga │ ├── readv-vga.c │ ├── rlinit-init-vga.S │ ├── rlinit-vesa.S │ ├── tty-graph.c │ ├── tty-graph.inc │ ├── tty-klog.greg.c │ ├── tty.greg.c │ ├── vga-font-default.c │ ├── vga-init.greg.c │ ├── vga.internal.h │ ├── vga.mk │ └── writev-vga.c ├── x │ ├── bingblit.c │ ├── replaceuser.c │ ├── rmrf.c │ ├── tunbing.c │ ├── unbingbuf.c │ ├── unbingstr.c │ ├── utf16to32.c │ ├── utf16to8.c │ ├── utf32to8.c │ ├── utf8to16.c │ ├── utf8to32.c │ ├── x.h │ ├── x.mk │ ├── xasprintf.c │ ├── xasprintf.h │ ├── xbarf.c │ ├── xbasename.c │ ├── xcalloc.c │ ├── xdie.c │ ├── xdirname.c │ ├── xdtoa.c │ ├── xdtoaf.c │ ├── xdtoal.c │ ├── xfixpath.c │ ├── xgetline.c │ ├── xgetline.h │ ├── xhomedir.c │ ├── xiso8601.h │ ├── xjoinpaths.c │ ├── xload.c │ ├── xmalloc.c │ ├── xmemalign.c │ ├── xmemalignzero.c │ ├── xrealloc.c │ ├── xsigaction.c │ ├── xsigaction.h │ ├── xslurp.c │ ├── xspawn.c │ ├── xspawn.h │ ├── xstrcat.c │ ├── xstrdup.c │ ├── xstripext.c │ ├── xstripexts.c │ ├── xstrmul.c │ ├── xstrndup.c │ ├── xvalloc.c │ ├── xvasprintf.c │ ├── xvspawn.c │ └── xwrite.c ├── zip.internal.h └── zipos │ ├── .cosmo │ ├── access.c │ ├── close.c │ ├── fcntl.c │ ├── find.c │ ├── free.c │ ├── fstat.c │ ├── get.c │ ├── lock.c │ ├── lseek.c │ ├── mmap.c │ ├── notat.c │ ├── open.c │ ├── parseuri.c │ ├── read.c │ ├── stat-impl.c │ ├── stat.c │ ├── zipos.S │ ├── zipos.internal.h │ └── zipos.mk ├── net ├── finger │ ├── describesyn.c │ ├── finger.h │ ├── finger.mk │ ├── fingersyn.c │ ├── getosname.c │ └── getsynfingeros.c ├── http │ ├── categorizeip.c │ ├── csscolor.h │ ├── decodebase64.c │ ├── decodelatin1.c │ ├── encodebase64.c │ ├── encodehttpheadervalue.c │ ├── encodelatin1.c │ ├── encodeurl.c │ ├── escape.h │ ├── escapefragment.c │ ├── escapehost.c │ ├── escapehtml.c │ ├── escapeip.c │ ├── escapejsstringliteral.c │ ├── escapeparam.c │ ├── escapepass.c │ ├── escapepath.c │ ├── escapesegment.c │ ├── escapeurl.c │ ├── escapeurlview.c │ ├── escapeuser.c │ ├── findcontenttype.c │ ├── foldheader.c │ ├── formathttpdatetime.c │ ├── gethttpheader.c │ ├── gethttpheader.gperf │ ├── gethttpheader.inc │ ├── gethttpheadername.c │ ├── gethttpmethod.c │ ├── gethttpmethod.gperf │ ├── gethttpmethod.inc │ ├── gethttpreason.c │ ├── getipcategoryname.c │ ├── hascontrolcodes.c │ ├── headerhassubstring.c │ ├── http.h │ ├── http.mk │ ├── indentlines.c │ ├── ip.h │ ├── isacceptablehost.c │ ├── isacceptablepath.c │ ├── isacceptableport.c │ ├── isafrinicip.c │ ├── isanonymousip.c │ ├── isapnicip.c │ ├── isarinip.c │ ├── iscloudflare.c │ ├── isdodip.c │ ├── islacnicip.c │ ├── ismimetype.c │ ├── ismulticastip.c │ ├── isnocompressext.c │ ├── isreasonablepath.c │ ├── isripeip.c │ ├── istestnetip.c │ ├── isvalidcookievalue.c │ ├── isvalidhttptoken.c │ ├── kescapeauthority.c │ ├── kescapefragment.c │ ├── kescapeip.c │ ├── kescapeparam.c │ ├── kescapepath.c │ ├── kescapesegment.c │ ├── khostchars.c │ ├── khttpmethod.c │ ├── khttprepeatable.c │ ├── khttptoken.c │ ├── parsecidr.c │ ├── parsecontentlength.c │ ├── parseforwarded.c │ ├── parsehttpdatetime.c │ ├── parsehttpmessage.c │ ├── parsehttprange.c │ ├── parseip.c │ ├── parseurl.c │ ├── tokenbucket.c │ ├── tokenbucket.h │ ├── unchunk.c │ ├── underlong.c │ ├── url.h │ └── visualizecontrolcodes.c ├── https │ ├── certhashost.c │ ├── certhasip.c │ ├── chaincertificate.c │ ├── choosecertificatelifetime.c │ ├── describesslverifyfailure.c │ ├── finishcertificate.c │ ├── formatssltime.c │ ├── formatx509name.c │ ├── generatecertificateserial.c │ ├── generatehardrandom.c │ ├── getentropy.c │ ├── getsslcachefile.c │ ├── getsslroots.c │ ├── https.h │ ├── https.mk │ ├── initializekey.c │ ├── initializerng.c │ ├── isselfsigned.c │ ├── isservercert.c │ ├── logcertificate.c │ ├── sslcache.c │ ├── sslcache.h │ ├── sslroots.c │ ├── tlsdebug.c │ ├── tlsdie.c │ └── tlserror.c ├── net.mk └── turfwar │ ├── .init.lua │ ├── blackhole.c │ ├── blackholed.c │ ├── schema.sql │ ├── turfwar.c │ └── turfwar.mk ├── test ├── dsp │ ├── core │ │ ├── alaw_test.c │ │ ├── gamma_test.c │ │ ├── getintegercoefficients8_test.c │ │ ├── getintegercoefficients_test.c │ │ ├── illumination_test.c │ │ ├── inv3_test.c │ │ ├── mulaw_test.c │ │ ├── scalevolume_test.c │ │ └── test.mk │ ├── scale │ │ ├── magikarp_test.c │ │ ├── scale_test.c │ │ └── test.mk │ ├── test.mk │ └── tty │ │ ├── rgb2ansi_test.c │ │ ├── test.mk │ │ ├── ttymove_test.c │ │ ├── ttyraster_test.c │ │ └── windex_test.c ├── libc │ ├── calls │ │ ├── _timespec_test.c │ │ ├── access_test.c │ │ ├── chdir_test.c │ │ ├── clock_getres_test.c │ │ ├── clock_gettime_test.c │ │ ├── clock_nanosleep_test.c │ │ ├── closefrom_test.c │ │ ├── commandv_test.c │ │ ├── copy_file_range_test.c │ │ ├── diagnose_syscall_test.c │ │ ├── dup_test.c │ │ ├── execve_test.c │ │ ├── fcntl_test.c │ │ ├── fexecve_test.c │ │ ├── fileexists_test.c │ │ ├── ftruncate_test.c │ │ ├── getcontext_test.c │ │ ├── getcwd_test.c │ │ ├── getgroups_test.c │ │ ├── getitimer_test.c │ │ ├── getpriority_test.c │ │ ├── ioctl_test.c │ │ ├── life.c │ │ ├── lock2_test.c │ │ ├── lock_ofd_test.c │ │ ├── lock_test.c │ │ ├── lseek_test.c │ │ ├── makedirs_test.c │ │ ├── mkdir_test.c │ │ ├── mkntcmdline_test.c │ │ ├── mkntenvblock_test.c │ │ ├── mkntpath_test.c │ │ ├── open_test.c │ │ ├── openbsd_test.c │ │ ├── pipe_test.c │ │ ├── pledge2_test.c │ │ ├── pledge_test.c │ │ ├── poll_test.c │ │ ├── posix_fadvise_test.c │ │ ├── pread_test.c │ │ ├── preadv_test.c │ │ ├── printargs_test.c │ │ ├── pwrite_test.c │ │ ├── raise_race_test.c │ │ ├── raise_test.c │ │ ├── read_test.c │ │ ├── readansi_test.c │ │ ├── readlinkat_test.c │ │ ├── renameat_test.c │ │ ├── reservefd_test.c │ │ ├── sched_getaffinity_test.c │ │ ├── sched_setscheduler_test.c │ │ ├── seccomp_test.c │ │ ├── setitimer_test.c │ │ ├── setrlimit_test.c │ │ ├── sigaction_test.c │ │ ├── signal_test.c │ │ ├── sigpending_test.c │ │ ├── sigprocmask_test.c │ │ ├── sigsuspend_test.c │ │ ├── sigtimedwait_test.c │ │ ├── splice_test.c │ │ ├── stat_test.c │ │ ├── statfs_test.c │ │ ├── symlinkat_test.c │ │ ├── test.mk │ │ ├── tiny64.elf │ │ ├── tkill_test.c │ │ ├── unlinkat_test.c │ │ ├── unveil_test.c │ │ ├── utimensat_test.c │ │ ├── vfork_test.c │ │ ├── write_test.c │ │ ├── writev_test.c │ │ └── zipread.c │ ├── dns │ │ ├── comparednsnames_test.c │ │ ├── dnsheader_test.c │ │ ├── dnsquestion_test.c │ │ ├── parsehoststxt_test.c │ │ ├── parseresolvconf_test.c │ │ ├── pascalifydnsname_test.c │ │ ├── prototxt_test.c │ │ ├── resolvehostsreverse_test.c │ │ ├── resolvehoststxt_test.c │ │ ├── servicestxt_test.c │ │ └── test.mk │ ├── fmt │ │ ├── atoi_test.c │ │ ├── basename_test.c │ │ ├── dirname_test.c │ │ ├── formatbinary64_test.c │ │ ├── formatflex64_test.c │ │ ├── formathex64_test.c │ │ ├── formatint64_test.c │ │ ├── formatint64thousands_test.c │ │ ├── formatoctal32_test.c │ │ ├── formatoctal64_test.c │ │ ├── imaxdiv_test.c │ │ ├── itoa64radix16_test.c │ │ ├── lengthuint64_test.c │ │ ├── sizetol_test.c │ │ ├── sleb128_test.c │ │ ├── strerror_r_test.c │ │ ├── stripexts_test.c │ │ ├── test.mk │ │ ├── timevaltofiletime_test.c │ │ ├── uleb128_test.c │ │ ├── uleb64_test.c │ │ └── zleb64_test.c │ ├── intrin │ │ ├── bitreverse_test.c │ │ ├── countbits_test.c │ │ ├── describeflags_test.c │ │ ├── describegidlist_test.c │ │ ├── describesigset_test.c │ │ ├── dos2errno_test.c │ │ ├── fmax_test.c │ │ ├── formatint32_test.c │ │ ├── getenv_test.c │ │ ├── kprintf_test.c │ │ ├── lock_test.c │ │ ├── lockipc_test.c │ │ ├── lockscale_test.c │ │ ├── memcmp_test.c │ │ ├── memmove_test.c │ │ ├── memrchr_test.c │ │ ├── memset_test.c │ │ ├── morton_test.c │ │ ├── popcnt_test.c │ │ ├── pthread_atfork_test.c │ │ ├── pthread_mutex_lock2_test.c │ │ ├── pthread_mutex_lock_test.c │ │ ├── pthread_once_test.c │ │ ├── pthread_spin_lock_test.c │ │ ├── putenv_test.c │ │ ├── rand64_test.c │ │ ├── rounddown2pow_test.c │ │ ├── roundup2log_test.c │ │ ├── roundup2pow_test.c │ │ ├── sched_yield_test.c │ │ ├── strchr_test.c │ │ ├── strcmp_test.c │ │ ├── strlen_test.c │ │ ├── strrchr_test.c │ │ ├── strsignal_r_test.c │ │ └── test.mk │ ├── log │ │ ├── appendresourcereport_test.c │ │ ├── backtrace.c │ │ ├── backtrace_test.c │ │ └── test.mk │ ├── mem │ │ ├── arena_test.c │ │ ├── arraylist_test.c │ │ ├── bisectcarleft_test.c │ │ ├── critbit0_test.c │ │ ├── djbsort_test.c │ │ ├── malloc_test.c │ │ ├── prog │ │ │ ├── life.c │ │ │ └── sock.c │ │ ├── qsort_test.c │ │ ├── realloc_in_place_test.c │ │ ├── reverse_test.c │ │ ├── sortedints_test.c │ │ ├── strdup_test.c │ │ └── test.mk │ ├── nexgen32e │ │ ├── gclongjmp_test.c │ │ ├── kbase36_test.c │ │ ├── kcp437_test.c │ │ ├── lz4decode_test.c │ │ ├── memmove_test.c │ │ ├── memrchr_test.c │ │ ├── memset_test.c │ │ ├── strcaseconv_test.c │ │ ├── strcspn_test.c │ │ ├── strsak32_test.c │ │ └── test.mk │ ├── release │ │ ├── emulate.sh │ │ ├── metal.sh │ │ ├── smoke.c │ │ ├── smokecxx.cc │ │ └── test.mk │ ├── runtime │ │ ├── abort_test.c │ │ ├── clone_test.c │ │ ├── daemon_test.c │ │ ├── exit_test.c │ │ ├── fork_test.c │ │ ├── ftrace_test.c │ │ ├── getdosargv_test.c │ │ ├── getdosenviron_test.c │ │ ├── grow_test.c │ │ ├── itsatrap_test.c │ │ ├── memtrack_test.c │ │ ├── mmap_test.c │ │ ├── mprotect_test.c │ │ ├── msync_test.c │ │ ├── munmap_test.c │ │ ├── prog │ │ │ └── ftraceasm.c │ │ ├── sigsetjmp_test.c │ │ ├── test.mk │ │ └── tls_test.c │ ├── sock │ │ ├── inet_ntoa_test.c │ │ ├── inet_ntop_test.c │ │ ├── inet_pton_test.c │ │ ├── nointernet_test.c │ │ ├── select_test.c │ │ ├── sendfile_test.c │ │ ├── sendrecvmsg_test.c │ │ ├── setsockopt_test.c │ │ ├── socket_test.c │ │ ├── socketpair_test.c │ │ ├── test.mk │ │ └── unix_test.c │ ├── stdio │ │ ├── crypt_test.c │ │ ├── devrand_test.c │ │ ├── dirstream_test.c │ │ ├── dtoa_test.c │ │ ├── dumphexc_test.c │ │ ├── ecvt_test.c │ │ ├── fgetln_test.c │ │ ├── fgets_test.c │ │ ├── fgetwc_test.c │ │ ├── fmemopen_test.c │ │ ├── fmt_test.c │ │ ├── fprintf_test.c │ │ ├── fputc_test.c │ │ ├── fputs_test.c │ │ ├── fread_test.c │ │ ├── freopen_test.c │ │ ├── fseeko_test.c │ │ ├── ftell_test.c │ │ ├── fwrite_test.c │ │ ├── getdelim_test.c │ │ ├── getentropy_test.c │ │ ├── getrandom_test.c │ │ ├── gz_test.c │ │ ├── iconv_test.c │ │ ├── joinstrlist_test.c │ │ ├── memory_test.c │ │ ├── mkostempsm_test.c │ │ ├── mt19937_test.c │ │ ├── palandprintf_test.c │ │ ├── popen_test.c │ │ ├── posix_spawn_test.c │ │ ├── rand_test.c │ │ ├── rngset_test.c │ │ ├── snprintf_test.c │ │ ├── sprintf_s.inc │ │ ├── sprintf_s_test.c │ │ ├── sscanf_test.c │ │ ├── system_test.c │ │ ├── test.mk │ │ ├── tmpfile_test.c │ │ ├── ungetc_test.c │ │ └── vappendf_test.c │ ├── str │ │ ├── a64l_test.c │ │ ├── blake2_test.c │ │ ├── blake2b256_tests.txt │ │ ├── bsr_test.c │ │ ├── bzero_test.c │ │ ├── classifypath_test.c │ │ ├── crc32c_test.c │ │ ├── crc32z_test.c │ │ ├── hexpcpy_test.c │ │ ├── highwayhash64_test.c │ │ ├── isutf8_test.c │ │ ├── longsort_test.c │ │ ├── memcasecmp_test.c │ │ ├── memccpy_test.c │ │ ├── memcpy_test.c │ │ ├── memfrob_test.c │ │ ├── memmem_test.c │ │ ├── memrchr16_test.c │ │ ├── regex_test.c │ │ ├── setlocale_test.c │ │ ├── str_test.c │ │ ├── strcasecmp_test.c │ │ ├── strcasestr_test.c │ │ ├── strcat_test.c │ │ ├── strcpy_test.c │ │ ├── strlcpy_test.c │ │ ├── strnwidth_test.c │ │ ├── strpbrk_test.c │ │ ├── strstr_test.c │ │ ├── strtok_r_test.c │ │ ├── strtolower_test.c │ │ ├── test.mk │ │ ├── towupper_test.c │ │ ├── tpenc_test.c │ │ ├── tprecode16to8_test.c │ │ ├── tprecode8to16_test.c │ │ ├── wcsrchr_test.c │ │ ├── wcwidth_test.c │ │ └── wmemrchr_test.c │ ├── test.mk │ ├── thread │ │ ├── makecontext_test.c │ │ ├── nsync_test.c │ │ ├── pthread_attr_setsigmask_np_test.c │ │ ├── pthread_barrier_wait_test.c │ │ ├── pthread_cancel_test.c │ │ ├── pthread_cond_signal_test.c │ │ ├── pthread_create_test.c │ │ ├── pthread_detach_test.c │ │ ├── pthread_exit_test.c │ │ ├── pthread_key_create_test.c │ │ ├── pthread_kill_test.c │ │ ├── pthread_rwlock_rdlock_test.c │ │ ├── pthread_setname_np_test.c │ │ ├── sem_open_test.c │ │ ├── sem_timedwait_test.c │ │ ├── spawn_test.c │ │ └── test.mk │ ├── time │ │ ├── clock_gettime_test.c │ │ ├── iso8601_test.c │ │ ├── strftime_test.c │ │ └── test.mk │ ├── tinymath │ │ ├── acos_test.c │ │ ├── acosh_test.c │ │ ├── asin_test.c │ │ ├── asinh_test.c │ │ ├── atan2_test.c │ │ ├── atan2l_test.c │ │ ├── atan_test.c │ │ ├── atanh_test.c │ │ ├── cbrt_test.c │ │ ├── ceil_test.c │ │ ├── complex_test.c │ │ ├── copysign_test.c │ │ ├── cos_test.c │ │ ├── cosh_test.c │ │ ├── csqrt_test.c │ │ ├── erf_test.c │ │ ├── exp10_test.c │ │ ├── exp2_test.c │ │ ├── exp2l_test.c │ │ ├── exp_test.c │ │ ├── expm1_test.c │ │ ├── fabs_test.c │ │ ├── floor_test.c │ │ ├── fmod_test.c │ │ ├── fsum_test.c │ │ ├── gamma_test.c │ │ ├── hypot_test.c │ │ ├── ilogb_test.c │ │ ├── ldexp_test.c │ │ ├── log10_test.c │ │ ├── log1p_test.c │ │ ├── log2_test.c │ │ ├── log_test.c │ │ ├── logb_test.c │ │ ├── magicu_test.c │ │ ├── measureentropy_test.c │ │ ├── pow10_test.c │ │ ├── powl_test.c │ │ ├── remainder_test.c │ │ ├── round_test.c │ │ ├── sin_test.c │ │ ├── sincos_test.c │ │ ├── sinh_test.c │ │ ├── sqrt_test.c │ │ ├── strtod_test.c │ │ ├── tan_test.c │ │ ├── tanh_test.c │ │ ├── test.mk │ │ ├── tgamma_test.c │ │ └── trunc_test.c │ ├── x │ │ ├── test.mk │ │ ├── utf16to32_test.c │ │ ├── utf16to8_test.c │ │ ├── utf8to16_test.c │ │ ├── utf8to32_test.c │ │ ├── xasprintf_test.c │ │ ├── xfixpath_test.c │ │ ├── xjoinpaths_test.c │ │ ├── xslurp_test.c │ │ └── xstrcat_test.c │ ├── xed │ │ ├── lib.h │ │ ├── test.mk │ │ ├── x86ild_lib.c │ │ ├── x86ild_popular_binary_test.c │ │ ├── x86ild_popular_cmov_test.c │ │ ├── x86ild_popular_i186_test.c │ │ ├── x86ild_popular_i386_test.c │ │ ├── x86ild_popular_i86_2_test.c │ │ ├── x86ild_popular_i86_test.c │ │ ├── x86ild_popular_logical_test.c │ │ ├── x86ild_popular_misc_test.c │ │ ├── x86ild_test.c │ │ └── x86ild_widenop_test.c │ └── zipos │ │ ├── open_test.c │ │ └── test.mk ├── net │ ├── finger │ │ ├── describesyn_test.c │ │ ├── fingersyn_test.c │ │ └── test.mk │ ├── http │ │ ├── decodebase64_test.c │ │ ├── decodelatin1_test.c │ │ ├── encodebase64_test.c │ │ ├── encodehttpheadervalue_test.c │ │ ├── escapehtml_test.c │ │ ├── escapejsstringliteral_test.c │ │ ├── escapeurlparam_test.c │ │ ├── findcontenttype_test.c │ │ ├── formathttpdatetime_test.c │ │ ├── hascontrolcodes_test.c │ │ ├── indentlines_test.c │ │ ├── isacceptablehost_test.c │ │ ├── isacceptablepath_test.c │ │ ├── ismimetype_test.c │ │ ├── isnocompressext_test.c │ │ ├── isreasonablepath_test.c │ │ ├── parsecidr_test.c │ │ ├── parsecontentlength_test.c │ │ ├── parseforwarded_test.c │ │ ├── parsehttpdatetime_test.c │ │ ├── parsehttpmessage_test.c │ │ ├── parsehttprange_test.c │ │ ├── parseip_test.c │ │ ├── parseurl_test.c │ │ ├── test.mk │ │ ├── tokenbucket_test.c │ │ ├── unchunk_test.c │ │ ├── underlong_test.c │ │ └── visualizecontrolcodes_test.c │ ├── https │ │ ├── argon2_test.c │ │ ├── getciphersuite_test.c │ │ ├── mbedtls_test.c │ │ └── test.mk │ └── test.mk ├── test.mk └── tool │ ├── args │ ├── args_test.c │ └── test.mk │ ├── build │ ├── lib │ │ ├── asmdown_test.c │ │ ├── getargs_test.c │ │ ├── interner_test.c │ │ ├── javadown_test.c │ │ ├── stripcomponents_test.c │ │ └── test.mk │ ├── pledge_test.sh │ └── test.mk │ ├── net │ ├── argon2_test.lua │ ├── base64_test.lua │ ├── encodejson_test.lua │ ├── encodelua_test.lua │ ├── futex_test.lua │ ├── jsonorg_fail_test.lua │ ├── jsonorg_pass_test.lua │ ├── jsontestsuite_fail1_test.lua │ ├── jsontestsuite_fail2_test.lua │ ├── jsontestsuite_fail3_test.lua │ ├── jsontestsuite_fail4_test.lua │ ├── jsontestsuite_okay_test.lua │ ├── jsontestsuite_pass_test.lua │ ├── lfuncs_test.lua │ ├── ljson_test.lua │ ├── lre_test.lua │ ├── lua_test.lua │ ├── lunix_test.lua │ ├── mapshared_test.lua │ ├── md5_test.lua │ ├── path_test.lua │ ├── redbean_test.c │ ├── sha_test.lua │ ├── slurp_test.lua │ ├── spinlock_test.lua │ ├── sqlite_test.c │ └── test.mk │ ├── plinko │ ├── algebra_test.lisp │ ├── library_test.lisp │ ├── plinko_test.c │ └── test.mk │ ├── test.mk │ └── viz │ ├── lib │ ├── bilinearscale_test.c │ ├── convoindex_test.c │ ├── fun_test.c │ ├── halfblit_test.c │ ├── test.mk │ └── ycbcr2rgb2_test.c │ └── test.mk ├── third_party ├── aarch64 │ ├── aarch64.mk │ ├── acc_prof.internal.h │ ├── arm_acle.internal.h │ ├── arm_bf16.internal.h │ ├── arm_fp16.internal.h │ ├── arm_neon.internal.h │ ├── arm_sve.internal.h │ ├── openacc.internal.h │ └── upgrade.sh ├── argon2 │ ├── LICENSE │ ├── README.md │ ├── argon2.c │ ├── argon2.h │ ├── argon2.mk │ ├── blake2-impl.h │ ├── blake2.h │ ├── blake2b.c │ ├── blamka-round-ref.h │ ├── core.c │ ├── core.h │ ├── encoding.c │ ├── encoding.h │ └── ref.c ├── awk │ ├── LICENSE │ ├── README │ ├── README.cosmo │ ├── awk.1 │ ├── awk.h │ ├── awk.mk │ ├── awkgram.tab.c │ ├── awkgram.tab.h │ ├── awkgram.y │ ├── b.c │ ├── cmd.c │ ├── cmd.h │ ├── lex.c │ ├── lib.c │ ├── main.c │ ├── maketab.c │ ├── parse.c │ ├── proctab.c │ ├── reflow.awk │ ├── run.c │ └── tran.c ├── bzip2 │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── README.cosmo │ ├── blocksort.c │ ├── bz_internal_error.c │ ├── bzdiff │ ├── bzdiff.1 │ ├── bzgrep │ ├── bzgrep.1 │ ├── bzip2.1 │ ├── bzip2.1.txt │ ├── bzip2.c │ ├── bzip2.mk │ ├── bzip2.txt │ ├── bzip2recover.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.inc │ ├── bzmore │ ├── bzmore.1 │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── dlltest.dsp │ ├── entities.xml │ ├── format.pl │ ├── huffman.c │ ├── libbz2.dsp │ ├── makefile.msc │ ├── prepare-release.sh │ ├── randtable.c │ ├── release-update.sh │ ├── sample1.bz2 │ ├── sample1.ref │ ├── sample2.bz2 │ ├── sample2.ref │ ├── sample3.bz2 │ ├── sample3.ref │ ├── spewG.c │ ├── words0 │ ├── words1 │ ├── words2 │ └── words3 ├── chibicc │ ├── NOTICE │ ├── README.cosmo │ ├── README.md │ ├── alloc.c │ ├── as.c │ ├── as.main.c │ ├── asm.c │ ├── cast.c │ ├── chibicc.c │ ├── chibicc.h │ ├── chibicc.main.c │ ├── chibicc.mk │ ├── codegen.c │ ├── dox1.c │ ├── dox2.c │ ├── file.c │ ├── file.h │ ├── fpclassify.c │ ├── hashmap.c │ ├── help.txt │ ├── kw.c │ ├── kw.gperf │ ├── kw.h │ ├── kw.inc │ ├── parse.c │ ├── preprocess.c │ ├── printast.c │ ├── pybind.c │ ├── strarray.c │ ├── test │ │ ├── alignof_test.c │ │ ├── alloca_test.c │ │ ├── arith_test.c │ │ ├── asm_test.c │ │ ├── assert_test.c │ │ ├── atomic_test.c │ │ ├── attribute_test.c │ │ ├── bitfield_test.c │ │ ├── builtin_test.c │ │ ├── cast_test.c │ │ ├── common.c │ │ ├── compat_test.c │ │ ├── complit_test.c │ │ ├── const_test.c │ │ ├── constexpr_test.c │ │ ├── control_test.c │ │ ├── dce_test.c │ │ ├── decl_test.c │ │ ├── enum_test.c │ │ ├── extern_test.c │ │ ├── float_test.c │ │ ├── function_test.c │ │ ├── generic_test.c │ │ ├── implicit_test.c │ │ ├── include1.h │ │ ├── include2.h │ │ ├── include3.h │ │ ├── include4.h │ │ ├── initializer_test.c │ │ ├── int128_test.c │ │ ├── line_test.c │ │ ├── literal_test.c │ │ ├── macro_test.c │ │ ├── msabi_test.c │ │ ├── offsetof_test.c │ │ ├── pointer_test.c │ │ ├── pragma-once_test.c │ │ ├── sizeof_test.c │ │ ├── spinlock_test.c │ │ ├── string_test.c │ │ ├── struct_test.c │ │ ├── test.h │ │ ├── test.mk │ │ ├── tls_test.c.todo │ │ ├── typedef_test.c │ │ ├── typeof_test.c │ │ ├── unicode_test.c │ │ ├── union_test.c │ │ ├── usualconv_test.c │ │ ├── varargs_test.c │ │ ├── variable_test.c │ │ ├── vector_test.c │ │ └── vla_test.c │ ├── tokenize.c │ ├── type.c │ └── unicode.c ├── compiler_rt │ ├── absvdi2.c │ ├── absvsi2.c │ ├── absvti2.c │ ├── adddf3.c │ ├── addsf3.c │ ├── addtf3.c │ ├── ashldi3.c │ ├── ashrdi3.c │ ├── ashrti3.c │ ├── assembly.h │ ├── bswapdi2.c │ ├── bswapsi2.c │ ├── clzdi2.c │ ├── clzsi2.c │ ├── clzti2.c │ ├── cmpdi2.c │ ├── cmpti2.c │ ├── comparedf2.c │ ├── comparesf2.c │ ├── compiler_rt.mk │ ├── comprt.S │ ├── ctzdi2.c │ ├── ctzsi2.c │ ├── ctzti2.c │ ├── divdc3.c │ ├── divdf3.c │ ├── divdi3.c │ ├── divmoddi4.c │ ├── divmodsi4.c │ ├── divsc3.c │ ├── divsf3.c │ ├── divsi3.c │ ├── divtc3.c │ ├── divtf3.c │ ├── divxc3.c │ ├── extenddftf2.c │ ├── extendhfsf2.c │ ├── extendsfdf2.c │ ├── extendsftf2.c │ ├── ffsdi2.c │ ├── ffssi2.c │ ├── ffsti2.c │ ├── fixdfdi.c │ ├── fixdfsi.c │ ├── fixdfti.c │ ├── fixsfdi.c │ ├── fixsfsi.c │ ├── fixsfti.c │ ├── fixtfdi.c │ ├── fixtfsi.c │ ├── fixtfti.c │ ├── fixunsdfdi.c │ ├── fixunsdfsi.c │ ├── fixunsdfti.c │ ├── fixunssfdi.c │ ├── fixunssfsi.c │ ├── fixunssfti.c │ ├── fixunstfdi.c │ ├── fixunstfsi.c │ ├── fixunstfti.c │ ├── fixunsxfdi.c │ ├── fixunsxfsi.c │ ├── fixunsxfti.c │ ├── fixxfdi.c │ ├── fixxfti.c │ ├── floatdidf.c │ ├── floatdisf.c │ ├── floatditf.c │ ├── floatdixf.c │ ├── floatsidf.c │ ├── floatsisf.c │ ├── floatsitf.c │ ├── floattidf.c │ ├── floattisf.c │ ├── floattitf.c │ ├── floattixf.c │ ├── floatundidf.c │ ├── floatundisf.c │ ├── floatunditf.c │ ├── floatundixf.c │ ├── floatunsidf.c │ ├── floatunsisf.c │ ├── floatunsitf.c │ ├── floatuntidf.c │ ├── floatuntisf.c │ ├── floatuntitf.c │ ├── floatuntixf.c │ ├── fp_add_impl.inc │ ├── fp_extend_common.inc │ ├── fp_extend_impl.inc │ ├── fp_fixint_impl.inc │ ├── fp_fixuint_impl.inc │ ├── fp_lib.inc │ ├── fp_mul_impl.inc │ ├── fp_trunc.inc │ ├── fp_trunc_common.inc │ ├── fp_trunc_impl.inc │ ├── ilogbl.c │ ├── int_endianness.h │ ├── int_lib.h │ ├── int_math.h │ ├── int_types.h │ ├── int_util.h │ ├── logbl.c │ ├── lshrdi3.c │ ├── mingw_fixfloat.c │ ├── moddi3.c │ ├── modsi3.c │ ├── modti3.c │ ├── muldc3.c │ ├── muldf3.c │ ├── muldi3.c │ ├── mulsc3.c │ ├── mulsf3.c │ ├── multc3.c │ ├── multi3.c │ ├── mulxc3.c │ ├── negdf2.c │ ├── negdi2.c │ ├── negsf2.c │ ├── negti2.c │ ├── nexgen32e │ │ ├── chkstk.S │ │ ├── chkstk2.S │ │ ├── floatdidf.c │ │ ├── floatdisf.c │ │ ├── floatdixf.c │ │ ├── floatundidf.S │ │ ├── floatundisf.S │ │ └── floatundixf.S │ ├── os_version_check.c │ ├── paritydi2.c │ ├── paritysi2.c │ ├── parityti2.c │ ├── popcountdi2.c │ ├── popcountsi2.c │ ├── popcountti2.c │ ├── powidf2.c │ ├── powisf2.c │ ├── powitf2.c │ ├── powixf2.c │ ├── subdf3.c │ ├── subsf3.c │ ├── subtf3.c │ ├── truncdfhf2.c │ ├── truncdfsf2.c │ ├── truncsfhf2.c │ ├── trunctfdf2.c │ ├── trunctfsf2.c │ ├── ucmpdi2.c │ ├── ucmpti2.c │ ├── udivdi3.c │ ├── udivmoddi4.c │ ├── udivmodsi4.c │ ├── udivsi3.c │ ├── umoddi3.c │ ├── umodsi3.c │ └── umodti3.c ├── ctags │ ├── COPYING │ ├── README.cosmo │ ├── ant.c │ ├── args.c │ ├── args.h │ ├── asm.c │ ├── asp.c │ ├── awk.c │ ├── basic.c │ ├── beta.c │ ├── c.c │ ├── cobol.c │ ├── config.h │ ├── ctags.h │ ├── ctags.mk │ ├── debug.c │ ├── debug.h │ ├── dosbatch.c │ ├── eiffel.c │ ├── entry.c │ ├── entry.h │ ├── erlang.c │ ├── flex.c │ ├── fortran.c │ ├── general.h │ ├── get.c │ ├── get.h │ ├── go.c │ ├── html.c │ ├── jscript.c │ ├── keyword.c │ ├── keyword.h │ ├── lisp.c │ ├── lregex.c │ ├── lua.c │ ├── main.c │ ├── main.h │ ├── make.c │ ├── matlab.c │ ├── objc.c │ ├── ocaml.c │ ├── options.c │ ├── options.h │ ├── parse.c │ ├── parse.h │ ├── parsers.h │ ├── pascal.c │ ├── perl.c │ ├── php.c │ ├── python.c │ ├── read.c │ ├── read.h │ ├── readtags.c │ ├── readtags.h │ ├── rexx.c │ ├── routines.c │ ├── routines.h │ ├── ruby.c │ ├── scheme.c │ ├── sh.c │ ├── slang.c │ ├── sml.c │ ├── sort.c │ ├── sort.h │ ├── sql.c │ ├── strlist.c │ ├── strlist.h │ ├── tcl.c │ ├── tex.c │ ├── verilog.c │ ├── vhdl.c │ ├── vim.c │ ├── vstring.c │ ├── vstring.h │ └── yacc.c ├── dlmalloc │ ├── README │ ├── README.cosmo │ ├── binmaps.inc │ ├── chunks.inc │ ├── debugging.inc │ ├── debuglib.inc │ ├── directmap.inc │ ├── dlmalloc.c │ ├── dlmalloc.h │ ├── dlmalloc.mk │ ├── dlmalloc_abort.greg.c │ ├── global.inc │ ├── headfoot.inc │ ├── hooks.inc │ ├── indexing.inc │ ├── init.inc │ ├── locks.inc │ ├── management.inc │ ├── mspaces.inc │ ├── platform.inc │ ├── runtimechecks.inc │ ├── smallbins.inc │ ├── statistics.inc │ ├── system.inc │ ├── trees.inc │ ├── vespene.c │ └── vespene.internal.h ├── double-conversion │ ├── AUTHORS │ ├── LICENSE │ ├── README.cosmo │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── dc.mk │ ├── diy-fp.h │ ├── double-conversion.h │ ├── double-to-string.cc │ ├── double-to-string.h │ ├── fast-dtoa.cc │ ├── fast-dtoa.h │ ├── fixed-dtoa.cc │ ├── fixed-dtoa.h │ ├── ieee.h │ ├── string-to-double.cc │ ├── string-to-double.h │ ├── strtod.cc │ ├── strtod.h │ ├── test │ │ ├── cctest.cc │ │ ├── cctest.h │ │ ├── checks.h │ │ ├── gay-fixed.cc │ │ ├── gay-fixed.h │ │ ├── gay-precision.cc │ │ ├── gay-precision.h │ │ ├── gay-shortest-single.cc │ │ ├── gay-shortest-single.h │ │ ├── gay-shortest.cc │ │ ├── gay-shortest.h │ │ ├── test-bignum-dtoa.cc │ │ ├── test-bignum.cc │ │ ├── test-conversions.cc │ │ ├── test-diy-fp.cc │ │ ├── test-dtoa.cc │ │ ├── test-fast-dtoa.cc │ │ ├── test-fixed-dtoa.cc │ │ ├── test-ieee.cc │ │ ├── test-strtod.cc │ │ └── test.mk │ ├── utils.h │ ├── wrapper.cc │ └── wrapper.h ├── finger │ ├── display.c │ ├── finger.1 │ ├── finger.c │ ├── finger.h │ ├── finger.mk │ ├── lprint.c │ ├── net.c │ ├── sprint.c │ └── util.c ├── gcc │ ├── LICENSE.txt │ ├── README.cosmo │ ├── aarch64-linux-musl │ │ └── bin │ │ │ ├── ar.sym │ │ │ ├── as.sym │ │ │ ├── ld.bfd.gz │ │ │ ├── ld.sym │ │ │ ├── nm.sym │ │ │ ├── objcopy.sym │ │ │ ├── objdump.sym │ │ │ └── strip.sym │ ├── bin │ │ ├── aarch64-linux-musl-addr2line.gz │ │ ├── aarch64-linux-musl-ar.gz │ │ ├── aarch64-linux-musl-as.gz │ │ ├── aarch64-linux-musl-c++.sym │ │ ├── aarch64-linux-musl-c++filt.gz │ │ ├── aarch64-linux-musl-g++.gz │ │ ├── aarch64-linux-musl-gcc-nm.gz │ │ ├── aarch64-linux-musl-gcc.gz │ │ ├── aarch64-linux-musl-ld.bfd.sym │ │ ├── aarch64-linux-musl-ld.sym │ │ ├── aarch64-linux-musl-nm.gz │ │ ├── aarch64-linux-musl-objcopy.gz │ │ ├── aarch64-linux-musl-objdump.gz │ │ ├── aarch64-linux-musl-strip.gz │ │ ├── x86_64-linux-musl-addr2line.gz │ │ ├── x86_64-linux-musl-ar.gz │ │ ├── x86_64-linux-musl-as.gz │ │ ├── x86_64-linux-musl-c++.sym │ │ ├── x86_64-linux-musl-c++filt.gz │ │ ├── x86_64-linux-musl-g++.gz │ │ ├── x86_64-linux-musl-gcc-nm.gz │ │ ├── x86_64-linux-musl-gcc.gz │ │ ├── x86_64-linux-musl-ld.bfd.sym │ │ ├── x86_64-linux-musl-ld.sym │ │ ├── x86_64-linux-musl-nm.gz │ │ ├── x86_64-linux-musl-objcopy.gz │ │ ├── x86_64-linux-musl-objdump.gz │ │ └── x86_64-linux-musl-strip.gz │ ├── config.mak │ ├── lib │ │ └── gcc │ │ │ └── x86_64-linux-musl │ │ │ └── 11.2.0 │ │ │ └── specs │ ├── libexec │ │ └── gcc │ │ │ ├── aarch64-linux-musl │ │ │ └── 11.2.0 │ │ │ │ ├── as.sym │ │ │ │ ├── cc1.gz │ │ │ │ ├── cc1plus.gz │ │ │ │ ├── collect-ld.sym │ │ │ │ ├── collect2.gz │ │ │ │ └── ld.sym │ │ │ └── x86_64-linux-musl │ │ │ └── 11.2.0 │ │ │ ├── as.sym │ │ │ ├── cc1.gz │ │ │ ├── cc1plus.gz │ │ │ └── collect2.gz │ ├── portcosmo.patch │ ├── upgrade-cosmo-gcc.sh │ └── x86_64-linux-musl │ │ └── bin │ │ ├── ar.sym │ │ ├── as.sym │ │ ├── ld.bfd.gz │ │ ├── ld.sym │ │ ├── nm.sym │ │ ├── objcopy.sym │ │ ├── objdump.sym │ │ └── strip.sym ├── gdtoa │ ├── README │ ├── atof.c │ ├── dmisc.c │ ├── dtoa.c │ ├── g_Qfmt_p.c │ ├── g__fmt.c │ ├── g_ddfmt.c │ ├── g_ddfmt_p.c │ ├── g_dfmt.c │ ├── g_dfmt_p.c │ ├── g_ffmt.c │ ├── g_ffmt_p.c │ ├── g_xfmt.c │ ├── g_xfmt_p.c │ ├── gdtoa.c │ ├── gdtoa.h │ ├── gdtoa.internal.h │ ├── gdtoa.mk │ ├── gdtoa_fltrnds.inc │ ├── gethex.c │ ├── gmisc.c │ ├── hd_init.c │ ├── hexnan.c │ ├── lock.c │ ├── lock.h │ ├── misc.c │ ├── smisc.c │ ├── strtoId.c │ ├── strtoIdd.c │ ├── strtoIf.c │ ├── strtoIg.c │ ├── strtoIx.c │ ├── strtod.c │ ├── strtodI.c │ ├── strtodg.c │ ├── strtof.c │ ├── strtold.c │ ├── strtopd.c │ ├── strtopdd.c │ ├── strtopf.c │ ├── strtopx.c │ ├── strtord.c │ ├── strtordd.c │ ├── strtorf.c │ ├── strtorx.c │ ├── sum.c │ ├── ulp.c │ ├── wcstod.c │ ├── wcstof.c │ └── wcstold.c ├── getopt │ ├── README.txt │ ├── getopt.3 │ ├── getopt.c │ ├── getopt.internal.h │ ├── getopt.mk │ ├── getsubopt.c │ ├── long.c │ └── long.h ├── ggml │ ├── LICENSE │ ├── README.cosmo │ ├── common.cc │ ├── common.h │ ├── companionai.txt │ ├── fp16.c │ ├── fp16.h │ ├── fp16.internal.h │ ├── ggjt.v1.c │ ├── ggjt.v1.internal.h │ ├── ggjt.v1.q4_0.c │ ├── ggjt.v1.q4_0.h │ ├── ggjt.v1.q4_1.c │ ├── ggjt.v1.q4_1.h │ ├── ggjt.v1.q4_2.c │ ├── ggjt.v1.q4_2.h │ ├── ggjt.v1.q5_0.c │ ├── ggjt.v1.q5_0.h │ ├── ggjt.v1.q5_1.c │ ├── ggjt.v1.q5_1.h │ ├── ggjt.v1.q8_0.c │ ├── ggjt.v1.q8_0.h │ ├── ggjt.v1.q8_1.c │ ├── ggjt.v1.q8_1.h │ ├── ggjt.v2.c │ ├── ggjt.v2.internal.h │ ├── ggjt.v2.q4_0.c │ ├── ggjt.v2.q4_0.h │ ├── ggjt.v2.q4_1.c │ ├── ggjt.v2.q4_1.h │ ├── ggjt.v2.q5_0.c │ ├── ggjt.v2.q5_0.h │ ├── ggjt.v2.q5_1.c │ ├── ggjt.v2.q5_1.h │ ├── ggjt.v2.q8_0.c │ ├── ggjt.v2.q8_0.h │ ├── ggjt.v2.q8_1.c │ ├── ggjt.v2.q8_1.h │ ├── ggml.c │ ├── ggml.h │ ├── ggml.mk │ ├── llama.cc │ ├── llama.h │ ├── llama_util.h │ ├── main.cc │ ├── perplexity.cc │ └── quantize.cc ├── hiredis │ ├── COPYING │ ├── README.md │ ├── alloc.c │ ├── alloc.h │ ├── async.c │ ├── async.h │ ├── async_private.inc │ ├── dict.c │ ├── dict.h │ ├── hiredis.c │ ├── hiredis.h │ ├── hiredis.mk │ ├── net.c │ ├── net.h │ ├── read.c │ ├── read.h │ ├── sds.c │ ├── sds.h │ └── sdsalloc.h ├── intel │ ├── adxintrin.internal.h │ ├── ammintrin.internal.h │ ├── amxbf16intrin.internal.h │ ├── amxint8intrin.internal.h │ ├── amxtileintrin.internal.h │ ├── avx2intrin.internal.h │ ├── avx5124fmapsintrin.internal.h │ ├── avx5124vnniwintrin.internal.h │ ├── avx512bf16intrin.internal.h │ ├── avx512bf16vlintrin.internal.h │ ├── avx512bitalgintrin.internal.h │ ├── avx512bwintrin.internal.h │ ├── avx512cdintrin.internal.h │ ├── avx512dqintrin.internal.h │ ├── avx512erintrin.internal.h │ ├── avx512fintrin.internal.h │ ├── avx512ifmaintrin.internal.h │ ├── avx512ifmavlintrin.internal.h │ ├── avx512pfintrin.internal.h │ ├── avx512vbmi2intrin.internal.h │ ├── avx512vbmi2vlintrin.internal.h │ ├── avx512vbmiintrin.internal.h │ ├── avx512vbmivlintrin.internal.h │ ├── avx512vlbwintrin.internal.h │ ├── avx512vldqintrin.internal.h │ ├── avx512vlintrin.internal.h │ ├── avx512vnniintrin.internal.h │ ├── avx512vnnivlintrin.internal.h │ ├── avx512vp2intersectintrin.internal.h │ ├── avx512vp2intersectvlintrin.internal.h │ ├── avx512vpopcntdqintrin.internal.h │ ├── avx512vpopcntdqvlintrin.internal.h │ ├── avxintrin.internal.h │ ├── avxvnniintrin.internal.h │ ├── bmi2intrin.internal.h │ ├── bmiintrin.internal.h │ ├── cetintrin.internal.h │ ├── cldemoteintrin.internal.h │ ├── clflushoptintrin.internal.h │ ├── clwbintrin.internal.h │ ├── clzerointrin.internal.h │ ├── cpuid.internal.h │ ├── emmintrin.internal.h │ ├── enqcmdintrin.internal.h │ ├── f16cintrin.internal.h │ ├── fma4intrin.internal.h │ ├── fmaintrin.internal.h │ ├── fxsrintrin.internal.h │ ├── gfniintrin.internal.h │ ├── hresetintrin.internal.h │ ├── ia32intrin.internal.h │ ├── immintrin.internal.h │ ├── intel.mk │ ├── keylockerintrin.internal.h │ ├── lwpintrin.internal.h │ ├── lzcntintrin.internal.h │ ├── mm3dnow.internal.h │ ├── mm_malloc.internal.h │ ├── mmintrin.internal.h │ ├── movdirintrin.internal.h │ ├── mwaitxintrin.internal.h │ ├── nmmintrin.internal.h │ ├── pconfigintrin.internal.h │ ├── pkuintrin.internal.h │ ├── pmmintrin.internal.h │ ├── popcntintrin.internal.h │ ├── prfchwintrin.internal.h │ ├── rdseedintrin.internal.h │ ├── rtmintrin.internal.h │ ├── serializeintrin.internal.h │ ├── sgxintrin.internal.h │ ├── shaintrin.internal.h │ ├── smmintrin.internal.h │ ├── tbmintrin.internal.h │ ├── tmmintrin.internal.h │ ├── tsxldtrkintrin.internal.h │ ├── uintrintrin.internal.h │ ├── upgrade.sh │ ├── vaesintrin.internal.h │ ├── vpclmulqdqintrin.internal.h │ ├── waitpkgintrin.internal.h │ ├── wbnoinvdintrin.internal.h │ ├── wmmintrin.internal.h │ ├── x86gprintrin.internal.h │ ├── x86intrin.internal.h │ ├── xmmintrin.internal.h │ ├── xopintrin.internal.h │ ├── xsavecintrin.internal.h │ ├── xsaveintrin.internal.h │ ├── xsaveoptintrin.internal.h │ ├── xsavesintrin.internal.h │ └── xtestintrin.internal.h ├── libcxx │ ├── .clang-format │ ├── CREDITS.TXT │ ├── LICENSE.TXT │ ├── README.cosmo │ ├── __bit_reference │ ├── __bsd_locale_fallbacks.h │ ├── __config │ ├── __debug │ ├── __errc │ ├── __functional_base │ ├── __functional_base_03 │ ├── __hash_table │ ├── __locale │ ├── __mutex_base │ ├── __node_handle │ ├── __nullptr │ ├── __split_buffer │ ├── __sso_allocator │ ├── __std_stream │ ├── __string │ ├── __threading_support │ ├── __tree │ ├── __tuple │ ├── __undef_macros │ ├── algorithm │ ├── algorithm.cc │ ├── any │ ├── array │ ├── atomic │ ├── atomic_support.hh │ ├── bit │ ├── bitset │ ├── cassert │ ├── ccomplex │ ├── cctype │ ├── cerrno │ ├── cfenv │ ├── cfloat │ ├── charconv │ ├── charconv.cc │ ├── chrono │ ├── chrono.cc │ ├── cinttypes │ ├── ciso646 │ ├── climits │ ├── clocale │ ├── cmath │ ├── codecvt │ ├── compare │ ├── complex │ ├── condition_variable │ ├── condition_variable.cc │ ├── condition_variable_destructor.cc │ ├── config_elast.h │ ├── countof.internal.hh │ ├── csetjmp │ ├── csignal │ ├── cstdarg │ ├── cstdbool │ ├── cstddef │ ├── cstdint │ ├── cstdio │ ├── cstdlib │ ├── cstring │ ├── ctgmath │ ├── ctime │ ├── ctype.h │ ├── cwchar │ ├── cwctype │ ├── deque │ ├── directory_iterator.cc │ ├── errno.h │ ├── exception │ ├── exception.cc │ ├── exception_fallback.hh │ ├── exception_pointer_unimplemented.hh │ ├── execution │ ├── experimental │ │ └── __config │ ├── filesystem │ ├── filesystem_common.hh │ ├── forward_list │ ├── fstream │ ├── functional │ ├── functional.cc │ ├── future │ ├── future.cc │ ├── hash.cc │ ├── include │ │ ├── atomic_support.hh │ │ └── config_elast.hh │ ├── initializer_list │ ├── iomanip │ ├── ios │ ├── ios.cc │ ├── iosfwd │ ├── iostream │ ├── iostream.cc │ ├── istream │ ├── iterator │ ├── libcxx.mk │ ├── limits │ ├── limits.h │ ├── list │ ├── locale │ ├── locale.h │ ├── locale1.cc │ ├── locale2.cc │ ├── locale3.cc │ ├── locale4.cc │ ├── map │ ├── math.h │ ├── memory │ ├── memory.cc │ ├── mutex │ ├── mutex.cc │ ├── new │ ├── new.cc │ ├── new_handler_fallback.hh │ ├── numeric │ ├── operations.cc │ ├── optional │ ├── optional.cc │ ├── ostream │ ├── queue │ ├── random │ ├── random.cc │ ├── ratio │ ├── refstring.hh │ ├── regex │ ├── regex.cc │ ├── scoped_allocator │ ├── set │ ├── span │ ├── sstream │ ├── stack │ ├── stdexcept │ ├── stdexcept.cc │ ├── stdexcept_default.hh │ ├── stdio.h │ ├── stdlib.h │ ├── streambuf │ ├── string │ ├── string.cc │ ├── string.h │ ├── string_view │ ├── strstream │ ├── strstream.cc │ ├── system_error │ ├── system_error.cc │ ├── thread │ ├── thread.cc │ ├── tuple │ ├── type_traits │ ├── typeindex │ ├── typeinfo │ ├── unordered_map │ ├── unordered_set │ ├── utility │ ├── valarray │ ├── valarray.cc │ ├── variant │ ├── vector │ ├── vector.cc │ ├── version │ ├── wchar.h │ └── wctype.h ├── linenoise │ ├── LICENSE │ ├── README.cosmo │ ├── linenoise.c │ ├── linenoise.h │ └── linenoise.mk ├── lua │ ├── README.cosmo │ ├── cosmo.h │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.inc │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── llock.c │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.inc │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lrepl.c │ ├── lrepl.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltests.c │ ├── ltests.h │ ├── ltm.c │ ├── ltm.h │ ├── lua.h │ ├── lua.main.c │ ├── lua.mk │ ├── luac.main.c │ ├── luacallwithtrace.c │ ├── luaconf.h │ ├── luaencodejsondata.c │ ├── luaencodeluadata.c │ ├── luaencodeurl.c │ ├── luaformatstack.c │ ├── lualib.h │ ├── luaparseurl.c │ ├── luaprintstack.c │ ├── luapushheader.c │ ├── luapushheaders.c │ ├── luapushlatin1.c │ ├── luapushurlparams.c │ ├── lundump.c │ ├── lundump.h │ ├── lunix.c │ ├── lunix.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ ├── lzio.h │ ├── serialize.c │ ├── test │ │ ├── all.lua │ │ ├── api.lua │ │ ├── attrib.lua │ │ ├── big.lua │ │ ├── bitwise.lua │ │ ├── bwcoercion.lua │ │ ├── calls.lua │ │ ├── closure.lua │ │ ├── code.lua │ │ ├── constructs.lua │ │ ├── coroutine.lua │ │ ├── cstack.lua │ │ ├── db.lua │ │ ├── errors.lua │ │ ├── events.lua │ │ ├── files.lua │ │ ├── gc.lua │ │ ├── gengc.lua │ │ ├── goto.lua │ │ ├── heavy.lua │ │ ├── libs │ │ │ ├── P1 │ │ │ │ └── dummy │ │ │ ├── lib1.c │ │ │ ├── lib11.c │ │ │ ├── lib2.c │ │ │ ├── lib21.c │ │ │ ├── lib22.c │ │ │ └── makefile │ │ ├── literals.lua │ │ ├── locals.lua │ │ ├── main.lua │ │ ├── math.lua │ │ ├── nextvar.lua │ │ ├── packtests │ │ ├── pm.lua │ │ ├── sort.lua │ │ ├── strings.lua │ │ ├── tpack.lua │ │ ├── tracegc.lua │ │ ├── utf8.lua │ │ ├── vararg.lua │ │ └── verybig.lua │ ├── tms.h │ ├── visitor.c │ └── visitor.h ├── lz4cli │ ├── COPYING │ ├── README │ ├── bench.c │ ├── bench.h │ ├── datagen.c │ ├── datagen.h │ ├── lz4.1 │ ├── lz4.c │ ├── lz4.h │ ├── lz4cli.c │ ├── lz4cli.mk │ ├── lz4frame.c │ ├── lz4frame.h │ ├── lz4hc.c │ ├── lz4hc.h │ ├── lz4io.c │ ├── lz4io.h │ ├── platform.h │ ├── util.h │ ├── xxhash.c │ └── xxhash.h ├── make │ ├── AUTHORS │ ├── COPYING │ ├── README.cosmo │ ├── alloca.h │ ├── ar.c │ ├── arscan.c │ ├── basename-lgpl.c │ ├── commands.c │ ├── commands.h │ ├── concat-filename.c │ ├── concat-filename.h │ ├── config.h │ ├── debug.h │ ├── default.c │ ├── dep.h │ ├── dir.c │ ├── dirname-lgpl.c │ ├── dirname.h │ ├── dosname.h │ ├── error.c │ ├── error.h │ ├── exitfail.c │ ├── exitfail.h │ ├── expand.c │ ├── fcntl.c │ ├── fcntl.h │ ├── fd-hook.c │ ├── fd-hook.h │ ├── file.c │ ├── filedef.h │ ├── filename.h │ ├── findprog-in.c │ ├── findprog.h │ ├── function.c │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── getprogname.c │ ├── getprogname.h │ ├── gettext.h │ ├── gnumake.h │ ├── guile.c │ ├── hash.c │ ├── hash.h │ ├── implicit.c │ ├── intprops.h │ ├── job.c │ ├── job.h │ ├── load.c │ ├── loadapi.c │ ├── main.c │ ├── make.mk │ ├── makeint.inc │ ├── misc.c │ ├── os.h │ ├── output.c │ ├── output.h │ ├── posixos.c │ ├── read.c │ ├── remake.c │ ├── remote-stub.c │ ├── rule.c │ ├── rule.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── strcache.c │ ├── stripslash.c │ ├── unistd.c │ ├── unistd.h │ ├── variable.c │ ├── variable.h │ ├── version.c │ ├── vpath.c │ ├── xalloc-die.c │ ├── xalloc-oversized.h │ ├── xalloc.h │ ├── xconcat-filename.c │ └── xmalloc.c ├── maxmind │ ├── README.cosmo │ ├── getmetroname.c │ ├── maxmind.mk │ ├── maxminddb.c │ └── maxminddb.h ├── mbedtls │ ├── LICENSE │ ├── README.cosmo │ ├── aes.c │ ├── aes.h │ ├── aesce.c │ ├── aesce.h │ ├── aesni.c │ ├── aesni.h │ ├── asn1.h │ ├── asn1parse.c │ ├── asn1write.c │ ├── asn1write.h │ ├── base64.c │ ├── base64.h │ ├── bigmul.c │ ├── bigmul4.c │ ├── bignum.c │ ├── bignum.h │ ├── bignum_internal.h │ ├── bigshift.c │ ├── blake2b256.c │ ├── ccm.c │ ├── ccm.h │ ├── certs.c │ ├── certs.h │ ├── chacha20.c │ ├── chacha20.h │ ├── chachapoly.c │ ├── chachapoly.h │ ├── check.inc │ ├── chk.h │ ├── cipher.c │ ├── cipher.h │ ├── cipher_internal.h │ ├── cipher_wrap.c │ ├── common.h │ ├── config.h │ ├── ctr_drbg.c │ ├── ctr_drbg.h │ ├── debug.c │ ├── debug.h │ ├── des.c │ ├── des.h │ ├── describecode.c │ ├── dhm.c │ ├── dhm.h │ ├── ecdh.c │ ├── ecdh.h │ ├── ecdh_everest.c │ ├── ecdh_everest.h │ ├── ecdsa.c │ ├── ecdsa.h │ ├── ecp.c │ ├── ecp.h │ ├── ecp256.c │ ├── ecp384.c │ ├── ecp_curves.c │ ├── ecp_internal.h │ ├── ecpshl.c │ ├── endian.h │ ├── entropy.c │ ├── entropy.h │ ├── entropy_poll.c │ ├── entropy_poll.h │ ├── error.c │ ├── error.h │ ├── everest.c │ ├── everest.h │ ├── fastdiv.h │ ├── formatclientciphers.c │ ├── gcm.c │ ├── gcm.h │ ├── getalertdescription.c │ ├── getciphersuite.c │ ├── getciphersuitename.c │ ├── getsslstatename.c │ ├── hkdf.c │ ├── hkdf.h │ ├── hmac_drbg.c │ ├── hmac_drbg.h │ ├── iana.h │ ├── isciphersuitegood.c │ ├── karatsuba.c │ ├── math.h │ ├── mbedtls.mk │ ├── md.c │ ├── md.h │ ├── md5.c │ ├── md5.h │ ├── md5t.c │ ├── mdtype.c │ ├── memory_buffer_alloc.c │ ├── memory_buffer_alloc.h │ ├── net_sockets.c │ ├── net_sockets.h │ ├── nist_kw.c │ ├── nist_kw.h │ ├── oid.c │ ├── oid.h │ ├── param.c │ ├── pem.c │ ├── pem.h │ ├── pk.c │ ├── pk.h │ ├── pk_internal.h │ ├── pk_wrap.c │ ├── pkcs5.c │ ├── pkcs5.h │ ├── pkparse.c │ ├── pktype.c │ ├── pkwrite.c │ ├── platform.c │ ├── platform.h │ ├── poly1305.c │ ├── poly1305.h │ ├── profile.h │ ├── rando.c │ ├── rsa.c │ ├── rsa.h │ ├── rsa_internal.c │ ├── rsa_internal.h │ ├── san.c │ ├── san.h │ ├── secp256r1.c │ ├── secp384r1.c │ ├── select.h │ ├── sha1.c │ ├── sha1.h │ ├── sha1t.c │ ├── sha256.c │ ├── sha256.h │ ├── sha256t.c │ ├── sha512.c │ ├── sha512.h │ ├── sha512t.c │ ├── shakedescription.c │ ├── shiftright-avx.c │ ├── shiftright.c │ ├── sigalg.c │ ├── speed.sh │ ├── srtp.c │ ├── ssl.h │ ├── ssl_cache.c │ ├── ssl_cache.h │ ├── ssl_ciphersuites.c │ ├── ssl_ciphersuites.h │ ├── ssl_cli.c │ ├── ssl_cookie.c │ ├── ssl_cookie.h │ ├── ssl_internal.h │ ├── ssl_invasive.h │ ├── ssl_msg.c │ ├── ssl_srv.c │ ├── ssl_ticket.c │ ├── ssl_ticket.h │ ├── ssl_tls.c │ ├── ssl_tls13_keys.c │ ├── ssl_tls13_keys.h │ ├── test │ │ ├── data │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Readme-x509.txt │ │ │ ├── base64 │ │ │ │ ├── cli_cid.txt │ │ │ │ ├── cli_ciphersuite.txt │ │ │ │ ├── cli_def.txt │ │ │ │ ├── cli_min_cfg.txt │ │ │ │ ├── cli_no_alpn.txt │ │ │ │ ├── cli_no_keep_cert.txt │ │ │ │ ├── cli_no_mfl.txt │ │ │ │ ├── cli_no_packing.txt │ │ │ │ ├── def_b64_ff.bin │ │ │ │ ├── def_b64_too_big_1.txt │ │ │ │ ├── def_b64_too_big_2.txt │ │ │ │ ├── def_b64_too_big_3.txt │ │ │ │ ├── def_bad_b64.txt │ │ │ │ ├── empty.txt │ │ │ │ ├── mfl_1024.txt │ │ │ │ ├── mtu_10000.txt │ │ │ │ ├── srv_cid.txt │ │ │ │ ├── srv_ciphersuite.txt │ │ │ │ ├── srv_def.txt │ │ │ │ ├── srv_min_cfg.txt │ │ │ │ ├── srv_no_alpn.txt │ │ │ │ ├── srv_no_keep_cert.txt │ │ │ │ ├── srv_no_mfl.txt │ │ │ │ ├── srv_no_packing.txt │ │ │ │ └── v2.19.1.txt │ │ │ ├── bitstring-in-dn.pem │ │ │ ├── cert_example_multi.crt │ │ │ ├── cert_example_multi_nocn.crt │ │ │ ├── cert_example_wildcard.crt │ │ │ ├── cert_md2.crt │ │ │ ├── cert_md2.csr │ │ │ ├── cert_md4.crt │ │ │ ├── cert_md4.csr │ │ │ ├── cert_md5.crt │ │ │ ├── cert_md5.csr │ │ │ ├── cert_sha1.crt │ │ │ ├── cert_sha224.crt │ │ │ ├── cert_sha256.crt │ │ │ ├── cert_sha384.crt │ │ │ ├── cert_sha512.crt │ │ │ ├── cert_v1_with_ext.crt │ │ │ ├── cli-rsa-sha1.crt │ │ │ ├── cli-rsa-sha256-badalg.crt.der │ │ │ ├── cli-rsa-sha256.crt │ │ │ ├── cli-rsa-sha256.crt.der │ │ │ ├── cli-rsa-sha256.key.der │ │ │ ├── cli-rsa.key │ │ │ ├── cli-rsa.key.der │ │ │ ├── cli.opensslconf │ │ │ ├── cli2.crt │ │ │ ├── cli2.crt.der │ │ │ ├── cli2.key │ │ │ ├── cli2.key.der │ │ │ ├── crl-ec-sha1.pem │ │ │ ├── crl-ec-sha224.pem │ │ │ ├── crl-ec-sha256.pem │ │ │ ├── crl-ec-sha384.pem │ │ │ ├── crl-ec-sha512.pem │ │ │ ├── crl-future.pem │ │ │ ├── crl-futureRevocationDate.pem │ │ │ ├── crl-idp.pem │ │ │ ├── crl-idpnc.pem │ │ │ ├── crl-malformed-trailing-spaces.pem │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ ├── crl.pem │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ ├── crl_expired.pem │ │ │ ├── crl_md2.pem │ │ │ ├── crl_md4.pem │ │ │ ├── crl_md5.pem │ │ │ ├── crl_sha1.pem │ │ │ ├── crl_sha224.pem │ │ │ ├── crl_sha256.pem │ │ │ ├── crl_sha384.pem │ │ │ ├── crl_sha512.pem │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ ├── dh.1000.pem │ │ │ ├── dh.optlen.pem │ │ │ ├── dhparams.pem │ │ │ ├── dir-maxpath │ │ │ │ ├── 00.crt │ │ │ │ ├── 00.key │ │ │ │ ├── 01.crt │ │ │ │ ├── 01.key │ │ │ │ ├── 02.crt │ │ │ │ ├── 02.key │ │ │ │ ├── 03.crt │ │ │ │ ├── 03.key │ │ │ │ ├── 04.crt │ │ │ │ ├── 04.key │ │ │ │ ├── 05.crt │ │ │ │ ├── 05.key │ │ │ │ ├── 06.crt │ │ │ │ ├── 06.key │ │ │ │ ├── 07.crt │ │ │ │ ├── 07.key │ │ │ │ ├── 08.crt │ │ │ │ ├── 08.key │ │ │ │ ├── 09.crt │ │ │ │ ├── 09.key │ │ │ │ ├── 10.crt │ │ │ │ ├── 10.key │ │ │ │ ├── 11.crt │ │ │ │ ├── 11.key │ │ │ │ ├── 12.crt │ │ │ │ ├── 12.key │ │ │ │ ├── 13.crt │ │ │ │ ├── 13.key │ │ │ │ ├── 14.crt │ │ │ │ ├── 14.key │ │ │ │ ├── 15.crt │ │ │ │ ├── 15.key │ │ │ │ ├── 16.crt │ │ │ │ ├── 16.key │ │ │ │ ├── 17.crt │ │ │ │ ├── 17.key │ │ │ │ ├── 18.crt │ │ │ │ ├── 18.key │ │ │ │ ├── 19.crt │ │ │ │ ├── 19.key │ │ │ │ ├── 20.crt │ │ │ │ ├── 20.key │ │ │ │ ├── Readme.txt │ │ │ │ ├── c00.pem │ │ │ │ ├── c01.pem │ │ │ │ ├── c02.pem │ │ │ │ ├── c03.pem │ │ │ │ ├── c04.pem │ │ │ │ ├── c05.pem │ │ │ │ ├── c06.pem │ │ │ │ ├── c07.pem │ │ │ │ ├── c08.pem │ │ │ │ ├── c09.pem │ │ │ │ ├── c10.pem │ │ │ │ ├── c11.pem │ │ │ │ ├── c12.pem │ │ │ │ ├── c13.pem │ │ │ │ ├── c14.pem │ │ │ │ ├── c15.pem │ │ │ │ ├── c16.pem │ │ │ │ ├── c17.pem │ │ │ │ ├── c18.pem │ │ │ │ ├── c19.pem │ │ │ │ ├── c20.pem │ │ │ │ ├── int.opensslconf │ │ │ │ └── long.sh │ │ │ ├── dir1 │ │ │ │ └── test-ca.crt │ │ │ ├── dir2 │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir3 │ │ │ │ ├── Readme │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir4 │ │ │ │ ├── Readme │ │ │ │ ├── cert11.crt │ │ │ │ ├── cert12.crt │ │ │ │ ├── cert13.crt │ │ │ │ ├── cert14.crt │ │ │ │ ├── cert21.crt │ │ │ │ ├── cert22.crt │ │ │ │ ├── cert23.crt │ │ │ │ ├── cert31.crt │ │ │ │ ├── cert32.crt │ │ │ │ ├── cert33.crt │ │ │ │ ├── cert34.crt │ │ │ │ ├── cert41.crt │ │ │ │ ├── cert42.crt │ │ │ │ ├── cert43.crt │ │ │ │ ├── cert44.crt │ │ │ │ ├── cert45.crt │ │ │ │ ├── cert51.crt │ │ │ │ ├── cert52.crt │ │ │ │ ├── cert53.crt │ │ │ │ ├── cert54.crt │ │ │ │ ├── cert61.crt │ │ │ │ ├── cert62.crt │ │ │ │ ├── cert63.crt │ │ │ │ ├── cert71.crt │ │ │ │ ├── cert72.crt │ │ │ │ ├── cert73.crt │ │ │ │ ├── cert74.crt │ │ │ │ ├── cert81.crt │ │ │ │ ├── cert82.crt │ │ │ │ ├── cert83.crt │ │ │ │ ├── cert91.crt │ │ │ │ └── cert92.crt │ │ │ ├── ec_224_prv.pem │ │ │ ├── ec_224_pub.pem │ │ │ ├── ec_256_long_prv.pem │ │ │ ├── ec_256_prv.pem │ │ │ ├── ec_256_pub.pem │ │ │ ├── ec_384_prv.pem │ │ │ ├── ec_384_pub.pem │ │ │ ├── ec_521_prv.pem │ │ │ ├── ec_521_pub.pem │ │ │ ├── ec_521_short_prv.pem │ │ │ ├── ec_bp256_prv.pem │ │ │ ├── ec_bp256_pub.pem │ │ │ ├── ec_bp384_prv.pem │ │ │ ├── ec_bp384_pub.pem │ │ │ ├── ec_bp512_prv.pem │ │ │ ├── ec_bp512_pub.pem │ │ │ ├── ec_prv.pk8.der │ │ │ ├── ec_prv.pk8.pem │ │ │ ├── ec_prv.pk8.pw.der │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ ├── ec_prv.pk8nopub.der │ │ │ ├── ec_prv.pk8nopub.pem │ │ │ ├── ec_prv.pk8nopubparam.der │ │ │ ├── ec_prv.pk8nopubparam.pem │ │ │ ├── ec_prv.pk8param.der │ │ │ ├── ec_prv.pk8param.pem │ │ │ ├── ec_prv.sec1.der │ │ │ ├── ec_prv.sec1.pem │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ ├── ec_prv.specdom.der │ │ │ ├── ec_pub.der │ │ │ ├── ec_pub.pem │ │ │ ├── enco-ca-prstr.pem │ │ │ ├── enco-cert-utf8str.pem │ │ │ ├── format_gen.key │ │ │ ├── format_gen.pub │ │ │ ├── format_pkcs12.fmt │ │ │ ├── format_rsa.key │ │ │ ├── hash_file_1 │ │ │ ├── hash_file_2 │ │ │ ├── hash_file_3 │ │ │ ├── hash_file_4 │ │ │ ├── hash_file_5 │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ ├── mpi_10 │ │ │ ├── mpi_too_big │ │ │ ├── mpi_write │ │ │ ├── multiple_san.crt │ │ │ ├── non-ascii-string-in-issuer.crt │ │ │ ├── passwd.psk │ │ │ ├── print_c.pl │ │ │ ├── rsa4096_prv.pem │ │ │ ├── rsa4096_pub.pem │ │ │ ├── rsa512.key │ │ │ ├── rsa521.key │ │ │ ├── rsa522.key │ │ │ ├── rsa528.key │ │ │ ├── rsa_pkcs1_1024_3des.pem │ │ │ ├── rsa_pkcs1_1024_aes128.pem │ │ │ ├── rsa_pkcs1_1024_aes192.pem │ │ │ ├── rsa_pkcs1_1024_aes256.pem │ │ │ ├── rsa_pkcs1_1024_clear.pem │ │ │ ├── rsa_pkcs1_1024_des.pem │ │ │ ├── rsa_pkcs1_2048_3des.pem │ │ │ ├── rsa_pkcs1_2048_aes128.pem │ │ │ ├── rsa_pkcs1_2048_aes192.pem │ │ │ ├── rsa_pkcs1_2048_aes256.pem │ │ │ ├── rsa_pkcs1_2048_clear.pem │ │ │ ├── rsa_pkcs1_2048_des.pem │ │ │ ├── rsa_pkcs1_2048_public.der │ │ │ ├── rsa_pkcs1_2048_public.pem │ │ │ ├── rsa_pkcs1_4096_3des.pem │ │ │ ├── rsa_pkcs1_4096_aes128.pem │ │ │ ├── rsa_pkcs1_4096_aes192.pem │ │ │ ├── rsa_pkcs1_4096_aes256.pem │ │ │ ├── rsa_pkcs1_4096_clear.pem │ │ │ ├── rsa_pkcs1_4096_des.pem │ │ │ ├── rsa_pkcs8_1024_public.der │ │ │ ├── rsa_pkcs8_2048_public.der │ │ │ ├── rsa_pkcs8_2048_public.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem │ │ │ ├── server1-ms.req.sha256 │ │ │ ├── server1-nospace.crt │ │ │ ├── server1-v1.crt │ │ │ ├── server1.ca.crt │ │ │ ├── server1.ca.der │ │ │ ├── server1.ca_noauthid.crt │ │ │ ├── server1.cert_type.crt │ │ │ ├── server1.cert_type.crt.openssl.v3_ext │ │ │ ├── server1.cert_type_noauthid.crt │ │ │ ├── server1.crt │ │ │ ├── server1.crt.der │ │ │ ├── server1.crt.openssl.v3_ext │ │ │ ├── server1.csr │ │ │ ├── server1.der │ │ │ ├── server1.ext_ku.crt │ │ │ ├── server1.key │ │ │ ├── server1.key_usage.crt │ │ │ ├── server1.key_usage.crt.openssl.v3_ext │ │ │ ├── server1.key_usage_noauthid.crt │ │ │ ├── server1.noauthid.crt │ │ │ ├── server1.pubkey │ │ │ ├── server1.req.cert_type │ │ │ ├── server1.req.cert_type_empty │ │ │ ├── server1.req.key_usage │ │ │ ├── server1.req.key_usage_empty │ │ │ ├── server1.req.ku-ct │ │ │ ├── server1.req.md4 │ │ │ ├── server1.req.md5 │ │ │ ├── server1.req.sha1 │ │ │ ├── server1.req.sha224 │ │ │ ├── server1.req.sha256 │ │ │ ├── server1.req.sha384 │ │ │ ├── server1.req.sha512 │ │ │ ├── server1.v1.crt │ │ │ ├── server10-badsign.crt │ │ │ ├── server10-bs_int3.pem │ │ │ ├── server10.crt │ │ │ ├── server10.key │ │ │ ├── server10_int3-bs.pem │ │ │ ├── server10_int3_int-ca2.crt │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ ├── server10_int3_spurious_int-ca2.crt │ │ │ ├── server1_ca.crt │ │ │ ├── server1_csr.opensslconf │ │ │ ├── server1_pathlen_int_max-1.crt │ │ │ ├── server1_pathlen_int_max.crt │ │ │ ├── server2-badsign.crt │ │ │ ├── server2-sha256.crt │ │ │ ├── server2-sha256.crt.der │ │ │ ├── server2-v1-chain.crt │ │ │ ├── server2-v1.crt │ │ │ ├── server2.crt │ │ │ ├── server2.crt.der │ │ │ ├── server2.der │ │ │ ├── server2.key │ │ │ ├── server2.key.der │ │ │ ├── server2.key.enc │ │ │ ├── server2.ku-ds.crt │ │ │ ├── server2.ku-ds_ke.crt │ │ │ ├── server2.ku-ka.crt │ │ │ ├── server2.ku-ke.crt │ │ │ ├── server3.crt │ │ │ ├── server3.key │ │ │ ├── server4.crt │ │ │ ├── server4.key │ │ │ ├── server5-badsign.crt │ │ │ ├── server5-der0.crt │ │ │ ├── server5-der1a.crt │ │ │ ├── server5-der1b.crt │ │ │ ├── server5-der2.crt │ │ │ ├── server5-der4.crt │ │ │ ├── server5-der8.crt │ │ │ ├── server5-der9.crt │ │ │ ├── server5-expired.crt │ │ │ ├── server5-fan.crt │ │ │ ├── server5-future.crt │ │ │ ├── server5-othername.crt │ │ │ ├── server5-selfsigned.crt │ │ │ ├── server5-sha1.crt │ │ │ ├── server5-sha224.crt │ │ │ ├── server5-sha384.crt │ │ │ ├── server5-sha512.crt │ │ │ ├── server5-ss-expired.crt │ │ │ ├── server5-ss-forgeca.crt │ │ │ ├── server5-tricky-ip-san.crt │ │ │ ├── server5-unsupported_othername.crt │ │ │ ├── server5.crt │ │ │ ├── server5.crt.der │ │ │ ├── server5.eku-cli.crt │ │ │ ├── server5.eku-cs.crt │ │ │ ├── server5.eku-cs_any.crt │ │ │ ├── server5.eku-srv.crt │ │ │ ├── server5.eku-srv_cli.crt │ │ │ ├── server5.key │ │ │ ├── server5.key.der │ │ │ ├── server5.key.enc │ │ │ ├── server5.ku-ds.crt │ │ │ ├── server5.ku-ka.crt │ │ │ ├── server5.ku-ke.crt │ │ │ ├── server5.req.ku.sha1 │ │ │ ├── server5.req.sha1 │ │ │ ├── server5.req.sha224 │ │ │ ├── server5.req.sha256 │ │ │ ├── server5.req.sha384 │ │ │ ├── server5.req.sha512 │ │ │ ├── server6-ss-child.crt │ │ │ ├── server6.crt │ │ │ ├── server6.key │ │ │ ├── server7-badsign.crt │ │ │ ├── server7-expired.crt │ │ │ ├── server7-future.crt │ │ │ ├── server7.crt │ │ │ ├── server7.key │ │ │ ├── server7_all_space.crt │ │ │ ├── server7_int-ca-exp.crt │ │ │ ├── server7_int-ca.crt │ │ │ ├── server7_int-ca_ca2.crt │ │ │ ├── server7_pem_space.crt │ │ │ ├── server7_spurious_int-ca.crt │ │ │ ├── server7_trailing_space.crt │ │ │ ├── server8.crt │ │ │ ├── server8.key │ │ │ ├── server8_int-ca2.crt │ │ │ ├── server9-bad-mgfhash.crt │ │ │ ├── server9-bad-saltlen.crt │ │ │ ├── server9-badsign.crt │ │ │ ├── server9-defaults.crt │ │ │ ├── server9-sha224.crt │ │ │ ├── server9-sha256.crt │ │ │ ├── server9-sha384.crt │ │ │ ├── server9-sha512.crt │ │ │ ├── server9-with-ca.crt │ │ │ ├── server9.crt │ │ │ ├── server9.key │ │ │ ├── server9.req.sha1 │ │ │ ├── server9.req.sha224 │ │ │ ├── server9.req.sha256 │ │ │ ├── server9.req.sha384 │ │ │ ├── server9.req.sha512 │ │ │ ├── test-ca-alt-good.crt │ │ │ ├── test-ca-alt.crt │ │ │ ├── test-ca-alt.csr │ │ │ ├── test-ca-alt.key │ │ │ ├── test-ca-any_policy.crt │ │ │ ├── test-ca-any_policy_ec.crt │ │ │ ├── test-ca-any_policy_with_qualifier.crt │ │ │ ├── test-ca-any_policy_with_qualifier_ec.crt │ │ │ ├── test-ca-good-alt.crt │ │ │ ├── test-ca-multi_policy.crt │ │ │ ├── test-ca-multi_policy_ec.crt │ │ │ ├── test-ca-sha1.crt │ │ │ ├── test-ca-sha1.crt.der │ │ │ ├── test-ca-sha256.crt │ │ │ ├── test-ca-sha256.crt.der │ │ │ ├── test-ca-unsupported_policy.crt │ │ │ ├── test-ca-unsupported_policy_ec.crt │ │ │ ├── test-ca-v1.crt │ │ │ ├── test-ca.crt │ │ │ ├── test-ca.crt.der │ │ │ ├── test-ca.der │ │ │ ├── test-ca.key │ │ │ ├── test-ca.key.der │ │ │ ├── test-ca.opensslconf │ │ │ ├── test-ca.server1.db │ │ │ ├── test-ca.server1.future-crl.db │ │ │ ├── test-ca.server1.future-crl.opensslconf │ │ │ ├── test-ca.server1.opensslconf │ │ │ ├── test-ca2-expired.crt │ │ │ ├── test-ca2.crt │ │ │ ├── test-ca2.crt.der │ │ │ ├── test-ca2.key │ │ │ ├── test-ca2.key.der │ │ │ ├── test-ca2.key.enc │ │ │ ├── test-ca2.ku-crl.crt │ │ │ ├── test-ca2.ku-crt.crt │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ ├── test-ca2.ku-ds.crt │ │ │ ├── test-ca2_cat-future-invalid.crt │ │ │ ├── test-ca2_cat-future-present.crt │ │ │ ├── test-ca2_cat-past-invalid.crt │ │ │ ├── test-ca2_cat-past-present.crt │ │ │ ├── test-ca2_cat-present-future.crt │ │ │ ├── test-ca2_cat-present-past.crt │ │ │ ├── test-ca_cat12.crt │ │ │ ├── test-ca_cat21.crt │ │ │ ├── test-ca_printable.crt │ │ │ ├── test-ca_uppercase.crt │ │ │ ├── test-ca_utf8.crt │ │ │ ├── test-int-ca-exp.crt │ │ │ ├── test-int-ca.crt │ │ │ ├── test-int-ca.key │ │ │ ├── test-int-ca2.crt │ │ │ ├── test-int-ca2.key │ │ │ ├── test-int-ca3-badsign.crt │ │ │ ├── test-int-ca3.crt │ │ │ └── test-int-ca3.key │ │ ├── everest_test.c │ │ ├── everest_unravaged.c │ │ ├── lib.c │ │ ├── lib.h │ │ ├── secp384r1_test.c │ │ ├── test.inc │ │ ├── test.mk │ │ ├── test_suite_aes.cbc.c │ │ ├── test_suite_aes.cbc.datax │ │ ├── test_suite_aes.cfb.c │ │ ├── test_suite_aes.cfb.datax │ │ ├── test_suite_aes.ecb.c │ │ ├── test_suite_aes.ecb.datax │ │ ├── test_suite_aes.ofb.c │ │ ├── test_suite_aes.ofb.datax │ │ ├── test_suite_aes.rest.c │ │ ├── test_suite_aes.rest.datax │ │ ├── test_suite_aes.xts.c │ │ ├── test_suite_aes.xts.datax │ │ ├── test_suite_asn1parse.c │ │ ├── test_suite_asn1parse.datax │ │ ├── test_suite_asn1write.c │ │ ├── test_suite_asn1write.datax │ │ ├── test_suite_base64.c │ │ ├── test_suite_base64.datax │ │ ├── test_suite_blowfish.c │ │ ├── test_suite_blowfish.datax │ │ ├── test_suite_ccm.c │ │ ├── test_suite_ccm.datax │ │ ├── test_suite_chacha20.c │ │ ├── test_suite_chacha20.datax │ │ ├── test_suite_chachapoly.c │ │ ├── test_suite_chachapoly.datax │ │ ├── test_suite_cipher.aes.c │ │ ├── test_suite_cipher.aes.datax │ │ ├── test_suite_cipher.blowfish.c │ │ ├── test_suite_cipher.blowfish.datax │ │ ├── test_suite_cipher.ccm.c │ │ ├── test_suite_cipher.ccm.datax │ │ ├── test_suite_cipher.chacha20.c │ │ ├── test_suite_cipher.chacha20.datax │ │ ├── test_suite_cipher.chachapoly.c │ │ ├── test_suite_cipher.chachapoly.datax │ │ ├── test_suite_cipher.des.c │ │ ├── test_suite_cipher.des.datax │ │ ├── test_suite_cipher.gcm.c │ │ ├── test_suite_cipher.gcm.datax │ │ ├── test_suite_cipher.misc.c │ │ ├── test_suite_cipher.misc.datax │ │ ├── test_suite_cipher.nist_kw.c │ │ ├── test_suite_cipher.nist_kw.datax │ │ ├── test_suite_cipher.null.c │ │ ├── test_suite_cipher.null.datax │ │ ├── test_suite_cipher.padding.c │ │ ├── test_suite_cipher.padding.datax │ │ ├── test_suite_ctr_drbg.c │ │ ├── test_suite_ctr_drbg.datax │ │ ├── test_suite_des.c │ │ ├── test_suite_des.datax │ │ ├── test_suite_dhm.c │ │ ├── test_suite_dhm.datax │ │ ├── test_suite_ecdh.c │ │ ├── test_suite_ecdh.datax │ │ ├── test_suite_ecdsa.c │ │ ├── test_suite_ecdsa.datax │ │ ├── test_suite_ecp.c │ │ ├── test_suite_ecp.datax │ │ ├── test_suite_entropy.c │ │ ├── test_suite_entropy.datax │ │ ├── test_suite_error.c │ │ ├── test_suite_error.datax │ │ ├── test_suite_gcm.aes128_de.c │ │ ├── test_suite_gcm.aes128_de.datax │ │ ├── test_suite_gcm.aes128_en.c │ │ ├── test_suite_gcm.aes128_en.datax │ │ ├── test_suite_gcm.aes192_de.c │ │ ├── test_suite_gcm.aes192_de.datax │ │ ├── test_suite_gcm.aes192_en.c │ │ ├── test_suite_gcm.aes192_en.datax │ │ ├── test_suite_gcm.aes256_de.c │ │ ├── test_suite_gcm.aes256_de.datax │ │ ├── test_suite_gcm.aes256_en.c │ │ ├── test_suite_gcm.aes256_en.datax │ │ ├── test_suite_gcm.misc.c │ │ ├── test_suite_gcm.misc.datax │ │ ├── test_suite_hkdf.c │ │ ├── test_suite_hkdf.datax │ │ ├── test_suite_hmac_drbg.misc.c │ │ ├── test_suite_hmac_drbg.misc.datax │ │ ├── test_suite_hmac_drbg.no_reseed.c │ │ ├── test_suite_hmac_drbg.no_reseed.datax │ │ ├── test_suite_hmac_drbg.nopr.c │ │ ├── test_suite_hmac_drbg.nopr.datax │ │ ├── test_suite_hmac_drbg.pr.c │ │ ├── test_suite_hmac_drbg.pr.datax │ │ ├── test_suite_md.c │ │ ├── test_suite_md.datax │ │ ├── test_suite_mdx.c │ │ ├── test_suite_mdx.datax │ │ ├── test_suite_memory_buffer_alloc.c │ │ ├── test_suite_memory_buffer_alloc.datax │ │ ├── test_suite_mpi.c │ │ ├── test_suite_mpi.datax │ │ ├── test_suite_net.c │ │ ├── test_suite_net.datax │ │ ├── test_suite_nist_kw.c │ │ ├── test_suite_nist_kw.datax │ │ ├── test_suite_oid.c │ │ ├── test_suite_oid.datax │ │ ├── test_suite_pem.c │ │ ├── test_suite_pem.datax │ │ ├── test_suite_pk.c │ │ ├── test_suite_pk.datax │ │ ├── test_suite_pkcs1_v15.c │ │ ├── test_suite_pkcs1_v15.datax │ │ ├── test_suite_pkcs1_v21.c │ │ ├── test_suite_pkcs1_v21.datax │ │ ├── test_suite_pkcs5.c │ │ ├── test_suite_pkcs5.datax │ │ ├── test_suite_pkparse.c │ │ ├── test_suite_pkparse.datax │ │ ├── test_suite_pkwrite.c │ │ ├── test_suite_pkwrite.datax │ │ ├── test_suite_poly1305.c │ │ ├── test_suite_poly1305.datax │ │ ├── test_suite_random.c │ │ ├── test_suite_random.datax │ │ ├── test_suite_rsa.c │ │ ├── test_suite_rsa.datax │ │ ├── test_suite_shax.c │ │ ├── test_suite_shax.datax │ │ ├── test_suite_ssl.c │ │ ├── test_suite_ssl.datax │ │ ├── test_suite_timing.c │ │ ├── test_suite_timing.datax │ │ ├── test_suite_version.c │ │ ├── test_suite_version.datax │ │ ├── test_suite_x509parse.c │ │ ├── test_suite_x509parse.datax │ │ ├── test_suite_x509write.c │ │ └── test_suite_x509write.datax │ ├── version.h │ ├── x509.c │ ├── x509.h │ ├── x509_create.c │ ├── x509_crl.c │ ├── x509_crl.h │ ├── x509_crt.c │ ├── x509_crt.h │ ├── x509_csr.c │ ├── x509_csr.h │ ├── x509write_crt.c │ ├── x509write_csr.c │ └── zeroize.c ├── musl │ ├── crypt.c │ ├── crypt.h │ ├── crypt.internal.h │ ├── crypt_blowfish.c │ ├── crypt_des.c │ ├── crypt_des.internal.h │ ├── crypt_md5.c │ ├── crypt_r.c │ ├── crypt_sha256.c │ ├── crypt_sha512.c │ ├── encrypt.c │ ├── fnmatch.c │ ├── fnmatch.h │ ├── glob.c │ ├── glob.h │ ├── grp.c │ ├── lockf.c │ ├── lockf.h │ ├── mntent.c │ ├── mntent.h │ ├── musl.mk │ ├── passwd.h │ ├── pwd.c │ ├── rand48.c │ ├── rand48.h │ ├── strfmon.c │ ├── tempnam.c │ └── tempnam.h ├── nsync │ ├── LICENSE.txt │ ├── README.cosmo │ ├── README.md │ ├── array.internal.h │ ├── atomic.h │ ├── atomic.internal.h │ ├── common.c │ ├── common.internal.h │ ├── compat.S │ ├── counter.h │ ├── cv.h │ ├── debug.h │ ├── futex.c │ ├── futex.internal.h │ ├── heap.internal.h │ ├── mem │ │ ├── array.c │ │ ├── mem.mk │ │ ├── nsync_counter.c │ │ ├── nsync_cv.c │ │ ├── nsync_debug.c │ │ ├── nsync_mu_wait.c │ │ ├── nsync_note.c │ │ ├── nsync_once.c │ │ ├── nsync_sem_wait.c │ │ └── nsync_wait.c │ ├── mu.c │ ├── mu.h │ ├── mu_semaphore.c │ ├── mu_semaphore.h │ ├── mu_semaphore.internal.h │ ├── mu_semaphore_futex.c │ ├── mu_semaphore_gcd.c │ ├── mu_semaphore_sem.c │ ├── mu_wait.h │ ├── note.h │ ├── nsync.mk │ ├── once.h │ ├── panic.c │ ├── races.internal.h │ ├── testing │ │ ├── atm_log.c │ │ ├── atm_log.h │ │ ├── closure.c │ │ ├── closure.h │ │ ├── counter_test.c │ │ ├── cv_mu_timeout_stress_test_.c │ │ ├── cv_test.c │ │ ├── cv_wait_example_test.c │ │ ├── dll_test.c │ │ ├── mu_starvation_test.c │ │ ├── mu_test.c │ │ ├── mu_wait_example_test.c │ │ ├── mu_wait_test.c │ │ ├── note_test.c │ │ ├── once_test.c │ │ ├── pingpong_test.c │ │ ├── smprintf.c │ │ ├── smprintf.h │ │ ├── start_thread.c │ │ ├── testing.c │ │ ├── testing.h │ │ ├── testing.mk │ │ ├── time_extra.c │ │ ├── time_extra.h │ │ └── wait_test.c │ ├── time.h │ ├── wait_s.internal.h │ ├── waiter.h │ ├── waiter_per_thread.c │ └── yield.c ├── puff │ ├── README.cosmo │ ├── puff.c │ ├── puff.h │ └── puff.mk ├── python │ ├── .gitattributes │ ├── .python │ │ └── this-is-a-kludge.txt │ ├── Include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── accu.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytes_methods.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── cosmo.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dtoa.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── ezprint.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── import.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── metagrammar.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── op.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── pgen.h │ │ ├── pgenheaders.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pyatomic.h │ │ ├── pycapsule.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pygetopt.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ ├── weakrefobject.h │ │ └── yoink.h │ ├── LICENSE │ ├── Lib │ │ ├── __future__.py │ │ ├── __phello__.foo.py │ │ ├── _bootlocale.py │ │ ├── _collections_abc.py │ │ ├── _compat_pickle.py │ │ ├── _compression.py │ │ ├── _dummy_thread.py │ │ ├── _markupbase.py │ │ ├── _osx_support.py │ │ ├── _pydecimal.py │ │ ├── _pyio.py │ │ ├── _sitebuiltins.py │ │ ├── _strptime.py │ │ ├── _sysconfigdata_m_cosmo_x86_64_cosmo.py │ │ ├── _threading_local.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── aifc.py │ │ ├── antigravity.py │ │ ├── argparse.py │ │ ├── ast.py │ │ ├── asynchat.py │ │ ├── asyncio │ │ │ ├── __init__.py │ │ │ ├── base_events.py │ │ │ ├── base_futures.py │ │ │ ├── base_subprocess.py │ │ │ ├── base_tasks.py │ │ │ ├── compat.py │ │ │ ├── constants.py │ │ │ ├── coroutines.py │ │ │ ├── events.py │ │ │ ├── futures.py │ │ │ ├── locks.py │ │ │ ├── log.py │ │ │ ├── proactor_events.py │ │ │ ├── protocols.py │ │ │ ├── queues.py │ │ │ ├── selector_events.py │ │ │ ├── sslproto.py │ │ │ ├── streams.py │ │ │ ├── subprocess.py │ │ │ ├── tasks.py │ │ │ ├── test_utils.py │ │ │ ├── transports.py │ │ │ ├── unix_events.py │ │ │ ├── windows_events.py │ │ │ └── windows_utils.py │ │ ├── asyncore.py │ │ ├── base64.py │ │ ├── bdb.py │ │ ├── binhex.py │ │ ├── bisect.py │ │ ├── bz2.py │ │ ├── cProfile.py │ │ ├── calendar.py │ │ ├── cgi.py │ │ ├── cgitb.py │ │ ├── chunk.py │ │ ├── cmd.py │ │ ├── code.py │ │ ├── codecs.py │ │ ├── codeop.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ └── abc.py │ │ ├── colorsys.py │ │ ├── compileall.py │ │ ├── concurrent │ │ │ ├── __init__.py │ │ │ └── futures │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── process.py │ │ │ │ └── thread.py │ │ ├── configparser.py │ │ ├── contextlib.py │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── crypt.py │ │ ├── csv.py │ │ ├── ctypes │ │ │ ├── __init__.py │ │ │ ├── _endian.py │ │ │ ├── macholib │ │ │ │ ├── README.ctypes │ │ │ │ ├── __init__.py │ │ │ │ ├── dyld.py │ │ │ │ ├── dylib.py │ │ │ │ ├── fetch_macholib │ │ │ │ ├── fetch_macholib.bat │ │ │ │ └── framework.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_anon.py │ │ │ │ ├── test_array_in_pointer.py │ │ │ │ ├── test_arrays.py │ │ │ │ ├── test_as_parameter.py │ │ │ │ ├── test_bitfields.py │ │ │ │ ├── test_buffers.py │ │ │ │ ├── test_bytes.py │ │ │ │ ├── test_byteswap.py │ │ │ │ ├── test_callbacks.py │ │ │ │ ├── test_cast.py │ │ │ │ ├── test_cfuncs.py │ │ │ │ ├── test_checkretval.py │ │ │ │ ├── test_delattr.py │ │ │ │ ├── test_errno.py │ │ │ │ ├── test_find.py │ │ │ │ ├── test_frombuffer.py │ │ │ │ ├── test_funcptr.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_incomplete.py │ │ │ │ ├── test_init.py │ │ │ │ ├── test_internals.py │ │ │ │ ├── test_keeprefs.py │ │ │ │ ├── test_libc.py │ │ │ │ ├── test_loading.py │ │ │ │ ├── test_macholib.py │ │ │ │ ├── test_memfunctions.py │ │ │ │ ├── test_numbers.py │ │ │ │ ├── test_objects.py │ │ │ │ ├── test_parameters.py │ │ │ │ ├── test_pep3118.py │ │ │ │ ├── test_pickling.py │ │ │ │ ├── test_pointers.py │ │ │ │ ├── test_prototypes.py │ │ │ │ ├── test_python_api.py │ │ │ │ ├── test_random_things.py │ │ │ │ ├── test_refcounts.py │ │ │ │ ├── test_repr.py │ │ │ │ ├── test_returnfuncptrs.py │ │ │ │ ├── test_simplesubclasses.py │ │ │ │ ├── test_sizes.py │ │ │ │ ├── test_slicing.py │ │ │ │ ├── test_stringptr.py │ │ │ │ ├── test_strings.py │ │ │ │ ├── test_struct_fields.py │ │ │ │ ├── test_structures.py │ │ │ │ ├── test_unaligned_structures.py │ │ │ │ ├── test_unicode.py │ │ │ │ ├── test_values.py │ │ │ │ ├── test_varsize_struct.py │ │ │ │ ├── test_win32.py │ │ │ │ └── test_wintypes.py │ │ │ ├── util.py │ │ │ └── wintypes.py │ │ ├── curses │ │ │ ├── __init__.py │ │ │ ├── ascii.py │ │ │ ├── has_key.py │ │ │ ├── panel.py │ │ │ └── textpad.py │ │ ├── datetime.py │ │ ├── dbm │ │ │ ├── __init__.py │ │ │ ├── dumb.py │ │ │ ├── gnu.py │ │ │ └── ndbm.py │ │ ├── decimal.py │ │ ├── difflib.py │ │ ├── dis.py │ │ ├── distutils │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── command_template │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── tests │ │ │ │ ├── Setup.sample │ │ │ │ ├── __init__.py │ │ │ │ ├── support.py │ │ │ │ ├── test_archive_util.py │ │ │ │ ├── test_bdist.py │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ ├── test_bdist_msi.py │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ ├── test_bdist_wininst.py │ │ │ │ ├── test_build.py │ │ │ │ ├── test_build_clib.py │ │ │ │ ├── test_build_ext.py │ │ │ │ ├── test_build_py.py │ │ │ │ ├── test_build_scripts.py │ │ │ │ ├── test_check.py │ │ │ │ ├── test_clean.py │ │ │ │ ├── test_cmd.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_config_cmd.py │ │ │ │ ├── test_core.py │ │ │ │ ├── test_cygwinccompiler.py │ │ │ │ ├── test_dep_util.py │ │ │ │ ├── test_dir_util.py │ │ │ │ ├── test_dist.py │ │ │ │ ├── test_extension.py │ │ │ │ ├── test_file_util.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_install.py │ │ │ │ ├── test_install_data.py │ │ │ │ ├── test_install_headers.py │ │ │ │ ├── test_install_lib.py │ │ │ │ ├── test_install_scripts.py │ │ │ │ ├── test_log.py │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ ├── test_msvccompiler.py │ │ │ │ ├── test_register.py │ │ │ │ ├── test_sdist.py │ │ │ │ ├── test_spawn.py │ │ │ │ ├── test_sysconfig.py │ │ │ │ ├── test_text_file.py │ │ │ │ ├── test_unixccompiler.py │ │ │ │ ├── test_upload.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_version.py │ │ │ │ └── test_versionpredicate.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ ├── doctest.py │ │ ├── dummy_threading.py │ │ ├── email │ │ │ ├── __init__.py │ │ │ ├── _encoded_words.py │ │ │ ├── _header_value_parser.py │ │ │ ├── _parseaddr.py │ │ │ ├── _policybase.py │ │ │ ├── architecture.rst │ │ │ ├── base64mime.py │ │ │ ├── charset.py │ │ │ ├── contentmanager.py │ │ │ ├── encoders.py │ │ │ ├── errors.py │ │ │ ├── feedparser.py │ │ │ ├── generator.py │ │ │ ├── header.py │ │ │ ├── headerregistry.py │ │ │ ├── iterators.py │ │ │ ├── message.py │ │ │ ├── mime │ │ │ │ ├── __init__.py │ │ │ │ ├── application.py │ │ │ │ ├── audio.py │ │ │ │ ├── base.py │ │ │ │ ├── image.py │ │ │ │ ├── message.py │ │ │ │ ├── multipart.py │ │ │ │ ├── nonmultipart.py │ │ │ │ └── text.py │ │ │ ├── parser.py │ │ │ ├── policy.py │ │ │ ├── quoprimime.py │ │ │ └── utils.py │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ ├── aliases.py │ │ │ ├── ascii.py │ │ │ ├── base64_codec.py │ │ │ ├── big5.py │ │ │ ├── big5hkscs.py │ │ │ ├── bz2_codec.py │ │ │ ├── charmap.py │ │ │ ├── cp037.py │ │ │ ├── cp1006.py │ │ │ ├── cp1026.py │ │ │ ├── cp1125.py │ │ │ ├── cp1140.py │ │ │ ├── cp1250.py │ │ │ ├── cp1251.py │ │ │ ├── cp1252.py │ │ │ ├── cp1253.py │ │ │ ├── cp1254.py │ │ │ ├── cp1255.py │ │ │ ├── cp1256.py │ │ │ ├── cp1257.py │ │ │ ├── cp1258.py │ │ │ ├── cp273.py │ │ │ ├── cp424.py │ │ │ ├── cp437.py │ │ │ ├── cp500.py │ │ │ ├── cp65001.py │ │ │ ├── cp720.py │ │ │ ├── cp737.py │ │ │ ├── cp775.py │ │ │ ├── cp850.py │ │ │ ├── cp852.py │ │ │ ├── cp855.py │ │ │ ├── cp856.py │ │ │ ├── cp857.py │ │ │ ├── cp858.py │ │ │ ├── cp860.py │ │ │ ├── cp861.py │ │ │ ├── cp862.py │ │ │ ├── cp863.py │ │ │ ├── cp864.py │ │ │ ├── cp865.py │ │ │ ├── cp866.py │ │ │ ├── cp869.py │ │ │ ├── cp874.py │ │ │ ├── cp875.py │ │ │ ├── cp932.py │ │ │ ├── cp949.py │ │ │ ├── cp950.py │ │ │ ├── euc_jis_2004.py │ │ │ ├── euc_jisx0213.py │ │ │ ├── euc_jp.py │ │ │ ├── euc_kr.py │ │ │ ├── gb18030.py │ │ │ ├── gb2312.py │ │ │ ├── gbk.py │ │ │ ├── hex_codec.py │ │ │ ├── hp_roman8.py │ │ │ ├── hz.py │ │ │ ├── idna.py │ │ │ ├── iso2022_jp.py │ │ │ ├── iso2022_jp_1.py │ │ │ ├── iso2022_jp_2.py │ │ │ ├── iso2022_jp_2004.py │ │ │ ├── iso2022_jp_3.py │ │ │ ├── iso2022_jp_ext.py │ │ │ ├── iso2022_kr.py │ │ │ ├── iso8859_1.py │ │ │ ├── iso8859_10.py │ │ │ ├── iso8859_11.py │ │ │ ├── iso8859_13.py │ │ │ ├── iso8859_14.py │ │ │ ├── iso8859_15.py │ │ │ ├── iso8859_16.py │ │ │ ├── iso8859_2.py │ │ │ ├── iso8859_3.py │ │ │ ├── iso8859_4.py │ │ │ ├── iso8859_5.py │ │ │ ├── iso8859_6.py │ │ │ ├── iso8859_7.py │ │ │ ├── iso8859_8.py │ │ │ ├── iso8859_9.py │ │ │ ├── johab.py │ │ │ ├── koi8_r.py │ │ │ ├── koi8_t.py │ │ │ ├── koi8_u.py │ │ │ ├── kz1048.py │ │ │ ├── latin_1.py │ │ │ ├── mac_arabic.py │ │ │ ├── mac_centeuro.py │ │ │ ├── mac_croatian.py │ │ │ ├── mac_cyrillic.py │ │ │ ├── mac_farsi.py │ │ │ ├── mac_greek.py │ │ │ ├── mac_iceland.py │ │ │ ├── mac_latin2.py │ │ │ ├── mac_roman.py │ │ │ ├── mac_romanian.py │ │ │ ├── mac_turkish.py │ │ │ ├── mbcs.py │ │ │ ├── oem.py │ │ │ ├── palmos.py │ │ │ ├── ptcp154.py │ │ │ ├── punycode.py │ │ │ ├── quopri_codec.py │ │ │ ├── raw_unicode_escape.py │ │ │ ├── rot_13.py │ │ │ ├── shift_jis.py │ │ │ ├── shift_jis_2004.py │ │ │ ├── shift_jisx0213.py │ │ │ ├── tis_620.py │ │ │ ├── undefined.py │ │ │ ├── unicode_escape.py │ │ │ ├── unicode_internal.py │ │ │ ├── utf_16.py │ │ │ ├── utf_16_be.py │ │ │ ├── utf_16_le.py │ │ │ ├── utf_32.py │ │ │ ├── utf_32_be.py │ │ │ ├── utf_32_le.py │ │ │ ├── utf_7.py │ │ │ ├── utf_8.py │ │ │ ├── utf_8_sig.py │ │ │ ├── uu_codec.py │ │ │ └── zlib_codec.py │ │ ├── enum.py │ │ ├── filecmp.py │ │ ├── fileinput.py │ │ ├── fnmatch.py │ │ ├── formatter.py │ │ ├── fractions.py │ │ ├── ftplib.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── getopt.py │ │ ├── getpass.py │ │ ├── gettext.py │ │ ├── glob.py │ │ ├── gzip.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── html │ │ │ ├── __init__.py │ │ │ ├── entities.py │ │ │ └── parser.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── cookiejar.py │ │ │ ├── cookies.py │ │ │ └── server.py │ │ ├── idlelib │ │ │ ├── CREDITS.txt │ │ │ ├── ChangeLog │ │ │ ├── HISTORY.txt │ │ │ ├── Icons │ │ │ │ ├── folder.gif │ │ │ │ ├── idle_16.gif │ │ │ │ ├── idle_16.png │ │ │ │ ├── idle_32.gif │ │ │ │ ├── idle_32.png │ │ │ │ ├── idle_48.gif │ │ │ │ ├── idle_48.png │ │ │ │ ├── minusnode.gif │ │ │ │ ├── openfolder.gif │ │ │ │ ├── plusnode.gif │ │ │ │ ├── python.gif │ │ │ │ └── tk.gif │ │ │ ├── NEWS.txt │ │ │ ├── NEWS2x.txt │ │ │ ├── README.txt │ │ │ ├── TODO.txt │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _pyclbr.py │ │ │ ├── autocomplete.py │ │ │ ├── autocomplete_w.py │ │ │ ├── autoexpand.py │ │ │ ├── browser.py │ │ │ ├── calltip.py │ │ │ ├── calltip_w.py │ │ │ ├── codecontext.py │ │ │ ├── colorizer.py │ │ │ ├── config-extensions.def │ │ │ ├── config-highlight.def │ │ │ ├── config-keys.def │ │ │ ├── config-main.def │ │ │ ├── config.py │ │ │ ├── config_key.py │ │ │ ├── configdialog.py │ │ │ ├── debugger.py │ │ │ ├── debugger_r.py │ │ │ ├── debugobj.py │ │ │ ├── debugobj_r.py │ │ │ ├── delegator.py │ │ │ ├── dynoption.py │ │ │ ├── editor.py │ │ │ ├── extend.txt │ │ │ ├── filelist.py │ │ │ ├── grep.py │ │ │ ├── help.html │ │ │ ├── help.py │ │ │ ├── help_about.py │ │ │ ├── history.py │ │ │ ├── hyperparser.py │ │ │ ├── idle.bat │ │ │ ├── idle.py │ │ │ ├── idle.pyw │ │ │ ├── idle_test │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── htest.py │ │ │ │ ├── mock_idle.py │ │ │ │ ├── mock_tk.py │ │ │ │ ├── template.py │ │ │ │ ├── test_autocomplete.py │ │ │ │ ├── test_autocomplete_w.py │ │ │ │ ├── test_autoexpand.py │ │ │ │ ├── test_browser.py │ │ │ │ ├── test_calltip.py │ │ │ │ ├── test_calltip_w.py │ │ │ │ ├── test_codecontext.py │ │ │ │ ├── test_colorizer.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_config_key.py │ │ │ │ ├── test_configdialog.py │ │ │ │ ├── test_debugger.py │ │ │ │ ├── test_debugger_r.py │ │ │ │ ├── test_debugobj.py │ │ │ │ ├── test_debugobj_r.py │ │ │ │ ├── test_delegator.py │ │ │ │ ├── test_editmenu.py │ │ │ │ ├── test_editor.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_grep.py │ │ │ │ ├── test_help.py │ │ │ │ ├── test_help_about.py │ │ │ │ ├── test_history.py │ │ │ │ ├── test_hyperparser.py │ │ │ │ ├── test_iomenu.py │ │ │ │ ├── test_macosx.py │ │ │ │ ├── test_mainmenu.py │ │ │ │ ├── test_multicall.py │ │ │ │ ├── test_outwin.py │ │ │ │ ├── test_paragraph.py │ │ │ │ ├── test_parenmatch.py │ │ │ │ ├── test_pathbrowser.py │ │ │ │ ├── test_percolator.py │ │ │ │ ├── test_pyparse.py │ │ │ │ ├── test_pyshell.py │ │ │ │ ├── test_query.py │ │ │ │ ├── test_redirector.py │ │ │ │ ├── test_replace.py │ │ │ │ ├── test_rpc.py │ │ │ │ ├── test_rstrip.py │ │ │ │ ├── test_run.py │ │ │ │ ├── test_runscript.py │ │ │ │ ├── test_scrolledlist.py │ │ │ │ ├── test_search.py │ │ │ │ ├── test_searchbase.py │ │ │ │ ├── test_searchengine.py │ │ │ │ ├── test_squeezer.py │ │ │ │ ├── test_stackviewer.py │ │ │ │ ├── test_statusbar.py │ │ │ │ ├── test_text.py │ │ │ │ ├── test_textview.py │ │ │ │ ├── test_tooltip.py │ │ │ │ ├── test_tree.py │ │ │ │ ├── test_undo.py │ │ │ │ ├── test_warning.py │ │ │ │ ├── test_window.py │ │ │ │ └── test_zoomheight.py │ │ │ ├── iomenu.py │ │ │ ├── macosx.py │ │ │ ├── mainmenu.py │ │ │ ├── multicall.py │ │ │ ├── outwin.py │ │ │ ├── paragraph.py │ │ │ ├── parenmatch.py │ │ │ ├── pathbrowser.py │ │ │ ├── percolator.py │ │ │ ├── pyparse.py │ │ │ ├── pyshell.py │ │ │ ├── query.py │ │ │ ├── redirector.py │ │ │ ├── replace.py │ │ │ ├── rpc.py │ │ │ ├── rstrip.py │ │ │ ├── run.py │ │ │ ├── runscript.py │ │ │ ├── scrolledlist.py │ │ │ ├── search.py │ │ │ ├── searchbase.py │ │ │ ├── searchengine.py │ │ │ ├── squeezer.py │ │ │ ├── stackviewer.py │ │ │ ├── statusbar.py │ │ │ ├── textview.py │ │ │ ├── tooltip.py │ │ │ ├── tree.py │ │ │ ├── undo.py │ │ │ ├── window.py │ │ │ ├── zoomheight.py │ │ │ └── zzdummy.py │ │ ├── imaplib.py │ │ ├── imghdr.py │ │ ├── imp.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── _bootstrap.py │ │ │ ├── _bootstrap_external.py │ │ │ ├── abc.py │ │ │ ├── machinery.py │ │ │ └── util.py │ │ ├── inspect.py │ │ ├── io.py │ │ ├── ipaddress.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── scanner.py │ │ │ └── tool.py │ │ ├── keyword.py │ │ ├── launchpy.py │ │ ├── lib2to3 │ │ │ ├── Grammar.txt │ │ │ ├── PatternGrammar.txt │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── btm_matcher.py │ │ │ ├── btm_utils.py │ │ │ ├── fixer_base.py │ │ │ ├── fixer_util.py │ │ │ ├── fixes │ │ │ │ ├── __init__.py │ │ │ │ ├── fix_apply.py │ │ │ │ ├── fix_asserts.py │ │ │ │ ├── fix_basestring.py │ │ │ │ ├── fix_buffer.py │ │ │ │ ├── fix_dict.py │ │ │ │ ├── fix_except.py │ │ │ │ ├── fix_exec.py │ │ │ │ ├── fix_execfile.py │ │ │ │ ├── fix_exitfunc.py │ │ │ │ ├── fix_filter.py │ │ │ │ ├── fix_funcattrs.py │ │ │ │ ├── fix_future.py │ │ │ │ ├── fix_getcwdu.py │ │ │ │ ├── fix_has_key.py │ │ │ │ ├── fix_idioms.py │ │ │ │ ├── fix_import.py │ │ │ │ ├── fix_imports.py │ │ │ │ ├── fix_imports2.py │ │ │ │ ├── fix_input.py │ │ │ │ ├── fix_intern.py │ │ │ │ ├── fix_isinstance.py │ │ │ │ ├── fix_itertools.py │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ ├── fix_long.py │ │ │ │ ├── fix_map.py │ │ │ │ ├── fix_metaclass.py │ │ │ │ ├── fix_methodattrs.py │ │ │ │ ├── fix_ne.py │ │ │ │ ├── fix_next.py │ │ │ │ ├── fix_nonzero.py │ │ │ │ ├── fix_numliterals.py │ │ │ │ ├── fix_operator.py │ │ │ │ ├── fix_paren.py │ │ │ │ ├── fix_print.py │ │ │ │ ├── fix_raise.py │ │ │ │ ├── fix_raw_input.py │ │ │ │ ├── fix_reduce.py │ │ │ │ ├── fix_reload.py │ │ │ │ ├── fix_renames.py │ │ │ │ ├── fix_repr.py │ │ │ │ ├── fix_set_literal.py │ │ │ │ ├── fix_standarderror.py │ │ │ │ ├── fix_sys_exc.py │ │ │ │ ├── fix_throw.py │ │ │ │ ├── fix_tuple_params.py │ │ │ │ ├── fix_types.py │ │ │ │ ├── fix_unicode.py │ │ │ │ ├── fix_urllib.py │ │ │ │ ├── fix_ws_comma.py │ │ │ │ ├── fix_xrange.py │ │ │ │ ├── fix_xreadlines.py │ │ │ │ └── fix_zip.py │ │ │ ├── main.py │ │ │ ├── patcomp.py │ │ │ ├── pgen2 │ │ │ │ ├── __init__.py │ │ │ │ ├── conv.py │ │ │ │ ├── driver.py │ │ │ │ ├── grammar.py │ │ │ │ ├── literals.py │ │ │ │ ├── parse.py │ │ │ │ ├── pgen.py │ │ │ │ ├── token.py │ │ │ │ └── tokenize.py │ │ │ ├── pygram.py │ │ │ ├── pytree.py │ │ │ ├── refactor.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── data │ │ │ │ ├── README │ │ │ │ ├── bom.py │ │ │ │ ├── crlf.py │ │ │ │ ├── different_encoding.py │ │ │ │ ├── false_encoding.py │ │ │ │ ├── fixers │ │ │ │ │ ├── bad_order.py │ │ │ │ │ ├── myfixes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ │ ├── fix_first.py │ │ │ │ │ │ ├── fix_last.py │ │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ │ └── fix_preorder.py │ │ │ │ │ ├── no_fixer_cls.py │ │ │ │ │ └── parrot_example.py │ │ │ │ ├── infinite_recursion.py │ │ │ │ ├── py2_test_grammar.py │ │ │ │ └── py3_test_grammar.py │ │ │ │ ├── pytree_idempotency.py │ │ │ │ ├── support.py │ │ │ │ ├── test_all_fixers.py │ │ │ │ ├── test_fixers.py │ │ │ │ ├── test_main.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pytree.py │ │ │ │ ├── test_refactor.py │ │ │ │ └── test_util.py │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── logging │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── handlers.py │ │ ├── lzma.py │ │ ├── macpath.py │ │ ├── macurl2path.py │ │ ├── mailbox.py │ │ ├── mailcap.py │ │ ├── mime.types │ │ ├── mimetypes.py │ │ ├── modulefinder.py │ │ ├── msilib │ │ │ ├── __init__.py │ │ │ ├── schema.py │ │ │ ├── sequence.py │ │ │ └── text.py │ │ ├── multiprocessing │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── context.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── forkserver.py │ │ │ ├── heap.py │ │ │ ├── managers.py │ │ │ ├── pool.py │ │ │ ├── popen_fork.py │ │ │ ├── popen_forkserver.py │ │ │ ├── popen_spawn_posix.py │ │ │ ├── popen_spawn_win32.py │ │ │ ├── process.py │ │ │ ├── queues.py │ │ │ ├── reduction.py │ │ │ ├── resource_sharer.py │ │ │ ├── semaphore_tracker.py │ │ │ ├── sharedctypes.py │ │ │ ├── spawn.py │ │ │ ├── synchronize.py │ │ │ └── util.py │ │ ├── netrc.py │ │ ├── nntplib.py │ │ ├── ntpath.py │ │ ├── nturl2path.py │ │ ├── numbers.py │ │ ├── opcode.py │ │ ├── operator.py │ │ ├── optparse.py │ │ ├── os.py │ │ ├── pathlib.py │ │ ├── pdb.py │ │ ├── pickle.py │ │ ├── pickletools.py │ │ ├── pipes.py │ │ ├── pkgutil.py │ │ ├── platform.py │ │ ├── plistlib.py │ │ ├── poplib.py │ │ ├── posixpath.py │ │ ├── pprint.py │ │ ├── profile.py │ │ ├── pstats.py │ │ ├── pty.py │ │ ├── py_compile.py │ │ ├── pyclbr.py │ │ ├── pydoc.py │ │ ├── pydoc_data │ │ │ ├── __init__.py │ │ │ ├── _pydoc.css │ │ │ └── topics.py │ │ ├── queue.py │ │ ├── quopri.py │ │ ├── random.py │ │ ├── re.py │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── runpy.py │ │ ├── sched.py │ │ ├── secrets.py │ │ ├── selectors.py │ │ ├── shelve.py │ │ ├── shlex.py │ │ ├── shutil.py │ │ ├── signal.py │ │ ├── site-packages │ │ │ └── README.txt │ │ ├── site.py │ │ ├── smtpd.py │ │ ├── smtplib.py │ │ ├── sndhdr.py │ │ ├── socket.py │ │ ├── socketserver.py │ │ ├── sqlite3 │ │ │ ├── __init__.py │ │ │ ├── dbapi2.py │ │ │ ├── dump.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── dbapi.py │ │ │ │ ├── dump.py │ │ │ │ ├── factory.py │ │ │ │ ├── hooks.py │ │ │ │ ├── regression.py │ │ │ │ ├── transactions.py │ │ │ │ ├── types.py │ │ │ │ └── userfunctions.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── ssl.py │ │ ├── stat.py │ │ ├── statistics.py │ │ ├── string.py │ │ ├── stringprep.py │ │ ├── struct.py │ │ ├── subprocess.py │ │ ├── sunau.py │ │ ├── symbol.py │ │ ├── symtable.py │ │ ├── sysconfig.py │ │ ├── tabnanny.py │ │ ├── tarfile.py │ │ ├── telnetlib.py │ │ ├── tempfile.py │ │ ├── test │ │ │ ├── BIG5.TXT │ │ │ ├── BIG5HKSCS-2004.TXT │ │ │ ├── CP932.TXT │ │ │ ├── CP936.TXT │ │ │ ├── CP949.TXT │ │ │ ├── CP950.TXT │ │ │ ├── EUC-CN.TXT │ │ │ ├── EUC-JISX0213.TXT │ │ │ ├── EUC-JP.TXT │ │ │ ├── EUC-KR.TXT │ │ │ ├── JOHAB.TXT │ │ │ ├── Python.asdl │ │ │ ├── SHIFTJIS.TXT │ │ │ ├── SHIFT_JISX0213.TXT │ │ │ ├── Sine-1000Hz-300ms.aif │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _test_multiprocessing.py │ │ │ ├── allsans.pem │ │ │ ├── ann_module.py │ │ │ ├── ann_module2.py │ │ │ ├── ann_module3.py │ │ │ ├── audiodata │ │ │ │ ├── pluck-alaw.aifc │ │ │ │ ├── pluck-pcm16.aiff │ │ │ │ ├── pluck-pcm16.au │ │ │ │ ├── pluck-pcm16.wav │ │ │ │ ├── pluck-pcm24.aiff │ │ │ │ ├── pluck-pcm24.au │ │ │ │ ├── pluck-pcm24.wav │ │ │ │ ├── pluck-pcm32.aiff │ │ │ │ ├── pluck-pcm32.au │ │ │ │ ├── pluck-pcm32.wav │ │ │ │ ├── pluck-pcm8.aiff │ │ │ │ ├── pluck-pcm8.au │ │ │ │ ├── pluck-pcm8.wav │ │ │ │ ├── pluck-ulaw.aifc │ │ │ │ └── pluck-ulaw.au │ │ │ ├── audiotest.au │ │ │ ├── audiotests.py │ │ │ ├── autotest.py │ │ │ ├── bad_coding.py │ │ │ ├── bad_coding2.py │ │ │ ├── badcert.pem │ │ │ ├── badkey.pem │ │ │ ├── badsyntax_3131.py │ │ │ ├── badsyntax_future10.py │ │ │ ├── badsyntax_future3.py │ │ │ ├── badsyntax_future4.py │ │ │ ├── badsyntax_future5.py │ │ │ ├── badsyntax_future6.py │ │ │ ├── badsyntax_future7.py │ │ │ ├── badsyntax_future8.py │ │ │ ├── badsyntax_future9.py │ │ │ ├── badsyntax_pep3120.py │ │ │ ├── bisect.py │ │ │ ├── bytecode_helper.py │ │ │ ├── capath │ │ │ │ ├── 4e1295a3.0 │ │ │ │ ├── 5ed36f99.0 │ │ │ │ ├── 6e88d7b8.0 │ │ │ │ ├── 99d0fa06.0 │ │ │ │ ├── b1930218.0 │ │ │ │ └── ceff1710.0 │ │ │ ├── cfgparser.1 │ │ │ ├── cfgparser.2 │ │ │ ├── cfgparser.3 │ │ │ ├── cjkencodings │ │ │ │ ├── big5-utf8.txt │ │ │ │ ├── big5.txt │ │ │ │ ├── big5hkscs-utf8.txt │ │ │ │ ├── big5hkscs.txt │ │ │ │ ├── cp949-utf8.txt │ │ │ │ ├── cp949.txt │ │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ │ ├── euc_jisx0213.txt │ │ │ │ ├── euc_jp-utf8.txt │ │ │ │ ├── euc_jp.txt │ │ │ │ ├── euc_kr-utf8.txt │ │ │ │ ├── euc_kr.txt │ │ │ │ ├── gb18030-utf8.txt │ │ │ │ ├── gb18030.txt │ │ │ │ ├── gb2312-utf8.txt │ │ │ │ ├── gb2312.txt │ │ │ │ ├── gbk-utf8.txt │ │ │ │ ├── gbk.txt │ │ │ │ ├── hz-utf8.txt │ │ │ │ ├── hz.txt │ │ │ │ ├── iso2022_jp-utf8.txt │ │ │ │ ├── iso2022_jp.txt │ │ │ │ ├── iso2022_kr-utf8.txt │ │ │ │ ├── iso2022_kr.txt │ │ │ │ ├── johab-utf8.txt │ │ │ │ ├── johab.txt │ │ │ │ ├── shift_jis-utf8.txt │ │ │ │ ├── shift_jis.txt │ │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ │ └── shift_jisx0213.txt │ │ │ ├── cmath_testcases.txt │ │ │ ├── coding20731.py │ │ │ ├── crashers │ │ │ │ ├── README │ │ │ │ ├── bogus_code_obj.py │ │ │ │ ├── gc_inspection.py │ │ │ │ ├── infinite_loop_re.py │ │ │ │ ├── mutation_inside_cyclegc.py │ │ │ │ ├── recursive_call.py │ │ │ │ ├── trace_at_recursion_limit.py │ │ │ │ └── underlying_dict.py │ │ │ ├── curses_tests.py │ │ │ ├── datetimetester.py │ │ │ ├── decimaltestdata │ │ │ │ ├── abs.decTest │ │ │ │ ├── add.decTest │ │ │ │ ├── and.decTest │ │ │ │ ├── base.decTest │ │ │ │ ├── clamp.decTest │ │ │ │ ├── class.decTest │ │ │ │ ├── compare.decTest │ │ │ │ ├── comparetotal.decTest │ │ │ │ ├── comparetotmag.decTest │ │ │ │ ├── copy.decTest │ │ │ │ ├── copyabs.decTest │ │ │ │ ├── copynegate.decTest │ │ │ │ ├── copysign.decTest │ │ │ │ ├── ddAbs.decTest │ │ │ │ ├── ddAdd.decTest │ │ │ │ ├── ddAnd.decTest │ │ │ │ ├── ddBase.decTest │ │ │ │ ├── ddCanonical.decTest │ │ │ │ ├── ddClass.decTest │ │ │ │ ├── ddCompare.decTest │ │ │ │ ├── ddCompareSig.decTest │ │ │ │ ├── ddCompareTotal.decTest │ │ │ │ ├── ddCompareTotalMag.decTest │ │ │ │ ├── ddCopy.decTest │ │ │ │ ├── ddCopyAbs.decTest │ │ │ │ ├── ddCopyNegate.decTest │ │ │ │ ├── ddCopySign.decTest │ │ │ │ ├── ddDivide.decTest │ │ │ │ ├── ddDivideInt.decTest │ │ │ │ ├── ddEncode.decTest │ │ │ │ ├── ddFMA.decTest │ │ │ │ ├── ddInvert.decTest │ │ │ │ ├── ddLogB.decTest │ │ │ │ ├── ddMax.decTest │ │ │ │ ├── ddMaxMag.decTest │ │ │ │ ├── ddMin.decTest │ │ │ │ ├── ddMinMag.decTest │ │ │ │ ├── ddMinus.decTest │ │ │ │ ├── ddMultiply.decTest │ │ │ │ ├── ddNextMinus.decTest │ │ │ │ ├── ddNextPlus.decTest │ │ │ │ ├── ddNextToward.decTest │ │ │ │ ├── ddOr.decTest │ │ │ │ ├── ddPlus.decTest │ │ │ │ ├── ddQuantize.decTest │ │ │ │ ├── ddReduce.decTest │ │ │ │ ├── ddRemainder.decTest │ │ │ │ ├── ddRemainderNear.decTest │ │ │ │ ├── ddRotate.decTest │ │ │ │ ├── ddSameQuantum.decTest │ │ │ │ ├── ddScaleB.decTest │ │ │ │ ├── ddShift.decTest │ │ │ │ ├── ddSubtract.decTest │ │ │ │ ├── ddToIntegral.decTest │ │ │ │ ├── ddXor.decTest │ │ │ │ ├── decDouble.decTest │ │ │ │ ├── decQuad.decTest │ │ │ │ ├── decSingle.decTest │ │ │ │ ├── divide.decTest │ │ │ │ ├── divideint.decTest │ │ │ │ ├── dqAbs.decTest │ │ │ │ ├── dqAdd.decTest │ │ │ │ ├── dqAnd.decTest │ │ │ │ ├── dqBase.decTest │ │ │ │ ├── dqCanonical.decTest │ │ │ │ ├── dqClass.decTest │ │ │ │ ├── dqCompare.decTest │ │ │ │ ├── dqCompareSig.decTest │ │ │ │ ├── dqCompareTotal.decTest │ │ │ │ ├── dqCompareTotalMag.decTest │ │ │ │ ├── dqCopy.decTest │ │ │ │ ├── dqCopyAbs.decTest │ │ │ │ ├── dqCopyNegate.decTest │ │ │ │ ├── dqCopySign.decTest │ │ │ │ ├── dqDivide.decTest │ │ │ │ ├── dqDivideInt.decTest │ │ │ │ ├── dqEncode.decTest │ │ │ │ ├── dqFMA.decTest │ │ │ │ ├── dqInvert.decTest │ │ │ │ ├── dqLogB.decTest │ │ │ │ ├── dqMax.decTest │ │ │ │ ├── dqMaxMag.decTest │ │ │ │ ├── dqMin.decTest │ │ │ │ ├── dqMinMag.decTest │ │ │ │ ├── dqMinus.decTest │ │ │ │ ├── dqMultiply.decTest │ │ │ │ ├── dqNextMinus.decTest │ │ │ │ ├── dqNextPlus.decTest │ │ │ │ ├── dqNextToward.decTest │ │ │ │ ├── dqOr.decTest │ │ │ │ ├── dqPlus.decTest │ │ │ │ ├── dqQuantize.decTest │ │ │ │ ├── dqReduce.decTest │ │ │ │ ├── dqRemainder.decTest │ │ │ │ ├── dqRemainderNear.decTest │ │ │ │ ├── dqRotate.decTest │ │ │ │ ├── dqSameQuantum.decTest │ │ │ │ ├── dqScaleB.decTest │ │ │ │ ├── dqShift.decTest │ │ │ │ ├── dqSubtract.decTest │ │ │ │ ├── dqToIntegral.decTest │ │ │ │ ├── dqXor.decTest │ │ │ │ ├── dsBase.decTest │ │ │ │ ├── dsEncode.decTest │ │ │ │ ├── exp.decTest │ │ │ │ ├── extra.decTest │ │ │ │ ├── fma.decTest │ │ │ │ ├── inexact.decTest │ │ │ │ ├── invert.decTest │ │ │ │ ├── ln.decTest │ │ │ │ ├── log10.decTest │ │ │ │ ├── logb.decTest │ │ │ │ ├── max.decTest │ │ │ │ ├── maxmag.decTest │ │ │ │ ├── min.decTest │ │ │ │ ├── minmag.decTest │ │ │ │ ├── minus.decTest │ │ │ │ ├── multiply.decTest │ │ │ │ ├── nextminus.decTest │ │ │ │ ├── nextplus.decTest │ │ │ │ ├── nexttoward.decTest │ │ │ │ ├── or.decTest │ │ │ │ ├── plus.decTest │ │ │ │ ├── power.decTest │ │ │ │ ├── powersqrt.decTest │ │ │ │ ├── quantize.decTest │ │ │ │ ├── randomBound32.decTest │ │ │ │ ├── randoms.decTest │ │ │ │ ├── reduce.decTest │ │ │ │ ├── remainder.decTest │ │ │ │ ├── remainderNear.decTest │ │ │ │ ├── rescale.decTest │ │ │ │ ├── rotate.decTest │ │ │ │ ├── rounding.decTest │ │ │ │ ├── samequantum.decTest │ │ │ │ ├── scaleb.decTest │ │ │ │ ├── shift.decTest │ │ │ │ ├── squareroot.decTest │ │ │ │ ├── subtract.decTest │ │ │ │ ├── testall.decTest │ │ │ │ ├── tointegral.decTest │ │ │ │ ├── tointegralx.decTest │ │ │ │ └── xor.decTest │ │ │ ├── dis_module.py │ │ │ ├── doctest_aliases.py │ │ │ ├── double_const.py │ │ │ ├── dtracedata │ │ │ │ ├── assert_usable.d │ │ │ │ ├── assert_usable.stp │ │ │ │ ├── call_stack.d │ │ │ │ ├── call_stack.d.expected │ │ │ │ ├── call_stack.py │ │ │ │ ├── call_stack.stp │ │ │ │ ├── call_stack.stp.expected │ │ │ │ ├── gc.d │ │ │ │ ├── gc.d.expected │ │ │ │ ├── gc.py │ │ │ │ ├── gc.stp │ │ │ │ ├── gc.stp.expected │ │ │ │ ├── instance.py │ │ │ │ ├── line.d │ │ │ │ ├── line.d.expected │ │ │ │ └── line.py │ │ │ ├── eintrdata │ │ │ │ └── eintr_tester.py │ │ │ ├── empty.vbs │ │ │ ├── encoded_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── module_iso_8859_1.py │ │ │ │ └── module_koi8_r.py │ │ │ ├── exception_hierarchy.txt │ │ │ ├── ffdh3072.pem │ │ │ ├── final_a.py │ │ │ ├── final_b.py │ │ │ ├── floating_points.txt │ │ │ ├── fork_wait.py │ │ │ ├── formatfloat_testcases.txt │ │ │ ├── future_test1.py │ │ │ ├── future_test2.py │ │ │ ├── gb-18030-2000.ucm │ │ │ ├── gdb_sample.py │ │ │ ├── hello.com │ │ │ ├── ieee754.txt │ │ │ ├── imghdrdata │ │ │ │ ├── python.bmp │ │ │ │ ├── python.exr │ │ │ │ ├── python.gif │ │ │ │ ├── python.jpg │ │ │ │ ├── python.pbm │ │ │ │ ├── python.pgm │ │ │ │ ├── python.png │ │ │ │ ├── python.ppm │ │ │ │ ├── python.ras │ │ │ │ ├── python.sgi │ │ │ │ ├── python.tiff │ │ │ │ ├── python.webp │ │ │ │ └── python.xbm │ │ │ ├── imp_dummy.py │ │ │ ├── inspect_fodder.py │ │ │ ├── inspect_fodder2.py │ │ │ ├── keycert.passwd.pem │ │ │ ├── keycert.pem │ │ │ ├── keycert2.pem │ │ │ ├── keycert3.pem │ │ │ ├── keycert4.pem │ │ │ ├── leakers │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── test_ctypes.py │ │ │ │ └── test_selftype.py │ │ │ ├── libregrtest │ │ │ │ ├── __init__.py │ │ │ │ ├── cmdline.py │ │ │ │ ├── main.py │ │ │ │ ├── refleak.py │ │ │ │ ├── runtest.py │ │ │ │ ├── runtest_mp.py │ │ │ │ ├── save_env.py │ │ │ │ ├── setup.py │ │ │ │ └── utils.py │ │ │ ├── list_tests.py │ │ │ ├── lock_tests.py │ │ │ ├── mailcap.txt │ │ │ ├── make_ssl_certs.py │ │ │ ├── mapping_tests.py │ │ │ ├── math_testcases.txt │ │ │ ├── memory_watchdog.py │ │ │ ├── mock_socket.py │ │ │ ├── mod_generics_cache.py │ │ │ ├── mp_fork_bomb.py │ │ │ ├── mp_preload.py │ │ │ ├── multibytecodec_support.py │ │ │ ├── nokia.pem │ │ │ ├── nullbytecert.pem │ │ │ ├── nullcert.pem │ │ │ ├── outstanding_bugs.py │ │ │ ├── pickletester.py │ │ │ ├── profilee.py │ │ │ ├── pstats.pck │ │ │ ├── pycacert.pem │ │ │ ├── pycakey.pem │ │ │ ├── pyclbr_input.py │ │ │ ├── pydoc_mod.py │ │ │ ├── pydocfodder.py │ │ │ ├── pystone.py │ │ │ ├── pythoninfo.py │ │ │ ├── randv2_32.pck │ │ │ ├── randv2_64.pck │ │ │ ├── randv3.pck │ │ │ ├── re_tests.py │ │ │ ├── recursion.tar │ │ │ ├── relimport.py │ │ │ ├── reperf.py │ │ │ ├── revocation.crl │ │ │ ├── sample_doctest.py │ │ │ ├── sample_doctest_no_docstrings.py │ │ │ ├── sample_doctest_no_doctests.py │ │ │ ├── selfsigned_pythontestdotnet.pem │ │ │ ├── seq_tests.py │ │ │ ├── sgml_input.html │ │ │ ├── signalinterproctester.py │ │ │ ├── sndhdrdata │ │ │ │ ├── README │ │ │ │ ├── sndhdr.8svx │ │ │ │ ├── sndhdr.aifc │ │ │ │ ├── sndhdr.aiff │ │ │ │ ├── sndhdr.au │ │ │ │ ├── sndhdr.hcom │ │ │ │ ├── sndhdr.sndt │ │ │ │ ├── sndhdr.voc │ │ │ │ └── sndhdr.wav │ │ │ ├── sortperf.py │ │ │ ├── ssl_cert.pem │ │ │ ├── ssl_key.passwd.pem │ │ │ ├── ssl_key.pem │ │ │ ├── ssl_servers.py │ │ │ ├── ssltests.py │ │ │ ├── string_tests.py │ │ │ ├── subprocessdata │ │ │ │ ├── fd_status.py │ │ │ │ ├── input_reader.py │ │ │ │ ├── qcat.py │ │ │ │ ├── qgrep.py │ │ │ │ └── sigchild_ignore.py │ │ │ ├── support │ │ │ │ ├── __init__.py │ │ │ │ ├── script_helper.py │ │ │ │ └── testresult.py │ │ │ ├── talos-2019-0758.pem │ │ │ ├── test___all__.py │ │ │ ├── test___future__.py │ │ │ ├── test__locale.py │ │ │ ├── test__opcode.py │ │ │ ├── test__osx_support.py │ │ │ ├── test_abc.py │ │ │ ├── test_abstract_numbers.py │ │ │ ├── test_aifc.py │ │ │ ├── test_argparse.py │ │ │ ├── test_array.py │ │ │ ├── test_asdl_parser.py │ │ │ ├── test_ast.py │ │ │ ├── test_asyncgen.py │ │ │ ├── test_asynchat.py │ │ │ ├── test_asyncio │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── echo.py │ │ │ │ ├── echo2.py │ │ │ │ ├── echo3.py │ │ │ │ ├── test_base_events.py │ │ │ │ ├── test_events.py │ │ │ │ ├── test_futures.py │ │ │ │ ├── test_locks.py │ │ │ │ ├── test_pep492.py │ │ │ │ ├── test_proactor_events.py │ │ │ │ ├── test_queues.py │ │ │ │ ├── test_selector_events.py │ │ │ │ ├── test_sslproto.py │ │ │ │ ├── test_streams.py │ │ │ │ ├── test_subprocess.py │ │ │ │ ├── test_tasks.py │ │ │ │ ├── test_transports.py │ │ │ │ ├── test_unix_events.py │ │ │ │ ├── test_windows_events.py │ │ │ │ └── test_windows_utils.py │ │ │ ├── test_asyncore.py │ │ │ ├── test_atexit.py │ │ │ ├── test_audioop.py │ │ │ ├── test_augassign.py │ │ │ ├── test_base64.py │ │ │ ├── test_baseexception.py │ │ │ ├── test_bdb.py │ │ │ ├── test_bigaddrspace.py │ │ │ ├── test_bigmem.py │ │ │ ├── test_binascii.py │ │ │ ├── test_binhex.py │ │ │ ├── test_binop.py │ │ │ ├── test_bisect.py │ │ │ ├── test_bool.py │ │ │ ├── test_buffer.py │ │ │ ├── test_bufio.py │ │ │ ├── test_builtin.py │ │ │ ├── test_bytes.py │ │ │ ├── test_bz2.py │ │ │ ├── test_calendar.py │ │ │ ├── test_call.py │ │ │ ├── test_capi.py │ │ │ ├── test_cgi.py │ │ │ ├── test_cgitb.py │ │ │ ├── test_charmapcodec.py │ │ │ ├── test_class.py │ │ │ ├── test_cmath.py │ │ │ ├── test_cmd.py │ │ │ ├── test_cmd_line.py │ │ │ ├── test_cmd_line_script.py │ │ │ ├── test_code.py │ │ │ ├── test_code_module.py │ │ │ ├── test_codeccallbacks.py │ │ │ ├── test_codecencodings_cn.py │ │ │ ├── test_codecencodings_hk.py │ │ │ ├── test_codecencodings_iso2022.py │ │ │ ├── test_codecencodings_jp.py │ │ │ ├── test_codecencodings_kr.py │ │ │ ├── test_codecencodings_tw.py │ │ │ ├── test_codecmaps_cn.py │ │ │ ├── test_codecmaps_hk.py │ │ │ ├── test_codecmaps_jp.py │ │ │ ├── test_codecmaps_kr.py │ │ │ ├── test_codecmaps_tw.py │ │ │ ├── test_codecs.py │ │ │ ├── test_codeop.py │ │ │ ├── test_collections.py │ │ │ ├── test_colorsys.py │ │ │ ├── test_compare.py │ │ │ ├── test_compile.py │ │ │ ├── test_compileall.py │ │ │ ├── test_complex.py │ │ │ ├── test_concurrent_futures.py │ │ │ ├── test_configparser.py │ │ │ ├── test_contains.py │ │ │ ├── test_contextlib.py │ │ │ ├── test_copy.py │ │ │ ├── test_copyreg.py │ │ │ ├── test_coroutines.py │ │ │ ├── test_cosmo.py │ │ │ ├── test_cprofile.py │ │ │ ├── test_crashers.py │ │ │ ├── test_crypt.py │ │ │ ├── test_csv.py │ │ │ ├── test_ctypes.py │ │ │ ├── test_curses.py │ │ │ ├── test_datetime.py │ │ │ ├── test_dbm.py │ │ │ ├── test_dbm_dumb.py │ │ │ ├── test_dbm_gnu.py │ │ │ ├── test_dbm_ndbm.py │ │ │ ├── test_decimal.py │ │ │ ├── test_decorators.py │ │ │ ├── test_defaultdict.py │ │ │ ├── test_deque.py │ │ │ ├── test_descr.py │ │ │ ├── test_descrtut.py │ │ │ ├── test_devpoll.py │ │ │ ├── test_dict.py │ │ │ ├── test_dict_version.py │ │ │ ├── test_dictcomps.py │ │ │ ├── test_dictviews.py │ │ │ ├── test_difflib.py │ │ │ ├── test_difflib_expect.html │ │ │ ├── test_dis.py │ │ │ ├── test_distutils.py │ │ │ ├── test_doctest.py │ │ │ ├── test_doctest.txt │ │ │ ├── test_doctest2.py │ │ │ ├── test_doctest2.txt │ │ │ ├── test_doctest3.txt │ │ │ ├── test_doctest4.txt │ │ │ ├── test_docxmlrpc.py │ │ │ ├── test_dtrace.py │ │ │ ├── test_dummy_thread.py │ │ │ ├── test_dummy_threading.py │ │ │ ├── test_dynamic.py │ │ │ ├── test_dynamicclassattribute.py │ │ │ ├── test_eintr.py │ │ │ ├── test_email │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── data │ │ │ │ │ ├── PyBanner048.gif │ │ │ │ │ ├── audiotest.au │ │ │ │ │ ├── msg_01.txt │ │ │ │ │ ├── msg_02.txt │ │ │ │ │ ├── msg_03.txt │ │ │ │ │ ├── msg_04.txt │ │ │ │ │ ├── msg_05.txt │ │ │ │ │ ├── msg_06.txt │ │ │ │ │ ├── msg_07.txt │ │ │ │ │ ├── msg_08.txt │ │ │ │ │ ├── msg_09.txt │ │ │ │ │ ├── msg_10.txt │ │ │ │ │ ├── msg_11.txt │ │ │ │ │ ├── msg_12.txt │ │ │ │ │ ├── msg_12a.txt │ │ │ │ │ ├── msg_13.txt │ │ │ │ │ ├── msg_14.txt │ │ │ │ │ ├── msg_15.txt │ │ │ │ │ ├── msg_16.txt │ │ │ │ │ ├── msg_17.txt │ │ │ │ │ ├── msg_18.txt │ │ │ │ │ ├── msg_19.txt │ │ │ │ │ ├── msg_20.txt │ │ │ │ │ ├── msg_21.txt │ │ │ │ │ ├── msg_22.txt │ │ │ │ │ ├── msg_23.txt │ │ │ │ │ ├── msg_24.txt │ │ │ │ │ ├── msg_25.txt │ │ │ │ │ ├── msg_26.txt │ │ │ │ │ ├── msg_27.txt │ │ │ │ │ ├── msg_28.txt │ │ │ │ │ ├── msg_29.txt │ │ │ │ │ ├── msg_30.txt │ │ │ │ │ ├── msg_31.txt │ │ │ │ │ ├── msg_32.txt │ │ │ │ │ ├── msg_33.txt │ │ │ │ │ ├── msg_34.txt │ │ │ │ │ ├── msg_35.txt │ │ │ │ │ ├── msg_36.txt │ │ │ │ │ ├── msg_37.txt │ │ │ │ │ ├── msg_38.txt │ │ │ │ │ ├── msg_39.txt │ │ │ │ │ ├── msg_40.txt │ │ │ │ │ ├── msg_41.txt │ │ │ │ │ ├── msg_42.txt │ │ │ │ │ ├── msg_43.txt │ │ │ │ │ ├── msg_44.txt │ │ │ │ │ ├── msg_45.txt │ │ │ │ │ └── msg_46.txt │ │ │ │ ├── test__encoded_words.py │ │ │ │ ├── test__header_value_parser.py │ │ │ │ ├── test_asian_codecs.py │ │ │ │ ├── test_contentmanager.py │ │ │ │ ├── test_defect_handling.py │ │ │ │ ├── test_email.py │ │ │ │ ├── test_generator.py │ │ │ │ ├── test_headerregistry.py │ │ │ │ ├── test_inversion.py │ │ │ │ ├── test_message.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pickleable.py │ │ │ │ ├── test_policy.py │ │ │ │ ├── test_utils.py │ │ │ │ └── torture_test.py │ │ │ ├── test_enum.py │ │ │ ├── test_enumerate.py │ │ │ ├── test_eof.py │ │ │ ├── test_epoll.py │ │ │ ├── test_errno.py │ │ │ ├── test_exception_hierarchy.py │ │ │ ├── test_exception_variations.py │ │ │ ├── test_exceptions.py │ │ │ ├── test_extcall.py │ │ │ ├── test_faulthandler.py │ │ │ ├── test_fcntl.py │ │ │ ├── test_file.py │ │ │ ├── test_file_eintr.py │ │ │ ├── test_filecmp.py │ │ │ ├── test_fileinput.py │ │ │ ├── test_fileio.py │ │ │ ├── test_finalization.py │ │ │ ├── test_float.py │ │ │ ├── test_flufl.py │ │ │ ├── test_fnmatch.py │ │ │ ├── test_fork1.py │ │ │ ├── test_format.py │ │ │ ├── test_fractions.py │ │ │ ├── test_frame.py │ │ │ ├── test_fstring.py │ │ │ ├── test_ftplib.py │ │ │ ├── test_funcattrs.py │ │ │ ├── test_functools.py │ │ │ ├── test_future.py │ │ │ ├── test_future3.py │ │ │ ├── test_future4.py │ │ │ ├── test_future5.py │ │ │ ├── test_gc.py │ │ │ ├── test_gdb.py │ │ │ ├── test_generator_stop.py │ │ │ ├── test_generators.py │ │ │ ├── test_genericpath.py │ │ │ ├── test_genexps.py │ │ │ ├── test_getargs2.py │ │ │ ├── test_getopt.py │ │ │ ├── test_getpass.py │ │ │ ├── test_gettext.py │ │ │ ├── test_glob.py │ │ │ ├── test_global.py │ │ │ ├── test_grammar.py │ │ │ ├── test_grp.py │ │ │ ├── test_gzip.py │ │ │ ├── test_hash.py │ │ │ ├── test_hashlib.py │ │ │ ├── test_heapq.py │ │ │ ├── test_hmac.py │ │ │ ├── test_html.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_http_cookiejar.py │ │ │ ├── test_http_cookies.py │ │ │ ├── test_httplib.py │ │ │ ├── test_httpservers.py │ │ │ ├── test_idle.py │ │ │ ├── test_imaplib.py │ │ │ ├── test_imghdr.py │ │ │ ├── test_imp.py │ │ │ ├── test_import │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── data │ │ │ │ │ ├── circular_imports │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── basic2.py │ │ │ │ │ ├── indirect.py │ │ │ │ │ ├── rebinding.py │ │ │ │ │ ├── rebinding2.py │ │ │ │ │ ├── subpackage.py │ │ │ │ │ ├── subpkg │ │ │ │ │ │ ├── subpackage2.py │ │ │ │ │ │ └── util.py │ │ │ │ │ └── util.py │ │ │ │ │ ├── package │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── submodule.py │ │ │ │ │ └── package2 │ │ │ │ │ ├── submodule1.py │ │ │ │ │ └── submodule2.py │ │ │ ├── test_importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── abc.py │ │ │ │ ├── builtin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ └── test_loader.py │ │ │ │ ├── extension │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ ├── test_loader.py │ │ │ │ │ └── test_path_hook.py │ │ │ │ ├── frozen │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ └── test_loader.py │ │ │ │ ├── import_ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test___loader__.py │ │ │ │ │ ├── test___package__.py │ │ │ │ │ ├── test_api.py │ │ │ │ │ ├── test_caching.py │ │ │ │ │ ├── test_fromlist.py │ │ │ │ │ ├── test_meta_path.py │ │ │ │ │ ├── test_packages.py │ │ │ │ │ ├── test_path.py │ │ │ │ │ └── test_relative_imports.py │ │ │ │ ├── namespace_pkgs │ │ │ │ │ ├── both_portions │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── one.py │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── missing_directory.zip │ │ │ │ │ ├── module_and_namespace_package │ │ │ │ │ │ ├── a_test.py │ │ │ │ │ │ └── a_test │ │ │ │ │ │ │ └── empty │ │ │ │ │ ├── nested_portion1.zip │ │ │ │ │ ├── not_a_namespace_pkg │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── portion1 │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── portion2 │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── project1 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── project2 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── project3 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── three.py │ │ │ │ │ └── top_level_portion1.zip │ │ │ │ ├── source │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ ├── test_file_loader.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ ├── test_path_hook.py │ │ │ │ │ └── test_source_encoding.py │ │ │ │ ├── test_abc.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_lazy.py │ │ │ │ ├── test_locks.py │ │ │ │ ├── test_namespace_pkgs.py │ │ │ │ ├── test_spec.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_windows.py │ │ │ │ └── util.py │ │ │ ├── test_index.py │ │ │ ├── test_inspect.py │ │ │ ├── test_int.py │ │ │ ├── test_int_literal.py │ │ │ ├── test_io.py │ │ │ ├── test_ipaddress.py │ │ │ ├── test_isinstance.py │ │ │ ├── test_iter.py │ │ │ ├── test_iterlen.py │ │ │ ├── test_itertools.py │ │ │ ├── test_json │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_decode.py │ │ │ │ ├── test_default.py │ │ │ │ ├── test_dump.py │ │ │ │ ├── test_encode_basestring_ascii.py │ │ │ │ ├── test_enum.py │ │ │ │ ├── test_fail.py │ │ │ │ ├── test_float.py │ │ │ │ ├── test_indent.py │ │ │ │ ├── test_pass1.py │ │ │ │ ├── test_pass2.py │ │ │ │ ├── test_pass3.py │ │ │ │ ├── test_recursion.py │ │ │ │ ├── test_scanstring.py │ │ │ │ ├── test_separators.py │ │ │ │ ├── test_speedups.py │ │ │ │ ├── test_tool.py │ │ │ │ └── test_unicode.py │ │ │ ├── test_kdf.py │ │ │ ├── test_keyword.py │ │ │ ├── test_keywordonlyarg.py │ │ │ ├── test_kqueue.py │ │ │ ├── test_largefile.py │ │ │ ├── test_lib2to3.py │ │ │ ├── test_linecache.py │ │ │ ├── test_list.py │ │ │ ├── test_listcomps.py │ │ │ ├── test_locale.py │ │ │ ├── test_logging.py │ │ │ ├── test_long.py │ │ │ ├── test_longexp.py │ │ │ ├── test_lzma.py │ │ │ ├── test_macpath.py │ │ │ ├── test_macurl2path.py │ │ │ ├── test_mailbox.py │ │ │ ├── test_mailcap.py │ │ │ ├── test_marshal.py │ │ │ ├── test_math.py │ │ │ ├── test_memoryio.py │ │ │ ├── test_memoryview.py │ │ │ ├── test_metaclass.py │ │ │ ├── test_mimetypes.py │ │ │ ├── test_minidom.py │ │ │ ├── test_mmap.py │ │ │ ├── test_module.py │ │ │ ├── test_modulefinder.py │ │ │ ├── test_msilib.py │ │ │ ├── test_multibytecodec.py │ │ │ ├── test_multiprocessing_fork.py │ │ │ ├── test_multiprocessing_forkserver.py │ │ │ ├── test_multiprocessing_main_handling.py │ │ │ ├── test_multiprocessing_spawn.py │ │ │ ├── test_netrc.py │ │ │ ├── test_nis.py │ │ │ ├── test_nntplib.py │ │ │ ├── test_normalization.py │ │ │ ├── test_ntpath.py │ │ │ ├── test_numeric_tower.py │ │ │ ├── test_opcodes.py │ │ │ ├── test_openpty.py │ │ │ ├── test_operator.py │ │ │ ├── test_optparse.py │ │ │ ├── test_ordered_dict.py │ │ │ ├── test_os.py │ │ │ ├── test_ossaudiodev.py │ │ │ ├── test_osx_env.py │ │ │ ├── test_parser.py │ │ │ ├── test_pathlib.py │ │ │ ├── test_pdb.py │ │ │ ├── test_peepholer.py │ │ │ ├── test_pickle.py │ │ │ ├── test_pickletools.py │ │ │ ├── test_pipes.py │ │ │ ├── test_pkg.py │ │ │ ├── test_pkgimport.py │ │ │ ├── test_pkgutil.py │ │ │ ├── test_platform.py │ │ │ ├── test_plistlib.py │ │ │ ├── test_poll.py │ │ │ ├── test_popen.py │ │ │ ├── test_poplib.py │ │ │ ├── test_posix.py │ │ │ ├── test_posixpath.py │ │ │ ├── test_pow.py │ │ │ ├── test_pprint.py │ │ │ ├── test_print.py │ │ │ ├── test_profile.py │ │ │ ├── test_property.py │ │ │ ├── test_pstats.py │ │ │ ├── test_pty.py │ │ │ ├── test_pulldom.py │ │ │ ├── test_pwd.py │ │ │ ├── test_py_compile.py │ │ │ ├── test_pyclbr.py │ │ │ ├── test_pydoc.py │ │ │ ├── test_pyexpat.py │ │ │ ├── test_queue.py │ │ │ ├── test_quopri.py │ │ │ ├── test_raise.py │ │ │ ├── test_random.py │ │ │ ├── test_range.py │ │ │ ├── test_re.py │ │ │ ├── test_readline.py │ │ │ ├── test_regrtest.py │ │ │ ├── test_repl.py │ │ │ ├── test_reprlib.py │ │ │ ├── test_resource.py │ │ │ ├── test_richcmp.py │ │ │ ├── test_rlcompleter.py │ │ │ ├── test_robotparser.py │ │ │ ├── test_runpy.py │ │ │ ├── test_sax.py │ │ │ ├── test_sched.py │ │ │ ├── test_scope.py │ │ │ ├── test_scratch.py │ │ │ ├── test_script_helper.py │ │ │ ├── test_secrets.py │ │ │ ├── test_select.py │ │ │ ├── test_selectors.py │ │ │ ├── test_set.py │ │ │ ├── test_setcomps.py │ │ │ ├── test_shelve.py │ │ │ ├── test_shlex.py │ │ │ ├── test_shutil.py │ │ │ ├── test_signal.py │ │ │ ├── test_site.py │ │ │ ├── test_slice.py │ │ │ ├── test_smtpd.py │ │ │ ├── test_smtplib.py │ │ │ ├── test_smtpnet.py │ │ │ ├── test_sndhdr.py │ │ │ ├── test_socket.py │ │ │ ├── test_socketserver.py │ │ │ ├── test_sort.py │ │ │ ├── test_source_encoding.py │ │ │ ├── test_spwd.py │ │ │ ├── test_sqlite.py │ │ │ ├── test_ssl.py │ │ │ ├── test_startfile.py │ │ │ ├── test_stat.py │ │ │ ├── test_statistics.py │ │ │ ├── test_strftime.py │ │ │ ├── test_string.py │ │ │ ├── test_string_literals.py │ │ │ ├── test_stringprep.py │ │ │ ├── test_strptime.py │ │ │ ├── test_strtod.py │ │ │ ├── test_struct.py │ │ │ ├── test_structmembers.py │ │ │ ├── test_structseq.py │ │ │ ├── test_subclassinit.py │ │ │ ├── test_subprocess.py │ │ │ ├── test_sunau.py │ │ │ ├── test_sundry.py │ │ │ ├── test_super.py │ │ │ ├── test_support.py │ │ │ ├── test_symbol.py │ │ │ ├── test_symtable.py │ │ │ ├── test_syntax.py │ │ │ ├── test_sys.py │ │ │ ├── test_sys_setprofile.py │ │ │ ├── test_sys_settrace.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_syslog.py │ │ │ ├── test_tarfile.py │ │ │ ├── test_tcl.py │ │ │ ├── test_telnetlib.py │ │ │ ├── test_tempfile.py │ │ │ ├── test_textwrap.py │ │ │ ├── test_thread.py │ │ │ ├── test_threaded_import.py │ │ │ ├── test_threadedtempfile.py │ │ │ ├── test_threading.py │ │ │ ├── test_threading_local.py │ │ │ ├── test_threadsignals.py │ │ │ ├── test_time.py │ │ │ ├── test_timeit.py │ │ │ ├── test_timeout.py │ │ │ ├── test_tix.py │ │ │ ├── test_tk.py │ │ │ ├── test_tokenize.py │ │ │ ├── test_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_fixcid.py │ │ │ │ ├── test_gprof2html.py │ │ │ │ ├── test_i18n.py │ │ │ │ ├── test_md5sum.py │ │ │ │ ├── test_pdeps.py │ │ │ │ ├── test_pindent.py │ │ │ │ ├── test_reindent.py │ │ │ │ ├── test_sundry.py │ │ │ │ └── test_unparse.py │ │ │ ├── test_trace.py │ │ │ ├── test_traceback.py │ │ │ ├── test_tracemalloc.py │ │ │ ├── test_ttk_guionly.py │ │ │ ├── test_ttk_textonly.py │ │ │ ├── test_tuple.py │ │ │ ├── test_turtle.py │ │ │ ├── test_typechecks.py │ │ │ ├── test_types.py │ │ │ ├── test_typing.py │ │ │ ├── test_ucn.py │ │ │ ├── test_unary.py │ │ │ ├── test_unicode.py │ │ │ ├── test_unicode_file.py │ │ │ ├── test_unicode_file_functions.py │ │ │ ├── test_unicode_identifiers.py │ │ │ ├── test_unicodedata.py │ │ │ ├── test_unittest.py │ │ │ ├── test_univnewlines.py │ │ │ ├── test_unpack.py │ │ │ ├── test_unpack_ex.py │ │ │ ├── test_urllib.py │ │ │ ├── test_urllib2.py │ │ │ ├── test_urllib2_localnet.py │ │ │ ├── test_urllib2net.py │ │ │ ├── test_urllib_response.py │ │ │ ├── test_urllibnet.py │ │ │ ├── test_urlparse.py │ │ │ ├── test_userdict.py │ │ │ ├── test_userlist.py │ │ │ ├── test_userstring.py │ │ │ ├── test_utf8source.py │ │ │ ├── test_uu.py │ │ │ ├── test_uuid.py │ │ │ ├── test_venv.py │ │ │ ├── test_wait3.py │ │ │ ├── test_wait4.py │ │ │ ├── test_warnings │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── import_warning.py │ │ │ │ │ └── stacklevel.py │ │ │ ├── test_wave.py │ │ │ ├── test_weakref.py │ │ │ ├── test_weakset.py │ │ │ ├── test_webbrowser.py │ │ │ ├── test_winconsoleio.py │ │ │ ├── test_winreg.py │ │ │ ├── test_winsound.py │ │ │ ├── test_with.py │ │ │ ├── test_wsgiref.py │ │ │ ├── test_xdrlib.py │ │ │ ├── test_xml_dom_minicompat.py │ │ │ ├── test_xml_etree.py │ │ │ ├── test_xml_etree_c.py │ │ │ ├── test_xmlrpc.py │ │ │ ├── test_xmlrpc_net.py │ │ │ ├── test_yield_from.py │ │ │ ├── test_zipapp.py │ │ │ ├── test_zipfile.py │ │ │ ├── test_zipfile64.py │ │ │ ├── test_zipimport.py │ │ │ ├── test_zipimport_support.py │ │ │ ├── test_zlib.py │ │ │ ├── testcodec.py │ │ │ ├── testtar.tar │ │ │ ├── tf_inherit_check.py │ │ │ ├── threaded_import_hangers.py │ │ │ ├── time_hashlib.py │ │ │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ │ │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ │ │ ├── tokenize_tests.txt │ │ │ ├── tracedmodules │ │ │ │ ├── __init__.py │ │ │ │ └── testmod.py │ │ │ ├── win_console_handler.py │ │ │ ├── xmltestdata │ │ │ │ ├── expat224_utf8_bug.xml │ │ │ │ ├── simple-ns.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── test.xml │ │ │ │ └── test.xml.out │ │ │ ├── xmltests.py │ │ │ ├── zip_cp437_header.zip │ │ │ └── zipdir.zip │ │ ├── textwrap.py │ │ ├── this.py │ │ ├── threading.py │ │ ├── timeit.py │ │ ├── tkinter │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── colorchooser.py │ │ │ ├── commondialog.py │ │ │ ├── constants.py │ │ │ ├── dialog.py │ │ │ ├── dnd.py │ │ │ ├── filedialog.py │ │ │ ├── font.py │ │ │ ├── messagebox.py │ │ │ ├── scrolledtext.py │ │ │ ├── simpledialog.py │ │ │ ├── test │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── runtktests.py │ │ │ │ ├── support.py │ │ │ │ ├── test_tkinter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_font.py │ │ │ │ │ ├── test_geometry_managers.py │ │ │ │ │ ├── test_images.py │ │ │ │ │ ├── test_loadtk.py │ │ │ │ │ ├── test_misc.py │ │ │ │ │ ├── test_text.py │ │ │ │ │ ├── test_variables.py │ │ │ │ │ └── test_widgets.py │ │ │ │ ├── test_ttk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_extensions.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_style.py │ │ │ │ │ └── test_widgets.py │ │ │ │ └── widget_tests.py │ │ │ ├── tix.py │ │ │ └── ttk.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── trace.py │ │ ├── traceback.py │ │ ├── tracemalloc.py │ │ ├── tty.py │ │ ├── turtle.py │ │ ├── turtledemo │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── bytedesign.py │ │ │ ├── chaos.py │ │ │ ├── clock.py │ │ │ ├── colormixer.py │ │ │ ├── forest.py │ │ │ ├── fractalcurves.py │ │ │ ├── lindenmayer.py │ │ │ ├── minimal_hanoi.py │ │ │ ├── nim.py │ │ │ ├── paint.py │ │ │ ├── peace.py │ │ │ ├── penrose.py │ │ │ ├── planet_and_moon.py │ │ │ ├── rosette.py │ │ │ ├── round_dance.py │ │ │ ├── sorting_animate.py │ │ │ ├── tree.py │ │ │ ├── turtle.cfg │ │ │ ├── two_canvases.py │ │ │ └── yinyang.py │ │ ├── types.py │ │ ├── typing.py │ │ ├── unittest │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _main.py │ │ │ ├── case.py │ │ │ ├── loader.py │ │ │ ├── mock.py │ │ │ ├── result.py │ │ │ ├── runner.py │ │ │ ├── signals.py │ │ │ ├── suite.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _test_warnings.py │ │ │ │ ├── dummy.py │ │ │ │ ├── support.py │ │ │ │ ├── test_assertions.py │ │ │ │ ├── test_break.py │ │ │ │ ├── test_case.py │ │ │ │ ├── test_discovery.py │ │ │ │ ├── test_functiontestcase.py │ │ │ │ ├── test_loader.py │ │ │ │ ├── test_program.py │ │ │ │ ├── test_result.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_setups.py │ │ │ │ ├── test_skipping.py │ │ │ │ ├── test_suite.py │ │ │ │ └── testmock │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── support.py │ │ │ │ │ ├── testcallable.py │ │ │ │ │ ├── testhelpers.py │ │ │ │ │ ├── testmagicmethods.py │ │ │ │ │ ├── testmock.py │ │ │ │ │ ├── testpatch.py │ │ │ │ │ ├── testsentinel.py │ │ │ │ │ └── testwith.py │ │ │ └── util.py │ │ ├── urllib │ │ │ ├── __init__.py │ │ │ ├── error.py │ │ │ ├── parse.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── robotparser.py │ │ ├── uu.py │ │ ├── uuid.py │ │ ├── venv │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ └── activate │ │ │ │ ├── nt │ │ │ │ ├── Activate.ps1 │ │ │ │ ├── activate.bat │ │ │ │ └── deactivate.bat │ │ │ │ └── posix │ │ │ │ ├── activate.csh │ │ │ │ └── activate.fish │ │ ├── warnings.py │ │ ├── wave.py │ │ ├── weakref.py │ │ ├── webbrowser.py │ │ ├── wsgiref │ │ │ ├── __init__.py │ │ │ ├── handlers.py │ │ │ ├── headers.py │ │ │ ├── simple_server.py │ │ │ ├── util.py │ │ │ └── validate.py │ │ ├── xdrlib.py │ │ ├── xml │ │ │ ├── __init__.py │ │ │ ├── dom │ │ │ │ ├── NodeFilter.py │ │ │ │ ├── __init__.py │ │ │ │ ├── domreg.py │ │ │ │ ├── expatbuilder.py │ │ │ │ ├── minicompat.py │ │ │ │ ├── minidom.py │ │ │ │ ├── pulldom.py │ │ │ │ └── xmlbuilder.py │ │ │ ├── etree │ │ │ │ ├── ElementInclude.py │ │ │ │ ├── ElementPath.py │ │ │ │ ├── ElementTree.py │ │ │ │ ├── __init__.py │ │ │ │ └── cElementTree.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ └── expat.py │ │ │ └── sax │ │ │ │ ├── __init__.py │ │ │ │ ├── _exceptions.py │ │ │ │ ├── expatreader.py │ │ │ │ ├── handler.py │ │ │ │ ├── saxutils.py │ │ │ │ └── xmlreader.py │ │ ├── xmlrpc │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── server.py │ │ ├── zipapp.py │ │ └── zipfile.py │ ├── Modules │ │ ├── README │ │ ├── _asynciomodule.c │ │ ├── _bisectmodule.c │ │ ├── _bz2module.c │ │ ├── _codecsmodule.c │ │ ├── _collectionsmodule.c │ │ ├── _cryptmodule.c │ │ ├── _csv.c │ │ ├── _datetimemodule.c │ │ ├── _dbmmodule.c │ │ ├── _decimal │ │ │ ├── README.txt │ │ │ ├── _decimal.c │ │ │ ├── docstrings.h │ │ │ ├── libmpdec │ │ │ │ ├── README.txt │ │ │ │ ├── basearith.c │ │ │ │ ├── basearith.h │ │ │ │ ├── bits.h │ │ │ │ ├── constants.c │ │ │ │ ├── constants.h │ │ │ │ ├── context.c │ │ │ │ ├── convolute.c │ │ │ │ ├── convolute.h │ │ │ │ ├── crt.c │ │ │ │ ├── crt.h │ │ │ │ ├── difradix2.c │ │ │ │ ├── difradix2.h │ │ │ │ ├── fnt.c │ │ │ │ ├── fnt.h │ │ │ │ ├── fourstep.c │ │ │ │ ├── fourstep.h │ │ │ │ ├── io.c │ │ │ │ ├── io.h │ │ │ │ ├── memory.c │ │ │ │ ├── mpalloc.h │ │ │ │ ├── mpdecimal.c │ │ │ │ ├── mpdecimal.h │ │ │ │ ├── numbertheory.c │ │ │ │ ├── numbertheory.h │ │ │ │ ├── sixstep.c │ │ │ │ ├── sixstep.h │ │ │ │ ├── transpose.c │ │ │ │ ├── transpose.h │ │ │ │ ├── typearith.h │ │ │ │ └── umodarith.h │ │ │ └── tests │ │ │ │ ├── README.txt │ │ │ │ ├── bench.py │ │ │ │ ├── bignum.py │ │ │ │ ├── deccheck.py │ │ │ │ ├── formathelper.py │ │ │ │ ├── randdec.py │ │ │ │ ├── randfloat.py │ │ │ │ ├── runall-memorydebugger.sh │ │ │ │ └── runall.bat │ │ ├── _elementtree.c │ │ ├── _functoolsmodule.c │ │ ├── _gdbmmodule.c │ │ ├── _hashmbedtls.c │ │ ├── _heapqmodule.c │ │ ├── _io │ │ │ ├── _iomodule.c │ │ │ ├── _iomodule.h │ │ │ ├── bufferedio.c │ │ │ ├── bytesio.c │ │ │ ├── clinic │ │ │ │ ├── _iomodule.inc │ │ │ │ ├── bufferedio.inc │ │ │ │ ├── bytesio.inc │ │ │ │ ├── fileio.inc │ │ │ │ ├── iobase.inc │ │ │ │ ├── stringio.inc │ │ │ │ ├── textio.inc │ │ │ │ └── winconsoleio.inc │ │ │ ├── fileio.c │ │ │ ├── iobase.c │ │ │ ├── stringio.c │ │ │ ├── textio.c │ │ │ └── winconsoleio.c │ │ ├── _json.c │ │ ├── _localemodule.c │ │ ├── _lol3.c │ │ ├── _lsprof.c │ │ ├── _lzmamodule.c │ │ ├── _math.c │ │ ├── _math.h │ │ ├── _multiprocessing │ │ │ ├── multiprocessing.c │ │ │ ├── multiprocessing.h │ │ │ └── semaphore.c │ │ ├── _opcode.c │ │ ├── _operator.c │ │ ├── _pickle.c │ │ ├── _posixsubprocess.c │ │ ├── _randommodule.c │ │ ├── _sqlite │ │ │ ├── cache.c │ │ │ ├── cache.h │ │ │ ├── connection.c │ │ │ ├── connection.h │ │ │ ├── cursor.c │ │ │ ├── cursor.h │ │ │ ├── microprotocols.c │ │ │ ├── microprotocols.h │ │ │ ├── module.c │ │ │ ├── module.h │ │ │ ├── prepare_protocol.c │ │ │ ├── prepare_protocol.h │ │ │ ├── row.c │ │ │ ├── row.h │ │ │ ├── statement.c │ │ │ ├── statement.h │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── _sre.c │ │ ├── _stat.c │ │ ├── _struct.c │ │ ├── _testbuffer.c │ │ ├── _testcapimodule.c │ │ ├── _testmultiphase.c │ │ ├── _threadmodule.c │ │ ├── _tracemalloc.c │ │ ├── _weakref.c │ │ ├── _winapi.c │ │ ├── arraymodule.c │ │ ├── atexitmodule.c │ │ ├── audioop.c │ │ ├── bextra.c │ │ ├── bextra.h │ │ ├── binascii.c │ │ ├── cjkcodecs │ │ │ ├── README │ │ │ ├── __big5_decmap.c │ │ │ ├── __big5_encmap.c │ │ │ ├── __big5hkscs_bmp_encmap.c │ │ │ ├── __big5hkscs_decmap.c │ │ │ ├── __big5hkscs_nonbmp_encmap.c │ │ │ ├── __cp932ext_decmap.c │ │ │ ├── __cp932ext_encmap.c │ │ │ ├── __cp949_encmap.c │ │ │ ├── __cp949ext_decmap.c │ │ │ ├── __cp950ext_decmap.c │ │ │ ├── __cp950ext_encmap.c │ │ │ ├── __gb18030ext_decmap.c │ │ │ ├── __gb18030ext_encmap.c │ │ │ ├── __gb2312_decmap.c │ │ │ ├── __gbcommon_encmap.c │ │ │ ├── __gbkext_decmap.c │ │ │ ├── __jisx0208_decmap.c │ │ │ ├── __jisx0212_decmap.c │ │ │ ├── __jisx0213_1_bmp_decmap.c │ │ │ ├── __jisx0213_1_emp_decmap.c │ │ │ ├── __jisx0213_2_bmp_decmap.c │ │ │ ├── __jisx0213_2_emp_decmap.c │ │ │ ├── __jisx0213_bmp_encmap.c │ │ │ ├── __jisx0213_emp_encmap.c │ │ │ ├── __jisx0213_pair_decmap.c │ │ │ ├── __jisxcommon_encmap.c │ │ │ ├── __ksx1001_decmap.c │ │ │ ├── _codecs_cn.c │ │ │ ├── _codecs_hk.c │ │ │ ├── _codecs_iso2022.c │ │ │ ├── _codecs_jp.c │ │ │ ├── _codecs_kr.c │ │ │ ├── _codecs_tw.c │ │ │ ├── alg_jisx0201.inc │ │ │ ├── big5_decmap.c │ │ │ ├── big5_encmap.c │ │ │ ├── big5hkscs_bmp_encmap.c │ │ │ ├── big5hkscs_decmap.c │ │ │ ├── big5hkscs_nonbmp_encmap.c │ │ │ ├── cjkcodecs.h │ │ │ ├── clinic │ │ │ │ └── multibytecodec.inc │ │ │ ├── cp932ext_decmap.c │ │ │ ├── cp932ext_encmap.c │ │ │ ├── cp949_encmap.c │ │ │ ├── cp949ext_decmap.c │ │ │ ├── cp950ext_decmap.c │ │ │ ├── cp950ext_encmap.c │ │ │ ├── emu_jisx0213_2000.inc │ │ │ ├── gb18030ext_decmap.c │ │ │ ├── gb18030ext_encmap.c │ │ │ ├── gb2312_decmap.c │ │ │ ├── gbcommon_encmap.c │ │ │ ├── gbkext_decmap.c │ │ │ ├── jisx0208_decmap.c │ │ │ ├── jisx0212_decmap.c │ │ │ ├── jisx0213_1_bmp_decmap.c │ │ │ ├── jisx0213_1_emp_decmap.c │ │ │ ├── jisx0213_2_bmp_decmap.c │ │ │ ├── jisx0213_2_emp_decmap.c │ │ │ ├── jisx0213_bmp_encmap.c │ │ │ ├── jisx0213_emp_encmap.c │ │ │ ├── jisx0213_pair_decmap.c │ │ │ ├── jisx0213_pair_encmap.c │ │ │ ├── jisxcommon_encmap.c │ │ │ ├── ksx1001_decmap.c │ │ │ ├── multibytecodec.c │ │ │ ├── multibytecodec.h │ │ │ ├── somanyencodings.h │ │ │ ├── xloadzd.c │ │ │ └── xloadzd.h │ │ ├── clinic │ │ │ ├── _asynciomodule.inc │ │ │ ├── _bz2module.inc │ │ │ ├── _codecsmodule.inc │ │ │ ├── _cryptmodule.inc │ │ │ ├── _cursesmodule.inc │ │ │ ├── _datetimemodule.inc │ │ │ ├── _dbmmodule.inc │ │ │ ├── _elementtree.inc │ │ │ ├── _gdbmmodule.inc │ │ │ ├── _lzmamodule.inc │ │ │ ├── _opcode.inc │ │ │ ├── _pickle.inc │ │ │ ├── _sre.inc │ │ │ ├── _ssl.inc │ │ │ ├── _struct.inc │ │ │ ├── _tkinter.inc │ │ │ ├── _weakref.inc │ │ │ ├── _winapi.inc │ │ │ ├── arraymodule.inc │ │ │ ├── audioop.inc │ │ │ ├── binascii.inc │ │ │ ├── cmathmodule.inc │ │ │ ├── fcntlmodule.inc │ │ │ ├── grpmodule.inc │ │ │ ├── posixmodule.inc │ │ │ ├── pwdmodule.inc │ │ │ ├── pyexpat.inc │ │ │ ├── signalmodule.inc │ │ │ ├── spwdmodule.inc │ │ │ ├── unicodedata.inc │ │ │ └── zlibmodule.inc │ │ ├── cmathmodule.c │ │ ├── config.c │ │ ├── errnomodule.c │ │ ├── expat │ │ │ ├── COPYING │ │ │ ├── ascii.inc │ │ │ ├── asciitab.inc │ │ │ ├── expat.h │ │ │ ├── expat_config.h │ │ │ ├── expat_external.h │ │ │ ├── iasciitab.inc │ │ │ ├── internal.inc │ │ │ ├── latin1tab.inc │ │ │ ├── nametab.inc │ │ │ ├── pyexpatns.h │ │ │ ├── siphash.inc │ │ │ ├── utf8tab.inc │ │ │ ├── xmlparse.c │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.h.inc │ │ │ ├── xmltok_impl.inc │ │ │ └── xmltok_ns.inc │ │ ├── faulthandler.c │ │ ├── fcntlmodule.c │ │ ├── fpectlmodule.c │ │ ├── fpetestmodule.c │ │ ├── fspath.c │ │ ├── gcmodule.c │ │ ├── getbuildinfo.c │ │ ├── getpath.c │ │ ├── grpmodule.c │ │ ├── hashlib.h │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── itertoolsmodule.c │ │ ├── main.c │ │ ├── mathmodule.c │ │ ├── mmapmodule.c │ │ ├── ossaudiodev.c │ │ ├── overlapped.c │ │ ├── parsermodule.c │ │ ├── posixmodule.c │ │ ├── posixmodule.h │ │ ├── pwdmodule.c │ │ ├── pyexpat.c │ │ ├── resource.c │ │ ├── rotatingtree.c │ │ ├── rotatingtree.h │ │ ├── selectmodule.c │ │ ├── signalmodule.c │ │ ├── socketmodule.c │ │ ├── socketmodule.h │ │ ├── spwdmodule.c │ │ ├── sre.h │ │ ├── sre_constants.h │ │ ├── sre_lib.inc │ │ ├── symtablemodule.c │ │ ├── syslogmodule.c │ │ ├── termios.c │ │ ├── testcapi_long.inc │ │ ├── timemodule.c │ │ ├── tkinter.h │ │ ├── tlsmodule.c │ │ ├── tokenbucket.c │ │ ├── unicodedata.c │ │ ├── unicodedata.h │ │ ├── unicodedata_3.2.0.c │ │ ├── unicodedata_aliases.c │ │ ├── unicodedata_bidirectionalnames.c │ │ ├── unicodedata_categorynames.c │ │ ├── unicodedata_codehash.c │ │ ├── unicodedata_comp.c │ │ ├── unicodedata_decomp.c │ │ ├── unicodedata_decompprefix.c │ │ ├── unicodedata_eastasianwidthnames.c │ │ ├── unicodedata_extendedcase.c │ │ ├── unicodedata_findnfcindex.c │ │ ├── unicodedata_getcode.c │ │ ├── unicodedata_getdecomprecord.c │ │ ├── unicodedata_getrecord.c │ │ ├── unicodedata_islinebreak.c │ │ ├── unicodedata_isnormalized.c │ │ ├── unicodedata_isunifiedideograph.c │ │ ├── unicodedata_iswhitespace.c │ │ ├── unicodedata_lexicon.c │ │ ├── unicodedata_namedsequences.c │ │ ├── unicodedata_nfcfirst.c │ │ ├── unicodedata_nfclast.c │ │ ├── unicodedata_nfcnfkc.c │ │ ├── unicodedata_nfdnfkd.c │ │ ├── unicodedata_phrasebook.c │ │ ├── unicodedata_records.c │ │ ├── unicodedata_tonumeric.c │ │ ├── unicodedata_typerecords.c │ │ ├── unicodedata_ucd.c │ │ ├── unicodedata_unidata.h │ │ ├── winreparse.h │ │ ├── xxlimited.c │ │ ├── xxmodule.c │ │ ├── xxsubtype.c │ │ ├── zipimport.c │ │ └── zlibmodule.c │ ├── Objects │ │ ├── README │ │ ├── abstract.c │ │ ├── accu.c │ │ ├── boolobject.c │ │ ├── bytearrayobject.c │ │ ├── bytes_methods.c │ │ ├── bytesobject.c │ │ ├── call.c │ │ ├── capsule.c │ │ ├── cellobject.c │ │ ├── classobject.c │ │ ├── clinic │ │ │ ├── bytearrayobject.inc │ │ │ ├── bytesobject.inc │ │ │ ├── dictobject.inc │ │ │ └── unicodeobject.inc │ │ ├── codeobject.c │ │ ├── complexobject.c │ │ ├── descrobject.c │ │ ├── dict-common.h │ │ ├── dictobject.c │ │ ├── enumobject.c │ │ ├── exceptions.c │ │ ├── fileobject.c │ │ ├── floatobject.c │ │ ├── frameobject.c │ │ ├── fromfd.c │ │ ├── funcobject.c │ │ ├── genobject.c │ │ ├── iterobject.c │ │ ├── listobject.c │ │ ├── longobject.c │ │ ├── memoryobject.c │ │ ├── methodobject.c │ │ ├── moduleobject.c │ │ ├── namespaceobject.c │ │ ├── object.c │ │ ├── obmalloc.c │ │ ├── odictobject.c │ │ ├── rangeobject.c │ │ ├── setobject.c │ │ ├── sliceobject.c │ │ ├── stringlib │ │ │ ├── README.txt │ │ │ ├── asciilib.inc │ │ │ ├── codecs.inc │ │ │ ├── count.inc │ │ │ ├── ctype.inc │ │ │ ├── eq.inc │ │ │ ├── fastsearch.inc │ │ │ ├── find.inc │ │ │ ├── find_max_char.inc │ │ │ ├── join.inc │ │ │ ├── localeutil.inc │ │ │ ├── partition.inc │ │ │ ├── replace.inc │ │ │ ├── split.inc │ │ │ ├── stringdefs.inc │ │ │ ├── transmogrify.inc │ │ │ ├── ucs1lib.inc │ │ │ ├── ucs2lib.inc │ │ │ ├── ucs4lib.inc │ │ │ ├── undef.inc │ │ │ ├── unicode_format.inc │ │ │ └── unicodedefs.inc │ │ ├── structseq.c │ │ ├── tupleobject.c │ │ ├── typeobject.c │ │ ├── typeslots.inc │ │ ├── typeslots.py │ │ ├── unicodectype.c │ │ ├── unicodeobject-deadcode.c │ │ ├── unicodeobject.c │ │ └── weakrefobject.c │ ├── PC │ │ ├── clinic │ │ │ ├── winreg.inc │ │ │ └── winsound.inc │ │ ├── dl_nt.c │ │ ├── frozen_dllmain.c │ │ ├── getpathp.c │ │ ├── icons │ │ │ ├── launcher.svg │ │ │ ├── py.svg │ │ │ ├── pyc.svg │ │ │ ├── pyd.svg │ │ │ ├── python.svg │ │ │ ├── pythonw.svg │ │ │ └── setup.svg │ │ ├── invalid_parameter_handler.c │ │ ├── launcher.c │ │ ├── testpy.py │ │ ├── winreg.c │ │ └── winsound.c │ ├── Parser │ │ ├── Python.asdl │ │ ├── acceler.c │ │ ├── asdl.py │ │ ├── asdl_c.py │ │ ├── bitset.c │ │ ├── firstsets.c │ │ ├── grammar.c │ │ ├── grammar1.c │ │ ├── listnode.c │ │ ├── metagrammar.c │ │ ├── myreadline.c │ │ ├── node.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── parsetok.c │ │ ├── parsetok_pgen.c │ │ ├── pgen.c │ │ ├── pgenmain.c │ │ ├── printgrammar.c │ │ ├── tokenizer.c │ │ ├── tokenizer.h │ │ └── tokenizer_pgen.c │ ├── Python │ │ ├── Python-ast.c │ │ ├── _warnings.c │ │ ├── asdl.c │ │ ├── ast.c │ │ ├── atexit.c │ │ ├── bltinmodule.c │ │ ├── ceval.c │ │ ├── ceval_gil.inc │ │ ├── clinic │ │ │ ├── bltinmodule.inc │ │ │ └── import.inc │ │ ├── codecs.c │ │ ├── compile.c │ │ ├── condvar.h │ │ ├── cosmomodule.c │ │ ├── dtoa.c │ │ ├── dynamic_annotations.c │ │ ├── dynload_dl.c │ │ ├── dynload_shlib.c │ │ ├── dynload_stub.c │ │ ├── dynload_win.c │ │ ├── errors.c │ │ ├── fatality.c │ │ ├── fdisinteractive.c │ │ ├── fileutils.c │ │ ├── finalize.c │ │ ├── flags.c │ │ ├── flushstdfiles.c │ │ ├── formatter_unicode.c │ │ ├── frozen.c │ │ ├── frozenmain.c │ │ ├── frozenmodules.c │ │ ├── future.c │ │ ├── getargs.c │ │ ├── getcompiler.c │ │ ├── getcopyright.c │ │ ├── getopt.c │ │ ├── getplatform.c │ │ ├── getsig.c │ │ ├── getversion.c │ │ ├── graminit.c │ │ ├── import.c │ │ ├── importdl.c │ │ ├── importdl.h │ │ ├── initfsencoding.c │ │ ├── initialized.c │ │ ├── initimport.c │ │ ├── initmain.c │ │ ├── initsigs.c │ │ ├── initsite.c │ │ ├── initstdio.c │ │ ├── inittab.c │ │ ├── makeopcodetargets.py │ │ ├── marshal.c │ │ ├── modsupport.c │ │ ├── mysnprintf.c │ │ ├── mystrtoul.c │ │ ├── opcode_targets.inc │ │ ├── peephole.c │ │ ├── progname.c │ │ ├── pyarena.c │ │ ├── pyfpe.c │ │ ├── pyhash.c │ │ ├── pylifecycle.c │ │ ├── pymath.c │ │ ├── pystate.c │ │ ├── pystrcmp.c │ │ ├── pystrhex.c │ │ ├── pystrtod.c │ │ ├── pythonhome.c │ │ ├── pythonrun.c │ │ ├── pytime.c │ │ ├── random.c │ │ ├── recursive.c │ │ ├── restoresigs.c │ │ ├── sigcheck.c │ │ ├── structmember.c │ │ ├── symtable.c │ │ ├── sysmodule.c │ │ ├── thread.c │ │ ├── thread_pthread.inc │ │ ├── traceback.c │ │ ├── wordcode_helpers.inc │ │ ├── xedmodule.c │ │ └── xtermmodule.c │ ├── README.cosmo │ ├── README.rst │ ├── Tools │ │ ├── README │ │ ├── ccbench │ │ │ └── ccbench.py │ │ ├── clinic │ │ │ ├── clinic.py │ │ │ ├── clinic_test.py │ │ │ └── cpp.py │ │ ├── demo │ │ │ ├── README │ │ │ ├── beer.py │ │ │ ├── eiffel.py │ │ │ ├── markov.py │ │ │ ├── mcast.py │ │ │ ├── queens.py │ │ │ ├── rpython.py │ │ │ ├── rpythond.py │ │ │ └── vector.py │ │ ├── freeze │ │ │ ├── README │ │ │ ├── bkfile.py │ │ │ ├── checkextensions.py │ │ │ ├── checkextensions_win32.py │ │ │ ├── extensions_win32.ini │ │ │ ├── flag.py │ │ │ ├── freeze.py │ │ │ ├── hello.py │ │ │ ├── makeconfig.py │ │ │ ├── makefreeze.py │ │ │ ├── makemakefile.py │ │ │ ├── parsesetup.py │ │ │ ├── test │ │ │ │ └── ok.py │ │ │ ├── win32.html │ │ │ └── winmakemakefile.py │ │ ├── gdb │ │ │ └── libpython.py │ │ ├── i18n │ │ │ ├── makelocalealias.py │ │ │ ├── msgfmt.py │ │ │ └── pygettext.py │ │ ├── importbench │ │ │ ├── README │ │ │ └── importbench.py │ │ ├── iobench │ │ │ └── iobench.py │ │ ├── parser │ │ │ └── unparse.py │ │ ├── pybench │ │ │ ├── Arithmetic.py │ │ │ ├── Calls.py │ │ │ ├── CommandLine.py │ │ │ ├── Constructs.py │ │ │ ├── Dict.py │ │ │ ├── Exceptions.py │ │ │ ├── Imports.py │ │ │ ├── Instances.py │ │ │ ├── LICENSE │ │ │ ├── Lists.py │ │ │ ├── Lookups.py │ │ │ ├── NewInstances.py │ │ │ ├── Numbers.py │ │ │ ├── README │ │ │ ├── Setup.py │ │ │ ├── Strings.py │ │ │ ├── Tuples.py │ │ │ ├── Unicode.py │ │ │ ├── With.py │ │ │ ├── clockres.py │ │ │ ├── package │ │ │ │ ├── __init__.py │ │ │ │ └── submodule.py │ │ │ ├── pybench.py │ │ │ └── systimes.py │ │ ├── pynche │ │ │ ├── ChipViewer.py │ │ │ ├── ColorDB.py │ │ │ ├── DetailsViewer.py │ │ │ ├── ListViewer.py │ │ │ ├── Main.py │ │ │ ├── PyncheWidget.py │ │ │ ├── README │ │ │ ├── StripViewer.py │ │ │ ├── Switchboard.py │ │ │ ├── TextViewer.py │ │ │ ├── TypeinViewer.py │ │ │ ├── X │ │ │ │ ├── rgb.txt │ │ │ │ └── xlicense.txt │ │ │ ├── __init__.py │ │ │ ├── html40colors.txt │ │ │ ├── namedcolors.txt │ │ │ ├── pyColorChooser.py │ │ │ ├── pynche │ │ │ ├── pynche.pyw │ │ │ ├── webcolors.txt │ │ │ └── websafe.txt │ │ ├── scripts │ │ │ ├── 2to3 │ │ │ ├── README │ │ │ ├── abitype.py │ │ │ ├── analyze_dxp.py │ │ │ ├── byext.py │ │ │ ├── byteyears.py │ │ │ ├── checkpip.py │ │ │ ├── checkpyc.py │ │ │ ├── cleanfuture.py │ │ │ ├── combinerefs.py │ │ │ ├── copytime.py │ │ │ ├── crlf.py │ │ │ ├── db2pickle.py │ │ │ ├── diff.py │ │ │ ├── dutree.doc │ │ │ ├── dutree.py │ │ │ ├── eptags.py │ │ │ ├── find-uname.py │ │ │ ├── find_recursionlimit.py │ │ │ ├── finddiv.py │ │ │ ├── findlinksto.py │ │ │ ├── findnocoding.py │ │ │ ├── fixcid.py │ │ │ ├── fixdiv.py │ │ │ ├── fixheader.py │ │ │ ├── fixnotice.py │ │ │ ├── fixps.py │ │ │ ├── generate_opcode_h.py │ │ │ ├── get-remote-certificate.py │ │ │ ├── google.py │ │ │ ├── gprof2html.py │ │ │ ├── h2py.py │ │ │ ├── highlight.py │ │ │ ├── idle3 │ │ │ ├── ifdef.py │ │ │ ├── import_diagnostics.py │ │ │ ├── lfcr.py │ │ │ ├── linktree.py │ │ │ ├── lll.py │ │ │ ├── mailerdaemon.py │ │ │ ├── make_ctype.py │ │ │ ├── md5sum.py │ │ │ ├── mkreal.py │ │ │ ├── ndiff.py │ │ │ ├── nm2def.py │ │ │ ├── objgraph.py │ │ │ ├── parse_html5_entities.py │ │ │ ├── parseentities.py │ │ │ ├── patchcheck.py │ │ │ ├── pathfix.py │ │ │ ├── pdeps.py │ │ │ ├── pickle2db.py │ │ │ ├── pindent.py │ │ │ ├── ptags.py │ │ │ ├── pydoc3 │ │ │ ├── pysource.py │ │ │ ├── pyvenv │ │ │ ├── reindent-rst.py │ │ │ ├── reindent.py │ │ │ ├── rgrep.py │ │ │ ├── run_tests.py │ │ │ ├── serve.py │ │ │ ├── suff.py │ │ │ ├── svneol.py │ │ │ ├── texi2html.py │ │ │ ├── treesync.py │ │ │ ├── untabify.py │ │ │ ├── update_file.py │ │ │ ├── which.py │ │ │ └── win_add2path.py │ │ ├── ssl │ │ │ ├── make_ssl_data.py │ │ │ ├── multissltests.py │ │ │ └── sslspeed.vcxproj │ │ ├── stringbench │ │ │ ├── README │ │ │ └── stringbench.py │ │ ├── test2to3 │ │ │ ├── README │ │ │ ├── maintest.py │ │ │ ├── setup.py │ │ │ ├── test │ │ │ │ ├── runtests.py │ │ │ │ └── test_foo.py │ │ │ └── test2to3 │ │ │ │ ├── __init__.py │ │ │ │ └── hello.py │ │ ├── tz │ │ │ └── zdump.py │ │ ├── unicode │ │ │ ├── comparecodecs.py │ │ │ ├── gencjkcodecs.py │ │ │ ├── gencodec.py │ │ │ ├── genwincodecs.bat │ │ │ ├── listcodecs.py │ │ │ ├── makecjkcodecs.c │ │ │ ├── makeunicodedata.py │ │ │ ├── mkstringprep.py │ │ │ └── python-mappings │ │ │ │ ├── CP1140.TXT │ │ │ │ ├── CP273.TXT │ │ │ │ ├── KOI8-U.TXT │ │ │ │ └── TIS-620.TXT │ │ └── unittestgui │ │ │ ├── README.txt │ │ │ └── unittestgui.py │ ├── chibicc.inc │ ├── freeze.c │ ├── hello.py │ ├── launch.c │ ├── pycomp.c │ ├── pyconfig.h │ ├── pydump.py │ ├── pyobj.c │ ├── python.c │ ├── python.mk │ ├── pythontester.c │ ├── repl.c │ ├── runpythonmodule.c │ └── runpythonmodule.h ├── qemu │ ├── qemu-aarch64.gz │ └── qemu.mk ├── quickjs │ ├── Changelog │ ├── LICENSE │ ├── README.cosmo │ ├── TODO │ ├── array.c │ ├── atof.c │ ├── atom.c │ ├── atomics.c │ ├── bigdecimal.c │ ├── bigint.c │ ├── byte.c │ ├── call.c │ ├── cutils.c │ ├── cutils.h │ ├── date.c │ ├── dbuf.c │ ├── diglet.c │ ├── diglet.h │ ├── doc │ │ ├── jsbignum.html │ │ ├── jsbignum.pdf │ │ ├── jsbignum.texi │ │ ├── quickjs.html │ │ ├── quickjs.pdf │ │ └── quickjs.texi │ ├── eq.c │ ├── err.c │ ├── examples │ │ ├── fib.c │ │ ├── fib_module.js │ │ ├── hello.js │ │ ├── hello_module.js │ │ ├── pi_bigdecimal.js │ │ ├── pi_bigfloat.js │ │ ├── pi_bigint.js │ │ ├── point.c │ │ ├── test_fib.js │ │ └── test_point.js │ ├── float.c │ ├── gc.c │ ├── gen.c │ ├── internal.h │ ├── iter.c │ ├── json.c │ ├── leb128.c │ ├── leb128.h │ ├── libbf.c │ ├── libbf.h │ ├── libregexp-opcode.inc │ ├── libregexp.c │ ├── libregexp.h │ ├── libunicode-table.inc │ ├── libunicode.c │ ├── libunicode.h │ ├── list.h │ ├── map.c │ ├── math.c │ ├── mem.c │ ├── object.c │ ├── parse.c │ ├── prim.c │ ├── promise.c │ ├── proxy.c │ ├── qjs.c │ ├── qjsc.c │ ├── qjscalc.js │ ├── quickjs-atom.inc │ ├── quickjs-libc.c │ ├── quickjs-libc.h │ ├── quickjs-opcode.inc │ ├── quickjs.c │ ├── quickjs.h │ ├── quickjs.mk │ ├── readme.txt │ ├── reflect.c │ ├── regexp.c │ ├── repl.js │ ├── run-test262.c │ ├── shape.c │ ├── str.c │ ├── strbuf.c │ ├── test262.conf │ ├── test262_errors.txt │ ├── test262o.conf │ ├── test262o_errors.txt │ ├── tests │ │ ├── bjson.c │ │ ├── microbench.js │ │ ├── test262.patch │ │ ├── test_bignum.js │ │ ├── test_bjson.js │ │ ├── test_builtin.js │ │ ├── test_closure.js │ │ ├── test_language.js │ │ ├── test_loop.js │ │ ├── test_op_overloading.js │ │ ├── test_qjscalc.js │ │ ├── test_std.js │ │ ├── test_worker.js │ │ └── test_worker_module.js │ ├── tok.c │ ├── typedarray.c │ ├── unicode_download.sh │ ├── unicode_gen.c │ ├── unicode_gen_def.inc │ ├── uri.c │ └── usage.c ├── radpajama │ ├── LICENSE │ ├── README.cosmo │ ├── README.md │ ├── common-gptneox.cc │ ├── common-gptneox.h │ ├── copy-gptneox.cc │ ├── gptneox-util.h │ ├── gptneox.cc │ ├── gptneox.h │ ├── main-redpajama-chat.cc │ ├── main-redpajama.cc │ ├── quantize-gptneox.cc │ ├── radpajama.mk │ └── scripts │ │ ├── convert_gptneox_to_ggml.py │ │ ├── install-RedPajama-INCITE-Base-3B-v1.sh │ │ ├── install-RedPajama-INCITE-Chat-3B-v1.sh │ │ ├── install-RedPajama-INCITE-Instruct-3B-v1.sh │ │ └── quantize-gptneox.py ├── regex │ ├── notice.inc │ ├── regcomp.c │ ├── regerror.c │ ├── regex.h │ ├── regex.mk │ ├── regexec.c │ ├── tre-mem.c │ └── tre.inc ├── sed │ ├── README │ ├── README.cosmo │ ├── cmd.c │ ├── cmd.h │ ├── compile.c │ ├── defs.h │ ├── extern.h │ ├── main.c │ ├── misc.c │ ├── process.c │ ├── sed.1 │ └── sed.mk ├── smallz4 │ ├── README.cosmo │ ├── smallz4.cc │ ├── smallz4.hh │ ├── smallz4.mk │ ├── smallz4cat.c │ └── stub.c ├── sqlite3 │ ├── README.cosmo │ ├── alter.c │ ├── alter.shell.c │ ├── analyze.c │ ├── analyze.shell.c │ ├── appendvfs.c │ ├── appendvfs.shell.c │ ├── attach.c │ ├── attach.shell.c │ ├── auth.c │ ├── auth.shell.c │ ├── backup.c │ ├── backup.shell.c │ ├── bitvec.c │ ├── bitvec.shell.c │ ├── btmutex.c │ ├── btmutex.shell.c │ ├── btree.c │ ├── btree.inc │ ├── btree.shell.c │ ├── btreeInt.h │ ├── build.c │ ├── build.shell.c │ ├── callback.c │ ├── callback.shell.c │ ├── complete.c │ ├── complete.shell.c │ ├── completion.c │ ├── completion.shell.c │ ├── ctime.c │ ├── ctime.shell.c │ ├── date.c │ ├── date.shell.c │ ├── dbdata.c │ ├── dbdata.shell.c │ ├── dbpage.c │ ├── dbpage.shell.c │ ├── dbstat.c │ ├── dbstat.shell.c │ ├── decimal.c │ ├── decimal.shell.c │ ├── delete.c │ ├── delete.shell.c │ ├── dog.py │ ├── expr.c │ ├── expr.shell.c │ ├── extensions.h │ ├── fault.c │ ├── fault.shell.c │ ├── fileio.c │ ├── fileio.shell.c │ ├── fkey.c │ ├── fkey.shell.c │ ├── fts3.c │ ├── fts3.h │ ├── fts3.shell.c │ ├── fts3Int.h │ ├── fts3_aux.c │ ├── fts3_aux.shell.c │ ├── fts3_expr.c │ ├── fts3_expr.shell.c │ ├── fts3_hash.c │ ├── fts3_hash.h │ ├── fts3_hash.shell.c │ ├── fts3_icu.c │ ├── fts3_icu.shell.c │ ├── fts3_porter.c │ ├── fts3_porter.shell.c │ ├── fts3_snippet.c │ ├── fts3_snippet.shell.c │ ├── fts3_tokenize_vtab.c │ ├── fts3_tokenize_vtab.shell.c │ ├── fts3_tokenizer.c │ ├── fts3_tokenizer.h │ ├── fts3_tokenizer.shell.c │ ├── fts3_tokenizer1.c │ ├── fts3_tokenizer1.shell.c │ ├── fts3_unicode.c │ ├── fts3_unicode.shell.c │ ├── fts3_unicode2.c │ ├── fts3_unicode2.shell.c │ ├── fts3_write.c │ ├── fts3_write.shell.c │ ├── fts5.c │ ├── fts5.h │ ├── fts5.shell.c │ ├── func.c │ ├── func.shell.c │ ├── geopoly.inc │ ├── global.c │ ├── global.shell.c │ ├── hash.c │ ├── hash.h │ ├── hash.shell.c │ ├── hwtime.inc │ ├── icu.c │ ├── icu.shell.c │ ├── ieee754.c │ ├── ieee754.shell.c │ ├── insert.c │ ├── insert.shell.c │ ├── json.c │ ├── json.shell.c │ ├── keywordhash.inc │ ├── legacy.c │ ├── legacy.shell.c │ ├── loadext.c │ ├── loadext.shell.c │ ├── main.c │ ├── main.shell.c │ ├── malloc.c │ ├── malloc.shell.c │ ├── mem0.c │ ├── mem0.shell.c │ ├── mem1.c │ ├── mem1.shell.c │ ├── mem2.c │ ├── mem2.shell.c │ ├── mem3.c │ ├── mem3.shell.c │ ├── mem5.c │ ├── mem5.shell.c │ ├── memdb.c │ ├── memdb.shell.c │ ├── memjournal.c │ ├── memjournal.shell.c │ ├── memtrace.c │ ├── memtrace.shell.c │ ├── msvc.h │ ├── mutex.c │ ├── mutex.inc │ ├── mutex.internal.h │ ├── mutex.shell.c │ ├── mutex_noop.c │ ├── mutex_noop.shell.c │ ├── mutex_unix.c │ ├── mutex_unix.shell.c │ ├── notify.c │ ├── notify.shell.c │ ├── opcodes.c │ ├── opcodes.h │ ├── opcodes.shell.c │ ├── os.c │ ├── os.inc │ ├── os.shell.c │ ├── os_common.h │ ├── os_kv.c │ ├── os_setup.h │ ├── os_unix.c │ ├── os_unix.shell.c │ ├── pager.c │ ├── pager.inc │ ├── pager.shell.c │ ├── parse.c │ ├── parse.h │ ├── parse.shell.c │ ├── pcache.c │ ├── pcache.inc │ ├── pcache.shell.c │ ├── pcache1.c │ ├── pcache1.shell.c │ ├── pragma.c │ ├── pragma.inc │ ├── pragma.shell.c │ ├── prepare.c │ ├── prepare.shell.c │ ├── printf.c │ ├── printf.shell.c │ ├── random.c │ ├── random.shell.c │ ├── resolve.c │ ├── resolve.shell.c │ ├── rowset.c │ ├── rowset.shell.c │ ├── rtree.c │ ├── rtree.h │ ├── rtree.shell.c │ ├── select.c │ ├── select.shell.c │ ├── series.c │ ├── series.shell.c │ ├── shathree.c │ ├── shathree.shell.c │ ├── shell.c │ ├── shell.c.in │ ├── sqlar.c │ ├── sqlar.shell.c │ ├── sqlite3.h │ ├── sqlite3.mk │ ├── sqlite3expert.c │ ├── sqlite3expert.h │ ├── sqlite3expert.shell.c │ ├── sqlite3ext.h │ ├── sqlite3rbu.c │ ├── sqlite3rbu.h │ ├── sqlite3rbu.shell.c │ ├── sqlite3rtree.h │ ├── sqlite3session.c │ ├── sqlite3session.h │ ├── sqlite3session.shell.c │ ├── sqlite3userauth.h │ ├── sqliteInt.h │ ├── sqliteLimit.h │ ├── sqliteicu.h │ ├── status.c │ ├── status.shell.c │ ├── stmt.c │ ├── stmt.shell.c │ ├── table.c │ ├── table.shell.c │ ├── threads.c │ ├── threads.shell.c │ ├── tokenize.c │ ├── tokenize.shell.c │ ├── treeview.c │ ├── treeview.shell.c │ ├── trigger.c │ ├── trigger.shell.c │ ├── uint.c │ ├── uint.shell.c │ ├── update.c │ ├── update.shell.c │ ├── upsert.c │ ├── upsert.shell.c │ ├── userauth.c │ ├── userauth.shell.c │ ├── utf.c │ ├── utf.shell.c │ ├── util.c │ ├── util.shell.c │ ├── vacuum.c │ ├── vacuum.shell.c │ ├── vdbe.c │ ├── vdbe.inc │ ├── vdbe.shell.c │ ├── vdbeInt.inc │ ├── vdbeapi.c │ ├── vdbeapi.shell.c │ ├── vdbeaux.c │ ├── vdbeaux.shell.c │ ├── vdbeblob.c │ ├── vdbeblob.shell.c │ ├── vdbemem.c │ ├── vdbemem.shell.c │ ├── vdbesort.c │ ├── vdbesort.shell.c │ ├── vdbetrace.c │ ├── vdbetrace.shell.c │ ├── vdbevtab.c │ ├── vdbevtab.shell.c │ ├── vtab.c │ ├── vtab.shell.c │ ├── vxworks.h │ ├── wal.c │ ├── wal.h │ ├── wal.shell.c │ ├── walker.c │ ├── walker.shell.c │ ├── where.c │ ├── where.shell.c │ ├── whereInt.inc │ ├── wherecode.c │ ├── wherecode.shell.c │ ├── whereexpr.c │ ├── whereexpr.shell.c │ ├── window.c │ ├── window.shell.c │ ├── zipfile.c │ └── zipfile.shell.c ├── stb │ ├── README.cosmo │ ├── README.txt │ ├── stb.mk │ ├── stb_image.c │ ├── stb_image.h │ ├── stb_image_resize.c │ ├── stb_image_resize.h │ ├── stb_image_write.c │ ├── stb_image_write.h │ ├── stb_image_write_png.c │ ├── stb_rect_pack.c │ ├── stb_rect_pack.h │ ├── stb_truetype.c │ ├── stb_truetype.h │ ├── stb_vorbis.c │ └── stb_vorbis.h ├── third_party.mk ├── tidy │ ├── .tidyrc │ ├── LICENSE.md │ ├── README.cosmo │ ├── access.c │ ├── access.h │ ├── alloc.c │ ├── attrdict.c │ ├── attrdict.h │ ├── attrs.c │ ├── attrs.h │ ├── buffio.c │ ├── charsets.c │ ├── charsets.h │ ├── clean.c │ ├── clean.h │ ├── config.c │ ├── config.h │ ├── entities.c │ ├── entities.h │ ├── fileio.c │ ├── fileio.h │ ├── forward.h │ ├── gdoc.c │ ├── gdoc.h │ ├── istack.c │ ├── language.c │ ├── language.h │ ├── language_en.inc │ ├── lexer.c │ ├── lexer.h │ ├── mappedio.c │ ├── mappedio.h │ ├── message.c │ ├── message.h │ ├── messageobj.c │ ├── messageobj.h │ ├── parser.c │ ├── parser.h │ ├── pprint.c │ ├── pprint.h │ ├── sprtf.c │ ├── sprtf.h │ ├── streamio.c │ ├── streamio.h │ ├── tagask.c │ ├── tags.c │ ├── tags.h │ ├── tidy-int.h │ ├── tidy.c │ ├── tidy.h │ ├── tidy.mk │ ├── tidybuffio.h │ ├── tidyenum.h │ ├── tidylib.c │ ├── tidyplatform.h │ ├── tmbstr.c │ ├── tmbstr.h │ ├── utf8.c │ ├── utf8.h │ └── version.inc ├── tr │ ├── cmd.c │ ├── cmd.h │ ├── extern.h │ ├── next.c │ ├── tr.c │ └── tr.mk ├── unzip │ ├── LICENSE │ ├── README.cosmo │ ├── api.c │ ├── apihelp.c │ ├── consts.h │ ├── crc32.c │ ├── crc32.h │ ├── crypt.c │ ├── crypt.h │ ├── ebcdic.h │ ├── envargs.c │ ├── explode.c │ ├── extract.c │ ├── fileio.c │ ├── globals.c │ ├── globals.h │ ├── inflate.c │ ├── inflate.h │ ├── list.c │ ├── match.c │ ├── process.c │ ├── timezone.c │ ├── timezone.h │ ├── ttyio.c │ ├── ttyio.h │ ├── ubz2err.c │ ├── unix.c │ ├── unix │ │ ├── Contents │ │ ├── Packaging │ │ │ ├── README │ │ │ ├── pkginfo.in │ │ │ ├── postinstall │ │ │ ├── preinstall.in │ │ │ └── prototype │ │ ├── configure │ │ ├── macosx.h │ │ └── zipgrep │ ├── unreduce.c │ ├── unshrink.c │ ├── unxcfg.h │ ├── unzip.c │ ├── unzip.h │ ├── unzip.mk │ ├── unzip.txt │ ├── unzpriv.h │ ├── unzvers.h │ ├── zip.h │ ├── zipinfo.c │ └── zipinfo.txt ├── vqsort │ ├── README.cosmo │ ├── vqsort.h │ ├── vqsort.mk │ ├── vqsort_i32a.S │ ├── vqsort_i64a.S │ ├── vqsort_int32.c │ └── vqsort_int64.c ├── xed │ ├── avx512.h │ ├── eamode.c │ ├── private.h │ ├── x86.h │ ├── x86features.c │ ├── x86ild.greg.c │ ├── x86isa.c │ ├── x86isa.h │ ├── xed.mk │ └── xederror.c ├── xxhash │ ├── LICENSE │ ├── README.cosmo │ ├── cli │ │ ├── COPYING │ │ ├── README.md │ │ ├── xsum_arch.h │ │ ├── xsum_bench.c │ │ ├── xsum_bench.h │ │ ├── xsum_config.h │ │ ├── xsum_os_specific.c │ │ ├── xsum_os_specific.h │ │ ├── xsum_output.c │ │ ├── xsum_output.h │ │ ├── xsum_sanity_check.c │ │ ├── xsum_sanity_check.h │ │ ├── xxhsum.1 │ │ ├── xxhsum.1.md │ │ └── xxhsum.c │ ├── tests │ │ ├── Makefile │ │ ├── bench │ │ │ ├── .clang_complete │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── benchHash.c │ │ │ ├── benchHash.h │ │ │ ├── benchfn.c │ │ │ ├── benchfn.h │ │ │ ├── bhDisplay.c │ │ │ ├── bhDisplay.h │ │ │ ├── hashes.h │ │ │ ├── main.c │ │ │ ├── timefn.c │ │ │ └── timefn.h │ │ ├── cli-comment-line.sh │ │ ├── collisions │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── allcodecs │ │ │ │ ├── README.md │ │ │ │ ├── dummy.c │ │ │ │ └── dummy.h │ │ │ ├── hashes.h │ │ │ ├── main.c │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── sort.cc │ │ │ ├── sort.hh │ │ │ ├── threading.c │ │ │ └── threading.h │ │ ├── filename-escape.sh │ │ ├── generate_unicode_test.c │ │ ├── multiInclude.c │ │ ├── ppc_define.c │ │ ├── sanity_test.c │ │ ├── sanity_test_vectors.h │ │ ├── sanity_test_vectors_generator.c │ │ └── unicode_lint.sh │ ├── xxh3.h │ ├── xxh_x86dispatch.c │ ├── xxh_x86dispatch.h │ ├── xxhash.c │ ├── xxhash.h │ └── xxhash.mk ├── zip │ ├── LICENSE │ ├── README.cosmo │ ├── api.h │ ├── crc32.c │ ├── crc32.h │ ├── crypt.c │ ├── crypt.h │ ├── crypt_.c │ ├── deflate.c │ ├── fileio.c │ ├── fileio_.c │ ├── globals.c │ ├── osdep.h │ ├── revision.h │ ├── tailor.h │ ├── timezone.c │ ├── timezone.h │ ├── trees.c │ ├── ttyio.c │ ├── ttyio.h │ ├── unix.c │ ├── unix_.c │ ├── util.c │ ├── util_.c │ ├── zbz2err.c │ ├── zip.c │ ├── zip.h │ ├── zip.mk │ ├── zipcloak.c │ ├── ziperr.h │ ├── zipfile.c │ ├── zipfile_.c │ ├── zipnote.c │ ├── zipsplit.c │ ├── zipup.c │ └── zipup.h ├── zlib │ ├── LICENSE │ ├── LICENSE.chromium │ ├── LICENSE.zlib │ ├── README.cosmo │ ├── adler32.c │ ├── adler32_simd.c │ ├── adler32_simd.inc │ ├── chunkcopy.inc │ ├── compress.c │ ├── cpu_features.c │ ├── cpu_features.internal.h │ ├── crc32.c │ ├── crc32.inc │ ├── crc32_simd.c │ ├── crc32_simd.internal.h │ ├── crc_folding.c │ ├── deflate.c │ ├── deflate.internal.h │ ├── gz │ │ ├── gz.mk │ │ ├── gzclose.c │ │ ├── gzguts.inc │ │ ├── gzlib.c │ │ ├── gzread.c │ │ └── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.internal.h │ ├── inffast_chunk.c │ ├── inffast_chunk.internal.h │ ├── inffixed.inc │ ├── inflate.c │ ├── inflate.internal.h │ ├── inftrees.c │ ├── inftrees.internal.h │ ├── insert_string.inc │ ├── internal.h │ ├── macros.internal.h │ ├── slide_hash_simd.inc │ ├── treeconst.c │ ├── trees.c │ ├── trees.inc │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zlib.mk │ ├── zutil.c │ └── zutil.internal.h └── zstd │ ├── CHANGELOG │ ├── COPYING │ ├── LICENSE │ ├── README.cosmo │ ├── README.md │ ├── lib │ ├── common │ │ ├── allocations.h │ │ ├── bits.h │ │ ├── bitstream.h │ │ ├── compiler.h │ │ ├── cpu.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── entropy_common.c │ │ ├── error_private.c │ │ ├── error_private.h │ │ ├── fse.h │ │ ├── fse_decompress.c │ │ ├── huf.h │ │ ├── mem.h │ │ ├── pool.c │ │ ├── pool.h │ │ ├── portability_macros.h │ │ ├── threading.c │ │ ├── threading.h │ │ ├── xxhash.c │ │ ├── xxhash.h │ │ ├── zstd_common.c │ │ ├── zstd_deps.h │ │ ├── zstd_internal.h │ │ └── zstd_trace.h │ ├── compress │ │ ├── clevels.h │ │ ├── fse_compress.c │ │ ├── hist.c │ │ ├── hist.h │ │ ├── huf_compress.c │ │ ├── zstd_compress.c │ │ ├── zstd_compress_internal.h │ │ ├── zstd_compress_literals.c │ │ ├── zstd_compress_literals.h │ │ ├── zstd_compress_sequences.c │ │ ├── zstd_compress_sequences.h │ │ ├── zstd_compress_superblock.c │ │ ├── zstd_compress_superblock.h │ │ ├── zstd_cwksp.h │ │ ├── zstd_double_fast.c │ │ ├── zstd_double_fast.h │ │ ├── zstd_fast.c │ │ ├── zstd_fast.h │ │ ├── zstd_lazy.c │ │ ├── zstd_lazy.h │ │ ├── zstd_ldm.c │ │ ├── zstd_ldm.h │ │ ├── zstd_ldm_geartab.h │ │ ├── zstd_opt.c │ │ ├── zstd_opt.h │ │ ├── zstdmt_compress.c │ │ └── zstdmt_compress.h │ ├── decompress │ │ ├── huf_decompress.c │ │ ├── huf_decompress_amd64.S │ │ ├── zstd_ddict.c │ │ ├── zstd_ddict.h │ │ ├── zstd_decompress.c │ │ ├── zstd_decompress_block.c │ │ ├── zstd_decompress_block.h │ │ └── zstd_decompress_internal.h │ ├── deprecated │ │ ├── zbuff.h │ │ ├── zbuff_common.c │ │ ├── zbuff_compress.c │ │ └── zbuff_decompress.c │ └── dictBuilder │ │ ├── cover.c │ │ ├── cover.h │ │ ├── divsufsort.c │ │ ├── divsufsort.h │ │ ├── fastcover.c │ │ └── zdict.c │ ├── programs │ ├── README.md │ ├── benchfn.c │ ├── benchfn.h │ ├── benchzstd.c │ ├── benchzstd.h │ ├── datagen.c │ ├── datagen.h │ ├── dibio.c │ ├── dibio.h │ ├── fileio.c │ ├── fileio.h │ ├── fileio_asyncio.c │ ├── fileio_asyncio.h │ ├── fileio_common.h │ ├── fileio_types.h │ ├── platform.h │ ├── timefn.c │ ├── timefn.h │ ├── util.c │ ├── util.h │ ├── zstdcli.c │ ├── zstdcli_trace.c │ ├── zstdcli_trace.h │ ├── zstdgrep │ └── zstdless │ ├── zdict.h │ ├── zstd.h │ ├── zstd.mk │ └── zstd_errors.h ├── tool ├── ape │ ├── ape.c │ ├── ape.mk │ └── zstd.sh ├── args │ ├── args.c │ ├── args.h │ └── args.mk ├── build │ ├── apelink.c │ ├── ar.c │ ├── assimilate.c │ ├── bigmul.c │ ├── build.mk │ ├── chmod.c │ ├── cocmd.c │ ├── compile.c │ ├── cp.c │ ├── dd.c │ ├── deltaify.c │ ├── dropcache.c │ ├── dso │ │ └── sandbox.c │ ├── echo.c │ ├── false.c │ ├── fastdiff.c │ ├── fixupobj.c │ ├── gzip.c │ ├── helpop.c │ ├── lib │ │ ├── apetest.c │ │ ├── asmdown.c │ │ ├── asmdown.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buildlib.mk │ │ ├── case.h │ │ ├── demangle.c │ │ ├── demangle.h │ │ ├── elfwriter.c │ │ ├── elfwriter.h │ │ ├── elfwriter_cargoculting.c │ │ ├── elfwriter_yoink.c │ │ ├── elfwriter_zip.c │ │ ├── endian.h │ │ ├── errnos.S │ │ ├── eztls.c │ │ ├── eztls.h │ │ ├── getargs.c │ │ ├── getargs.h │ │ ├── interner.c │ │ ├── interner.h │ │ ├── javadown.c │ │ ├── javadown.h │ │ ├── lines.c │ │ ├── lines.h │ │ ├── panel.c │ │ ├── panel.h │ │ ├── psk.c │ │ ├── psk.h │ │ ├── stripcomponents.c │ │ └── stripcomponents.h │ ├── lz4toasm.c │ ├── mkdeps.c │ ├── mkdir.c │ ├── mv.c │ ├── package.c │ ├── pledge.c │ ├── printf.c │ ├── pwd.c │ ├── rm.c │ ├── rollup.c │ ├── runit.c │ ├── runit.h │ ├── runitd.c │ ├── sha256sum.c │ ├── summy.c │ ├── symtab.c │ ├── touch.c │ ├── unbuffer.c │ ├── unbundle.c │ ├── unveil.c │ ├── x86combos.c │ ├── zipcopy.c │ └── zipobj.c ├── curl │ ├── cmd.c │ ├── cmd.h │ ├── curl.c │ ├── curl.mk │ └── test.sh ├── decode │ ├── ar.c │ ├── base64.c │ ├── decode.mk │ ├── elf.c │ ├── ent.c │ ├── hex.c │ ├── lib │ │ ├── asmcodegen.c │ │ ├── asmcodegen.h │ │ ├── bitabuilder.c │ │ ├── bitabuilder.h │ │ ├── decodelib.mk │ │ ├── disassemblehex.c │ │ ├── disassemblehex.h │ │ ├── elfidnames.c │ │ ├── elfidnames.h │ │ ├── flagger.c │ │ ├── flagger.h │ │ ├── idname.c │ │ ├── idname.h │ │ ├── machoidnames.c │ │ ├── machoidnames.h │ │ ├── ntfileflagnames.c │ │ ├── ntfileflagnames.h │ │ ├── peidnames.c │ │ ├── peidnames.h │ │ ├── socknames.c │ │ ├── socknames.h │ │ ├── titlegen.c │ │ ├── titlegen.h │ │ ├── x86idnames.h │ │ ├── xederrors.c │ │ ├── xederrors.h │ │ ├── zipnames.c │ │ └── zipnames.h │ ├── macho.c │ ├── mkcombos.c │ ├── mkwides.c │ ├── pe2.c │ ├── unhex.c │ ├── word.c │ ├── x86opinfo.c │ ├── xor.c │ └── zip.c ├── emacs │ ├── c.lang │ ├── cosmo-asm-mode.el │ ├── cosmo-c-builtins.el │ ├── cosmo-c-constants.el │ ├── cosmo-c-keywords.el │ ├── cosmo-c-types.el │ ├── cosmo-cpp-constants.el │ ├── cosmo-format.el │ ├── cosmo-platform-constants.el │ ├── cosmo-stuff.el │ ├── cosmo.el │ ├── javadown.el │ ├── key.py │ ├── ld-script.el │ ├── optinfo-mode.el │ └── protobuf-mode.el ├── hello │ ├── hello.c │ └── hello.mk ├── lambda │ ├── asc2bin.c │ ├── blcdump.c │ ├── bru2bin.c │ ├── lam2bin.c │ ├── lambda.c │ ├── lambda.mk │ ├── lib │ │ ├── blc.h │ │ ├── calloc.c │ │ ├── debug.c │ │ ├── dump.c │ │ ├── error.c │ │ ├── getbit.c │ │ ├── lib.mk │ │ ├── needbit.c │ │ ├── parse.c │ │ ├── parserom.c │ │ ├── print.c │ │ └── vars.c │ └── tromp.c ├── net │ ├── .init.lua │ ├── counters.inc │ ├── definitions.lua │ ├── demo │ │ ├── .init.lua │ │ ├── .lua │ │ │ └── mymodule.lua │ │ ├── .reload.lua │ │ ├── 404.html │ │ ├── binarytrees.lua │ │ ├── call-lua-module.lua │ │ ├── closedsource.lua │ │ ├── crashreport.lua │ │ ├── fetch.lua │ │ ├── finger.lua │ │ ├── gensvg.lua │ │ ├── hitcounter.lua │ │ ├── index.html │ │ ├── maxmind.lua │ │ ├── opensource.lua │ │ ├── printpayload.lua │ │ ├── redbean-form.lua │ │ ├── redbean-xhr.lua │ │ ├── redbean.css │ │ ├── redbean.lua │ │ ├── script.lua │ │ ├── seekable.txt │ │ ├── sql-backup.lua │ │ ├── sql-backupstore.lua │ │ ├── sql.lua │ │ ├── store-asset.lua │ │ ├── unix-dir.lua │ │ ├── unix-finger.lua │ │ ├── unix-info.lua │ │ ├── unix-raise.lua │ │ ├── unix-rawsocket.lua │ │ ├── unix-subprocess.lua │ │ ├── unix-unix.lua │ │ └── unix-webserver.lua │ ├── dig.c │ ├── echo.c │ ├── favicon.ico │ ├── fetch.inc │ ├── help.txt │ ├── largon2.c │ ├── lfinger.c │ ├── lfinger.h │ ├── lfuncs.c │ ├── lfuncs.h │ ├── ljson.c │ ├── ljson.h │ ├── lmaxmind.c │ ├── lpath.c │ ├── lpath.h │ ├── lre.c │ ├── lsqlite3.c │ ├── luacheck.h │ ├── net.mk │ ├── redbean-original.c │ ├── redbean-static.c │ ├── redbean-unsecure.c │ ├── redbean.c │ ├── redbean.png │ ├── sandbox.h │ ├── tiny │ │ └── help.txt │ └── wb.c ├── plinko │ ├── README.txt │ ├── lib │ │ ├── algebra.lisp │ │ ├── assoc.c │ │ ├── binarytrees.lisp │ │ ├── bind.c │ │ ├── char.c │ │ ├── char.h │ │ ├── cmp.c │ │ ├── config.h │ │ ├── cons.c │ │ ├── cons.h │ │ ├── countatoms.c │ │ ├── countreferences.c │ │ ├── define.c │ │ ├── desymbolize.c │ │ ├── dispatchycombine.c │ │ ├── enclose.c │ │ ├── error.c │ │ ├── error.h │ │ ├── evlis.c │ │ ├── expand.c │ │ ├── findfreevariables.c │ │ ├── flush.c │ │ ├── gc.c │ │ ├── gc.h │ │ ├── getlongsum.c │ │ ├── hasatom.c │ │ ├── histo.c │ │ ├── histo.h │ │ ├── index.c │ │ ├── index.h │ │ ├── infix.lisp │ │ ├── intern.c │ │ ├── iscar.c │ │ ├── iscdr.c │ │ ├── isconstant.c │ │ ├── isdelegate.c │ │ ├── isif.c │ │ ├── iswide.c │ │ ├── isycombinator.c │ │ ├── ktpenc.c │ │ ├── ktpenc.h │ │ ├── lib.mk │ │ ├── library.lisp │ │ ├── makesclosures.c │ │ ├── ok.lisp │ │ ├── pairlis.c │ │ ├── plan.c │ │ ├── planfuncalls.c │ │ ├── plinko.c │ │ ├── plinko.h │ │ ├── preplan.c │ │ ├── prettyprint.c │ │ ├── print.c │ │ ├── print.h │ │ ├── printchar.c │ │ ├── printf.c │ │ ├── printf.h │ │ ├── printheap.c │ │ ├── printint.c │ │ ├── printtree.c │ │ ├── printvars.c │ │ ├── read.c │ │ ├── readstring.c │ │ ├── reverse.c │ │ ├── setup.c │ │ ├── stack.h │ │ ├── symbolize.c │ │ ├── trace.c │ │ ├── trace.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── types.h │ │ └── vars.c │ ├── plinko.c │ └── plinko.mk ├── scripts │ ├── asmexpr │ ├── awk1 │ ├── awk2 │ ├── awk3 │ ├── awk4 │ ├── awk5 │ ├── awk6 │ ├── awk7 │ ├── awk8 │ ├── bf │ ├── bloat │ ├── cosmoc++ │ ├── cosmocc │ ├── explain-deps.py │ ├── ezgdb │ ├── find-autonomous-objects │ ├── fix-third-party.py │ ├── get-deps.py │ ├── grep │ ├── loc │ ├── man2txt │ ├── obj │ ├── pb │ ├── pe │ ├── performance │ ├── po │ ├── powersave │ ├── px │ ├── re │ ├── renameheader │ ├── resurrect-file │ └── wut ├── tool.mk └── viz │ ├── ascii2utf8.c │ ├── basicidea.c │ ├── bd.c │ ├── bf.c │ ├── bin2asm.c │ ├── bing.c │ ├── comma.c │ ├── cpuid.c │ ├── deathstar.c │ ├── derasterize.c │ ├── double2int.c │ ├── dumphexc.c │ ├── echoctl.c │ ├── fixconsole.c │ ├── fliphex.c │ ├── fold.c │ ├── fontspace.c │ ├── generatetortureimage.c │ ├── getglyph.c │ ├── lib │ ├── bilinearscale.c │ ├── bilinearscale.h │ ├── boxblur.c │ ├── convoindex.c │ ├── convolution.h │ ├── convolve.h │ ├── dither.c │ ├── doublechrominance.S │ ├── emboss.c │ ├── formatmatrix-byte.c │ ├── formatmatrix-double.c │ ├── formatmatrix-float.c │ ├── formatmatrix-short.c │ ├── formatstringtable-assembly.c │ ├── formatstringtable-assertion.c │ ├── formatstringtable-basic.c │ ├── formatstringtable-code.c │ ├── formatstringtable-testlib.h │ ├── formatstringtable.c │ ├── formatstringtable.h │ ├── gaussian.c │ ├── getxtermcodes.c │ ├── glyphs.c │ ├── graphic.h │ ├── halfblit.c │ ├── halfblit.h │ ├── knobs.c │ ├── knobs.h │ ├── perlin3.c │ ├── resizegraphic.c │ ├── sharpen.c │ ├── sobel.c │ ├── stringbuilder.c │ ├── stringbuilder.h │ ├── unsharp.c │ ├── vizlib.mk │ ├── writetoframebuffer.c │ ├── ycbcr.h │ └── ycbcr2rgb3.c │ ├── life.c │ ├── maxmind.c │ ├── memzoom.c │ ├── od16.c │ ├── printansi.c │ ├── printdos2errno.c │ ├── printimage.c │ ├── printpeb.c │ ├── printvideo.c │ ├── tailf.c │ ├── unbing.c │ ├── virtualquery.c │ └── viz.mk └── usr └── share ├── dict ├── hangman └── words.gz ├── img └── honeybadger.png ├── rom ├── mario.nes ├── tetris.nes └── zelda.nes ├── ssl └── root │ ├── amazon.pem │ ├── certum.pem │ ├── comodo.pem │ ├── digicert.pem │ ├── geotrust.pem │ ├── globalsign.pem │ ├── godaddy.pem │ ├── google.pem │ ├── isrg.pem │ ├── quovadis.pem │ ├── redbean.pem │ ├── show.sh │ ├── starfield.pem │ └── verisign.pem └── zoneinfo ├── Anchorage ├── Beijing ├── Berlin ├── Boulder ├── Chicago ├── GMT ├── GST ├── Honolulu ├── India ├── Israel ├── Japan ├── London ├── Melbourne ├── New_York ├── Singapore ├── Sydney └── UTC /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [jart] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/README.md -------------------------------------------------------------------------------- /ape/aarch64.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/aarch64.lds -------------------------------------------------------------------------------- /ape/ape-m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/ape-m1.c -------------------------------------------------------------------------------- /ape/ape.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/ape.S -------------------------------------------------------------------------------- /ape/ape.internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/ape.internal.h -------------------------------------------------------------------------------- /ape/ape.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/ape.lds -------------------------------------------------------------------------------- /ape/ape.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/ape.mk -------------------------------------------------------------------------------- /ape/apeinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/apeinstall.sh -------------------------------------------------------------------------------- /ape/apeuninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/apeuninstall.sh -------------------------------------------------------------------------------- /ape/loader-elf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/loader-elf.S -------------------------------------------------------------------------------- /ape/loader-macho.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/loader-macho.S -------------------------------------------------------------------------------- /ape/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/loader.c -------------------------------------------------------------------------------- /ape/loader.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/loader.lds -------------------------------------------------------------------------------- /ape/mz.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/mz.ansi -------------------------------------------------------------------------------- /ape/notice.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ape/public/ape.lds: -------------------------------------------------------------------------------- 1 | #include "ape/ape.lds" 2 | -------------------------------------------------------------------------------- /ape/relocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/ape/relocations.h -------------------------------------------------------------------------------- /dsp/bmp/bmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/bmp/bmp.mk -------------------------------------------------------------------------------- /dsp/core/alaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/alaw.c -------------------------------------------------------------------------------- /dsp/core/c11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c11.h -------------------------------------------------------------------------------- /dsp/core/c121.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c121.h -------------------------------------------------------------------------------- /dsp/core/c121s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c121s.h -------------------------------------------------------------------------------- /dsp/core/c1331.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c1331.h -------------------------------------------------------------------------------- /dsp/core/c1331s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c1331s.h -------------------------------------------------------------------------------- /dsp/core/c161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c161.h -------------------------------------------------------------------------------- /dsp/core/c161s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c161s.h -------------------------------------------------------------------------------- /dsp/core/c331.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/c331.h -------------------------------------------------------------------------------- /dsp/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/core.h -------------------------------------------------------------------------------- /dsp/core/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/core.mk -------------------------------------------------------------------------------- /dsp/core/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/dct.c -------------------------------------------------------------------------------- /dsp/core/det3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/det3.c -------------------------------------------------------------------------------- /dsp/core/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/gamma.c -------------------------------------------------------------------------------- /dsp/core/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/gamma.h -------------------------------------------------------------------------------- /dsp/core/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/half.h -------------------------------------------------------------------------------- /dsp/core/inv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/inv3.c -------------------------------------------------------------------------------- /dsp/core/ituround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/ituround.h -------------------------------------------------------------------------------- /dsp/core/ks8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/ks8.h -------------------------------------------------------------------------------- /dsp/core/kss8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/kss8.h -------------------------------------------------------------------------------- /dsp/core/matmul3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/matmul3.c -------------------------------------------------------------------------------- /dsp/core/matvmul3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/matvmul3.c -------------------------------------------------------------------------------- /dsp/core/mulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/mulaw.c -------------------------------------------------------------------------------- /dsp/core/q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/q.h -------------------------------------------------------------------------------- /dsp/core/sad16x8n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/sad16x8n.c -------------------------------------------------------------------------------- /dsp/core/twixt8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/twixt8.h -------------------------------------------------------------------------------- /dsp/core/unalaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/unalaw.c -------------------------------------------------------------------------------- /dsp/core/unmulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/unmulaw.c -------------------------------------------------------------------------------- /dsp/core/vmatmul3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/core/vmatmul3.c -------------------------------------------------------------------------------- /dsp/dsp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/dsp.mk -------------------------------------------------------------------------------- /dsp/mpeg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/README.txt -------------------------------------------------------------------------------- /dsp/mpeg/blockset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/blockset.h -------------------------------------------------------------------------------- /dsp/mpeg/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/buffer.c -------------------------------------------------------------------------------- /dsp/mpeg/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/buffer.h -------------------------------------------------------------------------------- /dsp/mpeg/demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/demux.c -------------------------------------------------------------------------------- /dsp/mpeg/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/demux.h -------------------------------------------------------------------------------- /dsp/mpeg/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/idct.c -------------------------------------------------------------------------------- /dsp/mpeg/idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/idct.h -------------------------------------------------------------------------------- /dsp/mpeg/mp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/mp2.c -------------------------------------------------------------------------------- /dsp/mpeg/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/mpeg.h -------------------------------------------------------------------------------- /dsp/mpeg/mpeg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/mpeg.mk -------------------------------------------------------------------------------- /dsp/mpeg/mpeg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/mpeg1.c -------------------------------------------------------------------------------- /dsp/mpeg/plm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/plm.c -------------------------------------------------------------------------------- /dsp/mpeg/slowrgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/slowrgb.c -------------------------------------------------------------------------------- /dsp/mpeg/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/mpeg/video.h -------------------------------------------------------------------------------- /dsp/scale/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/scale/scale.c -------------------------------------------------------------------------------- /dsp/scale/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/scale/scale.h -------------------------------------------------------------------------------- /dsp/scale/scale.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/scale/scale.mk -------------------------------------------------------------------------------- /dsp/tty/altbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/altbuf.c -------------------------------------------------------------------------------- /dsp/tty/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/config.c -------------------------------------------------------------------------------- /dsp/tty/describe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/describe.c -------------------------------------------------------------------------------- /dsp/tty/ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ident.c -------------------------------------------------------------------------------- /dsp/tty/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/internal.h -------------------------------------------------------------------------------- /dsp/tty/itoa8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/itoa8.c -------------------------------------------------------------------------------- /dsp/tty/itoa8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/itoa8.h -------------------------------------------------------------------------------- /dsp/tty/mpsadbw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/mpsadbw.S -------------------------------------------------------------------------------- /dsp/tty/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/quant.h -------------------------------------------------------------------------------- /dsp/tty/restore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/restore.c -------------------------------------------------------------------------------- /dsp/tty/rgb2ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/rgb2ansi.c -------------------------------------------------------------------------------- /dsp/tty/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/send.c -------------------------------------------------------------------------------- /dsp/tty/sendtitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/sendtitle.c -------------------------------------------------------------------------------- /dsp/tty/setbgfg16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/setbgfg16.c -------------------------------------------------------------------------------- /dsp/tty/setbgfg24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/setbgfg24.c -------------------------------------------------------------------------------- /dsp/tty/setraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/setraw.c -------------------------------------------------------------------------------- /dsp/tty/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/tty.h -------------------------------------------------------------------------------- /dsp/tty/tty.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/tty.mk -------------------------------------------------------------------------------- /dsp/tty/tty2rgb24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/tty2rgb24.c -------------------------------------------------------------------------------- /dsp/tty/ttyhisto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ttyhisto.c -------------------------------------------------------------------------------- /dsp/tty/ttymove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ttymove.c -------------------------------------------------------------------------------- /dsp/tty/ttyquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ttyquant.c -------------------------------------------------------------------------------- /dsp/tty/ttyraster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ttyraster.c -------------------------------------------------------------------------------- /dsp/tty/ttyraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ttyraw.c -------------------------------------------------------------------------------- /dsp/tty/ttyrgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/ttyrgb.h -------------------------------------------------------------------------------- /dsp/tty/windex-k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/windex-k8.c -------------------------------------------------------------------------------- /dsp/tty/windex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/windex.c -------------------------------------------------------------------------------- /dsp/tty/windex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/windex.h -------------------------------------------------------------------------------- /dsp/tty/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/write.c -------------------------------------------------------------------------------- /dsp/tty/xtermname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/xtermname.c -------------------------------------------------------------------------------- /dsp/tty/xtermname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/dsp/tty/xtermname.h -------------------------------------------------------------------------------- /examples/certapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/certapp.c -------------------------------------------------------------------------------- /examples/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/check.c -------------------------------------------------------------------------------- /examples/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/clock.c -------------------------------------------------------------------------------- /examples/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/compress.c -------------------------------------------------------------------------------- /examples/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/cosh.c -------------------------------------------------------------------------------- /examples/ctrlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/ctrlc.c -------------------------------------------------------------------------------- /examples/datauri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/datauri.c -------------------------------------------------------------------------------- /examples/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/date.c -------------------------------------------------------------------------------- /examples/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/dot.c -------------------------------------------------------------------------------- /examples/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/exec.c -------------------------------------------------------------------------------- /examples/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/exit.c -------------------------------------------------------------------------------- /examples/fastmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/fastmod.c -------------------------------------------------------------------------------- /examples/forkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/forkexec.c -------------------------------------------------------------------------------- /examples/forkrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/forkrand.c -------------------------------------------------------------------------------- /examples/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/gc.c -------------------------------------------------------------------------------- /examples/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/gui.c -------------------------------------------------------------------------------- /examples/hangman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hangman.c -------------------------------------------------------------------------------- /examples/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hello.c -------------------------------------------------------------------------------- /examples/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hello2.c -------------------------------------------------------------------------------- /examples/hello3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hello3.c -------------------------------------------------------------------------------- /examples/hellolua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hellolua.c -------------------------------------------------------------------------------- /examples/hellolua.lua: -------------------------------------------------------------------------------- 1 | print(string.format("2 + 3 = %g", NativeAdd(2, 3))) 2 | -------------------------------------------------------------------------------- /examples/hertz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hertz.c -------------------------------------------------------------------------------- /examples/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hiredis.c -------------------------------------------------------------------------------- /examples/hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/hostname.c -------------------------------------------------------------------------------- /examples/img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/img.c -------------------------------------------------------------------------------- /examples/kilo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/kilo.c -------------------------------------------------------------------------------- /examples/life.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/life.c -------------------------------------------------------------------------------- /examples/loadavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/loadavg.c -------------------------------------------------------------------------------- /examples/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/ls.c -------------------------------------------------------------------------------- /examples/lstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/lstime.c -------------------------------------------------------------------------------- /examples/mkhello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/mkhello.c -------------------------------------------------------------------------------- /examples/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/nc.c -------------------------------------------------------------------------------- /examples/nesemu1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/nesemu1.cc -------------------------------------------------------------------------------- /examples/panels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/panels.c -------------------------------------------------------------------------------- /examples/picol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/picol.c -------------------------------------------------------------------------------- /examples/portscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/portscan.c -------------------------------------------------------------------------------- /examples/pylife/pylife.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(42) 3 | -------------------------------------------------------------------------------- /examples/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/reboot.c -------------------------------------------------------------------------------- /examples/rlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/rlimit.c -------------------------------------------------------------------------------- /examples/rusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/rusage.c -------------------------------------------------------------------------------- /examples/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/script.c -------------------------------------------------------------------------------- /examples/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/script.txt -------------------------------------------------------------------------------- /examples/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/seq.c -------------------------------------------------------------------------------- /examples/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/shutdown.c -------------------------------------------------------------------------------- /examples/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/stat.c -------------------------------------------------------------------------------- /examples/statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/statfs.c -------------------------------------------------------------------------------- /examples/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/symtab.c -------------------------------------------------------------------------------- /examples/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/sysinfo.c -------------------------------------------------------------------------------- /examples/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/system.c -------------------------------------------------------------------------------- /examples/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/thread.c -------------------------------------------------------------------------------- /examples/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/time.c -------------------------------------------------------------------------------- /examples/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/tls.c -------------------------------------------------------------------------------- /examples/ttyinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/ttyinfo.c -------------------------------------------------------------------------------- /examples/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/uname.c -------------------------------------------------------------------------------- /examples/unbourne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/unbourne.c -------------------------------------------------------------------------------- /examples/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/vga.c -------------------------------------------------------------------------------- /examples/vga2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/vga2.c -------------------------------------------------------------------------------- /examples/vqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/vqsort.c -------------------------------------------------------------------------------- /examples/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/walk.c -------------------------------------------------------------------------------- /examples/wall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/wall.c -------------------------------------------------------------------------------- /examples/whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/whois.c -------------------------------------------------------------------------------- /examples/x86split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/examples/x86split.c -------------------------------------------------------------------------------- /libc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/README.md -------------------------------------------------------------------------------- /libc/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/ar.h -------------------------------------------------------------------------------- /libc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/assert.h -------------------------------------------------------------------------------- /libc/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/atomic.h -------------------------------------------------------------------------------- /libc/calls/CPU_OR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/CPU_OR.c -------------------------------------------------------------------------------- /libc/calls/__sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/__sig.c -------------------------------------------------------------------------------- /libc/calls/__sig2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/__sig2.c -------------------------------------------------------------------------------- /libc/calls/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/access.c -------------------------------------------------------------------------------- /libc/calls/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/alarm.c -------------------------------------------------------------------------------- /libc/calls/calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/calls.h -------------------------------------------------------------------------------- /libc/calls/calls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/calls.mk -------------------------------------------------------------------------------- /libc/calls/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/chdir.c -------------------------------------------------------------------------------- /libc/calls/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/chmod.c -------------------------------------------------------------------------------- /libc/calls/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/chown.c -------------------------------------------------------------------------------- /libc/calls/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/chroot.c -------------------------------------------------------------------------------- /libc/calls/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/clock.c -------------------------------------------------------------------------------- /libc/calls/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/close.c -------------------------------------------------------------------------------- /libc/calls/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/copy.c -------------------------------------------------------------------------------- /libc/calls/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/creat.c -------------------------------------------------------------------------------- /libc/calls/dtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/dtime.c -------------------------------------------------------------------------------- /libc/calls/dup-nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/dup-nt.c -------------------------------------------------------------------------------- /libc/calls/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/dup.c -------------------------------------------------------------------------------- /libc/calls/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/dup2.c -------------------------------------------------------------------------------- /libc/calls/dup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/dup3.c -------------------------------------------------------------------------------- /libc/calls/execl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/execl.c -------------------------------------------------------------------------------- /libc/calls/execle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/execle.c -------------------------------------------------------------------------------- /libc/calls/execlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/execlp.c -------------------------------------------------------------------------------- /libc/calls/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/execv.c -------------------------------------------------------------------------------- /libc/calls/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/execve.c -------------------------------------------------------------------------------- /libc/calls/execvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/execvp.c -------------------------------------------------------------------------------- /libc/calls/fchdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/fchdir.c -------------------------------------------------------------------------------- /libc/calls/fchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/fchmod.c -------------------------------------------------------------------------------- /libc/calls/fchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/fchown.c -------------------------------------------------------------------------------- /libc/calls/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/fcntl.c -------------------------------------------------------------------------------- /libc/calls/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/flock.c -------------------------------------------------------------------------------- /libc/calls/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/fstat.c -------------------------------------------------------------------------------- /libc/calls/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/fsync.c -------------------------------------------------------------------------------- /libc/calls/ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/ftok.c -------------------------------------------------------------------------------- /libc/calls/getsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/getsid.c -------------------------------------------------------------------------------- /libc/calls/getuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/getuid.c -------------------------------------------------------------------------------- /libc/calls/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/ioctl.c -------------------------------------------------------------------------------- /libc/calls/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/ipc.h -------------------------------------------------------------------------------- /libc/calls/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/isatty.c -------------------------------------------------------------------------------- /libc/calls/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/kill.c -------------------------------------------------------------------------------- /libc/calls/killpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/killpg.c -------------------------------------------------------------------------------- /libc/calls/lchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/lchmod.c -------------------------------------------------------------------------------- /libc/calls/lchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/lchown.c -------------------------------------------------------------------------------- /libc/calls/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/link.c -------------------------------------------------------------------------------- /libc/calls/linkat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/linkat.c -------------------------------------------------------------------------------- /libc/calls/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/lseek.c -------------------------------------------------------------------------------- /libc/calls/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/lstat.c -------------------------------------------------------------------------------- /libc/calls/major.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/major.c -------------------------------------------------------------------------------- /libc/calls/minor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/minor.c -------------------------------------------------------------------------------- /libc/calls/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/mkdir.c -------------------------------------------------------------------------------- /libc/calls/mkfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/mkfifo.c -------------------------------------------------------------------------------- /libc/calls/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/mknod.c -------------------------------------------------------------------------------- /libc/calls/mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/mlock.c -------------------------------------------------------------------------------- /libc/calls/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/mount.c -------------------------------------------------------------------------------- /libc/calls/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/mount.h -------------------------------------------------------------------------------- /libc/calls/nanos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/nanos.c -------------------------------------------------------------------------------- /libc/calls/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/nice.c -------------------------------------------------------------------------------- /libc/calls/nosync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/nosync.c -------------------------------------------------------------------------------- /libc/calls/now.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/now.c -------------------------------------------------------------------------------- /libc/calls/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/open.c -------------------------------------------------------------------------------- /libc/calls/openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/openat.c -------------------------------------------------------------------------------- /libc/calls/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pause.c -------------------------------------------------------------------------------- /libc/calls/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/perror.c -------------------------------------------------------------------------------- /libc/calls/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pipe.c -------------------------------------------------------------------------------- /libc/calls/pipe2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pipe2.c -------------------------------------------------------------------------------- /libc/calls/pledge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pledge.c -------------------------------------------------------------------------------- /libc/calls/pledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pledge.h -------------------------------------------------------------------------------- /libc/calls/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/poll.c -------------------------------------------------------------------------------- /libc/calls/ppoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/ppoll.c -------------------------------------------------------------------------------- /libc/calls/prctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/prctl.c -------------------------------------------------------------------------------- /libc/calls/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pread.c -------------------------------------------------------------------------------- /libc/calls/preadv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/preadv.c -------------------------------------------------------------------------------- /libc/calls/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/ptrace.c -------------------------------------------------------------------------------- /libc/calls/pwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/pwrite.c -------------------------------------------------------------------------------- /libc/calls/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/raise.c -------------------------------------------------------------------------------- /libc/calls/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/read.c -------------------------------------------------------------------------------- /libc/calls/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/readv.c -------------------------------------------------------------------------------- /libc/calls/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/reboot.c -------------------------------------------------------------------------------- /libc/calls/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/remove.c -------------------------------------------------------------------------------- /libc/calls/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/rename.c -------------------------------------------------------------------------------- /libc/calls/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/rmdir.c -------------------------------------------------------------------------------- /libc/calls/setgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/setgid.c -------------------------------------------------------------------------------- /libc/calls/setsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/setsid.c -------------------------------------------------------------------------------- /libc/calls/setuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/setuid.c -------------------------------------------------------------------------------- /libc/calls/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/signal.c -------------------------------------------------------------------------------- /libc/calls/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/sleep.c -------------------------------------------------------------------------------- /libc/calls/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/splice.c -------------------------------------------------------------------------------- /libc/calls/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/stat.c -------------------------------------------------------------------------------- /libc/calls/statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/statfs.c -------------------------------------------------------------------------------- /libc/calls/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/sync.c -------------------------------------------------------------------------------- /libc/calls/tcflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/tcflow.c -------------------------------------------------------------------------------- /libc/calls/tgkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/tgkill.c -------------------------------------------------------------------------------- /libc/calls/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/time.c -------------------------------------------------------------------------------- /libc/calls/tkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/tkill.c -------------------------------------------------------------------------------- /libc/calls/tmpfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/tmpfd.c -------------------------------------------------------------------------------- /libc/calls/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/touch.c -------------------------------------------------------------------------------- /libc/calls/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/umask.c -------------------------------------------------------------------------------- /libc/calls/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/uname.c -------------------------------------------------------------------------------- /libc/calls/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/unlink.c -------------------------------------------------------------------------------- /libc/calls/unveil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/unveil.c -------------------------------------------------------------------------------- /libc/calls/usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/usleep.c -------------------------------------------------------------------------------- /libc/calls/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/utime.c -------------------------------------------------------------------------------- /libc/calls/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/utimes.c -------------------------------------------------------------------------------- /libc/calls/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/wait.c -------------------------------------------------------------------------------- /libc/calls/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/wait3.c -------------------------------------------------------------------------------- /libc/calls/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/wait4.c -------------------------------------------------------------------------------- /libc/calls/wait4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/wait4.h -------------------------------------------------------------------------------- /libc/calls/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/write.c -------------------------------------------------------------------------------- /libc/calls/writev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/writev.c -------------------------------------------------------------------------------- /libc/calls/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/calls/xattr.h -------------------------------------------------------------------------------- /libc/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/complex.h -------------------------------------------------------------------------------- /libc/crt/crt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/crt/crt.S -------------------------------------------------------------------------------- /libc/crt/crt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/crt/crt.mk -------------------------------------------------------------------------------- /libc/dce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dce.h -------------------------------------------------------------------------------- /libc/disclaimer.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc/dns/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/consts.h -------------------------------------------------------------------------------- /libc/dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/dns.h -------------------------------------------------------------------------------- /libc/dns/dns.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/dns.mk -------------------------------------------------------------------------------- /libc/dns/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/dns.png -------------------------------------------------------------------------------- /libc/dns/ent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/ent.h -------------------------------------------------------------------------------- /libc/dns/h_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/h_errno.c -------------------------------------------------------------------------------- /libc/dns/herror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/herror.c -------------------------------------------------------------------------------- /libc/dns/hostent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/hostent.c -------------------------------------------------------------------------------- /libc/dns/hoststxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/hoststxt.h -------------------------------------------------------------------------------- /libc/dns/netent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/netent.c -------------------------------------------------------------------------------- /libc/dns/protoent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/protoent.c -------------------------------------------------------------------------------- /libc/dns/prototxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/prototxt.h -------------------------------------------------------------------------------- /libc/dns/servent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dns/servent.c -------------------------------------------------------------------------------- /libc/dos.internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/dos.internal.h -------------------------------------------------------------------------------- /libc/elf/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/elf/def.h -------------------------------------------------------------------------------- /libc/elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/elf/elf.h -------------------------------------------------------------------------------- /libc/elf/elf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/elf/elf.mk -------------------------------------------------------------------------------- /libc/elf/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/elf/scalar.h -------------------------------------------------------------------------------- /libc/empty.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/errno.h -------------------------------------------------------------------------------- /libc/fmt/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/atoi.c -------------------------------------------------------------------------------- /libc/fmt/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/atol.c -------------------------------------------------------------------------------- /libc/fmt/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/basename.c -------------------------------------------------------------------------------- /libc/fmt/bing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/bing.c -------------------------------------------------------------------------------- /libc/fmt/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/conv.h -------------------------------------------------------------------------------- /libc/fmt/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/dirname.c -------------------------------------------------------------------------------- /libc/fmt/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/div.c -------------------------------------------------------------------------------- /libc/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/fmt.h -------------------------------------------------------------------------------- /libc/fmt/fmt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/fmt.mk -------------------------------------------------------------------------------- /libc/fmt/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/itoa.h -------------------------------------------------------------------------------- /libc/fmt/itoa64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/itoa64.c -------------------------------------------------------------------------------- /libc/fmt/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/ldiv.c -------------------------------------------------------------------------------- /libc/fmt/leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/leb128.h -------------------------------------------------------------------------------- /libc/fmt/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/libgen.h -------------------------------------------------------------------------------- /libc/fmt/sizetol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/sizetol.c -------------------------------------------------------------------------------- /libc/fmt/sleb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/sleb128.c -------------------------------------------------------------------------------- /libc/fmt/sleb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/sleb64.c -------------------------------------------------------------------------------- /libc/fmt/stripext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/stripext.c -------------------------------------------------------------------------------- /libc/fmt/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/strtol.c -------------------------------------------------------------------------------- /libc/fmt/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/strtonum.c -------------------------------------------------------------------------------- /libc/fmt/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/strtoul.c -------------------------------------------------------------------------------- /libc/fmt/uleb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/uleb128.c -------------------------------------------------------------------------------- /libc/fmt/uleb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/uleb64.c -------------------------------------------------------------------------------- /libc/fmt/unbing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/unbing.c -------------------------------------------------------------------------------- /libc/fmt/unuleb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/unuleb64.c -------------------------------------------------------------------------------- /libc/fmt/unzleb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/unzleb64.c -------------------------------------------------------------------------------- /libc/fmt/wcstol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/wcstol.c -------------------------------------------------------------------------------- /libc/fmt/wcstoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/wcstoul.c -------------------------------------------------------------------------------- /libc/fmt/zleb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/zleb128.c -------------------------------------------------------------------------------- /libc/fmt/zleb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/fmt/zleb64.c -------------------------------------------------------------------------------- /libc/integral/c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/integral/c.inc -------------------------------------------------------------------------------- /libc/intrin/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/abort.c -------------------------------------------------------------------------------- /libc/intrin/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/abs.c -------------------------------------------------------------------------------- /libc/intrin/asan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/asan.c -------------------------------------------------------------------------------- /libc/intrin/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bcopy.c -------------------------------------------------------------------------------- /libc/intrin/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bits.h -------------------------------------------------------------------------------- /libc/intrin/bsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bsf.c -------------------------------------------------------------------------------- /libc/intrin/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bsf.h -------------------------------------------------------------------------------- /libc/intrin/bsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bsr.c -------------------------------------------------------------------------------- /libc/intrin/bsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bsr.h -------------------------------------------------------------------------------- /libc/intrin/bswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bswap.c -------------------------------------------------------------------------------- /libc/intrin/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bswap.h -------------------------------------------------------------------------------- /libc/intrin/bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bt.c -------------------------------------------------------------------------------- /libc/intrin/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/bzero.c -------------------------------------------------------------------------------- /libc/intrin/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/cp.c -------------------------------------------------------------------------------- /libc/intrin/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/dll.c -------------------------------------------------------------------------------- /libc/intrin/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/dll.h -------------------------------------------------------------------------------- /libc/intrin/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/exit.c -------------------------------------------------------------------------------- /libc/intrin/exitr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/exitr.c -------------------------------------------------------------------------------- /libc/intrin/fenv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/fenv.S -------------------------------------------------------------------------------- /libc/intrin/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/ffs.c -------------------------------------------------------------------------------- /libc/intrin/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/fmax.c -------------------------------------------------------------------------------- /libc/intrin/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/fmaxf.c -------------------------------------------------------------------------------- /libc/intrin/fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/fmaxl.c -------------------------------------------------------------------------------- /libc/intrin/futex.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/futex.S -------------------------------------------------------------------------------- /libc/intrin/g_fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/g_fds.c -------------------------------------------------------------------------------- /libc/intrin/gcov.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/gcov.S -------------------------------------------------------------------------------- /libc/intrin/iswsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/iswsl.c -------------------------------------------------------------------------------- /libc/intrin/leaky.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/leaky.S -------------------------------------------------------------------------------- /libc/intrin/mmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/mmi.c -------------------------------------------------------------------------------- /libc/intrin/paddw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/paddw.c -------------------------------------------------------------------------------- /libc/intrin/paddw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/paddw.h -------------------------------------------------------------------------------- /libc/intrin/pandn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/pandn.c -------------------------------------------------------------------------------- /libc/intrin/pandn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/pandn.h -------------------------------------------------------------------------------- /libc/intrin/psraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/psraw.c -------------------------------------------------------------------------------- /libc/intrin/psraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/psraw.h -------------------------------------------------------------------------------- /libc/intrin/tpenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/tpenc.c -------------------------------------------------------------------------------- /libc/intrin/ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/intrin/ubsan.c -------------------------------------------------------------------------------- /libc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/inttypes.h -------------------------------------------------------------------------------- /libc/isystem/any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/any -------------------------------------------------------------------------------- /libc/isystem/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/ar.h -------------------------------------------------------------------------------- /libc/isystem/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/array -------------------------------------------------------------------------------- /libc/isystem/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/atomic -------------------------------------------------------------------------------- /libc/isystem/bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/bit -------------------------------------------------------------------------------- /libc/isystem/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/bitset -------------------------------------------------------------------------------- /libc/isystem/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cctype -------------------------------------------------------------------------------- /libc/isystem/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cerrno -------------------------------------------------------------------------------- /libc/isystem/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cfenv -------------------------------------------------------------------------------- /libc/isystem/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cfloat -------------------------------------------------------------------------------- /libc/isystem/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/chrono -------------------------------------------------------------------------------- /libc/isystem/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cmath -------------------------------------------------------------------------------- /libc/isystem/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cpio.h -------------------------------------------------------------------------------- /libc/isystem/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cstdio -------------------------------------------------------------------------------- /libc/isystem/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/ctime -------------------------------------------------------------------------------- /libc/isystem/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/cwchar -------------------------------------------------------------------------------- /libc/isystem/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/deque -------------------------------------------------------------------------------- /libc/isystem/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/elf.h -------------------------------------------------------------------------------- /libc/isystem/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/err.h -------------------------------------------------------------------------------- /libc/isystem/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/fenv.h -------------------------------------------------------------------------------- /libc/isystem/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/ftw.h -------------------------------------------------------------------------------- /libc/isystem/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/glob.h -------------------------------------------------------------------------------- /libc/isystem/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/grp.h -------------------------------------------------------------------------------- /libc/isystem/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/ios -------------------------------------------------------------------------------- /libc/isystem/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/iosfwd -------------------------------------------------------------------------------- /libc/isystem/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/limits -------------------------------------------------------------------------------- /libc/isystem/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/list -------------------------------------------------------------------------------- /libc/isystem/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/locale -------------------------------------------------------------------------------- /libc/isystem/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/map -------------------------------------------------------------------------------- /libc/isystem/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/math.h -------------------------------------------------------------------------------- /libc/isystem/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/memory -------------------------------------------------------------------------------- /libc/isystem/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/mutex -------------------------------------------------------------------------------- /libc/isystem/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/new -------------------------------------------------------------------------------- /libc/isystem/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/poll.h -------------------------------------------------------------------------------- /libc/isystem/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/pwd.h -------------------------------------------------------------------------------- /libc/isystem/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/queue -------------------------------------------------------------------------------- /libc/isystem/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/random -------------------------------------------------------------------------------- /libc/isystem/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/ratio -------------------------------------------------------------------------------- /libc/isystem/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/regex -------------------------------------------------------------------------------- /libc/isystem/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/set -------------------------------------------------------------------------------- /libc/isystem/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/span -------------------------------------------------------------------------------- /libc/isystem/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/stack -------------------------------------------------------------------------------- /libc/isystem/stdc-predef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc/isystem/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/string -------------------------------------------------------------------------------- /libc/isystem/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/thread -------------------------------------------------------------------------------- /libc/isystem/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/time.h -------------------------------------------------------------------------------- /libc/isystem/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/tuple -------------------------------------------------------------------------------- /libc/isystem/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/uio.h -------------------------------------------------------------------------------- /libc/isystem/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/utmp.h -------------------------------------------------------------------------------- /libc/isystem/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/vector -------------------------------------------------------------------------------- /libc/isystem/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/isystem/wait.h -------------------------------------------------------------------------------- /libc/libc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/libc.mk -------------------------------------------------------------------------------- /libc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/limits.h -------------------------------------------------------------------------------- /libc/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/literal.h -------------------------------------------------------------------------------- /libc/log/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/bsd.h -------------------------------------------------------------------------------- /libc/log/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/check.h -------------------------------------------------------------------------------- /libc/log/die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/die.c -------------------------------------------------------------------------------- /libc/log/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/err.c -------------------------------------------------------------------------------- /libc/log/flogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/flogf.c -------------------------------------------------------------------------------- /libc/log/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/gdb.h -------------------------------------------------------------------------------- /libc/log/gdbexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/gdbexec.c -------------------------------------------------------------------------------- /libc/log/gdbpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/gdbpath.c -------------------------------------------------------------------------------- /libc/log/gdbsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/gdbsync.c -------------------------------------------------------------------------------- /libc/log/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/internal.h -------------------------------------------------------------------------------- /libc/log/leaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/leaks.c -------------------------------------------------------------------------------- /libc/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/log.h -------------------------------------------------------------------------------- /libc/log/log.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/log.mk -------------------------------------------------------------------------------- /libc/log/log_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/log_exit.c -------------------------------------------------------------------------------- /libc/log/logerrno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/logerrno.c -------------------------------------------------------------------------------- /libc/log/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/logfile.c -------------------------------------------------------------------------------- /libc/log/loglevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/loglevel.c -------------------------------------------------------------------------------- /libc/log/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/meminfo.c -------------------------------------------------------------------------------- /libc/log/memlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/memlog.c -------------------------------------------------------------------------------- /libc/log/traceme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/traceme.c -------------------------------------------------------------------------------- /libc/log/traceme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/traceme.h -------------------------------------------------------------------------------- /libc/log/vflogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/vflogf.c -------------------------------------------------------------------------------- /libc/log/watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/log/watch.c -------------------------------------------------------------------------------- /libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/math.h -------------------------------------------------------------------------------- /libc/mem/_gc_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/_gc_free.c -------------------------------------------------------------------------------- /libc/mem/alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/alg.h -------------------------------------------------------------------------------- /libc/mem/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/alloca.h -------------------------------------------------------------------------------- /libc/mem/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/arena.c -------------------------------------------------------------------------------- /libc/mem/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/arena.h -------------------------------------------------------------------------------- /libc/mem/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/bsearch.c -------------------------------------------------------------------------------- /libc/mem/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/calloc.c -------------------------------------------------------------------------------- /libc/mem/critbit0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/critbit0.h -------------------------------------------------------------------------------- /libc/mem/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/free.c -------------------------------------------------------------------------------- /libc/mem/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/gc.c -------------------------------------------------------------------------------- /libc/mem/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/gc.h -------------------------------------------------------------------------------- /libc/mem/heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/heapsort.c -------------------------------------------------------------------------------- /libc/mem/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/internal.h -------------------------------------------------------------------------------- /libc/mem/mallinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/mallinfo.c -------------------------------------------------------------------------------- /libc/mem/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/malloc.c -------------------------------------------------------------------------------- /libc/mem/mallopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/mallopt.c -------------------------------------------------------------------------------- /libc/mem/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/mem.h -------------------------------------------------------------------------------- /libc/mem/mem.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/mem.mk -------------------------------------------------------------------------------- /libc/mem/memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/memalign.c -------------------------------------------------------------------------------- /libc/mem/pvalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/pvalloc.c -------------------------------------------------------------------------------- /libc/mem/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/qsort.c -------------------------------------------------------------------------------- /libc/mem/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/realloc.c -------------------------------------------------------------------------------- /libc/mem/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/strdup.c -------------------------------------------------------------------------------- /libc/mem/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/strndup.c -------------------------------------------------------------------------------- /libc/mem/valloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/valloc.c -------------------------------------------------------------------------------- /libc/mem/wcsdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/mem/wcsdup.c -------------------------------------------------------------------------------- /libc/nexgen32e/gc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nexgen32e/gc.S -------------------------------------------------------------------------------- /libc/notice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/notice.inc -------------------------------------------------------------------------------- /libc/nt/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/codegen.h -------------------------------------------------------------------------------- /libc/nt/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/codegen.sh -------------------------------------------------------------------------------- /libc/nt/comdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/comdlg.h -------------------------------------------------------------------------------- /libc/nt/comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/comms.h -------------------------------------------------------------------------------- /libc/nt/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/console.h -------------------------------------------------------------------------------- /libc/nt/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/debug.h -------------------------------------------------------------------------------- /libc/nt/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/dll.h -------------------------------------------------------------------------------- /libc/nt/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/efi.h -------------------------------------------------------------------------------- /libc/nt/enum/afd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/afd.h -------------------------------------------------------------------------------- /libc/nt/enum/cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/cs.h -------------------------------------------------------------------------------- /libc/nt/enum/cw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/cw.h -------------------------------------------------------------------------------- /libc/nt/enum/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/heap.h -------------------------------------------------------------------------------- /libc/nt/enum/ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/ht.h -------------------------------------------------------------------------------- /libc/nt/enum/idc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/idc.h -------------------------------------------------------------------------------- /libc/nt/enum/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/io.h -------------------------------------------------------------------------------- /libc/nt/enum/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/lang.h -------------------------------------------------------------------------------- /libc/nt/enum/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/mb.h -------------------------------------------------------------------------------- /libc/nt/enum/mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/mf.h -------------------------------------------------------------------------------- /libc/nt/enum/mk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/mk.h -------------------------------------------------------------------------------- /libc/nt/enum/ofn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/ofn.h -------------------------------------------------------------------------------- /libc/nt/enum/pdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/pdh.h -------------------------------------------------------------------------------- /libc/nt/enum/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/pwr.h -------------------------------------------------------------------------------- /libc/nt/enum/rdw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/rdw.h -------------------------------------------------------------------------------- /libc/nt/enum/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/sc.h -------------------------------------------------------------------------------- /libc/nt/enum/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/sio.h -------------------------------------------------------------------------------- /libc/nt/enum/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/size.h -------------------------------------------------------------------------------- /libc/nt/enum/sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/sw.h -------------------------------------------------------------------------------- /libc/nt/enum/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/tpm.h -------------------------------------------------------------------------------- /libc/nt/enum/vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/vk.h -------------------------------------------------------------------------------- /libc/nt/enum/wa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/wa.h -------------------------------------------------------------------------------- /libc/nt/enum/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/wait.h -------------------------------------------------------------------------------- /libc/nt/enum/wm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/wm.h -------------------------------------------------------------------------------- /libc/nt/enum/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/ws.h -------------------------------------------------------------------------------- /libc/nt/enum/wsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/wsa.h -------------------------------------------------------------------------------- /libc/nt/enum/wt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/enum/wt.h -------------------------------------------------------------------------------- /libc/nt/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/errors.h -------------------------------------------------------------------------------- /libc/nt/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/events.h -------------------------------------------------------------------------------- /libc/nt/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/files.h -------------------------------------------------------------------------------- /libc/nt/gdi32/Arc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/gdi32/Arc.S -------------------------------------------------------------------------------- /libc/nt/gdi32/Pie.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/gdi32/Pie.S -------------------------------------------------------------------------------- /libc/nt/iocp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/iocp.h -------------------------------------------------------------------------------- /libc/nt/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/ipc.h -------------------------------------------------------------------------------- /libc/nt/iphlpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/iphlpapi.h -------------------------------------------------------------------------------- /libc/nt/master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/master.sh -------------------------------------------------------------------------------- /libc/nt/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/memory.h -------------------------------------------------------------------------------- /libc/nt/nt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt.mk -------------------------------------------------------------------------------- /libc/nt/nt/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/debug.h -------------------------------------------------------------------------------- /libc/nt/nt/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/file.h -------------------------------------------------------------------------------- /libc/nt/nt/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/ipc.h -------------------------------------------------------------------------------- /libc/nt/nt/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/key.h -------------------------------------------------------------------------------- /libc/nt/nt/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/loader.h -------------------------------------------------------------------------------- /libc/nt/nt/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/memory.h -------------------------------------------------------------------------------- /libc/nt/nt/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/thread.h -------------------------------------------------------------------------------- /libc/nt/nt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/nt/time.h -------------------------------------------------------------------------------- /libc/nt/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/ntdll.h -------------------------------------------------------------------------------- /libc/nt/paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/paint.h -------------------------------------------------------------------------------- /libc/nt/pdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/pdh.h -------------------------------------------------------------------------------- /libc/nt/privilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/privilege.h -------------------------------------------------------------------------------- /libc/nt/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/process.h -------------------------------------------------------------------------------- /libc/nt/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/registry.h -------------------------------------------------------------------------------- /libc/nt/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/runtime.h -------------------------------------------------------------------------------- /libc/nt/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/signals.h -------------------------------------------------------------------------------- /libc/nt/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/system.h -------------------------------------------------------------------------------- /libc/nt/sysv2nt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/sysv2nt.S -------------------------------------------------------------------------------- /libc/nt/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/thread.h -------------------------------------------------------------------------------- /libc/nt/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/version.h -------------------------------------------------------------------------------- /libc/nt/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/windows.h -------------------------------------------------------------------------------- /libc/nt/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/nt/winsock.h -------------------------------------------------------------------------------- /libc/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/paths.h -------------------------------------------------------------------------------- /libc/runtime/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/exit.c -------------------------------------------------------------------------------- /libc/runtime/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/fenv.h -------------------------------------------------------------------------------- /libc/runtime/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/fork.c -------------------------------------------------------------------------------- /libc/runtime/grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/grow.c -------------------------------------------------------------------------------- /libc/runtime/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/init.S -------------------------------------------------------------------------------- /libc/runtime/ldso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/ldso.c -------------------------------------------------------------------------------- /libc/runtime/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/mmap.c -------------------------------------------------------------------------------- /libc/runtime/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/utmp.c -------------------------------------------------------------------------------- /libc/runtime/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/runtime/utmp.h -------------------------------------------------------------------------------- /libc/sock/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/accept.c -------------------------------------------------------------------------------- /libc/sock/accept4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/accept4.c -------------------------------------------------------------------------------- /libc/sock/alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/alg.h -------------------------------------------------------------------------------- /libc/sock/bind-nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/bind-nt.c -------------------------------------------------------------------------------- /libc/sock/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/bind.c -------------------------------------------------------------------------------- /libc/sock/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/connect.c -------------------------------------------------------------------------------- /libc/sock/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/epoll.c -------------------------------------------------------------------------------- /libc/sock/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/epoll.h -------------------------------------------------------------------------------- /libc/sock/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/listen.c -------------------------------------------------------------------------------- /libc/sock/pselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/pselect.c -------------------------------------------------------------------------------- /libc/sock/recv-nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/recv-nt.c -------------------------------------------------------------------------------- /libc/sock/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/recv.c -------------------------------------------------------------------------------- /libc/sock/recvmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/recvmsg.c -------------------------------------------------------------------------------- /libc/sock/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/select.c -------------------------------------------------------------------------------- /libc/sock/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/select.h -------------------------------------------------------------------------------- /libc/sock/send-nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/send-nt.c -------------------------------------------------------------------------------- /libc/sock/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/send.c -------------------------------------------------------------------------------- /libc/sock/sendmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/sendmsg.c -------------------------------------------------------------------------------- /libc/sock/sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/sendto.c -------------------------------------------------------------------------------- /libc/sock/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/sock.h -------------------------------------------------------------------------------- /libc/sock/sock.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/sock.mk -------------------------------------------------------------------------------- /libc/sock/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/socket.c -------------------------------------------------------------------------------- /libc/sock/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/syslog.c -------------------------------------------------------------------------------- /libc/sock/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/syslog.h -------------------------------------------------------------------------------- /libc/sock/yoink.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sock/yoink.inc -------------------------------------------------------------------------------- /libc/stdckdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdckdint.h -------------------------------------------------------------------------------- /libc/stdio/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/alloc.c -------------------------------------------------------------------------------- /libc/stdio/append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/append.h -------------------------------------------------------------------------------- /libc/stdio/big5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/big5.inc -------------------------------------------------------------------------------- /libc/stdio/ecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ecvt.c -------------------------------------------------------------------------------- /libc/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fclose.c -------------------------------------------------------------------------------- /libc/stdio/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fdopen.c -------------------------------------------------------------------------------- /libc/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/feof.c -------------------------------------------------------------------------------- /libc/stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ferror.c -------------------------------------------------------------------------------- /libc/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fflush.c -------------------------------------------------------------------------------- /libc/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fgetc.c -------------------------------------------------------------------------------- /libc/stdio/fgetln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fgetln.c -------------------------------------------------------------------------------- /libc/stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fgets.c -------------------------------------------------------------------------------- /libc/stdio/fgetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fgetwc.c -------------------------------------------------------------------------------- /libc/stdio/fgetws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fgetws.c -------------------------------------------------------------------------------- /libc/stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fileno.c -------------------------------------------------------------------------------- /libc/stdio/flbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/flbf.c -------------------------------------------------------------------------------- /libc/stdio/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fmt.c -------------------------------------------------------------------------------- /libc/stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fopen.c -------------------------------------------------------------------------------- /libc/stdio/fpurge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fpurge.c -------------------------------------------------------------------------------- /libc/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fputc.c -------------------------------------------------------------------------------- /libc/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fputs.c -------------------------------------------------------------------------------- /libc/stdio/fputwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fputwc.c -------------------------------------------------------------------------------- /libc/stdio/fputws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fputws.c -------------------------------------------------------------------------------- /libc/stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fread.c -------------------------------------------------------------------------------- /libc/stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fscanf.c -------------------------------------------------------------------------------- /libc/stdio/fseeko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fseeko.c -------------------------------------------------------------------------------- /libc/stdio/ftello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ftello.c -------------------------------------------------------------------------------- /libc/stdio/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ftw.c -------------------------------------------------------------------------------- /libc/stdio/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ftw.h -------------------------------------------------------------------------------- /libc/stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/fwrite.c -------------------------------------------------------------------------------- /libc/stdio/gcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/gcvt.c -------------------------------------------------------------------------------- /libc/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/gets.c -------------------------------------------------------------------------------- /libc/stdio/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/iconv.c -------------------------------------------------------------------------------- /libc/stdio/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/iconv.h -------------------------------------------------------------------------------- /libc/stdio/ksc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ksc.inc -------------------------------------------------------------------------------- /libc/stdio/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/mktemp.c -------------------------------------------------------------------------------- /libc/stdio/nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/nftw.c -------------------------------------------------------------------------------- /libc/stdio/pclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/pclose.c -------------------------------------------------------------------------------- /libc/stdio/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/popen.c -------------------------------------------------------------------------------- /libc/stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/printf.c -------------------------------------------------------------------------------- /libc/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/puts.c -------------------------------------------------------------------------------- /libc/stdio/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/rand.c -------------------------------------------------------------------------------- /libc/stdio/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/rand.h -------------------------------------------------------------------------------- /libc/stdio/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/random.c -------------------------------------------------------------------------------- /libc/stdio/rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/rdrand.c -------------------------------------------------------------------------------- /libc/stdio/rdseed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/rdseed.c -------------------------------------------------------------------------------- /libc/stdio/real1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/real1.c -------------------------------------------------------------------------------- /libc/stdio/real2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/real2.c -------------------------------------------------------------------------------- /libc/stdio/real3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/real3.c -------------------------------------------------------------------------------- /libc/stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/rewind.c -------------------------------------------------------------------------------- /libc/stdio/rngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/rngset.c -------------------------------------------------------------------------------- /libc/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/scanf.c -------------------------------------------------------------------------------- /libc/stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/setbuf.c -------------------------------------------------------------------------------- /libc/stdio/srand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/srand.c -------------------------------------------------------------------------------- /libc/stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/sscanf.c -------------------------------------------------------------------------------- /libc/stdio/stdbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/stdbuf.c -------------------------------------------------------------------------------- /libc/stdio/stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/stderr.c -------------------------------------------------------------------------------- /libc/stdio/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/stdin.c -------------------------------------------------------------------------------- /libc/stdio/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/stdio.h -------------------------------------------------------------------------------- /libc/stdio/stdio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/stdio.mk -------------------------------------------------------------------------------- /libc/stdio/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/stdout.c -------------------------------------------------------------------------------- /libc/stdio/strfry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/strfry.c -------------------------------------------------------------------------------- /libc/stdio/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/system.c -------------------------------------------------------------------------------- /libc/stdio/temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/temp.h -------------------------------------------------------------------------------- /libc/stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/ungetc.c -------------------------------------------------------------------------------- /libc/stdio/vigna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/vigna.c -------------------------------------------------------------------------------- /libc/stdio/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/stdio/vscanf.c -------------------------------------------------------------------------------- /libc/str/a64l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/a64l.c -------------------------------------------------------------------------------- /libc/str/bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/bcmp.c -------------------------------------------------------------------------------- /libc/str/blake2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/blake2.c -------------------------------------------------------------------------------- /libc/str/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/blake2.h -------------------------------------------------------------------------------- /libc/str/blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/blocks.txt -------------------------------------------------------------------------------- /libc/str/btowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/btowc.c -------------------------------------------------------------------------------- /libc/str/c16rtomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/c16rtomb.c -------------------------------------------------------------------------------- /libc/str/c32rtomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/c32rtomb.c -------------------------------------------------------------------------------- /libc/str/chomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/chomp.c -------------------------------------------------------------------------------- /libc/str/chomp16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/chomp16.c -------------------------------------------------------------------------------- /libc/str/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/crc32c.c -------------------------------------------------------------------------------- /libc/str/djbsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/djbsort.c -------------------------------------------------------------------------------- /libc/str/endswith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/endswith.c -------------------------------------------------------------------------------- /libc/str/hexpcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/hexpcpy.c -------------------------------------------------------------------------------- /libc/str/hextoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/hextoint.c -------------------------------------------------------------------------------- /libc/str/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/internal.h -------------------------------------------------------------------------------- /libc/str/intsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/intsort.c -------------------------------------------------------------------------------- /libc/str/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isalnum.c -------------------------------------------------------------------------------- /libc/str/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isalpha.c -------------------------------------------------------------------------------- /libc/str/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isascii.c -------------------------------------------------------------------------------- /libc/str/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isblank.c -------------------------------------------------------------------------------- /libc/str/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iscntrl.c -------------------------------------------------------------------------------- /libc/str/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isdigit.c -------------------------------------------------------------------------------- /libc/str/isdirsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isdirsep.c -------------------------------------------------------------------------------- /libc/str/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isgraph.c -------------------------------------------------------------------------------- /libc/str/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/islower.c -------------------------------------------------------------------------------- /libc/str/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isprint.c -------------------------------------------------------------------------------- /libc/str/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/ispunct.c -------------------------------------------------------------------------------- /libc/str/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isspace.c -------------------------------------------------------------------------------- /libc/str/istext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/istext.c -------------------------------------------------------------------------------- /libc/str/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isupper.c -------------------------------------------------------------------------------- /libc/str/isutf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isutf8.c -------------------------------------------------------------------------------- /libc/str/iswalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswalnum.c -------------------------------------------------------------------------------- /libc/str/iswalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswalpha.c -------------------------------------------------------------------------------- /libc/str/iswblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswblank.c -------------------------------------------------------------------------------- /libc/str/iswcntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswcntrl.c -------------------------------------------------------------------------------- /libc/str/iswctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswctype.c -------------------------------------------------------------------------------- /libc/str/iswdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswdigit.c -------------------------------------------------------------------------------- /libc/str/iswgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswgraph.c -------------------------------------------------------------------------------- /libc/str/iswlower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswlower.c -------------------------------------------------------------------------------- /libc/str/iswprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswprint.c -------------------------------------------------------------------------------- /libc/str/iswpunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswpunct.c -------------------------------------------------------------------------------- /libc/str/iswspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswspace.c -------------------------------------------------------------------------------- /libc/str/iswupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/iswupper.c -------------------------------------------------------------------------------- /libc/str/isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/isxdigit.c -------------------------------------------------------------------------------- /libc/str/l64a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/l64a.c -------------------------------------------------------------------------------- /libc/str/langinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/langinfo.c -------------------------------------------------------------------------------- /libc/str/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/langinfo.h -------------------------------------------------------------------------------- /libc/str/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/locale.h -------------------------------------------------------------------------------- /libc/str/longsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/longsort.c -------------------------------------------------------------------------------- /libc/str/lz4check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/lz4check.c -------------------------------------------------------------------------------- /libc/str/lz4cpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/lz4cpy.c -------------------------------------------------------------------------------- /libc/str/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/mb.c -------------------------------------------------------------------------------- /libc/str/mblen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/mblen.c -------------------------------------------------------------------------------- /libc/str/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/path.h -------------------------------------------------------------------------------- /libc/str/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/slice.h -------------------------------------------------------------------------------- /libc/str/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/str.h -------------------------------------------------------------------------------- /libc/str/str.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/str.mk -------------------------------------------------------------------------------- /libc/str/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/utf16.h -------------------------------------------------------------------------------- /libc/str/wctob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/str/wctob.c -------------------------------------------------------------------------------- /libc/sysv/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/sysv/gen.sh -------------------------------------------------------------------------------- /libc/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/time/time.h -------------------------------------------------------------------------------- /libc/type2str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/type2str.h -------------------------------------------------------------------------------- /libc/vga/vga.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/vga/vga.mk -------------------------------------------------------------------------------- /libc/x/rmrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/rmrf.c -------------------------------------------------------------------------------- /libc/x/tunbing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/tunbing.c -------------------------------------------------------------------------------- /libc/x/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/x.h -------------------------------------------------------------------------------- /libc/x/x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/x.mk -------------------------------------------------------------------------------- /libc/x/xbarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xbarf.c -------------------------------------------------------------------------------- /libc/x/xcalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xcalloc.c -------------------------------------------------------------------------------- /libc/x/xdie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xdie.c -------------------------------------------------------------------------------- /libc/x/xdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xdtoa.c -------------------------------------------------------------------------------- /libc/x/xdtoaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xdtoaf.c -------------------------------------------------------------------------------- /libc/x/xdtoal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xdtoal.c -------------------------------------------------------------------------------- /libc/x/xload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xload.c -------------------------------------------------------------------------------- /libc/x/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xmalloc.c -------------------------------------------------------------------------------- /libc/x/xslurp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xslurp.c -------------------------------------------------------------------------------- /libc/x/xspawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xspawn.c -------------------------------------------------------------------------------- /libc/x/xspawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xspawn.h -------------------------------------------------------------------------------- /libc/x/xstrcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xstrcat.c -------------------------------------------------------------------------------- /libc/x/xstrdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xstrdup.c -------------------------------------------------------------------------------- /libc/x/xstrmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xstrmul.c -------------------------------------------------------------------------------- /libc/x/xvalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xvalloc.c -------------------------------------------------------------------------------- /libc/x/xvspawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xvspawn.c -------------------------------------------------------------------------------- /libc/x/xwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/x/xwrite.c -------------------------------------------------------------------------------- /libc/zipos/.cosmo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc/zipos/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/libc/zipos/get.c -------------------------------------------------------------------------------- /net/http/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/net/http/http.h -------------------------------------------------------------------------------- /net/http/http.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/net/http/http.mk -------------------------------------------------------------------------------- /net/http/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/net/http/ip.h -------------------------------------------------------------------------------- /net/http/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/net/http/url.h -------------------------------------------------------------------------------- /net/net.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/net/net.mk -------------------------------------------------------------------------------- /test/dsp/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/test/dsp/test.mk -------------------------------------------------------------------------------- /test/net/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/test/net/test.mk -------------------------------------------------------------------------------- /test/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/test/test.mk -------------------------------------------------------------------------------- /third_party/chibicc/test/include2.h: -------------------------------------------------------------------------------- 1 | int include2 = 7; 2 | -------------------------------------------------------------------------------- /third_party/chibicc/test/include3.h: -------------------------------------------------------------------------------- 1 | #define foo 3 2 | -------------------------------------------------------------------------------- /third_party/chibicc/test/include4.h: -------------------------------------------------------------------------------- 1 | #define foo 4 2 | -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/ar.sym: -------------------------------------------------------------------------------- 1 | ../../bin/aarch64-linux-musl-ar -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/as.sym: -------------------------------------------------------------------------------- 1 | ../../bin/aarch64-linux-musl-as -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/ld.sym: -------------------------------------------------------------------------------- 1 | ld.bfd -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/nm.sym: -------------------------------------------------------------------------------- 1 | ../../bin/aarch64-linux-musl-nm -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/objcopy.sym: -------------------------------------------------------------------------------- 1 | ../../bin/aarch64-linux-musl-objcopy -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/objdump.sym: -------------------------------------------------------------------------------- 1 | ../../bin/aarch64-linux-musl-objdump -------------------------------------------------------------------------------- /third_party/gcc/aarch64-linux-musl/bin/strip.sym: -------------------------------------------------------------------------------- 1 | ../../bin/aarch64-linux-musl-strip -------------------------------------------------------------------------------- /third_party/gcc/bin/aarch64-linux-musl-c++.sym: -------------------------------------------------------------------------------- 1 | aarch64-linux-musl-g++ -------------------------------------------------------------------------------- /third_party/gcc/bin/aarch64-linux-musl-ld.bfd.sym: -------------------------------------------------------------------------------- 1 | ../aarch64-linux-musl/bin/ld.bfd -------------------------------------------------------------------------------- /third_party/gcc/bin/aarch64-linux-musl-ld.sym: -------------------------------------------------------------------------------- 1 | ../aarch64-linux-musl/bin/ld.bfd -------------------------------------------------------------------------------- /third_party/gcc/bin/x86_64-linux-musl-c++.sym: -------------------------------------------------------------------------------- 1 | x86_64-linux-musl-g++ -------------------------------------------------------------------------------- /third_party/gcc/bin/x86_64-linux-musl-ld.bfd.sym: -------------------------------------------------------------------------------- 1 | ../x86_64-linux-musl/bin/ld.bfd -------------------------------------------------------------------------------- /third_party/gcc/bin/x86_64-linux-musl-ld.sym: -------------------------------------------------------------------------------- 1 | ../x86_64-linux-musl/bin/ld.bfd -------------------------------------------------------------------------------- /third_party/gcc/lib/gcc/x86_64-linux-musl/11.2.0/specs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/ar.sym: -------------------------------------------------------------------------------- 1 | ../../bin/x86_64-linux-musl-ar -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/as.sym: -------------------------------------------------------------------------------- 1 | ../../bin/x86_64-linux-musl-as -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/ld.sym: -------------------------------------------------------------------------------- 1 | ld.bfd -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/nm.sym: -------------------------------------------------------------------------------- 1 | ../../bin/x86_64-linux-musl-nm -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/objcopy.sym: -------------------------------------------------------------------------------- 1 | ../../bin/x86_64-linux-musl-objcopy -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/objdump.sym: -------------------------------------------------------------------------------- 1 | ../../bin/x86_64-linux-musl-objdump -------------------------------------------------------------------------------- /third_party/gcc/x86_64-linux-musl/bin/strip.sym: -------------------------------------------------------------------------------- 1 | ../../bin/x86_64-linux-musl-strip -------------------------------------------------------------------------------- /third_party/mbedtls/test/data/base64/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/mbedtls/test/data/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/.python/this-is-a-kludge.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /third_party/python/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/test/test_warnings/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /third_party/python/Objects/README: -------------------------------------------------------------------------------- 1 | Source files for various builtin objects 2 | -------------------------------------------------------------------------------- /third_party/python/Tools/freeze/flag.py: -------------------------------------------------------------------------------- 1 | initialized = True 2 | print("Hello world!") 3 | -------------------------------------------------------------------------------- /third_party/python/Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello world...') 2 | -------------------------------------------------------------------------------- /third_party/python/Tools/freeze/test/ok.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(0) 3 | -------------------------------------------------------------------------------- /third_party/python/Tools/pybench/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Tools/pybench/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/python/Tools/test2to3/test2to3/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /third_party/python/hello.py: -------------------------------------------------------------------------------- 1 | print('hello world') 2 | -------------------------------------------------------------------------------- /third_party/quickjs/examples/hello.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); 2 | -------------------------------------------------------------------------------- /third_party/quickjs/test262o_errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/sqlite3/alter.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/alter.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/analyze.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/analyze.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/appendvfs.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/appendvfs.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/attach.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/attach.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/auth.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/auth.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/backup.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/backup.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/bitvec.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/bitvec.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/btmutex.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/btmutex.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/btree.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/btree.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/build.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/build.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/callback.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/callback.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/complete.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/complete.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/completion.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/completion.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/ctime.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/ctime.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/date.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/date.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/dbdata.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/dbdata.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/dbpage.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/dbpage.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/dbstat.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/dbstat.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/decimal.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/decimal.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/delete.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/delete.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/expr.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/expr.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fault.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fault.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fileio.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fileio.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fkey.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fkey.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3_aux.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3_aux.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3_expr.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3_expr.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3_hash.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3_hash.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3_icu.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3_icu.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3_porter.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3_porter.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts3_write.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts3_write.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/fts5.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/fts5.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/func.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/func.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/global.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/global.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/hash.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/hash.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/icu.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/icu.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/ieee754.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/ieee754.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/insert.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/insert.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/json.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/json.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/legacy.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/legacy.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/loadext.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/loadext.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/malloc.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/malloc.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mem0.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mem0.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mem1.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mem1.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mem2.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mem2.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mem3.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mem3.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mem5.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mem5.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/memdb.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/memdb.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/memjournal.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/memjournal.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/memtrace.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/memtrace.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mutex.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mutex.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mutex_noop.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mutex_noop.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/mutex_unix.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/mutex_unix.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/notify.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/notify.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/opcodes.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/opcodes.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/os.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/os.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/os_unix.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/os_unix.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/pager.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/pager.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/parse.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/parse.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/pcache.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/pcache.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/pcache1.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/pcache1.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/pragma.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/pragma.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/prepare.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/prepare.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/printf.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/printf.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/random.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/random.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/resolve.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/resolve.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/rowset.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/rowset.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/rtree.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/rtree.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/select.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/select.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/series.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/series.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/shathree.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/shathree.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/status.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/status.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/stmt.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/stmt.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/table.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/table.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/threads.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/threads.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/tokenize.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/tokenize.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/treeview.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/treeview.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/trigger.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/trigger.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/uint.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/uint.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/update.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/update.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/upsert.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/upsert.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/userauth.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/userauth.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/utf.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/utf.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/util.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/util.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vacuum.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vacuum.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbe.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbe.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbeapi.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbeapi.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbeaux.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbeaux.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbeblob.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbeblob.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbemem.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbemem.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbesort.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbesort.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbetrace.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbetrace.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vdbevtab.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vdbevtab.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/vtab.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/vtab.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/wal.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/wal.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/walker.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/walker.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/where.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/where.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/wherecode.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/wherecode.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/whereexpr.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/whereexpr.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/window.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/window.c" 2 | -------------------------------------------------------------------------------- /third_party/sqlite3/zipfile.shell.c: -------------------------------------------------------------------------------- 1 | #include "third_party/sqlite3/zipfile.c" 2 | -------------------------------------------------------------------------------- /third_party/xxhash/tests/bench/.clang_complete: -------------------------------------------------------------------------------- 1 | // clang-format off 2 | -I../.. 3 | -------------------------------------------------------------------------------- /third_party/zip/crypt_.c: -------------------------------------------------------------------------------- 1 | #define UTIL 2 | #include "third_party/zip/crypt.c" 3 | -------------------------------------------------------------------------------- /third_party/zip/fileio_.c: -------------------------------------------------------------------------------- 1 | #define UTIL 2 | #include "third_party/zip/fileio.c" 3 | -------------------------------------------------------------------------------- /third_party/zip/unix_.c: -------------------------------------------------------------------------------- 1 | #define UTIL 2 | #include "third_party/zip/unix.c" 3 | -------------------------------------------------------------------------------- /third_party/zip/util_.c: -------------------------------------------------------------------------------- 1 | #define UTIL 2 | #include "third_party/zip/util.c" 3 | -------------------------------------------------------------------------------- /tool/ape/ape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/ape/ape.c -------------------------------------------------------------------------------- /tool/ape/ape.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/ape/ape.mk -------------------------------------------------------------------------------- /tool/ape/zstd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/ape/zstd.sh -------------------------------------------------------------------------------- /tool/args/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/args/args.c -------------------------------------------------------------------------------- /tool/args/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/args/args.h -------------------------------------------------------------------------------- /tool/build/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/build/ar.c -------------------------------------------------------------------------------- /tool/build/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/build/cp.c -------------------------------------------------------------------------------- /tool/build/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/build/dd.c -------------------------------------------------------------------------------- /tool/build/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/build/mv.c -------------------------------------------------------------------------------- /tool/build/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/build/pwd.c -------------------------------------------------------------------------------- /tool/build/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/build/rm.c -------------------------------------------------------------------------------- /tool/curl/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/curl/cmd.c -------------------------------------------------------------------------------- /tool/curl/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/curl/cmd.h -------------------------------------------------------------------------------- /tool/curl/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/curl/curl.c -------------------------------------------------------------------------------- /tool/decode/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/decode/ar.c -------------------------------------------------------------------------------- /tool/net/demo/script.lua: -------------------------------------------------------------------------------- 1 | #!/usr/bin/redbean -i 2 | print('hello world') 3 | -------------------------------------------------------------------------------- /tool/net/dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/dig.c -------------------------------------------------------------------------------- /tool/net/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/echo.c -------------------------------------------------------------------------------- /tool/net/ljson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/ljson.c -------------------------------------------------------------------------------- /tool/net/ljson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/ljson.h -------------------------------------------------------------------------------- /tool/net/lpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/lpath.c -------------------------------------------------------------------------------- /tool/net/lpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/lpath.h -------------------------------------------------------------------------------- /tool/net/lre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/lre.c -------------------------------------------------------------------------------- /tool/net/net.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/net.mk -------------------------------------------------------------------------------- /tool/net/wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/net/wb.c -------------------------------------------------------------------------------- /tool/scripts/awk1: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $1}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk2: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $2}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $3}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk4: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $4}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk5: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $5}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk6: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $6}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk7: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $7}' 3 | -------------------------------------------------------------------------------- /tool/scripts/awk8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec awk "$@" '{print $8}' 3 | -------------------------------------------------------------------------------- /tool/scripts/bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/bf -------------------------------------------------------------------------------- /tool/scripts/loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/loc -------------------------------------------------------------------------------- /tool/scripts/obj: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | objdump -Cwd "$@" | 3 | exec less 4 | -------------------------------------------------------------------------------- /tool/scripts/pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/pb -------------------------------------------------------------------------------- /tool/scripts/pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/pe -------------------------------------------------------------------------------- /tool/scripts/po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/po -------------------------------------------------------------------------------- /tool/scripts/px: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/px -------------------------------------------------------------------------------- /tool/scripts/re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/re -------------------------------------------------------------------------------- /tool/scripts/wut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/scripts/wut -------------------------------------------------------------------------------- /tool/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/tool.mk -------------------------------------------------------------------------------- /tool/viz/bd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/bd.c -------------------------------------------------------------------------------- /tool/viz/bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/bf.c -------------------------------------------------------------------------------- /tool/viz/bing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/bing.c -------------------------------------------------------------------------------- /tool/viz/comma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/comma.c -------------------------------------------------------------------------------- /tool/viz/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/cpuid.c -------------------------------------------------------------------------------- /tool/viz/fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/fold.c -------------------------------------------------------------------------------- /tool/viz/life.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/life.c -------------------------------------------------------------------------------- /tool/viz/od16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/od16.c -------------------------------------------------------------------------------- /tool/viz/tailf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/tailf.c -------------------------------------------------------------------------------- /tool/viz/viz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tstack/cosmopolitan/HEAD/tool/viz/viz.mk --------------------------------------------------------------------------------