实例介绍
vim配置成强大的IDE,绝对的好用.本人尝试了好多,感觉这款配置,首先配置容易,再者配置后结果相当满意
【实例截图】
【核心代码】
f23d2312-30fb-4d2d-b51e-981c8ca49123
└── vim
├── vim
│ ├── after
│ │ ├── ftplugin
│ │ │ ├── cpp.vim
│ │ │ └── c.vim
│ │ └── plugin
│ │ └── snipMate.vim
│ ├── autoload
│ │ ├── acp.vim
│ │ ├── mmtemplates
│ │ │ └── core.vim
│ │ ├── omni
│ │ │ ├── common
│ │ │ │ ├── debug.vim
│ │ │ │ └── utils.vim
│ │ │ └── cpp
│ │ │ ├── complete.vim
│ │ │ ├── includes.vim
│ │ │ ├── items.vim
│ │ │ ├── maycomplete.vim
│ │ │ ├── namespaces.vim
│ │ │ ├── settings.vim
│ │ │ ├── tokenizer.vim
│ │ │ └── utils.vim
│ │ └── snipMate.vim
│ ├── colors
│ │ ├── asuldark.vim
│ │ └── spring.vim
│ ├── c-support
│ │ ├── codesnippets
│ │ │ ├── calloc_double_matrix.c
│ │ │ ├── calloc_int_matrix.c
│ │ │ ├── main.c
│ │ │ ├── main.cc
│ │ │ ├── Makefile
│ │ │ ├── Makefile.multi-target.template
│ │ │ ├── Makefile.pro
│ │ │ ├── print_array.cc.noindent
│ │ │ ├── print_double_array.c.noindent
│ │ │ └── print_int_array.c.noindent
│ │ ├── doc
│ │ │ ├── ChangeLog
│ │ │ ├── c-hotkeys.pdf
│ │ │ └── c-hotkeys.tex
│ │ ├── rc
│ │ │ ├── customization.cpp.vim
│ │ │ ├── customization.ctags
│ │ │ ├── customization.gvimrc
│ │ │ ├── customization.indent.pro
│ │ │ └── customization.vimrc
│ │ ├── README.csupport
│ │ ├── scripts
│ │ │ └── wrapper.sh
│ │ ├── templates
│ │ │ ├── c.comments.template
│ │ │ ├── c.cpp.template
│ │ │ ├── c.idioms.template
│ │ │ ├── cpp.comments.template
│ │ │ ├── cpp.cpp.template
│ │ │ ├── cpp.idioms.template
│ │ │ ├── cpp.preprocessor.template
│ │ │ ├── cpp.statements.template
│ │ │ ├── c.preprocessor.template
│ │ │ ├── c.statements.template
│ │ │ ├── snippets.template
│ │ │ └── Templates
│ │ └── wordlists
│ │ ├── c-c++-keywords.list
│ │ ├── k+r.list
│ │ └── stl_index.list
│ ├── doc
│ │ ├── acp.jax
│ │ ├── acp.txt
│ │ ├── bufexplorer.txt
│ │ ├── csExplorer.txt
│ │ ├── csupport.txt
│ │ ├── NERD_commenter.txt
│ │ ├── omnicppcomplete.txt
│ │ ├── snipMate.txt
│ │ ├── taglist.txt
│ │ ├── tags
│ │ ├── templatesupport.txt
│ │ └── winmanager.txt
│ ├── ftplugin
│ │ ├── c.vim
│ │ ├── html_snip_helper.vim
│ │ └── make.vim
│ ├── plugin
│ │ ├── acp.vim
│ │ ├── bufexplorer.vim
│ │ ├── color_sample_pack.vim
│ │ ├── csExplorer.vim
│ │ ├── c.vim
│ │ ├── echofunc.vim
│ │ ├── grep.vim
│ │ ├── minibufexpl.vim
│ │ ├── NERD_commenter.vim
│ │ ├── snipMate.vim
│ │ ├── taglist.vim
│ │ ├── winfileexplorer.vim
│ │ ├── winmanager.vim
│ │ └── wintagexplorer.vim
│ ├── snippets
│ │ ├── autoit.snippets
│ │ ├── cpp.snippets
│ │ ├── c.snippets
│ │ ├── html.snippets
│ │ ├── javascript.snippets
│ │ ├── java.snippets
│ │ ├── mako.snippets
│ │ ├── objc.snippets
│ │ ├── perl.snippets
│ │ ├── php.snippets
│ │ ├── python.snippets
│ │ ├── ruby.snippets
│ │ ├── sh.snippets
│ │ ├── _.snippets
│ │ ├── snippet.snippets
│ │ ├── tcl.snippets
│ │ ├── tex.snippets
│ │ ├── vim.snippets
│ │ └── zsh.snippets
│ ├── sourceCode
│ │ ├── glibc-2.16.0
│ │ │ ├── abi-tags
│ │ │ ├── aclocal.m4
│ │ │ ├── argp
│ │ │ │ ├── argp-ba.c
│ │ │ │ ├── argp-eexst.c
│ │ │ │ ├── argp-fmtstream.c
│ │ │ │ ├── argp-fmtstream.h
│ │ │ │ ├── argp-fs-xinl.c
│ │ │ │ ├── argp.h
│ │ │ │ ├── argp-help.c
│ │ │ │ ├── argp-namefrob.h
│ │ │ │ ├── argp-parse.c
│ │ │ │ ├── argp-pv.c
│ │ │ │ ├── argp-pvh.c
│ │ │ │ ├── argp-test.c
│ │ │ │ ├── argp-xinl.c
│ │ │ │ ├── bug-argp1.c
│ │ │ │ ├── bug-argp2.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── tst-argp1.c
│ │ │ │ ├── tst-argp2.c
│ │ │ │ └── Versions
│ │ │ ├── assert
│ │ │ │ ├── __assert.c
│ │ │ │ ├── assert.c
│ │ │ │ ├── assert.h
│ │ │ │ ├── assert-perr.c
│ │ │ │ ├── Depend
│ │ │ │ ├── Makefile
│ │ │ │ ├── test-assert.c
│ │ │ │ ├── test-assert-perr.c
│ │ │ │ └── Versions
│ │ │ ├── bits
│ │ │ │ ├── atomic.h
│ │ │ │ ├── byteswap-16.h
│ │ │ │ ├── byteswap.h
│ │ │ │ ├── confname.h
│ │ │ │ ├── dirent.h
│ │ │ │ ├── dlfcn.h
│ │ │ │ ├── elfclass.h
│ │ │ │ ├── endian.h
│ │ │ │ ├── environments.h
│ │ │ │ ├── errno.h
│ │ │ │ ├── fcntl.h
│ │ │ │ ├── fenv.h
│ │ │ │ ├── fenvinline.h
│ │ │ │ ├── huge_valf.h
│ │ │ │ ├── huge_val.h
│ │ │ │ ├── huge_vall.h
│ │ │ │ ├── inf.h
│ │ │ │ ├── in.h
│ │ │ │ ├── ioctls.h
│ │ │ │ ├── ioctl-types.h
│ │ │ │ ├── ipc.h
│ │ │ │ ├── ipctypes.h
│ │ │ │ ├── libc-lock.h
│ │ │ │ ├── libc-tsd.h
│ │ │ │ ├── link.h
│ │ │ │ ├── linkmap.h
│ │ │ │ ├── local_lim.h
│ │ │ │ ├── mathdef.h
│ │ │ │ ├── mathinline.h
│ │ │ │ ├── mman.h
│ │ │ │ ├── mqueue.h
│ │ │ │ ├── msq.h
│ │ │ │ ├── nan.h
│ │ │ │ ├── netdb.h
│ │ │ │ ├── poll.h
│ │ │ │ ├── posix_opt.h
│ │ │ │ ├── pthreadtypes.h
│ │ │ │ ├── resource.h
│ │ │ │ ├── sched.h
│ │ │ │ ├── select.h
│ │ │ │ ├── sem.h
│ │ │ │ ├── setjmp.h
│ │ │ │ ├── shm.h
│ │ │ │ ├── sigaction.h
│ │ │ │ ├── sigcontext.h
│ │ │ │ ├── siginfo.h
│ │ │ │ ├── signum.h
│ │ │ │ ├── sigset.h
│ │ │ │ ├── sigstack.h
│ │ │ │ ├── sigthread.h
│ │ │ │ ├── sockaddr.h
│ │ │ │ ├── socket.h
│ │ │ │ ├── statfs.h
│ │ │ │ ├── stat.h
│ │ │ │ ├── statvfs.h
│ │ │ │ ├── stdio-lock.h
│ │ │ │ ├── string.h
│ │ │ │ ├── stropts.h
│ │ │ │ ├── sys_errlist.h
│ │ │ │ ├── syslog-path.h
│ │ │ │ ├── termios.h
│ │ │ │ ├── time.h
│ │ │ │ ├── types.h
│ │ │ │ ├── typesizes.h
│ │ │ │ ├── uio.h
│ │ │ │ ├── ustat.h
│ │ │ │ ├── utmp.h
│ │ │ │ ├── utsname.h
│ │ │ │ ├── waitflags.h
│ │ │ │ ├── waitstatus.h
│ │ │ │ ├── wchar.h
│ │ │ │ ├── wordsize.h
│ │ │ │ └── xtitypes.h
│ │ │ ├── BUGS
│ │ │ ├── CANCEL-FCT-WAIVE
│ │ │ ├── CANCEL-FILE-WAIVE
│ │ │ ├── catgets
│ │ │ │ ├── catgets.c
│ │ │ │ ├── catgetsinfo.h
│ │ │ │ ├── config.h
│ │ │ │ ├── Depend
│ │ │ │ ├── gencat.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── nl_types.h
│ │ │ │ ├── open_catalog.c
│ │ │ │ ├── sample.SJIS
│ │ │ │ ├── test1.msg
│ │ │ │ ├── test2.msg
│ │ │ │ ├── test-gencat.c
│ │ │ │ ├── test-gencat.sh
│ │ │ │ ├── tst-catgets.c
│ │ │ │ ├── Versions
│ │ │ │ └── xopen-msg.sed
│ │ │ ├── ChangeLog
│ │ │ ├── ChangeLog.1
│ │ │ ├── ChangeLog.10
│ │ │ ├── ChangeLog.11
│ │ │ ├── ChangeLog.12
│ │ │ ├── ChangeLog.13
│ │ │ ├── ChangeLog.14
│ │ │ ├── ChangeLog.15
│ │ │ ├── ChangeLog.16
│ │ │ ├── ChangeLog.17
│ │ │ ├── ChangeLog.2
│ │ │ ├── ChangeLog.3
│ │ │ ├── ChangeLog.4
│ │ │ ├── ChangeLog.5
│ │ │ ├── ChangeLog.6
│ │ │ ├── ChangeLog.7
│ │ │ ├── ChangeLog.8
│ │ │ ├── ChangeLog.9
│ │ │ ├── conf
│ │ │ │ └── portability.h
│ │ │ ├── config.h.in
│ │ │ ├── config.make.in
│ │ │ ├── configure
│ │ │ ├── configure.in
│ │ │ ├── conform
│ │ │ │ ├── conformtest.pl
│ │ │ │ ├── data
│ │ │ │ │ ├── aio.h-data
│ │ │ │ │ ├── arpa
│ │ │ │ │ │ └── inet.h-data
│ │ │ │ │ ├── assert.h-data
│ │ │ │ │ ├── complex.h-data
│ │ │ │ │ ├── cpio.h-data
│ │ │ │ │ ├── ctype.h-data
│ │ │ │ │ ├── dirent.h-data
│ │ │ │ │ ├── dlfcn.h-data
│ │ │ │ │ ├── errno.h-data
│ │ │ │ │ ├── fcntl.h-data
│ │ │ │ │ ├── float.h-data
│ │ │ │ │ ├── fmtmsg.h-data
│ │ │ │ │ ├── fnmatch.h-data
│ │ │ │ │ ├── ftw.h-data
│ │ │ │ │ ├── glob.h-data
│ │ │ │ │ ├── grp.h-data
│ │ │ │ │ ├── iconv.h-data
│ │ │ │ │ ├── inttypes.h-data
│ │ │ │ │ ├── iso646.h-data
│ │ │ │ │ ├── langinfo.h-data
│ │ │ │ │ ├── libgen.h-data
│ │ │ │ │ ├── limits.h-data
│ │ │ │ │ ├── locale.h-data
│ │ │ │ │ ├── math.h-data
│ │ │ │ │ ├── monetary.h-data
│ │ │ │ │ ├── mqueue.h-data
│ │ │ │ │ ├── ndbm.h-data
│ │ │ │ │ ├── net
│ │ │ │ │ │ └── if.h-data
│ │ │ │ │ ├── netdb.h-data
│ │ │ │ │ ├── netinet
│ │ │ │ │ │ ├── in.h-data
│ │ │ │ │ │ └── tcp.h-data
│ │ │ │ │ ├── nl_types.h-data
│ │ │ │ │ ├── poll.h-data
│ │ │ │ │ ├── pthread.h-data
│ │ │ │ │ ├── pwd.h-data
│ │ │ │ │ ├── regex.h-data
│ │ │ │ │ ├── sched.h-data
│ │ │ │ │ ├── search.h-data
│ │ │ │ │ ├── semaphore.h-data
│ │ │ │ │ ├── setjmp.h-data
│ │ │ │ │ ├── signal.h-data
│ │ │ │ │ ├── spawn.h-data
│ │ │ │ │ ├── stdarg.h-data
│ │ │ │ │ ├── stddef.h-data
│ │ │ │ │ ├── stdint.h-data
│ │ │ │ │ ├── stdio.h-data
│ │ │ │ │ ├── stdlib.h-data
│ │ │ │ │ ├── string.h-data
│ │ │ │ │ ├── strings.h-data
│ │ │ │ │ ├── stropts.h-data
│ │ │ │ │ ├── sys
│ │ │ │ │ │ ├── ipc.h-data
│ │ │ │ │ │ ├── mman.h-data
│ │ │ │ │ │ ├── msg.h-data
│ │ │ │ │ │ ├── resource.h-data
│ │ │ │ │ │ ├── select.h-data
│ │ │ │ │ │ ├── sem.h-data
│ │ │ │ │ │ ├── shm.h-data
│ │ │ │ │ │ ├── socket.h-data
│ │ │ │ │ │ ├── stat.h-data
│ │ │ │ │ │ ├── statvfs.h-data
│ │ │ │ │ │ ├── timeb.h-data
│ │ │ │ │ │ ├── time.h-data
│ │ │ │ │ │ ├── times.h-data
│ │ │ │ │ │ ├── types.h-data
│ │ │ │ │ │ ├── uio.h-data
│ │ │ │ │ │ ├── un.h-data
│ │ │ │ │ │ ├── utsname.h-data
│ │ │ │ │ │ └── wait.h-data
│ │ │ │ │ ├── syslog.h-data
│ │ │ │ │ ├── tar.h-data
│ │ │ │ │ ├── termios.h-data
│ │ │ │ │ ├── tgmath.h-data
│ │ │ │ │ ├── time.h-data
│ │ │ │ │ ├── uchar.h-data
│ │ │ │ │ ├── ucontext.h-data
│ │ │ │ │ ├── ulimit.h-data
│ │ │ │ │ ├── unistd.h-data
│ │ │ │ │ ├── utime.h-data
│ │ │ │ │ ├── utmpx.h-data
│ │ │ │ │ ├── varargs.h-data
│ │ │ │ │ ├── wchar.h-data
│ │ │ │ │ ├── wctype.h-data
│ │ │ │ │ └── wordexp.h-data
│ │ │ │ ├── Makefile
│ │ │ │ └── run-conformtest.sh
│ │ │ ├── CONFORMANCE
│ │ │ ├── COPYING
│ │ │ ├── COPYING.LIB
│ │ │ ├── cppflags-iterator.mk
│ │ │ ├── crypt
│ │ │ │ ├── Banner
│ │ │ │ ├── cert.c
│ │ │ │ ├── cert.input
│ │ │ │ ├── crypt.c
│ │ │ │ ├── crypt-entry.c
│ │ │ │ ├── crypt.h
│ │ │ │ ├── crypt-private.h
│ │ │ │ ├── crypt_util.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── md5.c
│ │ │ │ ├── md5-crypt.c
│ │ │ │ ├── md5c-test.c
│ │ │ │ ├── md5.h
│ │ │ │ ├── md5test.c
│ │ │ │ ├── README.ufc-crypt
│ │ │ │ ├── sha256.c
│ │ │ │ ├── sha256-crypt.c
│ │ │ │ ├── sha256c-test.c
│ │ │ │ ├── sha256.h
│ │ │ │ ├── sha256test.c
│ │ │ │ ├── sha512.c
│ │ │ │ ├── sha512-crypt.c
│ │ │ │ ├── sha512c-test.c
│ │ │ │ ├── sha512.h
│ │ │ │ ├── sha512test.c
│ │ │ │ ├── speeds.c
│ │ │ │ ├── ufc.c
│ │ │ │ ├── ufc-crypt.h
│ │ │ │ └── Versions
│ │ │ ├── csu
│ │ │ │ ├── abi-note.S
│ │ │ │ ├── check_fds.c
│ │ │ │ ├── dso_handle.c
│ │ │ │ ├── elf-init.c
│ │ │ │ ├── errno.c
│ │ │ │ ├── errno-loc.c
│ │ │ │ ├── gmon-start.c
│ │ │ │ ├── init.c
│ │ │ │ ├── init-first.c
│ │ │ │ ├── libc-start.c
│ │ │ │ ├── libc-tls.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── start.c
│ │ │ │ ├── sysdep.c
│ │ │ │ ├── tst-atomic.c
│ │ │ │ ├── tst-atomic-long.c
│ │ │ │ ├── tst-empty.c
│ │ │ │ ├── version.c
│ │ │ │ └── Versions
│ │ │ ├── ctype
│ │ │ │ ├── ctype.c
│ │ │ │ ├── ctype-extn.c
│ │ │ │ ├── ctype.h
│ │ │ │ ├── ctype-info.c
│ │ │ │ ├── ctype_l.c
│ │ │ │ ├── isctype.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── test_ctype.c
│ │ │ │ └── Versions
│ │ │ ├── debug
│ │ │ │ ├── asprintf_chk.c
│ │ │ │ ├── backtrace.c
│ │ │ │ ├── backtracesyms.c
│ │ │ │ ├── backtracesymsfd.c
│ │ │ │ ├── backtrace-tst.c
│ │ │ │ ├── catchsegv.sh
│ │ │ │ ├── chk_fail.c
│ │ │ │ ├── confstr_chk.c
│ │ │ │ ├── Depend
│ │ │ │ ├── dprintf_chk.c
│ │ │ │ ├── execinfo.h
│ │ │ │ ├── fdelt_chk.c
│ │ │ │ ├── fgets_chk.c
│ │ │ │ ├── fgets_u_chk.c
│ │ │ │ ├── fgetws_chk.c
│ │ │ │ ├── fgetws_u_chk.c
│ │ │ │ ├── fortify_fail.c
│ │ │ │ ├── fprintf_chk.c
│ │ │ │ ├── fread_chk.c
│ │ │ │ ├── fread_u_chk.c
│ │ │ │ ├── fwprintf_chk.c
│ │ │ │ ├── getcwd_chk.c
│ │ │ │ ├── getdomainname_chk.c
│ │ │ │ ├── getgroups_chk.c
│ │ │ │ ├── gethostname_chk.c
│ │ │ │ ├── getlogin_r_chk.c
│ │ │ │ ├── gets_chk.c
│ │ │ │ ├── getwd_chk.c
│ │ │ │ ├── longjmp_chk.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mbsnrtowcs_chk.c
│ │ │ │ ├── mbsrtowcs_chk.c
│ │ │ │ ├── mbstowcs_chk.c
│ │ │ │ ├── memcpy_chk.c
│ │ │ │ ├── memmove_chk.c
│ │ │ │ ├── mempcpy_chk.c
│ │ │ │ ├── memset_chk.c
│ │ │ │ ├── noophooks.c
│ │ │ │ ├── obprintf_chk.c
│ │ │ │ ├── pcprofile.c
│ │ │ │ ├── pcprofiledump.c
│ │ │ │ ├── poll_chk.c
│ │ │ │ ├── ppoll_chk.c
│ │ │ │ ├── pread64_chk.c
│ │ │ │ ├── pread_chk.c
│ │ │ │ ├── printf_chk.c
│ │ │ │ ├── ptsname_r_chk.c
│ │ │ │ ├── read_chk.c
│ │ │ │ ├── readlinkat_chk.c
│ │ │ │ ├── readlink_chk.c
│ │ │ │ ├── readonly-area.c
│ │ │ │ ├── realpath_chk.c
│ │ │ │ ├── recv_chk.c
│ │ │ │ ├── recvfrom_chk.c
│ │ │ │ ├── segfault.c
│ │ │ │ ├── snprintf_chk.c
│ │ │ │ ├── sprintf_chk.c
│ │ │ │ ├── stack_chk_fail.c
│ │ │ │ ├── stack_chk_fail_local.c
│ │ │ │ ├── stpcpy_chk.c
│ │ │ │ ├── stpncpy_chk.c
│ │ │ │ ├── strcat_chk.c
│ │ │ │ ├── strcpy_chk.c
│ │ │ │ ├── strncat_chk.c
│ │ │ │ ├── strncpy_chk.c
│ │ │ │ ├── swprintf_chk.c
│ │ │ │ ├── test-stpcpy_chk.c
│ │ │ │ ├── test-strcpy_chk.c
│ │ │ │ ├── tst-chk1.c
│ │ │ │ ├── tst-chk2.c
│ │ │ │ ├── tst-chk3.c
│ │ │ │ ├── tst-chk4.cc
│ │ │ │ ├── tst-chk5.cc
│ │ │ │ ├── tst-chk6.cc
│ │ │ │ ├── tst-lfschk1.c
│ │ │ │ ├── tst-lfschk2.c
│ │ │ │ ├── tst-lfschk3.c
│ │ │ │ ├── tst-lfschk4.cc
│ │ │ │ ├── tst-lfschk5.cc
│ │ │ │ ├── tst-lfschk6.cc
│ │ │ │ ├── tst-longjmp_chk2.c
│ │ │ │ ├── tst-longjmp_chk.c
│ │ │ │ ├── ttyname_r_chk.c
│ │ │ │ ├── vasprintf_chk.c
│ │ │ │ ├── vdprintf_chk.c
│ │ │ │ ├── Versions
│ │ │ │ ├── vfprintf_chk.c
│ │ │ │ ├── vfwprintf_chk.c
│ │ │ │ ├── vprintf_chk.c
│ │ │ │ ├── vsnprintf_chk.c
│ │ │ │ ├── vsprintf_chk.c
│ │ │ │ ├── vswprintf_chk.c
│ │ │ │ ├── vwprintf_chk.c
│ │ │ │ ├── warning-nop.c
│ │ │ │ ├── wcpcpy_chk.c
│ │ │ │ ├── wcpncpy_chk.c
│ │ │ │ ├── wcrtomb_chk.c
│ │ │ │ ├── wcscat_chk.c
│ │ │ │ ├── wcscpy_chk.c
│ │ │ │ ├── wcsncat_chk.c
│ │ │ │ ├── wcsncpy_chk.c
│ │ │ │ ├── wcsnrtombs_chk.c
│ │ │ │ ├── wcsrtombs_chk.c
│ │ │ │ ├── wcstombs_chk.c
│ │ │ │ ├── wctomb_chk.c
│ │ │ │ ├── wmemcpy_chk.c
│ │ │ │ ├── wmemmove_chk.c
│ │ │ │ ├── wmempcpy_chk.c
│ │ │ │ ├── wmemset_chk.c
│ │ │ │ ├── wprintf_chk.c
│ │ │ │ └── xtrace.sh
│ │ │ ├── dirent
│ │ │ │ ├── alphasort64.c
│ │ │ │ ├── alphasort.c
│ │ │ │ ├── bug-readdir1.c
│ │ │ │ ├── closedir.c
│ │ │ │ ├── dirent.h
│ │ │ │ ├── dirfd.c
│ │ │ │ ├── fdopendir.c
│ │ │ │ ├── getdents64.c
│ │ │ │ ├── getdents.c
│ │ │ │ ├── list.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── opendir.c
│ │ │ │ ├── opendir-tst1.c
│ │ │ │ ├── readdir64.c
│ │ │ │ ├── readdir64_r.c
│ │ │ │ ├── readdir.c
│ │ │ │ ├── readdir_r.c
│ │ │ │ ├── rewinddir.c
│ │ │ │ ├── scandir64.c
│ │ │ │ ├── scandirat64.c
│ │ │ │ ├── scandirat.c
│ │ │ │ ├── scandir.c
│ │ │ │ ├── seekdir.c
│ │ │ │ ├── telldir.c
│ │ │ │ ├── tst-fdopendir2.c
│ │ │ │ ├── tst-fdopendir.c
│ │ │ │ ├── tst-seekdir.c
│ │ │ │ ├── Versions
│ │ │ │ ├── versionsort64.c
│ │ │ │ └── versionsort.c
│ │ │ ├── dlfcn
│ │ │ │ ├── bug-atexit1.c
│ │ │ │ ├── bug-atexit1-lib.c
│ │ │ │ ├── bug-atexit2.c
│ │ │ │ ├── bug-atexit2-lib.c
│ │ │ │ ├── bug-atexit3.c
│ │ │ │ ├── bug-atexit3-lib.cc
│ │ │ │ ├── bug-dlopen1.c
│ │ │ │ ├── bug-dlsym1.c
│ │ │ │ ├── bug-dlsym1-lib1.c
│ │ │ │ ├── bug-dlsym1-lib2.c
│ │ │ │ ├── default.c
│ │ │ │ ├── defaultmod1.c
│ │ │ │ ├── defaultmod2.c
│ │ │ │ ├── dladdr1.c
│ │ │ │ ├── dladdr.c
│ │ │ │ ├── dlclose.c
│ │ │ │ ├── dlerror.c
│ │ │ │ ├── dlfcn.c
│ │ │ │ ├── dlfcn.h
│ │ │ │ ├── dlinfo.c
│ │ │ │ ├── dlmopen.c
│ │ │ │ ├── dlopen.c
│ │ │ │ ├── dlopenold.c
│ │ │ │ ├── dlsym.c
│ │ │ │ ├── dlvsym.c
│ │ │ │ ├── errmsg1.c
│ │ │ │ ├── errmsg1mod.c
│ │ │ │ ├── eval.c
│ │ │ │ ├── failtest.c
│ │ │ │ ├── failtestmod.c
│ │ │ │ ├── glreflib1.c
│ │ │ │ ├── glreflib2.c
│ │ │ │ ├── glreflib3.c
│ │ │ │ ├── glrefmain.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── modatexit.c
│ │ │ │ ├── modcxaatexit.c
│ │ │ │ ├── modstatic2.c
│ │ │ │ ├── modstatic.c
│ │ │ │ ├── sdladdr1.c
│ │ │ │ ├── sdladdr.c
│ │ │ │ ├── sdlclose.c
│ │ │ │ ├── sdlerror.c
│ │ │ │ ├── sdlinfo.c
│ │ │ │ ├── sdlmopen.c
│ │ │ │ ├── sdlopen.c
│ │ │ │ ├── sdlsym.c
│ │ │ │ ├── sdlvsym.c
│ │ │ │ ├── tstatexit.c
│ │ │ │ ├── tstcxaatexit.c
│ │ │ │ ├── tst-dladdr.c
│ │ │ │ ├── tst-dlinfo.c
│ │ │ │ ├── tststatic2.c
│ │ │ │ ├── tststatic.c
│ │ │ │ └── Versions
│ │ │ ├── elf
│ │ │ │ ├── cache.c
│ │ │ │ ├── chroot_canon.c
│ │ │ │ ├── circleload1.c
│ │ │ │ ├── circlemod1a.c
│ │ │ │ ├── circlemod1.c
│ │ │ │ ├── circlemod2a.c
│ │ │ │ ├── circlemod2.c
│ │ │ │ ├── circlemod3a.c
│ │ │ │ ├── circlemod3.c
│ │ │ │ ├── constload1.c
│ │ │ │ ├── constload2.c
│ │ │ │ ├── constload3.c
│ │ │ │ ├── dblload.c
│ │ │ │ ├── dblloadmod1.c
│ │ │ │ ├── dblloadmod2.c
│ │ │ │ ├── dblloadmod3.c
│ │ │ │ ├── dblunload.c
│ │ │ │ ├── dep1.c
│ │ │ │ ├── dep2.c
│ │ │ │ ├── dep3.c
│ │ │ │ ├── dep4.c
│ │ │ │ ├── dl-addr.c
│ │ │ │ ├── dl-brk.c
│ │ │ │ ├── dl-cache.c
│ │ │ │ ├── dl-caller.c
│ │ │ │ ├── dl-close.c
│ │ │ │ ├── dl-conflict.c
│ │ │ │ ├── dl-debug.c
│ │ │ │ ├── dl-deps.c
│ │ │ │ ├── dl-dst.h
│ │ │ │ ├── dl-environ.c
│ │ │ │ ├── dl-error.c
│ │ │ │ ├── dl-execstack.c
│ │ │ │ ├── dl-fini.c
│ │ │ │ ├── dl-fptr.c
│ │ │ │ ├── dl-init.c
│ │ │ │ ├── dl-iteratephdr.c
│ │ │ │ ├── dl-libc.c
│ │ │ │ ├── dl-load.c
│ │ │ │ ├── dl-lookup.c
│ │ │ │ ├── dl-minimal.c
│ │ │ │ ├── dl-misc.c
│ │ │ │ ├── dl-object.c
│ │ │ │ ├── dl-open.c
│ │ │ │ ├── dl-origin.c
│ │ │ │ ├── dl-profile.c
│ │ │ │ ├── dl-profstub.c
│ │ │ │ ├── dl-reloc.c
│ │ │ │ ├── dl-runtime.c
│ │ │ │ ├── dl-sbrk.c
│ │ │ │ ├── dl-scope.c
│ │ │ │ ├── dl-support.c
│ │ │ │ ├── dl-symaddr.c
│ │ │ │ ├── dl-sym.c
│ │ │ │ ├── dl-sysdep.c
│ │ │ │ ├── dl-tls.c
│ │ │ │ ├── dl-trampoline.c
│ │ │ │ ├── dl-tsd.c
│ │ │ │ ├── dl-version.c
│ │ │ │ ├── do-rel.h
│ │ │ │ ├── dynamic-link.h
│ │ │ │ ├── elf.h
│ │ │ │ ├── enbl-secure.c
│ │ │ │ ├── failobj.c
│ │ │ │ ├── filter.c
│ │ │ │ ├── filtmod1.c
│ │ │ │ ├── filtmod2.c
│ │ │ │ ├── firstobj.c
│ │ │ │ ├── genrtldtbl.awk
│ │ │ │ ├── gen-trusted-dirs.awk
│ │ │ │ ├── global.c
│ │ │ │ ├── globalmod1.c
│ │ │ │ ├── ifuncdep1.c
│ │ │ │ ├── ifuncdep1pic.c
│ │ │ │ ├── ifuncdep2.c
│ │ │ │ ├── ifuncdep2pic.c
│ │ │ │ ├── ifuncdep5.c
│ │ │ │ ├── ifuncdep5pic.c
│ │ │ │ ├── ifuncmain1.c
│ │ │ │ ├── ifuncmain1pic.c
│ │ │ │ ├── ifuncmain1picstatic.c
│ │ │ │ ├── ifuncmain1pie.c
│ │ │ │ ├── ifuncmain1static.c
│ │ │ │ ├── ifuncmain1staticpic.c
│ │ │ │ ├── ifuncmain1staticpie.c
│ │ │ │ ├── ifuncmain1vis.c
│ │ │ │ ├── ifuncmain1vispic.c
│ │ │ │ ├── ifuncmain1vispie.c
│ │ │ │ ├── ifuncmain2.c
│ │ │ │ ├── ifuncmain2pic.c
│ │ │ │ ├── ifuncmain2picstatic.c
│ │ │ │ ├── ifuncmain2static.c
│ │ │ │ ├── ifuncmain3.c
│ │ │ │ ├── ifuncmain4.c
│ │ │ │ ├── ifuncmain4picstatic.c
│ │ │ │ ├── ifuncmain4static.c
│ │ │ │ ├── ifuncmain5.c
│ │ │ │ ├── ifuncmain5pic.c
│ │ │ │ ├── ifuncmain5picstatic.c
│ │ │ │ ├── ifuncmain5pie.c
│ │ │ │ ├── ifuncmain5static.c
│ │ │ │ ├── ifuncmain5staticpic.c
│ │ │ │ ├── ifuncmain6pie.c
│ │ │ │ ├── ifuncmain7.c
│ │ │ │ ├── ifuncmain7pic.c
│ │ │ │ ├── ifuncmain7picstatic.c
│ │ │ │ ├── ifuncmain7pie.c
│ │ │ │ ├── ifuncmain7static.c
│ │ │ │ ├── ifuncmod1.c
│ │ │ │ ├── ifuncmod3.c
│ │ │ │ ├── ifuncmod5.c
│ │ │ │ ├── ifuncmod6.c
│ │ │ │ ├── initfirst.c
│ │ │ │ ├── interp.c
│ │ │ │ ├── lateglobal.c
│ │ │ │ ├── ldconfig.c
│ │ │ │ ├── ldd.bash.in
│ │ │ │ ├── link.h
│ │ │ │ ├── loadfail.c
│ │ │ │ ├── loadtest.c
│ │ │ │ ├── ltglobmod1.c
│ │ │ │ ├── ltglobmod2.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── multiload.c
│ │ │ │ ├── neededobj1.c
│ │ │ │ ├── neededobj2.c
│ │ │ │ ├── neededobj3.c
│ │ │ │ ├── neededobj4.c
│ │ │ │ ├── neededobj5.c
│ │ │ │ ├── neededobj6.c
│ │ │ │ ├── neededtest2.c
│ │ │ │ ├── neededtest3.c
│ │ │ │ ├── neededtest4.c
│ │ │ │ ├── neededtest.c
│ │ │ │ ├── next.c
│ │ │ │ ├── nextmod1.c
│ │ │ │ ├── nextmod2.c
│ │ │ │ ├── nodel2mod1.c
│ │ │ │ ├── nodel2mod2.c
│ │ │ │ ├── nodel2mod3.c
│ │ │ │ ├── nodelete2.c
│ │ │ │ ├── nodelete.c
│ │ │ │ ├── nodelmod1.c
│ │ │ │ ├── nodelmod2.c
│ │ │ │ ├── nodelmod3.c
│ │ │ │ ├── nodelmod4.c
│ │ │ │ ├── nodlopen2.c
│ │ │ │ ├── nodlopen.c
│ │ │ │ ├── nodlopenmod2.c
│ │ │ │ ├── nodlopenmod.c
│ │ │ │ ├── noload.c
│ │ │ │ ├── order2.c
│ │ │ │ ├── order2mod1.c
│ │ │ │ ├── order2mod2.c
│ │ │ │ ├── order2mod3.c
│ │ │ │ ├── order2mod4.c
│ │ │ │ ├── order.c
│ │ │ │ ├── origtest.c
│ │ │ │ ├── pathoptobj.c
│ │ │ │ ├── pldd.c
│ │ │ │ ├── pldd-xx.c
│ │ │ │ ├── preloadtest.c
│ │ │ │ ├── readelflib.c
│ │ │ │ ├── readlib.c
│ │ │ │ ├── reldep2.c
│ │ │ │ ├── reldep3.c
│ │ │ │ ├── reldep4.c
│ │ │ │ ├── reldep4mod1.c
│ │ │ │ ├── reldep4mod2.c
│ │ │ │ ├── reldep4mod3.c
│ │ │ │ ├── reldep4mod4.c
│ │ │ │ ├── reldep5.c
│ │ │ │ ├── reldep6.c
│ │ │ │ ├── reldep6mod0.c
│ │ │ │ ├── reldep6mod1.c
│ │ │ │ ├── reldep6mod2.c
│ │ │ │ ├── reldep6mod3.c
│ │ │ │ ├── reldep6mod4.c
│ │ │ │ ├── reldep7.c
│ │ │ │ ├── reldep7mod1.c
│ │ │ │ ├── reldep7mod2.c
│ │ │ │ ├── reldep8.c
│ │ │ │ ├── reldep8mod1.c
│ │ │ │ ├── reldep8mod2.c
│ │ │ │ ├── reldep8mod3.c
│ │ │ │ ├── reldep9.c
│ │ │ │ ├── reldep9mod1.c
│ │ │ │ ├── reldep9mod2.c
│ │ │ │ ├── reldep9mod3.c
│ │ │ │ ├── reldep.c
│ │ │ │ ├── reldepmod1.c
│ │ │ │ ├── reldepmod2.c
│ │ │ │ ├── reldepmod3.c
│ │ │ │ ├── reldepmod4.c
│ │ │ │ ├── reldepmod5.c
│ │ │ │ ├── reldepmod6.c
│ │ │ │ ├── resolvfail.c
│ │ │ │ ├── restest1.c
│ │ │ │ ├── restest2.c
│ │ │ │ ├── rtld.c
│ │ │ │ ├── rtld-Rules
│ │ │ │ ├── sln.c
│ │ │ │ ├── sofini.c
│ │ │ │ ├── soinit.c
│ │ │ │ ├── sotruss.ksh
│ │ │ │ ├── sotruss-lib.c
│ │ │ │ ├── sprof.c
│ │ │ │ ├── testobj1_1.c
│ │ │ │ ├── testobj1.c
│ │ │ │ ├── testobj2.c
│ │ │ │ ├── testobj3.c
│ │ │ │ ├── testobj4.c
│ │ │ │ ├── testobj5.c
│ │ │ │ ├── testobj6.c
│ │ │ │ ├── testobj.h
│ │ │ │ ├── tlsdeschtab.h
│ │ │ │ ├── tls-macros.h
│ │ │ │ ├── tst-addr1.c
│ │ │ │ ├── tst-align2.c
│ │ │ │ ├── tst-align.c
│ │ │ │ ├── tst-alignmod2.c
│ │ │ │ ├── tst-alignmod.c
│ │ │ │ ├── tst-array1.c
│ │ │ │ ├── tst-array1.exp
│ │ │ │ ├── tst-array1-static.c
│ │ │ │ ├── tst-array2.c
│ │ │ │ ├── tst-array2dep.c
│ │ │ │ ├── tst-array2.exp
│ │ │ │ ├── tst-array3.c
│ │ │ │ ├── tst-array4.c
│ │ │ │ ├── tst-array4.exp
│ │ │ │ ├── tst-array5.c
│ │ │ │ ├── tst-array5dep.c
│ │ │ │ ├── tst-array5.exp
│ │ │ │ ├── tst-array5-static.c
│ │ │ │ ├── tst-array5-static.exp
│ │ │ │ ├── tst-audit1.c
│ │ │ │ ├── tst-audit2.c
│ │ │ │ ├── tst-audit3.c
│ │ │ │ ├── tst-audit4.c
│ │ │ │ ├── tst-audit5.c
│ │ │ │ ├── tst-audit6.c
│ │ │ │ ├── tst-audit7.c
│ │ │ │ ├── tst-auditmod1.c
│ │ │ │ ├── tst-auditmod3a.c
│ │ │ │ ├── tst-auditmod3b.c
│ │ │ │ ├── tst-auditmod4a.c
│ │ │ │ ├── tst-auditmod4b.c
│ │ │ │ ├── tst-auditmod5a.c
│ │ │ │ ├── tst-auditmod5b.c
│ │ │ │ ├── tst-auditmod6a.c
│ │ │ │ ├── tst-auditmod6b.c
│ │ │ │ ├── tst-auditmod6c.c
│ │ │ │ ├── tst-auditmod7a.c
│ │ │ │ ├── tst-auditmod7b.c
│ │ │ │ ├── tst-deep1.c
│ │ │ │ ├── tst-deep1mod1.c
│ │ │ │ ├── tst-deep1mod2.c
│ │ │ │ ├── tst-deep1mod3.c
│ │ │ │ ├── tst-dlmodcount.c
│ │ │ │ ├── tst-dlmopen1.c
│ │ │ │ ├── tst-dlmopen1mod.c
│ │ │ │ ├── tst-dlmopen2.c
│ │ │ │ ├── tst-dlmopen3.c
│ │ │ │ ├── tst-dlopenrpath.c
│ │ │ │ ├── tst-dlopenrpathmod.c
│ │ │ │ ├── tst-execstack.c
│ │ │ │ ├── tst-execstack-mod.c
│ │ │ │ ├── tst-execstack-needed.c
│ │ │ │ ├── tst-execstack-prog.c
│ │ │ │ ├── tst-global1.c
│ │ │ │ ├── tst-initorder2.c
│ │ │ │ ├── tst-initorder2.exp
│ │ │ │ ├── tst-initordera1.c
│ │ │ │ ├── tst-initordera2.c
│ │ │ │ ├── tst-initordera3.c
│ │ │ │ ├── tst-initordera4.c
│ │ │ │ ├── tst-initorderb1.c
│ │ │ │ ├── tst-initorderb2.c
│ │ │ │ ├── tst-initorder.c
│ │ │ │ ├── tst-initorder.exp
│ │ │ │ ├── tst-leaks1.c
│ │ │ │ ├── tst-order-a1.c
│ │ │ │ ├── tst-order-a2.c
│ │ │ │ ├── tst-order-a3.c
│ │ │ │ ├── tst-order-a4.c
│ │ │ │ ├── tst-order-b1.c
│ │ │ │ ├── tst-order-b2.c
│ │ │ │ ├── tst-order-main.c
│ │ │ │ ├── tst-pathopt.c
│ │ │ │ ├── tst-pathopt.sh
│ │ │ │ ├── tst-pie1.c
│ │ │ │ ├── tst-piemod1.c
│ │ │ │ ├── tst-relsort1.c
│ │ │ │ ├── tst-relsort1mod1.c
│ │ │ │ ├── tst-relsort1mod2.c
│ │ │ │ ├── tst-stackguard1.c
│ │ │ │ ├── tst-stackguard1-static.c
│ │ │ │ ├── tst-thrlock.c
│ │ │ │ ├── tst-tls10.c
│ │ │ │ ├── tst-tls10.h
│ │ │ │ ├── tst-tls11.c
│ │ │ │ ├── tst-tls12.c
│ │ │ │ ├── tst-tls13.c
│ │ │ │ ├── tst-tls14.c
│ │ │ │ ├── tst-tls15.c
│ │ │ │ ├── tst-tls16.c
│ │ │ │ ├── tst-tls17.c
│ │ │ │ ├── tst-tls18.c
│ │ │ │ ├── tst-tls19.c
│ │ │ │ ├── tst-tls19mod1.c
│ │ │ │ ├── tst-tls19mod2.c
│ │ │ │ ├── tst-tls19mod3.c
│ │ │ │ ├── tst-tls1.c
│ │ │ │ ├── tst-tls1-static.c
│ │ │ │ ├── tst-tls2.c
│ │ │ │ ├── tst-tls2-static.c
│ │ │ │ ├── tst-tls3.c
│ │ │ │ ├── tst-tls4.c
│ │ │ │ ├── tst-tls5.c
│ │ │ │ ├── tst-tls6.c
│ │ │ │ ├── tst-tls7.c
│ │ │ │ ├── tst-tls8.c
│ │ │ │ ├── tst-tls9.c
│ │ │ │ ├── tst-tls9-static.c
│ │ │ │ ├── tst-tls-dlinfo.c
│ │ │ │ ├── tst-tlsmod10.c
│ │ │ │ ├── tst-tlsmod11.c
│ │ │ │ ├── tst-tlsmod12.c
│ │ │ │ ├── tst-tlsmod13a.c
│ │ │ │ ├── tst-tlsmod13.c
│ │ │ │ ├── tst-tlsmod14a.c
│ │ │ │ ├── tst-tlsmod14b.c
│ │ │ │ ├── tst-tlsmod15a.c
│ │ │ │ ├── tst-tlsmod15b.c
│ │ │ │ ├── tst-tlsmod16a.c
│ │ │ │ ├── tst-tlsmod16b.c
│ │ │ │ ├── tst-tlsmod17a.c
│ │ │ │ ├── tst-tlsmod17b.c
│ │ │ │ ├── tst-tlsmod18a.c
│ │ │ │ ├── tst-tlsmod1.c
│ │ │ │ ├── tst-tlsmod2.c
│ │ │ │ ├── tst-tlsmod3.c
│ │ │ │ ├── tst-tlsmod4.c
│ │ │ │ ├── tst-tlsmod5.c
│ │ │ │ ├── tst-tlsmod6.c
│ │ │ │ ├── tst-tlsmod7.c
│ │ │ │ ├── tst-tlsmod8.c
│ │ │ │ ├── tst-tlsmod9.c
│ │ │ │ ├── tst-unique1.c
│ │ │ │ ├── tst-unique1mod1.c
│ │ │ │ ├── tst-unique1mod2.c
│ │ │ │ ├── tst-unique2.c
│ │ │ │ ├── tst-unique2mod1.c
│ │ │ │ ├── tst-unique2mod2.c
│ │ │ │ ├── tst-unique3.cc
│ │ │ │ ├── tst-unique3.h
│ │ │ │ ├── tst-unique3lib2.cc
│ │ │ │ ├── tst-unique3lib.cc
│ │ │ │ ├── tst-unique4.cc
│ │ │ │ ├── tst-unique4.h
│ │ │ │ ├── tst-unique4lib.cc
│ │ │ │ ├── unload2.c
│ │ │ │ ├── unload2dep.c
│ │ │ │ ├── unload2mod.c
│ │ │ │ ├── unload3.c
│ │ │ │ ├── unload3mod1.c
│ │ │ │ ├── unload3mod2.c
│ │ │ │ ├── unload3mod3.c
│ │ │ │ ├── unload3mod4.c
│ │ │ │ ├── unload4.c
│ │ │ │ ├── unload4mod1.c
│ │ │ │ ├── unload4mod2.c
│ │ │ │ ├── unload4mod3.c
│ │ │ │ ├── unload4mod4.c
│ │ │ │ ├── unload5.c
│ │ │ │ ├── unload6.c
│ │ │ │ ├── unload6mod1.c
│ │ │ │ ├── unload6mod2.c
│ │ │ │ ├── unload6mod3.c
│ │ │ │ ├── unload7.c
│ │ │ │ ├── unload7mod1.c
│ │ │ │ ├── unload7mod2.c
│ │ │ │ ├── unload8.c
│ │ │ │ ├── unload8mod1.c
│ │ │ │ ├── unload8mod1x.c
│ │ │ │ ├── unload8mod2.c
│ │ │ │ ├── unload8mod3.c
│ │ │ │ ├── unload.c
│ │ │ │ ├── unloadmod.c
│ │ │ │ ├── Versions
│ │ │ │ ├── vismain.c
│ │ │ │ ├── vismod1.c
│ │ │ │ ├── vismod2.c
│ │ │ │ ├── vismod3.c
│ │ │ │ └── vismod.h
│ │ │ ├── extra-lib.mk
│ │ │ ├── extra-modules.mk
│ │ │ ├── gmon
│ │ │ │ ├── bb_exit_func.c
│ │ │ │ ├── bb_init_func.c
│ │ │ │ ├── gmon.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mcount.c
│ │ │ │ ├── prof-freq.c
│ │ │ │ ├── profil.c
│ │ │ │ ├── sprofil.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── gmon.h
│ │ │ │ │ ├── gmon_out.h
│ │ │ │ │ └── profil.h
│ │ │ │ ├── tst-profile-static.c
│ │ │ │ ├── tst-sprofil.c
│ │ │ │ └── Versions
│ │ │ ├── gnulib
│ │ │ │ ├── Makefile
│ │ │ │ └── tst-gcc.c
│ │ │ ├── grp
│ │ │ │ ├── compat-initgroups.c
│ │ │ │ ├── fgetgrent.c
│ │ │ │ ├── fgetgrent_r.c
│ │ │ │ ├── getgrent.c
│ │ │ │ ├── getgrent_r.c
│ │ │ │ ├── getgrgid.c
│ │ │ │ ├── getgrgid_r.c
│ │ │ │ ├── getgrnam.c
│ │ │ │ ├── getgrnam_r.c
│ │ │ │ ├── grp.h
│ │ │ │ ├── initgroups.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── putgrent.c
│ │ │ │ ├── setgroups.c
│ │ │ │ ├── testgrp.c
│ │ │ │ ├── tst_fgetgrent.c
│ │ │ │ ├── tst_fgetgrent.sh
│ │ │ │ └── Versions
│ │ │ ├── gshadow
│ │ │ │ ├── fgetsgent.c
│ │ │ │ ├── fgetsgent_r.c
│ │ │ │ ├── getsgent.c
│ │ │ │ ├── getsgent_r.c
│ │ │ │ ├── getsgnam.c
│ │ │ │ ├── getsgnam_r.c
│ │ │ │ ├── gshadow.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── putsgent.c
│ │ │ │ ├── sgetsgent.c
│ │ │ │ ├── sgetsgent_r.c
│ │ │ │ ├── tst-gshadow.c
│ │ │ │ └── Versions
│ │ │ ├── hesiod
│ │ │ │ ├── hesiod.c
│ │ │ │ ├── hesiod.h
│ │ │ │ ├── hesiod_p.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── nss_hesiod
│ │ │ │ │ ├── hesiod-grp.c
│ │ │ │ │ ├── hesiod-init.c
│ │ │ │ │ ├── hesiod-proto.c
│ │ │ │ │ ├── hesiod-pwd.c
│ │ │ │ │ ├── hesiod-service.c
│ │ │ │ │ └── nss_hesiod.h
│ │ │ │ ├── README.hesiod
│ │ │ │ └── Versions
│ │ │ ├── hurd
│ │ │ │ ├── alloc-fd.c
│ │ │ │ ├── catch-exc.c
│ │ │ │ ├── catch-signal.c
│ │ │ │ ├── compat-20.c
│ │ │ │ ├── ctty-input.c
│ │ │ │ ├── ctty-output.c
│ │ │ │ ├── Depend
│ │ │ │ ├── dtable.c
│ │ │ │ ├── exc2signal.c
│ │ │ │ ├── faultexc.defs
│ │ │ │ ├── fchroot.c
│ │ │ │ ├── fd-close.c
│ │ │ │ ├── fd-read.c
│ │ │ │ ├── fd-write.c
│ │ │ │ ├── fopenport.c
│ │ │ │ ├── getdport.c
│ │ │ │ ├── geteuids.c
│ │ │ │ ├── get-host.c
│ │ │ │ ├── getumask.c
│ │ │ │ ├── hurd
│ │ │ │ │ ├── fd.h
│ │ │ │ │ ├── id.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── lookup.h
│ │ │ │ │ ├── port.h
│ │ │ │ │ ├── resource.h
│ │ │ │ │ ├── signal.h
│ │ │ │ │ ├── sigpreempt.h
│ │ │ │ │ ├── threadvar.h
│ │ │ │ │ ├── userlink.h
│ │ │ │ │ └── xattr.h
│ │ │ │ ├── hurdauth.c
│ │ │ │ ├── hurdchdir.c
│ │ │ │ ├── hurdexec.c
│ │ │ │ ├── hurdfault.c
│ │ │ │ ├── hurdfault.h
│ │ │ │ ├── hurdfchdir.c
│ │ │ │ ├── hurd.h
│ │ │ │ ├── hurdhost.h
│ │ │ │ ├── hurdid.c
│ │ │ │ ├── hurdinit.c
│ │ │ │ ├── hurdioctl.c
│ │ │ │ ├── hurdkill.c
│ │ │ │ ├── hurdlookup.c
│ │ │ │ ├── hurdmalloc.c
│ │ │ │ ├── hurdmalloc.h
│ │ │ │ ├── hurdmsg.c
│ │ │ │ ├── hurdpid.c
│ │ │ │ ├── hurdports.c
│ │ │ │ ├── hurdprio.c
│ │ │ │ ├── hurd-raise.c
│ │ │ │ ├── hurdrlimit.c
│ │ │ │ ├── hurdselect.c
│ │ │ │ ├── hurdsig.c
│ │ │ │ ├── hurdsock.c
│ │ │ │ ├── hurdstartup.c
│ │ │ │ ├── hurdstartup.h
│ │ │ │ ├── intern-fd.c
│ │ │ │ ├── intr-msg.c
│ │ │ │ ├── intr-rpc.defs
│ │ │ │ ├── intr-rpc.h
│ │ │ │ ├── longjmp-ts.c
│ │ │ │ ├── lookup-at.c
│ │ │ │ ├── lookup-retry.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── msgportdemux.c
│ │ │ │ ├── new-fd.c
│ │ │ │ ├── Notes
│ │ │ │ ├── openport.c
│ │ │ │ ├── path-lookup.c
│ │ │ │ ├── pid2task.c
│ │ │ │ ├── port2fd.c
│ │ │ │ ├── port-cleanup.c
│ │ │ │ ├── ports-get.c
│ │ │ │ ├── ports-set.c
│ │ │ │ ├── preempt-sig.c
│ │ │ │ ├── privports.c
│ │ │ │ ├── report-wait.c
│ │ │ │ ├── setauth.c
│ │ │ │ ├── seteuids.c
│ │ │ │ ├── set-host.c
│ │ │ │ ├── siginfo.c
│ │ │ │ ├── sigunwind.c
│ │ │ │ ├── task2pid.c
│ │ │ │ ├── thread-cancel.c
│ │ │ │ ├── thread-self.c
│ │ │ │ ├── trampoline.c
│ │ │ │ ├── Versions
│ │ │ │ ├── vpprintf.c
│ │ │ │ └── xattr.c
│ │ │ ├── iconv
│ │ │ │ ├── dummy-repertoire.c
│ │ │ │ ├── gconv_builtin.c
│ │ │ │ ├── gconv_builtin.h
│ │ │ │ ├── gconv.c
│ │ │ │ ├── gconv_cache.c
│ │ │ │ ├── gconv_charset.h
│ │ │ │ ├── gconv_close.c
│ │ │ │ ├── gconv_conf.c
│ │ │ │ ├── gconv_db.c
│ │ │ │ ├── gconv_dl.c
│ │ │ │ ├── gconv.h
│ │ │ │ ├── gconv_int.h
│ │ │ │ ├── gconv_open.c
│ │ │ │ ├── gconv_simple.c
│ │ │ │ ├── gconv_trans.c
│ │ │ │ ├── iconv.c
│ │ │ │ ├── iconv_charmap.c
│ │ │ │ ├── iconv_close.c
│ │ │ │ ├── iconvconfig.c
│ │ │ │ ├── iconvconfig.h
│ │ │ │ ├── iconv.h
│ │ │ │ ├── iconv_open.c
│ │ │ │ ├── iconv_prog.c
│ │ │ │ ├── iconv_prog.h
│ │ │ │ ├── loop.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── skeleton.c
│ │ │ │ ├── strtab.c
│ │ │ │ ├── tst-iconv1.c
│ │ │ │ ├── tst-iconv2.c
│ │ │ │ ├── tst-iconv3.c
│ │ │ │ ├── tst-iconv4.c
│ │ │ │ ├── tst-iconv5.c
│ │ │ │ └── Versions
│ │ │ ├── iconvdata
│ │ │ │ ├── 8bit-gap.c
│ │ │ │ ├── 8bit-generic.c
│ │ │ │ ├── ansi_x3.110.c
│ │ │ │ ├── armscii-8.c
│ │ │ │ ├── ARMSCII-8.irreversible
│ │ │ │ ├── asmo_449.c
│ │ │ │ ├── big5.c
│ │ │ │ ├── big5hkscs.c
│ │ │ │ ├── BIG5HKSCS.irreversible
│ │ │ │ ├── BIG5.irreversible
│ │ │ │ ├── brf.c
│ │ │ │ ├── bug-iconv1.c
│ │ │ │ ├── bug-iconv2.c
│ │ │ │ ├── bug-iconv3.c
│ │ │ │ ├── bug-iconv4.c
│ │ │ │ ├── bug-iconv5.c
│ │ │ │ ├── bug-iconv6.c
│ │ │ │ ├── bug-iconv8.c
│ │ │ │ ├── bug-iconv9.c
│ │ │ │ ├── cns11643.c
│ │ │ │ ├── cns11643.h
│ │ │ │ ├── cns11643l1.c
│ │ │ │ ├── cns11643l1.h
│ │ │ │ ├── cns11643l2.h
│ │ │ │ ├── cp10007.c
│ │ │ │ ├── cp1125.c
│ │ │ │ ├── cp1250.c
│ │ │ │ ├── cp1251.c
│ │ │ │ ├── cp1252.c
│ │ │ │ ├── cp1253.c
│ │ │ │ ├── cp1254.c
│ │ │ │ ├── cp1255.c
│ │ │ │ ├── CP1255.irreversible
│ │ │ │ ├── cp1256.c
│ │ │ │ ├── cp1257.c
│ │ │ │ ├── cp1258.c
│ │ │ │ ├── CP1258.irreversible
│ │ │ │ ├── cp737.c
│ │ │ │ ├── cp737.h
│ │ │ │ ├── cp770.c
│ │ │ │ ├── cp771.c
│ │ │ │ ├── cp772.c
│ │ │ │ ├── cp773.c
│ │ │ │ ├── cp774.c
│ │ │ │ ├── cp775.c
│ │ │ │ ├── cp775.h
│ │ │ │ ├── cp932.c
│ │ │ │ ├── CP932.irreversible
│ │ │ │ ├── csn_369103.c
│ │ │ │ ├── cwi.c
│ │ │ │ ├── dec-mcs.c
│ │ │ │ ├── Depend
│ │ │ │ ├── ebcdic-at-de-a.c
│ │ │ │ ├── ebcdic-at-de.c
│ │ │ │ ├── ebcdic-ca-fr.c
│ │ │ │ ├── ebcdic-dk-no-a.c
│ │ │ │ ├── ebcdic-dk-no.c
│ │ │ │ ├── ebcdic-es-a.c
│ │ │ │ ├── ebcdic-es.c
│ │ │ │ ├── ebcdic-es-s.c
│ │ │ │ ├── ebcdic-fi-se-a.c
│ │ │ │ ├── ebcdic-fi-se.c
│ │ │ │ ├── ebcdic-fr.c
│ │ │ │ ├── ebcdic-is-friss.c
│ │ │ │ ├── ebcdic-it.c
│ │ │ │ ├── ebcdic-pt.c
│ │ │ │ ├── ebcdic-uk.c
│ │ │ │ ├── ebcdic-us.c
│ │ │ │ ├── ecma-cyrillic.c
│ │ │ │ ├── euc-cn.c
│ │ │ │ ├── euc-jisx0213.c
│ │ │ │ ├── EUC-JISX0213.precomposed
│ │ │ │ ├── euc-jp.c
│ │ │ │ ├── EUC-JP.irreversible
│ │ │ │ ├── euc-jp-ms.c
│ │ │ │ ├── EUC-JP-MS.irreversible
│ │ │ │ ├── euc-kr.c
│ │ │ │ ├── EUC-KR.irreversible
│ │ │ │ ├── euc-tw.c
│ │ │ │ ├── EUC-TW.irreversible
│ │ │ │ ├── extra-module.mk
│ │ │ │ ├── gap.awk
│ │ │ │ ├── gaptab.awk
│ │ │ │ ├── gb18030.c
│ │ │ │ ├── gb2312.c
│ │ │ │ ├── gb2312.h
│ │ │ │ ├── gbbig5.c
│ │ │ │ ├── gbgbk.c
│ │ │ │ ├── gbk.c
│ │ │ │ ├── gconv.map
│ │ │ │ ├── gconv-modules
│ │ │ │ ├── gen-8bit-gap-1.sh
│ │ │ │ ├── gen-8bit-gap.sh
│ │ │ │ ├── gen-8bit.sh
│ │ │ │ ├── georgian-academy.c
│ │ │ │ ├── georgian-ps.c
│ │ │ │ ├── gost_19768-74.c
│ │ │ │ ├── greek7.c
│ │ │ │ ├── greek7-old.c
│ │ │ │ ├── greek-ccitt.c
│ │ │ │ ├── hp-greek8.c
│ │ │ │ ├── hp-roman8.c
│ │ │ │ ├── hp-roman9.c
│ │ │ │ ├── hp-thai8.c
│ │ │ │ ├── hp-turkish8.c
│ │ │ │ ├── ibm037.c
│ │ │ │ ├── ibm038.c
│ │ │ │ ├── ibm1004.c
│ │ │ │ ├── ibm1008_420.c
│ │ │ │ ├── ibm1008.c
│ │ │ │ ├── ibm1008.h
│ │ │ │ ├── ibm1025.c
│ │ │ │ ├── ibm1025.h
│ │ │ │ ├── ibm1026.c
│ │ │ │ ├── ibm1046.c
│ │ │ │ ├── ibm1046.h
│ │ │ │ ├── ibm1047.c
│ │ │ │ ├── ibm1097.c
│ │ │ │ ├── ibm1097.h
│ │ │ │ ├── ibm1112.c
│ │ │ │ ├── ibm1112.h
│ │ │ │ ├── ibm1122.c
│ │ │ │ ├── ibm1122.h
│ │ │ │ ├── ibm1123.c
│ │ │ │ ├── ibm1123.h
│ │ │ │ ├── ibm1124.c
│ │ │ │ ├── ibm1124.h
│ │ │ │ ├── ibm1129.c
│ │ │ │ ├── ibm1129.h
│ │ │ │ ├── ibm1130.c
│ │ │ │ ├── ibm1130.h
│ │ │ │ ├── ibm1132.c
│ │ │ │ ├── ibm1132.h
│ │ │ │ ├── IBM1132.irreversible
│ │ │ │ ├── ibm1133.c
│ │ │ │ ├── ibm1133.h
│ │ │ │ ├── IBM1133.irreversible
│ │ │ │ ├── ibm1137.c
│ │ │ │ ├── ibm1137.h
│ │ │ │ ├── ibm1140.c
│ │ │ │ ├── ibm1140.h
│ │ │ │ ├── ibm1141.c
│ │ │ │ ├── ibm1141.h
│ │ │ │ ├── ibm1142.c
│ │ │ │ ├── ibm1142.h
│ │ │ │ ├── ibm1143.c
│ │ │ │ ├── ibm1143.h
│ │ │ │ ├── ibm1144.c
│ │ │ │ ├── ibm1144.h
│ │ │ │ ├── ibm1145.c
│ │ │ │ ├── ibm1145.h
│ │ │ │ ├── ibm1146.c
│ │ │ │ ├── ibm1146.h
│ │ │ │ ├── ibm1147.c
│ │ │ │ ├── ibm1147.h
│ │ │ │ ├── ibm1148.c
│ │ │ │ ├── ibm1148.h
│ │ │ │ ├── ibm1149.c
│ │ │ │ ├── ibm1149.h
│ │ │ │ ├── ibm1153.c
│ │ │ │ ├── ibm1153.h
│ │ │ │ ├── ibm1154.c
│ │ │ │ ├── ibm1154.h
│ │ │ │ ├── ibm1155.c
│ │ │ │ ├── ibm1155.h
│ │ │ │ ├── ibm1156.c
│ │ │ │ ├── ibm1156.h
│ │ │ │ ├── ibm1157.c
│ │ │ │ ├── ibm1157.h
│ │ │ │ ├── ibm1158.c
│ │ │ │ ├── ibm1158.h
│ │ │ │ ├── ibm1160.c
│ │ │ │ ├── ibm1160.h
│ │ │ │ ├── IBM1160.irreversible
│ │ │ │ ├── ibm1161.c
│ │ │ │ ├── ibm1161.h
│ │ │ │ ├── IBM1161.irreversible
│ │ │ │ ├── ibm1162.c
│ │ │ │ ├── ibm1162.h
│ │ │ │ ├── ibm1163.c
│ │ │ │ ├── ibm1163.h
│ │ │ │ ├── IBM1163.irreversible
│ │ │ │ ├── ibm1164.c
│ │ │ │ ├── ibm1164.h
│ │ │ │ ├── IBM1164.irreversible
│ │ │ │ ├── ibm1166.c
│ │ │ │ ├── ibm1166.h
│ │ │ │ ├── ibm1167.c
│ │ │ │ ├── ibm1167.h
│ │ │ │ ├── ibm12712.c
│ │ │ │ ├── ibm12712.h
│ │ │ │ ├── ibm1364.c
│ │ │ │ ├── ibm1364.h
│ │ │ │ ├── ibm1371.c
│ │ │ │ ├── ibm1371.h
│ │ │ │ ├── ibm1388.c
│ │ │ │ ├── ibm1388.h
│ │ │ │ ├── ibm1390.c
│ │ │ │ ├── ibm1390.h
│ │ │ │ ├── ibm1399.c
│ │ │ │ ├── ibm1399.h
│ │ │ │ ├── ibm16804.c
│ │ │ │ ├── ibm16804.h
│ │ │ │ ├── ibm256.c
│ │ │ │ ├── ibm273.c
│ │ │ │ ├── ibm274.c
│ │ │ │ ├── ibm275.c
│ │ │ │ ├── ibm277.c
│ │ │ │ ├── ibm278.c
│ │ │ │ ├── ibm280.c
│ │ │ │ ├── ibm281.c
│ │ │ │ ├── ibm284.c
│ │ │ │ ├── ibm285.c
│ │ │ │ ├── ibm290.c
│ │ │ │ ├── ibm297.c
│ │ │ │ ├── ibm420.c
│ │ │ │ ├── ibm423.c
│ │ │ │ ├── ibm424.c
│ │ │ │ ├── ibm437.c
│ │ │ │ ├── ibm4517.c
│ │ │ │ ├── ibm4517.h
│ │ │ │ ├── ibm4899.c
│ │ │ │ ├── ibm4899.h
│ │ │ │ ├── ibm4909.c
│ │ │ │ ├── ibm4909.h
│ │ │ │ ├── ibm4971.c
│ │ │ │ ├── ibm4971.h
│ │ │ │ ├── ibm500.c
│ │ │ │ ├── ibm5347.c
│ │ │ │ ├── ibm5347.h
│ │ │ │ ├── ibm803.c
│ │ │ │ ├── ibm803.h
│ │ │ │ ├── ibm850.c
│ │ │ │ ├── ibm851.c
│ │ │ │ ├── ibm852.c
│ │ │ │ ├── ibm855.c
│ │ │ │ ├── ibm856.c
│ │ │ │ ├── ibm856.h
│ │ │ │ ├── IBM856.irreversible
│ │ │ │ ├── ibm857.c
│ │ │ │ ├── ibm860.c
│ │ │ │ ├── ibm861.c
│ │ │ │ ├── ibm862.c
│ │ │ │ ├── ibm863.c
│ │ │ │ ├── ibm864.c
│ │ │ │ ├── ibm865.c
│ │ │ │ ├── ibm866.c
│ │ │ │ ├── ibm866nav.c
│ │ │ │ ├── ibm868.c
│ │ │ │ ├── ibm869.c
│ │ │ │ ├── ibm870.c
│ │ │ │ ├── ibm871.c
│ │ │ │ ├── ibm874.c
│ │ │ │ ├── ibm875.c
│ │ │ │ ├── ibm880.c
│ │ │ │ ├── ibm891.c
│ │ │ │ ├── ibm901.c
│ │ │ │ ├── ibm901.h
│ │ │ │ ├── ibm902.c
│ │ │ │ ├── ibm902.h
│ │ │ │ ├── ibm9030.c
│ │ │ │ ├── ibm9030.h
│ │ │ │ ├── ibm903.c
│ │ │ │ ├── ibm904.c
│ │ │ │ ├── ibm905.c
│ │ │ │ ├── ibm9066.c
│ │ │ │ ├── ibm9066.h
│ │ │ │ ├── ibm918.c
│ │ │ │ ├── ibm921.c
│ │ │ │ ├── ibm921.h
│ │ │ │ ├── ibm922.c
│ │ │ │ ├── ibm922.h
│ │ │ │ ├── IBM922.irreversible
│ │ │ │ ├── ibm930.c
│ │ │ │ ├── ibm930.h
│ │ │ │ ├── ibm932.c
│ │ │ │ ├── ibm932.h
│ │ │ │ ├── ibm933.c
│ │ │ │ ├── ibm933.h
│ │ │ │ ├── ibm935.c
│ │ │ │ ├── ibm935.h
│ │ │ │ ├── ibm937.c
│ │ │ │ ├── ibm937.h
│ │ │ │ ├── ibm939.c
│ │ │ │ ├── ibm939.h
│ │ │ │ ├── ibm943.c
│ │ │ │ ├── ibm943.h
│ │ │ │ ├── ibm9448.c
│ │ │ │ ├── ibm9448.h
│ │ │ │ ├── iec_p27-1.c
│ │ │ │ ├── inis-8.c
│ │ │ │ ├── inis.c
│ │ │ │ ├── inis-cyrillic.c
│ │ │ │ ├── isiri-3342.c
│ │ │ │ ├── isiri-3342.h
│ │ │ │ ├── ISIRI-3342.irreversible
│ │ │ │ ├── iso_10367-box.c
│ │ │ │ ├── iso_11548-1.c
│ │ │ │ ├── iso-2022-cn.c
│ │ │ │ ├── iso-2022-cn-ext.c
│ │ │ │ ├── iso-2022-jp-3.c
│ │ │ │ ├── iso-2022-jp.c
│ │ │ │ ├── iso-2022-kr.c
│ │ │ │ ├── iso_2033.c
│ │ │ │ ├── iso_5427.c
│ │ │ │ ├── iso_5427-ext.c
│ │ │ │ ├── iso_5428.c
│ │ │ │ ├── iso646.c
│ │ │ │ ├── iso_6937-2.c
│ │ │ │ ├── iso_6937.c
│ │ │ │ ├── iso8859-10.c
│ │ │ │ ├── iso8859-11.c
│ │ │ │ ├── iso8859-13.c
│ │ │ │ ├── iso8859-14.c
│ │ │ │ ├── iso8859-15.c
│ │ │ │ ├── iso8859-16.c
│ │ │ │ ├── iso8859-1.c
│ │ │ │ ├── iso8859-2.c
│ │ │ │ ├── iso8859-3.c
│ │ │ │ ├── iso8859-4.c
│ │ │ │ ├── iso8859-5.c
│ │ │ │ ├── iso8859-6.c
│ │ │ │ ├── iso8859-7.c
│ │ │ │ ├── iso8859-8.c
│ │ │ │ ├── iso8859-9.c
│ │ │ │ ├── iso8859-9e.c
│ │ │ │ ├── iso-ir-165.c
│ │ │ │ ├── iso-ir-165.h
│ │ │ │ ├── iso-ir-197.c
│ │ │ │ ├── iso-ir-209.c
│ │ │ │ ├── jis0201.c
│ │ │ │ ├── jis0201.h
│ │ │ │ ├── jis0208.c
│ │ │ │ ├── jis0208.h
│ │ │ │ ├── jis0212.c
│ │ │ │ ├── jis0212.h
│ │ │ │ ├── jisx0213.c
│ │ │ │ ├── jisx0213.h
│ │ │ │ ├── JISX0213.TXT
│ │ │ │ ├── johab.c
│ │ │ │ ├── koi-8.c
│ │ │ │ ├── koi8-r.c
│ │ │ │ ├── koi8-ru.c
│ │ │ │ ├── koi8-t.c
│ │ │ │ ├── koi8-u.c
│ │ │ │ ├── ksc5601.c
│ │ │ │ ├── ksc5601.h
│ │ │ │ ├── latin-greek-1.c
│ │ │ │ ├── latin-greek.c
│ │ │ │ ├── mac-centraleurope.c
│ │ │ │ ├── macintosh.c
│ │ │ │ ├── mac-is.c
│ │ │ │ ├── mac-sami.c
│ │ │ │ ├── mac-uk.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mik.c
│ │ │ │ ├── MISSING
│ │ │ │ ├── nats-dano.c
│ │ │ │ ├── nats-sefi.c
│ │ │ │ ├── pt154.c
│ │ │ │ ├── rk1048.c
│ │ │ │ ├── run-iconv-test.sh
│ │ │ │ ├── sami-ws2.c
│ │ │ │ ├── shift_jisx0213.c
│ │ │ │ ├── SHIFT_JISX0213.irreversible
│ │ │ │ ├── SHIFT_JISX0213.precomposed
│ │ │ │ ├── sjis.c
│ │ │ │ ├── SJIS.irreversible
│ │ │ │ ├── t.61.c
│ │ │ │ ├── tcvn5712-1.c
│ │ │ │ ├── TCVN5712-1.precomposed
│ │ │ │ ├── testdata
│ │ │ │ │ ├── alfabeta..UTF-16.BE
│ │ │ │ │ ├── alfabeta..UTF-16.LE
│ │ │ │ │ ├── alfabeta..UTF-32.BE
│ │ │ │ │ ├── alfabeta..UTF-32.LE
│ │ │ │ │ ├── alfabeta..UTF-8
│ │ │ │ │ ├── ANSI_X3.4-1968
│ │ │ │ │ ├── BIG5HKSCS
│ │ │ │ │ ├── BIG5HKSCS..UTF8
│ │ │ │ │ ├── BRF
│ │ │ │ │ ├── BRF..UTF8
│ │ │ │ │ ├── BS_4730
│ │ │ │ │ ├── BS_4730..UTF8
│ │ │ │ │ ├── CP1250
│ │ │ │ │ ├── CP1250..UTF8
│ │ │ │ │ ├── CP1251
│ │ │ │ │ ├── CP1251..UTF8
│ │ │ │ │ ├── CP1252
│ │ │ │ │ ├── CP1252..UTF8
│ │ │ │ │ ├── CP1253
│ │ │ │ │ ├── CP1253..UTF8
│ │ │ │ │ ├── CP1254
│ │ │ │ │ ├── CP1254..UTF8
│ │ │ │ │ ├── CP1255
│ │ │ │ │ ├── CP1255..UTF8
│ │ │ │ │ ├── CP1256
│ │ │ │ │ ├── CP1256..UTF8
│ │ │ │ │ ├── CP1257
│ │ │ │ │ ├── CP1257..UTF8
│ │ │ │ │ ├── CP1258
│ │ │ │ │ ├── CP1258..UTF8
│ │ │ │ │ ├── CP770
│ │ │ │ │ ├── CP770..UTF8
│ │ │ │ │ ├── CP771
│ │ │ │ │ ├── CP771..UTF8
│ │ │ │ │ ├── CP772
│ │ │ │ │ ├── CP772..UTF8
│ │ │ │ │ ├── CP773
│ │ │ │ │ ├── CP773..UTF8
│ │ │ │ │ ├── CP774
│ │ │ │ │ ├── CP774..UTF8
│ │ │ │ │ ├── CSA_Z243.4-1985-1
│ │ │ │ │ ├── CSA_Z243.4-1985-1..UCS-2BE
│ │ │ │ │ ├── CSA_Z243.4-1985-2
│ │ │ │ │ ├── CSA_Z243.4-1985-2..UCS4
│ │ │ │ │ ├── DIN_66003
│ │ │ │ │ ├── DIN_66003..UTF8
│ │ │ │ │ ├── DS_2089
│ │ │ │ │ ├── DS_2089..UTF8
│ │ │ │ │ ├── ES
│ │ │ │ │ ├── ES2
│ │ │ │ │ ├── ES2..UTF8
│ │ │ │ │ ├── ES..UTF8
│ │ │ │ │ ├── EUC-CN
│ │ │ │ │ ├── EUC-CN..UTF8
│ │ │ │ │ ├── EUC-JISX0213
│ │ │ │ │ ├── EUC-JISX0213..UTF8
│ │ │ │ │ ├── EUC-JP
│ │ │ │ │ ├── EUC-JP..UTF8
│ │ │ │ │ ├── EUC-KR
│ │ │ │ │ ├── EUC-KR..UTF8
│ │ │ │ │ ├── EUC-TW
│ │ │ │ │ ├── EUC-TW..UTF8
│ │ │ │ │ ├── GB_1988-80
│ │ │ │ │ ├── GB_1988-80..UTF8
│ │ │ │ │ ├── GBK
│ │ │ │ │ ├── GBK..UTF8
│ │ │ │ │ ├── IBM1008
│ │ │ │ │ ├── IBM1008..UTF8
│ │ │ │ │ ├── IBM1025
│ │ │ │ │ ├── IBM1025..UTF8
│ │ │ │ │ ├── IBM1046
│ │ │ │ │ ├── IBM1046..UTF8
│ │ │ │ │ ├── IBM1097
│ │ │ │ │ ├── IBM1097..UTF8
│ │ │ │ │ ├── IBM1112
│ │ │ │ │ ├── IBM1112..UTF8
│ │ │ │ │ ├── IBM1122
│ │ │ │ │ ├── IBM1122..UTF8
│ │ │ │ │ ├── IBM1123
│ │ │ │ │ ├── IBM1123..UTF8
│ │ │ │ │ ├── IBM1124
│ │ │ │ │ ├── IBM1124..UTF8
│ │ │ │ │ ├── IBM1129
│ │ │ │ │ ├── IBM1129..UTF8
│ │ │ │ │ ├── IBM1130
│ │ │ │ │ ├── IBM1130..UTF8
│ │ │ │ │ ├── IBM1132
│ │ │ │ │ ├── IBM1132..UTF8
│ │ │ │ │ ├── IBM1133
│ │ │ │ │ ├── IBM1133..UTF8
│ │ │ │ │ ├── IBM1137
│ │ │ │ │ ├── IBM1137..UTF8
│ │ │ │ │ ├── IBM1140
│ │ │ │ │ ├── IBM1140..UTF8
│ │ │ │ │ ├── IBM1141
│ │ │ │ │ ├── IBM1141..UTF8
│ │ │ │ │ ├── IBM1142
│ │ │ │ │ ├── IBM1142..UTF8
│ │ │ │ │ ├── IBM1143
│ │ │ │ │ ├── IBM1143..UTF8
│ │ │ │ │ ├── IBM1144
│ │ │ │ │ ├── IBM1144..UTF8
│ │ │ │ │ ├── IBM1145
│ │ │ │ │ ├── IBM1145..UTF8
│ │ │ │ │ ├── IBM1146
│ │ │ │ │ ├── IBM1146..UTF8
│ │ │ │ │ ├── IBM1147
│ │ │ │ │ ├── IBM1147..UTF8
│ │ │ │ │ ├── IBM1148
│ │ │ │ │ ├── IBM1148..UTF8
│ │ │ │ │ ├── IBM1149
│ │ │ │ │ ├── IBM1149..UTF8
│ │ │ │ │ ├── IBM1153
│ │ │ │ │ ├── IBM1153..UTF8
│ │ │ │ │ ├── IBM1154
│ │ │ │ │ ├── IBM1154..UTF8
│ │ │ │ │ ├── IBM1155
│ │ │ │ │ ├── IBM1155..UTF8
│ │ │ │ │ ├── IBM1156
│ │ │ │ │ ├── IBM1156..UTF8
│ │ │ │ │ ├── IBM1157
│ │ │ │ │ ├── IBM1157..UTF8
│ │ │ │ │ ├── IBM1158
│ │ │ │ │ ├── IBM1158..UTF8
│ │ │ │ │ ├── IBM1160
│ │ │ │ │ ├── IBM1160..UTF8
│ │ │ │ │ ├── IBM1161
│ │ │ │ │ ├── IBM1161..UTF8
│ │ │ │ │ ├── IBM1162
│ │ │ │ │ ├── IBM1162..UTF8
│ │ │ │ │ ├── IBM1163
│ │ │ │ │ ├── IBM1163..UTF8
│ │ │ │ │ ├── IBM1164
│ │ │ │ │ ├── IBM1164..UTF8
│ │ │ │ │ ├── IBM1166
│ │ │ │ │ ├── IBM1166..UTF8
│ │ │ │ │ ├── IBM1167
│ │ │ │ │ ├── IBM1167..UTF8
│ │ │ │ │ ├── IBM12712
│ │ │ │ │ ├── IBM12712..UTF8
│ │ │ │ │ ├── IBM1364
│ │ │ │ │ ├── IBM1364..UTF8
│ │ │ │ │ ├── IBM1371
│ │ │ │ │ ├── IBM1371..UTF8
│ │ │ │ │ ├── IBM1388
│ │ │ │ │ ├── IBM1388..UTF8
│ │ │ │ │ ├── IBM1390
│ │ │ │ │ ├── IBM1390..UTF8
│ │ │ │ │ ├── IBM1399
│ │ │ │ │ ├── IBM1399..UTF8
│ │ │ │ │ ├── IBM16804
│ │ │ │ │ ├── IBM16804..UTF8
│ │ │ │ │ ├── IBM4517
│ │ │ │ │ ├── IBM4517..UTF8
│ │ │ │ │ ├── IBM4899
│ │ │ │ │ ├── IBM4899..UTF8
│ │ │ │ │ ├── IBM4909
│ │ │ │ │ ├── IBM4909..UTF8
│ │ │ │ │ ├── IBM4971
│ │ │ │ │ ├── IBM4971..UTF8
│ │ │ │ │ ├── IBM5347
│ │ │ │ │ ├── IBM5347..UTF8
│ │ │ │ │ ├── IBM803
│ │ │ │ │ ├── IBM803..UTF8
│ │ │ │ │ ├── IBM856
│ │ │ │ │ ├── IBM856..UTF8
│ │ │ │ │ ├── IBM901
│ │ │ │ │ ├── IBM901..UTF8
│ │ │ │ │ ├── IBM902
│ │ │ │ │ ├── IBM902..UTF8
│ │ │ │ │ ├── IBM9030
│ │ │ │ │ ├── IBM9030..UTF8
│ │ │ │ │ ├── IBM9066
│ │ │ │ │ ├── IBM9066..UTF8
│ │ │ │ │ ├── IBM921
│ │ │ │ │ ├── IBM921..UTF8
│ │ │ │ │ ├── IBM922
│ │ │ │ │ ├── IBM922..UTF8
│ │ │ │ │ ├── IBM930
│ │ │ │ │ ├── IBM930..UTF8
│ │ │ │ │ ├── IBM932
│ │ │ │ │ ├── IBM932..UTF8
│ │ │ │ │ ├── IBM933
│ │ │ │ │ ├── IBM933..UTF8
│ │ │ │ │ ├── IBM935
│ │ │ │ │ ├── IBM935..UTF8
│ │ │ │ │ ├── IBM937
│ │ │ │ │ ├── IBM937..UTF8
│ │ │ │ │ ├── IBM939
│ │ │ │ │ ├── IBM939..UTF8
│ │ │ │ │ ├── IBM943
│ │ │ │ │ ├── IBM943..UTF8
│ │ │ │ │ ├── IBM9448
│ │ │ │ │ ├── IBM9448..UTF8
│ │ │ │ │ ├── ISO_11548-1
│ │ │ │ │ ├── ISO_11548-1..UTF8
│ │ │ │ │ ├── ISO-2022-CN
│ │ │ │ │ ├── ISO-2022-CN-EXT
│ │ │ │ │ ├── ISO-2022-CN-EXT..UTF8
│ │ │ │ │ ├── ISO-2022-CN..UTF8
│ │ │ │ │ ├── ISO-2022-JP
│ │ │ │ │ ├── ISO-2022-JP-2
│ │ │ │ │ ├── ISO-2022-JP-2..UTF8
│ │ │ │ │ ├── ISO-2022-JP-3
│ │ │ │ │ ├── ISO-2022-JP-3..UTF8
│ │ │ │ │ ├── ISO-2022-JP..UTF8
│ │ │ │ │ ├── ISO-2022-KR
│ │ │ │ │ ├── ISO-2022-KR..UTF8
│ │ │ │ │ ├── ISO-8859-1
│ │ │ │ │ ├── ISO-8859-10
│ │ │ │ │ ├── ISO-8859-10..UCS-2BE
│ │ │ │ │ ├── ISO-8859-14
│ │ │ │ │ ├── ISO-8859-14..UTF8
│ │ │ │ │ ├── ISO-8859-15
│ │ │ │ │ ├── ISO-8859-15..UTF8
│ │ │ │ │ ├── ISO-8859-1..UTF8
│ │ │ │ │ ├── ISO-8859-2
│ │ │ │ │ ├── ISO-8859-2..UCS4
│ │ │ │ │ ├── ISO-8859-2..UTF8
│ │ │ │ │ ├── ISO-8859-3
│ │ │ │ │ ├── ISO-8859-4
│ │ │ │ │ ├── ISO-8859-5
│ │ │ │ │ ├── ISO-8859-6
│ │ │ │ │ ├── ISO-8859-7
│ │ │ │ │ ├── ISO-8859-8
│ │ │ │ │ ├── ISO-8859-9
│ │ │ │ │ ├── IT
│ │ │ │ │ ├── IT..UTF8
│ │ │ │ │ ├── JIS_C6220-1969-RO
│ │ │ │ │ ├── JIS_C6220-1969-RO..UTF8
│ │ │ │ │ ├── JIS_C6229-1984-B
│ │ │ │ │ ├── JIS_C6229-1984-B..UTF8
│ │ │ │ │ ├── JUS_I.B1.002
│ │ │ │ │ ├── JUS_I.B1.002..UTF8
│ │ │ │ │ ├── KOI-8
│ │ │ │ │ ├── KOI8-R
│ │ │ │ │ ├── KOI8-R..UTF8
│ │ │ │ │ ├── KOI-8..UTF8
│ │ │ │ │ ├── KSC5636
│ │ │ │ │ ├── KSC5636..UTF8
│ │ │ │ │ ├── MIK
│ │ │ │ │ ├── MIK..UTF8
│ │ │ │ │ ├── MSZ_7795.3
│ │ │ │ │ ├── MSZ_7795.3..UTF8
│ │ │ │ │ ├── NC_NC00-10
│ │ │ │ │ ├── NC_NC00-10..UTF8
│ │ │ │ │ ├── NF_Z_62-010
│ │ │ │ │ ├── NF_Z_62-010_1973
│ │ │ │ │ ├── NF_Z_62-010_1973..UTF8
│ │ │ │ │ ├── NF_Z_62-010..UTF8
│ │ │ │ │ ├── NS_4551-1
│ │ │ │ │ ├── NS_4551-1..UTF8
│ │ │ │ │ ├── NS_4551-2
│ │ │ │ │ ├── NS_4551-2..UTF8
│ │ │ │ │ ├── PT
│ │ │ │ │ ├── PT2
│ │ │ │ │ ├── PT2..UTF8
│ │ │ │ │ ├── PT..UTF8
│ │ │ │ │ ├── SEN_850200_B
│ │ │ │ │ ├── SEN_850200_B..UTF8
│ │ │ │ │ ├── SEN_850200_C
│ │ │ │ │ ├── SEN_850200_C..UTF8
│ │ │ │ │ ├── SHIFT_JISX0213
│ │ │ │ │ ├── SHIFT_JISX0213..UTF8
│ │ │ │ │ ├── suntzus
│ │ │ │ │ ├── TCVN-5712
│ │ │ │ │ ├── TCVN-5712..UTF8
│ │ │ │ │ ├── TSCII
│ │ │ │ │ ├── TSCII..UTF8
│ │ │ │ │ ├── UTF-7
│ │ │ │ │ ├── UTF-7..UTF8
│ │ │ │ │ ├── WINDOWS-1255
│ │ │ │ │ ├── WINDOWS-1255..UTF8
│ │ │ │ │ ├── WINDOWS-1258
│ │ │ │ │ └── WINDOWS-1258..UTF8
│ │ │ │ ├── TESTS
│ │ │ │ ├── TESTS2
│ │ │ │ ├── tis-620.c
│ │ │ │ ├── tscii.c
│ │ │ │ ├── TSCII.irreversible
│ │ │ │ ├── TSCII.precomposed
│ │ │ │ ├── tst-e2big.c
│ │ │ │ ├── tst-iconv4.c
│ │ │ │ ├── tst-iconv6.c
│ │ │ │ ├── tst-iconv7.c
│ │ │ │ ├── tst-loading.c
│ │ │ │ ├── tst-table-charmap.sh
│ │ │ │ ├── tst-table-from.c
│ │ │ │ ├── tst-table.sh
│ │ │ │ ├── tst-tables.sh
│ │ │ │ ├── tst-table-to.c
│ │ │ │ ├── uhc.c
│ │ │ │ ├── unicode.c
│ │ │ │ ├── utf-16.c
│ │ │ │ ├── utf-32.c
│ │ │ │ ├── utf-7.c
│ │ │ │ └── viscii.c
│ │ │ ├── include
│ │ │ │ ├── aio.h
│ │ │ │ ├── aliases.h
│ │ │ │ ├── alloca.h
│ │ │ │ ├── argp.h
│ │ │ │ ├── argz.h
│ │ │ │ ├── arpa
│ │ │ │ │ ├── ftp.h
│ │ │ │ │ ├── inet.h
│ │ │ │ │ ├── nameser_compat.h
│ │ │ │ │ ├── nameser.h
│ │ │ │ │ ├── telnet.h
│ │ │ │ │ └── tftp.h
│ │ │ │ ├── assert.h
│ │ │ │ ├── atomic.h
│ │ │ │ ├── bits
│ │ │ │ │ ├── cmathcalls.h
│ │ │ │ │ ├── dlfcn.h
│ │ │ │ │ ├── error.h
│ │ │ │ │ ├── fcntl2.h
│ │ │ │ │ ├── ipc.h
│ │ │ │ │ ├── locale.h
│ │ │ │ │ ├── mathcalls.h
│ │ │ │ │ ├── poll2.h
│ │ │ │ │ ├── posix1_lim.h
│ │ │ │ │ ├── posix2_lim.h
│ │ │ │ │ ├── select2.h
│ │ │ │ │ ├── setjmp2.h
│ │ │ │ │ ├── socket2.h
│ │ │ │ │ ├── stab.def
│ │ │ │ │ ├── stdlib.h
│ │ │ │ │ ├── string2.h
│ │ │ │ │ ├── string3.h
│ │ │ │ │ ├── syslog.h
│ │ │ │ │ ├── unistd.h
│ │ │ │ │ ├── wchar2.h
│ │ │ │ │ └── xopen_lim.h
│ │ │ │ ├── byteswap.h
│ │ │ │ ├── caller.h
│ │ │ │ ├── complex.h
│ │ │ │ ├── ctype.h
│ │ │ │ ├── des.h
│ │ │ │ ├── dirent.h
│ │ │ │ ├── dlfcn.h
│ │ │ │ ├── elf.h
│ │ │ │ ├── endian.h
│ │ │ │ ├── envz.h
│ │ │ │ ├── err.h
│ │ │ │ ├── errno.h
│ │ │ │ ├── error.h
│ │ │ │ ├── execinfo.h
│ │ │ │ ├── fcntl.h
│ │ │ │ ├── features.h
│ │ │ │ ├── fenv.h
│ │ │ │ ├── fnmatch.h
│ │ │ │ ├── fpu_control.h
│ │ │ │ ├── ftw.h
│ │ │ │ ├── gconv.h
│ │ │ │ ├── getopt.h
│ │ │ │ ├── getopt_int.h
│ │ │ │ ├── glob.h
│ │ │ │ ├── gmp.h
│ │ │ │ ├── gnu
│ │ │ │ │ ├── libc-version.h
│ │ │ │ │ └── stubs.h
│ │ │ │ ├── gnu-versions.h
│ │ │ │ ├── grp.h
│ │ │ │ ├── gshadow.h
│ │ │ │ ├── iconv.h
│ │ │ │ ├── ifaddrs.h
│ │ │ │ ├── inline-hashtab.h
│ │ │ │ ├── langinfo.h
│ │ │ │ ├── libc-internal.h
│ │ │ │ ├── libc-symbols.h
│ │ │ │ ├── libgen.h
│ │ │ │ ├── libintl.h
│ │ │ │ ├── libio.h
│ │ │ │ ├── limits.h
│ │ │ │ ├── link.h
│ │ │ │ ├── locale.h
│ │ │ │ ├── malloc.h
│ │ │ │ ├── math.h
│ │ │ │ ├── mcheck.h
│ │ │ │ ├── memory.h
│ │ │ │ ├── mntent.h
│ │ │ │ ├── monetary.h
│ │ │ │ ├── mqueue.h
│ │ │ │ ├── net
│ │ │ │ │ └── if.h
│ │ │ │ ├── netdb.h
│ │ │ │ ├── netgroup.h
│ │ │ │ ├── netinet
│ │ │ │ │ ├── ether.h
│ │ │ │ │ └── in.h
│ │ │ │ ├── nl_types.h
│ │ │ │ ├── nss.h
│ │ │ │ ├── nsswitch.h
│ │ │ │ ├── obstack.h
│ │ │ │ ├── poll.h
│ │ │ │ ├── printf.h
│ │ │ │ ├── protocols
│ │ │ │ │ ├── routed.h
│ │ │ │ │ ├── rwhod.h
│ │ │ │ │ ├── talkd.h
│ │ │ │ │ └── timed.h
│ │ │ │ ├── pthread.h
│ │ │ │ ├── pty.h
│ │ │ │ ├── pwd.h
│ │ │ │ ├── regex.h
│ │ │ │ ├── resolv.h
│ │ │ │ ├── rpc
│ │ │ │ │ ├── auth_des.h
│ │ │ │ │ ├── auth.h
│ │ │ │ │ ├── auth_unix.h
│ │ │ │ │ ├── clnt.h
│ │ │ │ │ ├── des_crypt.h
│ │ │ │ │ ├── key_prot.h
│ │ │ │ │ ├── netdb.h
│ │ │ │ │ ├── pmap_clnt.h
│ │ │ │ │ ├── pmap_prot.h
│ │ │ │ │ ├── pmap_rmt.h
│ │ │ │ │ ├── rpc.h
│ │ │ │ │ ├── rpc_msg.h
│ │ │ │ │ ├── svc_auth.h
│ │ │ │ │ ├── svc.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ └── xdr.h
│ │ │ │ ├── rpcsvc
│ │ │ │ │ ├── nis_callback.h
│ │ │ │ │ ├── nis.h
│ │ │ │ │ ├── nislib.h
│ │ │ │ │ ├── nis_tags.h
│ │ │ │ │ ├── ypclnt.h
│ │ │ │ │ ├── yp.h
│ │ │ │ │ └── ypupd.h
│ │ │ │ ├── sched.h
│ │ │ │ ├── search.h
│ │ │ │ ├── set-hooks.h
│ │ │ │ ├── setjmp.h
│ │ │ │ ├── sgtty.h
│ │ │ │ ├── shadow.h
│ │ │ │ ├── shlib-compat.h
│ │ │ │ ├── signal.h
│ │ │ │ ├── spawn.h
│ │ │ │ ├── stab.h
│ │ │ │ ├── stap-probe.h
│ │ │ │ ├── stdc-predef.h
│ │ │ │ ├── stdio_ext.h
│ │ │ │ ├── stdio.h
│ │ │ │ ├── stdlib.h
│ │ │ │ ├── string.h
│ │ │ │ ├── strings.h
│ │ │ │ ├── stropts.h
│ │ │ │ ├── stubs-prologue.h
│ │ │ │ ├── stub-tag.h
│ │ │ │ ├── sys
│ │ │ │ │ ├── bitypes.h
│ │ │ │ │ ├── cdefs.h
│ │ │ │ │ ├── dir.h
│ │ │ │ │ ├── epoll.h
│ │ │ │ │ ├── errno.h
│ │ │ │ │ ├── fcntl.h
│ │ │ │ │ ├── file.h
│ │ │ │ │ ├── gmon.h
│ │ │ │ │ ├── gmon_out.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── ipc.h
│ │ │ │ │ ├── mman.h
│ │ │ │ │ ├── msg.h
│ │ │ │ │ ├── poll.h
│ │ │ │ │ ├── prctl.h
│ │ │ │ │ ├── profil.h
│ │ │ │ │ ├── queue.h
│ │ │ │ │ ├── resource.h
│ │ │ │ │ ├── select.h
│ │ │ │ │ ├── sem.h
│ │ │ │ │ ├── sendfile.h
│ │ │ │ │ ├── shm.h
│ │ │ │ │ ├── signal.h
│ │ │ │ │ ├── socket.h
│ │ │ │ │ ├── statfs.h
│ │ │ │ │ ├── stat.h
│ │ │ │ │ ├── statvfs.h
│ │ │ │ │ ├── sysctl.h
│ │ │ │ │ ├── sysinfo.h
│ │ │ │ │ ├── syslog.h
│ │ │ │ │ ├── termios.h
│ │ │ │ │ ├── timeb.h
│ │ │ │ │ ├── time.h
│ │ │ │ │ ├── times.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── uio.h
│ │ │ │ │ ├── un.h
│ │ │ │ │ ├── unistd.h
│ │ │ │ │ ├── utsname.h
│ │ │ │ │ ├── vlimit.h
│ │ │ │ │ ├── vtimes.h
│ │ │ │ │ ├── wait.h
│ │ │ │ │ └── xattr.h
│ │ │ │ ├── syscall.h
│ │ │ │ ├── sysexits.h
│ │ │ │ ├── syslog.h
│ │ │ │ ├── tar.h
│ │ │ │ ├── termios.h
│ │ │ │ ├── tgmath.h
│ │ │ │ ├── time.h
│ │ │ │ ├── ttyent.h
│ │ │ │ ├── uchar.h
│ │ │ │ ├── ucontext.h
│ │ │ │ ├── ulimit.h
│ │ │ │ ├── unistd.h
│ │ │ │ ├── utime.h
│ │ │ │ ├── utmp.h
│ │ │ │ ├── values.h
│ │ │ │ ├── wchar.h
│ │ │ │ ├── wctype.h
│ │ │ │ ├── wordexp.h
│ │ │ │ └── xlocale.h
│ │ │ ├── inet
│ │ │ │ ├── aliases.h
│ │ │ │ ├── arpa
│ │ │ │ │ ├── ftp.h
│ │ │ │ │ ├── inet.h
│ │ │ │ │ ├── telnet.h
│ │ │ │ │ └── tftp.h
│ │ │ │ ├── bug-if1.c
│ │ │ │ ├── check_pf.c
│ │ │ │ ├── ether_aton.c
│ │ │ │ ├── ether_aton_r.c
│ │ │ │ ├── ether_hton.c
│ │ │ │ ├── ether_line.c
│ │ │ │ ├── ether_ntoa.c
│ │ │ │ ├── ether_ntoa_r.c
│ │ │ │ ├── ether_ntoh.c
│ │ │ │ ├── getaliasent.c
│ │ │ │ ├── getaliasent_r.c
│ │ │ │ ├── getaliasname.c
│ │ │ │ ├── getaliasname_r.c
│ │ │ │ ├── gethstbyad.c
│ │ │ │ ├── gethstbyad_r.c
│ │ │ │ ├── gethstbynm2.c
│ │ │ │ ├── gethstbynm2_r.c
│ │ │ │ ├── gethstbynm.c
│ │ │ │ ├── gethstbynm_r.c
│ │ │ │ ├── gethstent.c
│ │ │ │ ├── gethstent_r.c
│ │ │ │ ├── getipv4sourcefilter.c
│ │ │ │ ├── getnameinfo.c
│ │ │ │ ├── getnetbyad.c
│ │ │ │ ├── getnetbyad_r.c
│ │ │ │ ├── getnetbynm.c
│ │ │ │ ├── getnetbynm_r.c
│ │ │ │ ├── getnetent.c
│ │ │ │ ├── getnetent_r.c
│ │ │ │ ├── getnetgrent.c
│ │ │ │ ├── getnetgrent_r.c
│ │ │ │ ├── getproto.c
│ │ │ │ ├── getproto_r.c
│ │ │ │ ├── getprtent.c
│ │ │ │ ├── getprtent_r.c
│ │ │ │ ├── getprtname.c
│ │ │ │ ├── getprtname_r.c
│ │ │ │ ├── getrpcbyname.c
│ │ │ │ ├── getrpcbyname_r.c
│ │ │ │ ├── getrpcbynumber.c
│ │ │ │ ├── getrpcbynumber_r.c
│ │ │ │ ├── getrpcent.c
│ │ │ │ ├── getrpcent_r.c
│ │ │ │ ├── getservent.c
│ │ │ │ ├── getservent_r.c
│ │ │ │ ├── getsourcefilter.c
│ │ │ │ ├── getsrvbynm.c
│ │ │ │ ├── getsrvbynm_r.c
│ │ │ │ ├── getsrvbypt.c
│ │ │ │ ├── getsrvbypt_r.c
│ │ │ │ ├── herrno.c
│ │ │ │ ├── herrno-loc.c
│ │ │ │ ├── htonl.c
│ │ │ │ ├── htons.c
│ │ │ │ ├── htontest.c
│ │ │ │ ├── ifaddrs.c
│ │ │ │ ├── ifaddrs.h
│ │ │ │ ├── if_index.c
│ │ │ │ ├── ifreq.c
│ │ │ │ ├── in6_addr.c
│ │ │ │ ├── inet6_opt.c
│ │ │ │ ├── inet6_option.c
│ │ │ │ ├── inet6_rth.c
│ │ │ │ ├── inet_lnaof.c
│ │ │ │ ├── inet_mkadr.c
│ │ │ │ ├── inet_net.c
│ │ │ │ ├── inet_netof.c
│ │ │ │ ├── inet_ntoa.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── netgroup.h
│ │ │ │ ├── netinet
│ │ │ │ │ ├── ether.h
│ │ │ │ │ ├── icmp6.h
│ │ │ │ │ ├── igmp.h
│ │ │ │ │ ├── in.h
│ │ │ │ │ └── ip6.h
│ │ │ │ ├── protocols
│ │ │ │ │ ├── routed.h
│ │ │ │ │ ├── rwhod.h
│ │ │ │ │ ├── talkd.h
│ │ │ │ │ └── timed.h
│ │ │ │ ├── rcmd.c
│ │ │ │ ├── rexec.c
│ │ │ │ ├── ruserpass.c
│ │ │ │ ├── setipv4sourcefilter.c
│ │ │ │ ├── setsourcefilter.c
│ │ │ │ ├── test-ifaddrs.c
│ │ │ │ ├── test_ifindex.c
│ │ │ │ ├── test-inet6_opt.c
│ │ │ │ ├── tst-checks.c
│ │ │ │ ├── tst-ether_aton.c
│ │ │ │ ├── tst-ether_line.c
│ │ │ │ ├── tst-gethnm.c
│ │ │ │ ├── tst-getni1.c
│ │ │ │ ├── tst-getni2.c
│ │ │ │ ├── tst-inet6_rth.c
│ │ │ │ ├── tst-network.c
│ │ │ │ ├── tst-ntoa.c
│ │ │ │ └── Versions
│ │ │ ├── INSTALL
│ │ │ ├── intl
│ │ │ │ ├── bindtextdom.c
│ │ │ │ ├── dcgettext.c
│ │ │ │ ├── dcigettext.c
│ │ │ │ ├── dcngettext.c
│ │ │ │ ├── Depend
│ │ │ │ ├── dgettext.c
│ │ │ │ ├── dngettext.c
│ │ │ │ ├── explodename.c
│ │ │ │ ├── finddomain.c
│ │ │ │ ├── gettext.c
│ │ │ │ ├── gettextP.h
│ │ │ │ ├── gmo.h
│ │ │ │ ├── hash-string.c
│ │ │ │ ├── hash-string.h
│ │ │ │ ├── l10nflist.c
│ │ │ │ ├── libintl.h
│ │ │ │ ├── loadinfo.h
│ │ │ │ ├── loadmsgcat.c
│ │ │ │ ├── locale.alias
│ │ │ │ ├── localealias.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── ngettext.c
│ │ │ │ ├── plural.c
│ │ │ │ ├── plural-eval.c
│ │ │ │ ├── plural-exp.c
│ │ │ │ ├── plural-exp.h
│ │ │ │ ├── plural.y
│ │ │ │ ├── po2test.sed
│ │ │ │ ├── textdomain.c
│ │ │ │ ├── translit.po
│ │ │ │ ├── tst-codeset.c
│ │ │ │ ├── tstcodeset.po
│ │ │ │ ├── tst-codeset.sh
│ │ │ │ ├── tst-gettext2.c
│ │ │ │ ├── tst-gettext2.sh
│ │ │ │ ├── tst-gettext3.c
│ │ │ │ ├── tst-gettext3.sh
│ │ │ │ ├── tst-gettext4.c
│ │ │ │ ├── tst-gettext4-de.po
│ │ │ │ ├── tst-gettext4-fr.po
│ │ │ │ ├── tst-gettext4.sh
│ │ │ │ ├── tst-gettext5.c
│ │ │ │ ├── tst-gettext5.sh
│ │ │ │ ├── tst-gettext6.c
│ │ │ │ ├── tst-gettext6.sh
│ │ │ │ ├── tst-gettext.c
│ │ │ │ ├── tst-gettext.sh
│ │ │ │ ├── tstlang1.po
│ │ │ │ ├── tstlang2.po
│ │ │ │ ├── tst-ngettext.c
│ │ │ │ ├── tst-translit.c
│ │ │ │ ├── tst-translit.sh
│ │ │ │ └── Versions
│ │ │ ├── io
│ │ │ │ ├── access.c
│ │ │ │ ├── bits
│ │ │ │ │ ├── fcntl2.h
│ │ │ │ │ └── poll2.h
│ │ │ │ ├── bug-ftw1.c
│ │ │ │ ├── bug-ftw2.c
│ │ │ │ ├── bug-ftw3.c
│ │ │ │ ├── bug-ftw4.c
│ │ │ │ ├── bug-ftw5.c
│ │ │ │ ├── chdir.c
│ │ │ │ ├── chmod.c
│ │ │ │ ├── chown.c
│ │ │ │ ├── close.c
│ │ │ │ ├── creat64.c
│ │ │ │ ├── creat.c
│ │ │ │ ├── dup2.c
│ │ │ │ ├── dup3.c
│ │ │ │ ├── dup.c
│ │ │ │ ├── euidaccess.c
│ │ │ │ ├── faccessat.c
│ │ │ │ ├── fchdir.c
│ │ │ │ ├── fchmodat.c
│ │ │ │ ├── fchmod.c
│ │ │ │ ├── fchownat.c
│ │ │ │ ├── fchown.c
│ │ │ │ ├── fcntl.c
│ │ │ │ ├── fcntl.h
│ │ │ │ ├── flock.c
│ │ │ │ ├── fstat64.c
│ │ │ │ ├── fstatat64.c
│ │ │ │ ├── fstatat.c
│ │ │ │ ├── fstat.c
│ │ │ │ ├── fstatfs64.c
│ │ │ │ ├── fstatfs.c
│ │ │ │ ├── fstatvfs64.c
│ │ │ │ ├── fstatvfs.c
│ │ │ │ ├── fts.c
│ │ │ │ ├── fts.h
│ │ │ │ ├── ftw64.c
│ │ │ │ ├── ftw.c
│ │ │ │ ├── ftw.h
│ │ │ │ ├── ftwtest.c
│ │ │ │ ├── ftwtest-sh
│ │ │ │ ├── futimens.c
│ │ │ │ ├── fxstat64.c
│ │ │ │ ├── fxstatat64.c
│ │ │ │ ├── fxstatat.c
│ │ │ │ ├── fxstat.c
│ │ │ │ ├── getcwd.c
│ │ │ │ ├── getdirname.c
│ │ │ │ ├── getwd.c
│ │ │ │ ├── have_o_cloexec.c
│ │ │ │ ├── isatty.c
│ │ │ │ ├── lchmod.c
│ │ │ │ ├── lchown.c
│ │ │ │ ├── linkat.c
│ │ │ │ ├── link.c
│ │ │ │ ├── lockf64.c
│ │ │ │ ├── lockf.c
│ │ │ │ ├── lseek64.c
│ │ │ │ ├── lstat64.c
│ │ │ │ ├── lstat.c
│ │ │ │ ├── lxstat64.c
│ │ │ │ ├── lxstat.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mkdirat.c
│ │ │ │ ├── mkdir.c
│ │ │ │ ├── mkfifoat.c
│ │ │ │ ├── mkfifo.c
│ │ │ │ ├── mknodat.c
│ │ │ │ ├── mknod.c
│ │ │ │ ├── open64.c
│ │ │ │ ├── openat64.c
│ │ │ │ ├── openat.c
│ │ │ │ ├── open.c
│ │ │ │ ├── pipe2.c
│ │ │ │ ├── pipe.c
│ │ │ │ ├── poll.c
│ │ │ │ ├── poll.h
│ │ │ │ ├── posix_fadvise64.c
│ │ │ │ ├── posix_fadvise.c
│ │ │ │ ├── posix_fallocate64.c
│ │ │ │ ├── posix_fallocate.c
│ │ │ │ ├── ppoll.c
│ │ │ │ ├── pwd.c
│ │ │ │ ├── read.c
│ │ │ │ ├── readlinkat.c
│ │ │ │ ├── readlink.c
│ │ │ │ ├── rmdir.c
│ │ │ │ ├── sendfile64.c
│ │ │ │ ├── sendfile.c
│ │ │ │ ├── stat64.c
│ │ │ │ ├── stat.c
│ │ │ │ ├── statfs64.c
│ │ │ │ ├── statfs.c
│ │ │ │ ├── statvfs64.c
│ │ │ │ ├── statvfs.c
│ │ │ │ ├── symlinkat.c
│ │ │ │ ├── symlink.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── fcntl.h
│ │ │ │ │ ├── poll.h
│ │ │ │ │ ├── sendfile.h
│ │ │ │ │ ├── statfs.h
│ │ │ │ │ ├── stat.h
│ │ │ │ │ ├── statvfs.h
│ │ │ │ │ └── vfs.h
│ │ │ │ ├── test-lfs.c
│ │ │ │ ├── test-stat2.c
│ │ │ │ ├── test-stat.c
│ │ │ │ ├── test-utime.c
│ │ │ │ ├── tst-faccessat.c
│ │ │ │ ├── tst-fchmodat.c
│ │ │ │ ├── tst-fchownat.c
│ │ │ │ ├── tst-fcntl.c
│ │ │ │ ├── tst-fstatat.c
│ │ │ │ ├── tst-futimesat.c
│ │ │ │ ├── tst-getcwd.c
│ │ │ │ ├── tst-linkat.c
│ │ │ │ ├── tst-mkdirat.c
│ │ │ │ ├── tst-mkfifoat.c
│ │ │ │ ├── tst-mknodat.c
│ │ │ │ ├── tst-openat.c
│ │ │ │ ├── tst-posix_fallocate.c
│ │ │ │ ├── tst-readlinkat.c
│ │ │ │ ├── tst-renameat.c
│ │ │ │ ├── tst-statvfs.c
│ │ │ │ ├── tst-symlinkat.c
│ │ │ │ ├── tst-ttyname_r.c
│ │ │ │ ├── tst-unlinkat.c
│ │ │ │ ├── ttyname.c
│ │ │ │ ├── ttyname_r.c
│ │ │ │ ├── umask.c
│ │ │ │ ├── unlinkat.c
│ │ │ │ ├── unlink.c
│ │ │ │ ├── utime.c
│ │ │ │ ├── utime.h
│ │ │ │ ├── utimensat.c
│ │ │ │ ├── Versions
│ │ │ │ ├── write.c
│ │ │ │ ├── xmknodat.c
│ │ │ │ ├── xmknod.c
│ │ │ │ ├── xstat64.c
│ │ │ │ └── xstat.c
│ │ │ ├── libc-abis
│ │ │ ├── libidn
│ │ │ │ ├── Banner
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── configure
│ │ │ │ ├── configure.in
│ │ │ │ ├── gunicomp.h
│ │ │ │ ├── gunidecomp.h
│ │ │ │ ├── iconvme.c
│ │ │ │ ├── iconvme.h
│ │ │ │ ├── idna.c
│ │ │ │ ├── idna.h
│ │ │ │ ├── idn-stub.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── nfkc.c
│ │ │ │ ├── profiles.c
│ │ │ │ ├── punycode.c
│ │ │ │ ├── punycode.h
│ │ │ │ ├── rfc3454.c
│ │ │ │ ├── shlib-versions
│ │ │ │ ├── stringprep.c
│ │ │ │ ├── stringprep.h
│ │ │ │ ├── toutf8.c
│ │ │ │ └── Versions
│ │ │ ├── libio
│ │ │ │ ├── bits
│ │ │ │ │ ├── libio-ldbl.h
│ │ │ │ │ ├── stdio2.h
│ │ │ │ │ ├── stdio.h
│ │ │ │ │ └── stdio-ldbl.h
│ │ │ │ ├── bug-fclose1.c
│ │ │ │ ├── bug-fopena+.c
│ │ │ │ ├── bug-fseek.c
│ │ │ │ ├── bug-ftell.c
│ │ │ │ ├── bug-memstream1.c
│ │ │ │ ├── bug-mmap-fflush.c
│ │ │ │ ├── bug-rewind2.c
│ │ │ │ ├── bug-rewind.c
│ │ │ │ ├── bug-ungetc2.c
│ │ │ │ ├── bug-ungetc3.c
│ │ │ │ ├── bug-ungetc4.c
│ │ │ │ ├── bug-ungetc.c
│ │ │ │ ├── bug-ungetwc1.c
│ │ │ │ ├── bug-ungetwc2.c
│ │ │ │ ├── bug-wfflush.c
│ │ │ │ ├── bug-wmemstream1.c
│ │ │ │ ├── bug-wsetpos.c
│ │ │ │ ├── clearerr.c
│ │ │ │ ├── clearerr_u.c
│ │ │ │ ├── Depend
│ │ │ │ ├── __fbufsize.c
│ │ │ │ ├── fcloseall.c
│ │ │ │ ├── feof.c
│ │ │ │ ├── feof_u.c
│ │ │ │ ├── ferror.c
│ │ │ │ ├── ferror_u.c
│ │ │ │ ├── filedoalloc.c
│ │ │ │ ├── fileno.c
│ │ │ │ ├── fileops.c
│ │ │ │ ├── __flbf.c
│ │ │ │ ├── fmemopen.c
│ │ │ │ ├── __fpending.c
│ │ │ │ ├── __fpurge.c
│ │ │ │ ├── fputc.c
│ │ │ │ ├── fputc_u.c
│ │ │ │ ├── fputwc.c
│ │ │ │ ├── fputwc_u.c
│ │ │ │ ├── __freadable.c
│ │ │ │ ├── __freading.c
│ │ │ │ ├── freopen64.c
│ │ │ │ ├── freopen.c
│ │ │ │ ├── fseek.c
│ │ │ │ ├── fseeko64.c
│ │ │ │ ├── fseeko.c
│ │ │ │ ├── __fsetlocking.c
│ │ │ │ ├── ftello64.c
│ │ │ │ ├── ftello.c
│ │ │ │ ├── fwide.c
│ │ │ │ ├── fwprintf.c
│ │ │ │ ├── __fwritable.c
│ │ │ │ ├── __fwriting.c
│ │ │ │ ├── fwscanf.c
│ │ │ │ ├── genops.c
│ │ │ │ ├── getc.c
│ │ │ │ ├── getchar.c
│ │ │ │ ├── getchar_u.c
│ │ │ │ ├── getc_u.c
│ │ │ │ ├── getwc.c
│ │ │ │ ├── getwchar.c
│ │ │ │ ├── getwchar_u.c
│ │ │ │ ├── getwc_u.c
│ │ │ │ ├── iofclose.c
│ │ │ │ ├── iofdopen.c
│ │ │ │ ├── iofflush.c
│ │ │ │ ├── iofflush_u.c
│ │ │ │ ├── iofgetpos64.c
│ │ │ │ ├── iofgetpos.c
│ │ │ │ ├── iofgets.c
│ │ │ │ ├── iofgets_u.c
│ │ │ │ ├── iofgetws.c
│ │ │ │ ├── iofgetws_u.c
│ │ │ │ ├── iofopen64.c
│ │ │ │ ├── iofopen.c
│ │ │ │ ├── iofopncook.c
│ │ │ │ ├── iofputs.c
│ │ │ │ ├── iofputs_u.c
│ │ │ │ ├── iofputws.c
│ │ │ │ ├── iofputws_u.c
│ │ │ │ ├── iofread.c
│ │ │ │ ├── iofread_u.c
│ │ │ │ ├── iofsetpos64.c
│ │ │ │ ├── iofsetpos.c
│ │ │ │ ├── ioftell.c
│ │ │ │ ├── iofwide.c
│ │ │ │ ├── iofwrite.c
│ │ │ │ ├── iofwrite_u.c
│ │ │ │ ├── iogetdelim.c
│ │ │ │ ├── iogetline.c
│ │ │ │ ├── iogets.c
│ │ │ │ ├── iogetwline.c
│ │ │ │ ├── iolibio.h
│ │ │ │ ├── iopadn.c
│ │ │ │ ├── iopopen.c
│ │ │ │ ├── ioputs.c
│ │ │ │ ├── ioseekoff.c
│ │ │ │ ├── ioseekpos.c
│ │ │ │ ├── iosetbuffer.c
│ │ │ │ ├── iosetvbuf.c
│ │ │ │ ├── ioungetc.c
│ │ │ │ ├── ioungetwc.c
│ │ │ │ ├── iovdprintf.c
│ │ │ │ ├── iovsprintf.c
│ │ │ │ ├── iovsscanf.c
│ │ │ │ ├── iovswscanf.c
│ │ │ │ ├── iowpadn.c
│ │ │ │ ├── libc_fatal.c
│ │ │ │ ├── libio.h
│ │ │ │ ├── libioP.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── memstream.c
│ │ │ │ ├── obprintf.c
│ │ │ │ ├── oldfileops.c
│ │ │ │ ├── oldiofclose.c
│ │ │ │ ├── oldiofdopen.c
│ │ │ │ ├── oldiofgetpos64.c
│ │ │ │ ├── oldiofgetpos.c
│ │ │ │ ├── oldiofopen.c
│ │ │ │ ├── oldiofsetpos64.c
│ │ │ │ ├── oldiofsetpos.c
│ │ │ │ ├── oldiopopen.c
│ │ │ │ ├── oldpclose.c
│ │ │ │ ├── oldstdfiles.c
│ │ │ │ ├── oldtmpfile.c
│ │ │ │ ├── pclose.c
│ │ │ │ ├── peekc.c
│ │ │ │ ├── putc.c
│ │ │ │ ├── putchar.c
│ │ │ │ ├── putchar_u.c
│ │ │ │ ├── putc_u.c
│ │ │ │ ├── putwc.c
│ │ │ │ ├── putwchar.c
│ │ │ │ ├── putwchar_u.c
│ │ │ │ ├── putwc_u.c
│ │ │ │ ├── rewind.c
│ │ │ │ ├── setbuf.c
│ │ │ │ ├── setlinebuf.c
│ │ │ │ ├── stdfiles.c
│ │ │ │ ├── stdio.c
│ │ │ │ ├── stdio.h
│ │ │ │ ├── strfile.h
│ │ │ │ ├── strops.c
│ │ │ │ ├── swprintf.c
│ │ │ │ ├── swscanf.c
│ │ │ │ ├── test-fmemopen.c
│ │ │ │ ├── test-freopen.c
│ │ │ │ ├── test-freopen.sh
│ │ │ │ ├── tst-atime.c
│ │ │ │ ├── tst-eof.c
│ │ │ │ ├── tst-ext2.c
│ │ │ │ ├── tst-ext.c
│ │ │ │ ├── tst-fgetwc.c
│ │ │ │ ├── tst-fgetwc.input
│ │ │ │ ├── tst-fgetws.c
│ │ │ │ ├── tst-fopenloc2.c
│ │ │ │ ├── tst-fopenloc.c
│ │ │ │ ├── tst-freopen.c
│ │ │ │ ├── tst_getwc.c
│ │ │ │ ├── tst_getwc.input
│ │ │ │ ├── tst-memstream1.c
│ │ │ │ ├── tst-memstream2.c
│ │ │ │ ├── tst-mmap2-eofsync.c
│ │ │ │ ├── tst-mmap-eofsync.c
│ │ │ │ ├── tst-mmap-fflushsync.c
│ │ │ │ ├── tst-mmap-offend.c
│ │ │ │ ├── tst-mmap-setvbuf.c
│ │ │ │ ├── tst-popen1.c
│ │ │ │ ├── tst_putwc.c
│ │ │ │ ├── tst-setvbuf1.c
│ │ │ │ ├── tst-sscanf.c
│ │ │ │ ├── tst_swprintf.c
│ │ │ │ ├── tst-swscanf.c
│ │ │ │ ├── tst_swscanf.c
│ │ │ │ ├── tst-ungetwc1.c
│ │ │ │ ├── tst-ungetwc2.c
│ │ │ │ ├── tst-widetext.c
│ │ │ │ ├── tst-widetext.input
│ │ │ │ ├── tst-wmemstream1.c
│ │ │ │ ├── tst-wmemstream2.c
│ │ │ │ ├── tst_wprintf2.c
│ │ │ │ ├── tst_wprintf.c
│ │ │ │ ├── tst_wscanf.c
│ │ │ │ ├── tst_wscanf.input
│ │ │ │ ├── vasprintf.c
│ │ │ │ ├── Versions
│ │ │ │ ├── vscanf.c
│ │ │ │ ├── vsnprintf.c
│ │ │ │ ├── vswprintf.c
│ │ │ │ ├── vwprintf.c
│ │ │ │ ├── vwscanf.c
│ │ │ │ ├── wfiledoalloc.c
│ │ │ │ ├── wfileops.c
│ │ │ │ ├── wgenops.c
│ │ │ │ ├── wmemstream.c
│ │ │ │ ├── wprintf.c
│ │ │ │ ├── wscanf.c
│ │ │ │ └── wstrops.c
│ │ │ ├── LICENSES
│ │ │ ├── locale
│ │ │ │ ├── bits
│ │ │ │ │ └── locale.h
│ │ │ │ ├── broken_cur_max.c
│ │ │ │ ├── C-address.c
│ │ │ │ ├── categories.def
│ │ │ │ ├── C-collate.c
│ │ │ │ ├── C-ctype.c
│ │ │ │ ├── C-identification.c
│ │ │ │ ├── C-measurement.c
│ │ │ │ ├── C-messages.c
│ │ │ │ ├── C-monetary.c
│ │ │ │ ├── C-name.c
│ │ │ │ ├── C_name.c
│ │ │ │ ├── C-numeric.c
│ │ │ │ ├── coll-lookup.c
│ │ │ │ ├── coll-lookup.h
│ │ │ │ ├── C-paper.c
│ │ │ │ ├── C-telephone.c
│ │ │ │ ├── C-time.c
│ │ │ │ ├── C-translit.h
│ │ │ │ ├── C-translit.h.in
│ │ │ │ ├── duplocale.c
│ │ │ │ ├── elem-hash.h
│ │ │ │ ├── findlocale.c
│ │ │ │ ├── freelocale.c
│ │ │ │ ├── gen-translit.pl
│ │ │ │ ├── global-locale.c
│ │ │ │ ├── hashval.h
│ │ │ │ ├── indigits.h
│ │ │ │ ├── indigitswc.h
│ │ │ │ ├── iso-3166.def
│ │ │ │ ├── iso-4217.def
│ │ │ │ ├── iso-639.def
│ │ │ │ ├── langinfo.h
│ │ │ │ ├── lc-address.c
│ │ │ │ ├── lc-collate.c
│ │ │ │ ├── lc-ctype.c
│ │ │ │ ├── lc-identification.c
│ │ │ │ ├── lc-measurement.c
│ │ │ │ ├── lc-messages.c
│ │ │ │ ├── lc-monetary.c
│ │ │ │ ├── lc-name.c
│ │ │ │ ├── lc-numeric.c
│ │ │ │ ├── lc-paper.c
│ │ │ │ ├── lc-telephone.c
│ │ │ │ ├── lc-time.c
│ │ │ │ ├── loadarchive.c
│ │ │ │ ├── loadlocale.c
│ │ │ │ ├── localeconv.c
│ │ │ │ ├── locale.h
│ │ │ │ ├── localeinfo.h
│ │ │ │ ├── localename.c
│ │ │ │ ├── locarchive.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── mb_cur_max.c
│ │ │ │ ├── newlocale.c
│ │ │ │ ├── nl_langinfo.c
│ │ │ │ ├── nl_langinfo_l.c
│ │ │ │ ├── outdigits.h
│ │ │ │ ├── outdigitswc.h
│ │ │ │ ├── programs
│ │ │ │ │ ├── 3level.h
│ │ │ │ │ ├── charmap.c
│ │ │ │ │ ├── charmap-dir.c
│ │ │ │ │ ├── charmap-dir.h
│ │ │ │ │ ├── charmap.h
│ │ │ │ │ ├── charmap-kw.gperf
│ │ │ │ │ ├── charmap-kw.h
│ │ │ │ │ ├── config.h
│ │ │ │ │ ├── ld-address.c
│ │ │ │ │ ├── ld-collate.c
│ │ │ │ │ ├── ld-ctype.c
│ │ │ │ │ ├── ld-identification.c
│ │ │ │ │ ├── ld-measurement.c
│ │ │ │ │ ├── ld-messages.c
│ │ │ │ │ ├── ld-monetary.c
│ │ │ │ │ ├── ld-name.c
│ │ │ │ │ ├── ld-numeric.c
│ │ │ │ │ ├── ld-paper.c
│ │ │ │ │ ├── ld-telephone.c
│ │ │ │ │ ├── ld-time.c
│ │ │ │ │ ├── linereader.c
│ │ │ │ │ ├── linereader.h
│ │ │ │ │ ├── locale.c
│ │ │ │ │ ├── localedef.c
│ │ │ │ │ ├── localedef.h
│ │ │ │ │ ├── locale-spec.c
│ │ │ │ │ ├── locarchive.c
│ │ │ │ │ ├── locfile.c
│ │ │ │ │ ├── locfile.h
│ │ │ │ │ ├── locfile-kw.gperf
│ │ │ │ │ ├── locfile-kw.h
│ │ │ │ │ ├── locfile-token.h
│ │ │ │ │ ├── repertoire.c
│ │ │ │ │ ├── repertoire.h
│ │ │ │ │ ├── simple-hash.c
│ │ │ │ │ ├── simple-hash.h
│ │ │ │ │ ├── xmalloc.c
│ │ │ │ │ └── xstrdup.c
│ │ │ │ ├── setlocale.c
│ │ │ │ ├── strlen-hash.h
│ │ │ │ ├── SYS_libc.c
│ │ │ │ ├── tst-C-locale.c
│ │ │ │ ├── tst-duplocale.c
│ │ │ │ ├── tst-locname.c
│ │ │ │ ├── uselocale.c
│ │ │ │ ├── Versions
│ │ │ │ ├── weight.h
│ │ │ │ ├── weightwc.h
│ │ │ │ ├── xlocale.c
│ │ │ │ └── xlocale.h
│ │ │ ├── localedata
│ │ │ │ ├── bug-iconv-trans.c
│ │ │ │ ├── bug-setlocale1.c
│ │ │ │ ├── bug-usesetlocale.c
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── charmaps
│ │ │ │ │ ├── ANSI_X3.110-1983
│ │ │ │ │ ├── ANSI_X3.4-1968
│ │ │ │ │ ├── ARMSCII-8
│ │ │ │ │ ├── ASMO_449
│ │ │ │ │ ├── BIG5
│ │ │ │ │ ├── BIG5-HKSCS
│ │ │ │ │ ├── BRF
│ │ │ │ │ ├── BS_4730
│ │ │ │ │ ├── BS_VIEWDATA
│ │ │ │ │ ├── CP10007
│ │ │ │ │ ├── CP1125
│ │ │ │ │ ├── CP1250
│ │ │ │ │ ├── CP1251
│ │ │ │ │ ├── CP1252
│ │ │ │ │ ├── CP1253
│ │ │ │ │ ├── CP1254
│ │ │ │ │ ├── CP1255
│ │ │ │ │ ├── CP1256
│ │ │ │ │ ├── CP1257
│ │ │ │ │ ├── CP1258
│ │ │ │ │ ├── CP737
│ │ │ │ │ ├── CP770
│ │ │ │ │ ├── CP771
│ │ │ │ │ ├── CP772
│ │ │ │ │ ├── CP773
│ │ │ │ │ ├── CP774
│ │ │ │ │ ├── CP775
│ │ │ │ │ ├── CP949
│ │ │ │ │ ├── CSA_Z243.4-1985-1
│ │ │ │ │ ├── CSA_Z243.4-1985-2
│ │ │ │ │ ├── CSA_Z243.4-1985-GR
│ │ │ │ │ ├── CSN_369103
│ │ │ │ │ ├── CWI
│ │ │ │ │ ├── DEC-MCS
│ │ │ │ │ ├── DIN_66003
│ │ │ │ │ ├── DS_2089
│ │ │ │ │ ├── EBCDIC-AT-DE
│ │ │ │ │ ├── EBCDIC-AT-DE-A
│ │ │ │ │ ├── EBCDIC-CA-FR
│ │ │ │ │ ├── EBCDIC-DK-NO
│ │ │ │ │ ├── EBCDIC-DK-NO-A
│ │ │ │ │ ├── EBCDIC-ES
│ │ │ │ │ ├── EBCDIC-ES-A
│ │ │ │ │ ├── EBCDIC-ES-S
│ │ │ │ │ ├── EBCDIC-FI-SE
│ │ │ │ │ ├── EBCDIC-FI-SE-A
│ │ │ │ │ ├── EBCDIC-FR
│ │ │ │ │ ├── EBCDIC-IS-FRISS
│ │ │ │ │ ├── EBCDIC-IT
│ │ │ │ │ ├── EBCDIC-PT
│ │ │ │ │ ├── EBCDIC-UK
│ │ │ │ │ ├── EBCDIC-US
│ │ │ │ │ ├── ECMA-CYRILLIC
│ │ │ │ │ ├── ES
│ │ │ │ │ ├── ES2
│ │ │ │ │ ├── EUC-JISX0213
│ │ │ │ │ ├── EUC-JP
│ │ │ │ │ ├── EUC-JP-MS
│ │ │ │ │ ├── EUC-KR
│ │ │ │ │ ├── EUC-TW
│ │ │ │ │ ├── GB18030
│ │ │ │ │ ├── GB_1988-80
│ │ │ │ │ ├── GB2312
│ │ │ │ │ ├── GBK
│ │ │ │ │ ├── GEORGIAN-ACADEMY
│ │ │ │ │ ├── GEORGIAN-PS
│ │ │ │ │ ├── GOST_19768-74
│ │ │ │ │ ├── GREEK7
│ │ │ │ │ ├── GREEK7-OLD
│ │ │ │ │ ├── GREEK-CCITT
│ │ │ │ │ ├── HP-GREEK8
│ │ │ │ │ ├── HP-ROMAN8
│ │ │ │ │ ├── HP-ROMAN9
│ │ │ │ │ ├── HP-THAI8
│ │ │ │ │ ├── HP-TURKISH8
│ │ │ │ │ ├── IBM037
│ │ │ │ │ ├── IBM038
│ │ │ │ │ ├── IBM1004
│ │ │ │ │ ├── IBM1026
│ │ │ │ │ ├── IBM1047
│ │ │ │ │ ├── IBM1124
│ │ │ │ │ ├── IBM1129
│ │ │ │ │ ├── IBM1132
│ │ │ │ │ ├── IBM1133
│ │ │ │ │ ├── IBM1160
│ │ │ │ │ ├── IBM1161
│ │ │ │ │ ├── IBM1162
│ │ │ │ │ ├── IBM1163
│ │ │ │ │ ├── IBM1164
│ │ │ │ │ ├── IBM256
│ │ │ │ │ ├── IBM273
│ │ │ │ │ ├── IBM274
│ │ │ │ │ ├── IBM275
│ │ │ │ │ ├── IBM277
│ │ │ │ │ ├── IBM278
│ │ │ │ │ ├── IBM280
│ │ │ │ │ ├── IBM281
│ │ │ │ │ ├── IBM284
│ │ │ │ │ ├── IBM285
│ │ │ │ │ ├── IBM290
│ │ │ │ │ ├── IBM297
│ │ │ │ │ ├── IBM420
│ │ │ │ │ ├── IBM423
│ │ │ │ │ ├── IBM424
│ │ │ │ │ ├── IBM437
│ │ │ │ │ ├── IBM500
│ │ │ │ │ ├── IBM850
│ │ │ │ │ ├── IBM851
│ │ │ │ │ ├── IBM852
│ │ │ │ │ ├── IBM855
│ │ │ │ │ ├── IBM856
│ │ │ │ │ ├── IBM857
│ │ │ │ │ ├── IBM860
│ │ │ │ │ ├── IBM861
│ │ │ │ │ ├── IBM862
│ │ │ │ │ ├── IBM863
│ │ │ │ │ ├── IBM864
│ │ │ │ │ ├── IBM865
│ │ │ │ │ ├── IBM866
│ │ │ │ │ ├── IBM866NAV
│ │ │ │ │ ├── IBM868
│ │ │ │ │ ├── IBM869
│ │ │ │ │ ├── IBM870
│ │ │ │ │ ├── IBM871
│ │ │ │ │ ├── IBM874
│ │ │ │ │ ├── IBM875
│ │ │ │ │ ├── IBM880
│ │ │ │ │ ├── IBM891
│ │ │ │ │ ├── IBM903
│ │ │ │ │ ├── IBM904
│ │ │ │ │ ├── IBM905
│ │ │ │ │ ├── IBM918
│ │ │ │ │ ├── IBM922
│ │ │ │ │ ├── IEC_P27-1
│ │ │ │ │ ├── INIS
│ │ │ │ │ ├── INIS-8
│ │ │ │ │ ├── INIS-CYRILLIC
│ │ │ │ │ ├── INVARIANT
│ │ │ │ │ ├── ISIRI-3342
│ │ │ │ │ ├── ISO_10367-BOX
│ │ │ │ │ ├── ISO_10646
│ │ │ │ │ ├── ISO_11548-1
│ │ │ │ │ ├── ISO_2033-1983
│ │ │ │ │ ├── ISO_5427
│ │ │ │ │ ├── ISO_5427-EXT
│ │ │ │ │ ├── ISO_5428
│ │ │ │ │ ├── ISO_646.BASIC
│ │ │ │ │ ├── ISO_646.IRV
│ │ │ │ │ ├── ISO_6937
│ │ │ │ │ ├── ISO_6937-2-25
│ │ │ │ │ ├── ISO_6937-2-ADD
│ │ │ │ │ ├── ISO-8859-1
│ │ │ │ │ ├── ISO-8859-10
│ │ │ │ │ ├── ISO-8859-11
│ │ │ │ │ ├── ISO-8859-13
│ │ │ │ │ ├── ISO-8859-14
│ │ │ │ │ ├── ISO-8859-15
│ │ │ │ │ ├── ISO-8859-16
│ │ │ │ │ ├── ISO_8859-1,GL
│ │ │ │ │ ├── ISO-8859-2
│ │ │ │ │ ├── ISO-8859-3
│ │ │ │ │ ├── ISO-8859-4
│ │ │ │ │ ├── ISO-8859-5
│ │ │ │ │ ├── ISO-8859-6
│ │ │ │ │ ├── ISO-8859-7
│ │ │ │ │ ├── ISO-8859-8
│ │ │ │ │ ├── ISO-8859-9
│ │ │ │ │ ├── ISO-8859-9E
│ │ │ │ │ ├── ISO_8859-SUPP
│ │ │ │ │ ├── ISO-IR-197
│ │ │ │ │ ├── ISO-IR-209
│ │ │ │ │ ├── ISO-IR-90
│ │ │ │ │ ├── IT
│ │ │ │ │ ├── JIS_C6220-1969-JP
│ │ │ │ │ ├── JIS_C6220-1969-RO
│ │ │ │ │ ├── JIS_C6229-1984-A
│ │ │ │ │ ├── JIS_C6229-1984-B
│ │ │ │ │ ├── JIS_C6229-1984-B-ADD
│ │ │ │ │ ├── JIS_C6229-1984-HAND
│ │ │ │ │ ├── JIS_C6229-1984-HAND-ADD
│ │ │ │ │ ├── JIS_C6229-1984-KANA
│ │ │ │ │ ├── JIS_X0201
│ │ │ │ │ ├── JOHAB
│ │ │ │ │ ├── JUS_I.B1.002
│ │ │ │ │ ├── JUS_I.B1.003-MAC
│ │ │ │ │ ├── JUS_I.B1.003-SERB
│ │ │ │ │ ├── KOI-8
│ │ │ │ │ ├── KOI8-R
│ │ │ │ │ ├── KOI8-RU
│ │ │ │ │ ├── KOI8-T
│ │ │ │ │ ├── KOI8-U
│ │ │ │ │ ├── KSC5636
│ │ │ │ │ ├── LATIN-GREEK
│ │ │ │ │ ├── LATIN-GREEK-1
│ │ │ │ │ ├── MAC-CENTRALEUROPE
│ │ │ │ │ ├── MAC-CYRILLIC
│ │ │ │ │ ├── MACINTOSH
│ │ │ │ │ ├── MAC-IS
│ │ │ │ │ ├── MAC-SAMI
│ │ │ │ │ ├── MAC-UK
│ │ │ │ │ ├── MIK
│ │ │ │ │ ├── MSZ_7795.3
│ │ │ │ │ ├── NATS-DANO
│ │ │ │ │ ├── NATS-DANO-ADD
│ │ │ │ │ ├── NATS-SEFI
│ │ │ │ │ ├── NATS-SEFI-ADD
│ │ │ │ │ ├── NC_NC00-10
│ │ │ │ │ ├── NEXTSTEP
│ │ │ │ │ ├── NF_Z_62-010
│ │ │ │ │ ├── NF_Z_62-010_1973
│ │ │ │ │ ├── NS_4551-1
│ │ │ │ │ ├── NS_4551-2
│ │ │ │ │ ├── PT
│ │ │ │ │ ├── PT154
│ │ │ │ │ ├── PT2
│ │ │ │ │ ├── RK1048
│ │ │ │ │ ├── SAMI
│ │ │ │ │ ├── SAMI-WS2
│ │ │ │ │ ├── SEN_850200_B
│ │ │ │ │ ├── SEN_850200_C
│ │ │ │ │ ├── SHIFT_JIS
│ │ │ │ │ ├── SHIFT_JISX0213
│ │ │ │ │ ├── T.101-G2
│ │ │ │ │ ├── T.61-7BIT
│ │ │ │ │ ├── T.61-8BIT
│ │ │ │ │ ├── TCVN5712-1
│ │ │ │ │ ├── TIS-620
│ │ │ │ │ ├── TSCII
│ │ │ │ │ ├── UTF-8
│ │ │ │ │ ├── VIDEOTEX-SUPPL
│ │ │ │ │ ├── VISCII
│ │ │ │ │ └── WINDOWS-31J
│ │ │ │ ├── CHECKSUMS
│ │ │ │ ├── collate-test.c
│ │ │ │ ├── cs_CZ.in
│ │ │ │ ├── da_DK.in
│ │ │ │ ├── de_DE.in
│ │ │ │ ├── Depend
│ │ │ │ ├── dump-ctype.c
│ │ │ │ ├── en_US.in
│ │ │ │ ├── fr_FR.in
│ │ │ │ ├── gen-locale.sh
│ │ │ │ ├── gen-unicode-ctype.c
│ │ │ │ ├── hr_HR.in
│ │ │ │ ├── locales
│ │ │ │ │ ├── aa_DJ
│ │ │ │ │ ├── aa_ER
│ │ │ │ │ ├── aa_ER@saaho
│ │ │ │ │ ├── aa_ET
│ │ │ │ │ ├── af_ZA
│ │ │ │ │ ├── am_ET
│ │ │ │ │ ├── an_ES
│ │ │ │ │ ├── ar_AE
│ │ │ │ │ ├── ar_BH
│ │ │ │ │ ├── ar_DZ
│ │ │ │ │ ├── ar_EG
│ │ │ │ │ ├── ar_IN
│ │ │ │ │ ├── ar_IQ
│ │ │ │ │ ├── ar_JO
│ │ │ │ │ ├── ar_KW
│ │ │ │ │ ├── ar_LB
│ │ │ │ │ ├── ar_LY
│ │ │ │ │ ├── ar_MA
│ │ │ │ │ ├── ar_OM
│ │ │ │ │ ├── ar_QA
│ │ │ │ │ ├── ar_SA
│ │ │ │ │ ├── ar_SD
│ │ │ │ │ ├── ar_SY
│ │ │ │ │ ├── ar_TN
│ │ │ │ │ ├── ar_YE
│ │ │ │ │ ├── as_IN
│ │ │ │ │ ├── ast_ES
│ │ │ │ │ ├── az_AZ
│ │ │ │ │ ├── be_BY
│ │ │ │ │ ├── be_BY@latin
│ │ │ │ │ ├── bem_ZM
│ │ │ │ │ ├── ber_DZ
│ │ │ │ │ ├── ber_MA
│ │ │ │ │ ├── bg_BG
│ │ │ │ │ ├── bho_IN
│ │ │ │ │ ├── bn_BD
│ │ │ │ │ ├── bn_IN
│ │ │ │ │ ├── bo_CN
│ │ │ │ │ ├── bo_IN
│ │ │ │ │ ├── br_FR
│ │ │ │ │ ├── br_FR@euro
│ │ │ │ │ ├── brx_IN
│ │ │ │ │ ├── bs_BA
│ │ │ │ │ ├── byn_ER
│ │ │ │ │ ├── ca_AD
│ │ │ │ │ ├── ca_ES
│ │ │ │ │ ├── ca_ES@euro
│ │ │ │ │ ├── ca_FR
│ │ │ │ │ ├── ca_IT
│ │ │ │ │ ├── crh_UA
│ │ │ │ │ ├── csb_PL
│ │ │ │ │ ├── cs_CZ
│ │ │ │ │ ├── cv_RU
│ │ │ │ │ ├── cy_GB
│ │ │ │ │ ├── da_DK
│ │ │ │ │ ├── de_AT
│ │ │ │ │ ├── de_AT@euro
│ │ │ │ │ ├── de_BE
│ │ │ │ │ ├── de_BE@euro
│ │ │ │ │ ├── de_CH
│ │ │ │ │ ├── de_DE
│ │ │ │ │ ├── de_DE@euro
│ │ │ │ │ ├── de_LU
│ │ │ │ │ ├── de_LU@euro
│ │ │ │ │ ├── dv_MV
│ │ │ │ │ ├── dz_BT
│ │ │ │ │ ├── el_CY
│ │ │ │ │ ├── el_GR
│ │ │ │ │ ├── el_GR@euro
│ │ │ │ │ ├── en_AG
│ │ │ │ │ ├── en_AU
│ │ │ │ │ ├── en_BW
│ │ │ │ │ ├── en_CA
│ │ │ │ │ ├── en_DK
│ │ │ │ │ ├── en_GB
│ │ │ │ │ ├── en_HK
│ │ │ │ │ ├── en_IE
│ │ │ │ │ ├── en_IE@euro
│ │ │ │ │ ├── en_IN
│ │ │ │ │ ├── en_NG
│ │ │ │ │ ├── en_NZ
│ │ │ │ │ ├── en_PH
│ │ │ │ │ ├── en_SG
│ │ │ │ │ ├── en_US
│ │ │ │ │ ├── en_ZA
│ │ │ │ │ ├── en_ZM
│ │ │ │ │ ├── en_ZW
│ │ │ │ │ ├── es_AR
│ │ │ │ │ ├── es_BO
│ │ │ │ │ ├── es_CL
│ │ │ │ │ ├── es_CO
│ │ │ │ │ ├── es_CR
│ │ │ │ │ ├── es_CU
│ │ │ │ │ ├── es_DO
│ │ │ │ │ ├── es_EC
│ │ │ │ │ ├── es_ES
│ │ │ │ │ ├── es_ES@euro
│ │ │ │ │ ├── es_GT
│ │ │ │ │ ├── es_HN
│ │ │ │ │ ├── es_MX
│ │ │ │ │ ├── es_NI
│ │ │ │ │ ├── es_PA
│ │ │ │ │ ├── es_PE
│ │ │ │ │ ├── es_PR
│ │ │ │ │ ├── es_PY
│ │ │ │ │ ├── es_SV
│ │ │ │ │ ├── es_US
│ │ │ │ │ ├── es_UY
│ │ │ │ │ ├── es_VE
│ │ │ │ │ ├── et_EE
│ │ │ │ │ ├── eu_ES
│ │ │ │ │ ├── eu_ES@euro
│ │ │ │ │ ├── fa_IR
│ │ │ │ │ ├── ff_SN
│ │ │ │ │ ├── fi_FI
│ │ │ │ │ ├── fi_FI@euro
│ │ │ │ │ ├── fil_PH
│ │ │ │ │ ├── fo_FO
│ │ │ │ │ ├── fr_BE
│ │ │ │ │ ├── fr_BE@euro
│ │ │ │ │ ├── fr_CA
│ │ │ │ │ ├── fr_CH
│ │ │ │ │ ├── fr_FR
│ │ │ │ │ ├── fr_FR@euro
│ │ │ │ │ ├── fr_LU
│ │ │ │ │ ├── fr_LU@euro
│ │ │ │ │ ├── fur_IT
│ │ │ │ │ ├── fy_DE
│ │ │ │ │ ├── fy_NL
│ │ │ │ │ ├── ga_IE
│ │ │ │ │ ├── ga_IE@euro
│ │ │ │ │ ├── gd_GB
│ │ │ │ │ ├── gez_ER
│ │ │ │ │ ├── gez_ER@abegede
│ │ │ │ │ ├── gez_ET
│ │ │ │ │ ├── gez_ET@abegede
│ │ │ │ │ ├── gl_ES
│ │ │ │ │ ├── gl_ES@euro
│ │ │ │ │ ├── gu_IN
│ │ │ │ │ ├── gv_GB
│ │ │ │ │ ├── ha_NG
│ │ │ │ │ ├── he_IL
│ │ │ │ │ ├── hi_IN
│ │ │ │ │ ├── hne_IN
│ │ │ │ │ ├── hr_HR
│ │ │ │ │ ├── hsb_DE
│ │ │ │ │ ├── ht_HT
│ │ │ │ │ ├── hu_HU
│ │ │ │ │ ├── hy_AM
│ │ │ │ │ ├── i18n
│ │ │ │ │ ├── id_ID
│ │ │ │ │ ├── ig_NG
│ │ │ │ │ ├── ik_CA
│ │ │ │ │ ├── is_IS
│ │ │ │ │ ├── iso14651_t1
│ │ │ │ │ ├── iso14651_t1_common
│ │ │ │ │ ├── iso14651_t1_pinyin
│ │ │ │ │ ├── it_CH
│ │ │ │ │ ├── it_IT
│ │ │ │ │ ├── it_IT@euro
│ │ │ │ │ ├── iu_CA
│ │ │ │ │ ├── iw_IL
│ │ │ │ │ ├── ja_JP
│ │ │ │ │ ├── ka_GE
│ │ │ │ │ ├── kk_KZ
│ │ │ │ │ ├── kl_GL
│ │ │ │ │ ├── km_KH
│ │ │ │ │ ├── kn_IN
│ │ │ │ │ ├── kok_IN
│ │ │ │ │ ├── ko_KR
│ │ │ │ │ ├── ks_IN
│ │ │ │ │ ├── ks_IN@devanagari
│ │ │ │ │ ├── ku_TR
│ │ │ │ │ ├── kw_GB
│ │ │ │ │ ├── ky_KG
│ │ │ │ │ ├── lb_LU
│ │ │ │ │ ├── lg_UG
│ │ │ │ │ ├── li_BE
│ │ │ │ │ ├── lij_IT
│ │ │ │ │ ├── li_NL
│ │ │ │ │ ├── lo_LA
│ │ │ │ │ ├── lt_LT
│ │ │ │ │ ├── lv_LV
│ │ │ │ │ ├── mag_IN
│ │ │ │ │ ├── mai_IN
│ │ │ │ │ ├── mg_MG
│ │ │ │ │ ├── mhr_RU
│ │ │ │ │ ├── mi_NZ
│ │ │ │ │ ├── mk_MK
│ │ │ │ │ ├── ml_IN
│ │ │ │ │ ├── mn_MN
│ │ │ │ │ ├── mr_IN
│ │ │ │ │ ├── ms_MY
│ │ │ │ │ ├── mt_MT
│ │ │ │ │ ├── my_MM
│ │ │ │ │ ├── nan_TW@latin
│ │ │ │ │ ├── nb_NO
│ │ │ │ │ ├── nds_DE
│ │ │ │ │ ├── nds_NL
│ │ │ │ │ ├── ne_NP
│ │ │ │ │ ├── nl_AW
│ │ │ │ │ ├── nl_BE
│ │ │ │ │ ├── nl_BE@euro
│ │ │ │ │ ├── nl_NL
│ │ │ │ │ ├── nl_NL@euro
│ │ │ │ │ ├── nn_NO
│ │ │ │ │ ├── nr_ZA
│ │ │ │ │ ├── nso_ZA
│ │ │ │ │ ├── oc_FR
│ │ │ │ │ ├── om_ET
│ │ │ │ │ ├── om_KE
│ │ │ │ │ ├── or_IN
│ │ │ │ │ ├── os_RU
│ │ │ │ │ ├── pa_IN
│ │ │ │ │ ├── pap_AN
│ │ │ │ │ ├── pa_PK
│ │ │ │ │ ├── pl_PL
│ │ │ │ │ ├── POSIX
│ │ │ │ │ ├── ps_AF
│ │ │ │ │ ├── pt_BR
│ │ │ │ │ ├── pt_PT
│ │ │ │ │ ├── pt_PT@euro
│ │ │ │ │ ├── ro_RO
│ │ │ │ │ ├── ru_RU
│ │ │ │ │ ├── ru_UA
│ │ │ │ │ ├── rw_RW
│ │ │ │ │ ├── sa_IN
│ │ │ │ │ ├── sc_IT
│ │ │ │ │ ├── sd_IN
│ │ │ │ │ ├── sd_IN@devanagari
│ │ │ │ │ ├── se_NO
│ │ │ │ │ ├── shs_CA
│ │ │ │ │ ├── sid_ET
│ │ │ │ │ ├── si_LK
│ │ │ │ │ ├── sk_SK
│ │ │ │ │ ├── sl_SI
│ │ │ │ │ ├── so_DJ
│ │ │ │ │ ├── so_ET
│ │ │ │ │ ├── so_KE
│ │ │ │ │ ├── so_SO
│ │ │ │ │ ├── sq_AL
│ │ │ │ │ ├── sq_MK
│ │ │ │ │ ├── sr_ME
│ │ │ │ │ ├── sr_RS
│ │ │ │ │ ├── sr_RS@latin
│ │ │ │ │ ├── ss_ZA
│ │ │ │ │ ├── st_ZA
│ │ │ │ │ ├── sv_FI
│ │ │ │ │ ├── sv_FI@euro
│ │ │ │ │ ├── sv_SE
│ │ │ │ │ ├── sw_KE
│ │ │ │ │ ├── sw_TZ
│ │ │ │ │ ├── ta_IN
│ │ │ │ │ ├── ta_LK
│ │ │ │ │ ├── te_IN
│ │ │ │ │ ├── tg_TJ
│ │ │ │ │ ├── th_TH
│ │ │ │ │ ├── ti_ER
│ │ │ │ │ ├── ti_ET
│ │ │ │ │ ├── tig_ER
│ │ │ │ │ ├── tk_TM
│ │ │ │ │ ├── tl_PH
│ │ │ │ │ ├── tn_ZA
│ │ │ │ │ ├── translit_circle
│ │ │ │ │ ├── translit_cjk_compat
│ │ │ │ │ ├── translit_cjk_variants
│ │ │ │ │ ├── translit_combining
│ │ │ │ │ ├── translit_compat
│ │ │ │ │ ├── translit_font
│ │ │ │ │ ├── translit_fraction
│ │ │ │ │ ├── translit_hangul
│ │ │ │ │ ├── translit_narrow
│ │ │ │ │ ├── translit_neutral
│ │ │ │ │ ├── translit_small
│ │ │ │ │ ├── translit_wide
│ │ │ │ │ ├── tr_CY
│ │ │ │ │ ├── tr_TR
│ │ │ │ │ ├── ts_ZA
│ │ │ │ │ ├── tt_RU
│ │ │ │ │ ├── tt_RU@iqtelif
│ │ │ │ │ ├── ug_CN
│ │ │ │ │ ├── uk_UA
│ │ │ │ │ ├── unm_US
│ │ │ │ │ ├── ur_IN
│ │ │ │ │ ├── ur_PK
│ │ │ │ │ ├── uz_UZ
│ │ │ │ │ ├── uz_UZ@cyrillic
│ │ │ │ │ ├── ve_ZA
│ │ │ │ │ ├── vi_VN
│ │ │ │ │ ├── wa_BE
│ │ │ │ │ ├── wa_BE@euro
│ │ │ │ │ ├── wae_CH
│ │ │ │ │ ├── wal_ET
│ │ │ │ │ ├── wo_SN
│ │ │ │ │ ├── xh_ZA
│ │ │ │ │ ├── yi_US
│ │ │ │ │ ├── yo_NG
│ │ │ │ │ ├── yue_HK
│ │ │ │ │ ├── zh_CN
│ │ │ │ │ ├── zh_HK
│ │ │ │ │ ├── zh_SG
│ │ │ │ │ ├── zh_TW
│ │ │ │ │ └── zu_ZA
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── show-ucs-data.c
│ │ │ │ ├── si_LK.in
│ │ │ │ ├── sort-test.sh
│ │ │ │ ├── SUPPORTED
│ │ │ │ ├── sv_SE.in
│ │ │ │ ├── tests
│ │ │ │ │ ├── test1.cm
│ │ │ │ │ ├── test1.def
│ │ │ │ │ ├── test2.cm
│ │ │ │ │ ├── test2.def
│ │ │ │ │ ├── test3.cm
│ │ │ │ │ ├── test3.def
│ │ │ │ │ ├── test4.cm
│ │ │ │ │ ├── test4.def
│ │ │ │ │ ├── test5.cm
│ │ │ │ │ ├── test5.def
│ │ │ │ │ ├── test5.ds
│ │ │ │ │ ├── test6.c
│ │ │ │ │ ├── test6.cm
│ │ │ │ │ ├── test6.def
│ │ │ │ │ ├── test6.ds
│ │ │ │ │ ├── test7.cm
│ │ │ │ │ ├── test7.def
│ │ │ │ │ └── trans.def
│ │ │ │ ├── tests-mbwc
│ │ │ │ │ ├── dat_iswalnum.c
│ │ │ │ │ ├── dat_iswalpha.c
│ │ │ │ │ ├── dat_iswcntrl.c
│ │ │ │ │ ├── dat_iswctype.c
│ │ │ │ │ ├── dat_iswdigit.c
│ │ │ │ │ ├── dat_isw-funcs.h
│ │ │ │ │ ├── dat_iswgraph.c
│ │ │ │ │ ├── dat_iswlower.c
│ │ │ │ │ ├── dat_iswprint.c
│ │ │ │ │ ├── dat_iswpunct.c
│ │ │ │ │ ├── dat_iswspace.c
│ │ │ │ │ ├── dat_iswupper.c
│ │ │ │ │ ├── dat_iswxdigit.c
│ │ │ │ │ ├── dat_mblen.c
│ │ │ │ │ ├── dat_mbrlen.c
│ │ │ │ │ ├── dat_mbrtowc.c
│ │ │ │ │ ├── dat_mbsrtowcs.c
│ │ │ │ │ ├── dat_mbstowcs.c
│ │ │ │ │ ├── dat_mbtowc.c
│ │ │ │ │ ├── dat_strcoll.c
│ │ │ │ │ ├── dat_strfmon.c
│ │ │ │ │ ├── dat_strxfrm.c
│ │ │ │ │ ├── dat_swscanf.c
│ │ │ │ │ ├── dat_towctrans.c
│ │ │ │ │ ├── dat_tow-funcs.h
│ │ │ │ │ ├── dat_towlower.c
│ │ │ │ │ ├── dat_towupper.c
│ │ │ │ │ ├── dat_wcrtomb.c
│ │ │ │ │ ├── dat_wcscat.c
│ │ │ │ │ ├── dat_wcschr.c
│ │ │ │ │ ├── dat_wcscmp.c
│ │ │ │ │ ├── dat_wcscoll.c
│ │ │ │ │ ├── dat_wcscpy.c
│ │ │ │ │ ├── dat_wcscspn.c
│ │ │ │ │ ├── dat_wcslen.c
│ │ │ │ │ ├── dat_wcsncat.c
│ │ │ │ │ ├── dat_wcsncmp.c
│ │ │ │ │ ├── dat_wcsncpy.c
│ │ │ │ │ ├── dat_wcspbrk.c
│ │ │ │ │ ├── dat_wcsrtombs.c
│ │ │ │ │ ├── dat_wcsspn.c
│ │ │ │ │ ├── dat_wcsstr.c
│ │ │ │ │ ├── dat_wcstod.c
│ │ │ │ │ ├── dat_wcstok.c
│ │ │ │ │ ├── dat_wcstombs.c
│ │ │ │ │ ├── dat_wcswidth.c
│ │ │ │ │ ├── dat_wcsxfrm.c
│ │ │ │ │ ├── dat_wctob.c
│ │ │ │ │ ├── dat_wctomb.c
│ │ │ │ │ ├── dat_wctrans.c
│ │ │ │ │ ├── dat_wctype.c
│ │ │ │ │ ├── dat_wcwidth.c
│ │ │ │ │ ├── tgn_funcdef.h
│ │ │ │ │ ├── tgn_locdef.h
│ │ │ │ │ ├── tsp_common.c
│ │ │ │ │ ├── tst_funcs.h
│ │ │ │ │ ├── tst_iswalnum.c
│ │ │ │ │ ├── tst_iswalpha.c
│ │ │ │ │ ├── tst_iswcntrl.c
│ │ │ │ │ ├── tst_iswctype.c
│ │ │ │ │ ├── tst_iswdigit.c
│ │ │ │ │ ├── tst_iswgraph.c
│ │ │ │ │ ├── tst_iswlower.c
│ │ │ │ │ ├── tst_iswprint.c
│ │ │ │ │ ├── tst_iswpunct.c
│ │ │ │ │ ├── tst_iswspace.c
│ │ │ │ │ ├── tst_iswupper.c
│ │ │ │ │ ├── tst_iswxdigit.c
│ │ │ │ │ ├── tst_mblen.c
│ │ │ │ │ ├── tst_mbrlen.c
│ │ │ │ │ ├── tst_mbrtowc.c
│ │ │ │ │ ├── tst_mbsrtowcs.c
│ │ │ │ │ ├── tst_mbstowcs.c
│ │ │ │ │ ├── tst_mbtowc.c
│ │ │ │ │ ├── tst_strcoll.c
│ │ │ │ │ ├── tst_strfmon.c
│ │ │ │ │ ├── tst_strxfrm.c
│ │ │ │ │ ├── tst_swscanf.c
│ │ │ │ │ ├── tst_towctrans.c
│ │ │ │ │ ├── tst_towlower.c
│ │ │ │ │ ├── tst_towupper.c
│ │ │ │ │ ├── tst_types.h
│ │ │ │ │ ├── tst_wcrtomb.c
│ │ │ │ │ ├── tst_wcscat.c
│ │ │ │ │ ├── tst_wcschr.c
│ │ │ │ │ ├── tst_wcscmp.c
│ │ │ │ │ ├── tst_wcscoll.c
│ │ │ │ │ ├── tst_wcscpy.c
│ │ │ │ │ ├── tst_wcscspn.c
│ │ │ │ │ ├── tst_wcslen.c
│ │ │ │ │ ├── tst_wcsncat.c
│ │ │ │ │ ├── tst_wcsncmp.c
│ │ │ │ │ ├── tst_wcsncpy.c
│ │ │ │ │ ├── tst_wcspbrk.c
│ │ │ │ │ ├── tst_wcsrtombs.c
│ │ │ │ │ ├── tst_wcsspn.c
│ │ │ │ │ ├── tst_wcsstr.c
│ │ │ │ │ ├── tst_wcstod.c
│ │ │ │ │ ├── tst_wcstok.c
│ │ │ │ │ ├── tst_wcstombs.c
│ │ │ │ │ ├── tst_wcswidth.c
│ │ │ │ │ ├── tst_wcsxfrm.c
│ │ │ │ │ ├── tst_wctob.c
│ │ │ │ │ ├── tst_wctomb.c
│ │ │ │ │ ├── tst_wctrans.c
│ │ │ │ │ ├── tst_wctype.c
│ │ │ │ │ └── tst_wcwidth.c
│ │ │ │ ├── th_TH.in
│ │ │ │ ├── tr_TR.in
│ │ │ │ ├── tst-ctype.c
│ │ │ │ ├── tst-ctype-de_DE.ISO-8859-1.in
│ │ │ │ ├── tst-ctype.sh
│ │ │ │ ├── tst-digits.c
│ │ │ │ ├── tst-fmon.c
│ │ │ │ ├── tst-fmon.data
│ │ │ │ ├── tst-fmon-locales
│ │ │ │ │ ├── tstfmon_n01y12
│ │ │ │ │ ├── tstfmon_n02n40
│ │ │ │ │ ├── tstfmon_n10y31
│ │ │ │ │ ├── tstfmon_n11y41
│ │ │ │ │ ├── tstfmon_n12y11
│ │ │ │ │ ├── tstfmon_n20n32
│ │ │ │ │ ├── tstfmon_n30y20
│ │ │ │ │ ├── tstfmon_n41n00
│ │ │ │ │ ├── tstfmon_y01y10
│ │ │ │ │ ├── tstfmon_y02n22
│ │ │ │ │ ├── tstfmon_y22n42
│ │ │ │ │ ├── tstfmon_y30y21
│ │ │ │ │ ├── tstfmon_y32n31
│ │ │ │ │ ├── tstfmon_y40y00
│ │ │ │ │ └── tstfmon_y42n21
│ │ │ │ ├── tst-fmon.sh
│ │ │ │ ├── tst-langinfo.c
│ │ │ │ ├── tst-langinfo.sh
│ │ │ │ ├── tst-leaks.c
│ │ │ │ ├── tst-locale.sh
│ │ │ │ ├── tst-mbswcs1.c
│ │ │ │ ├── tst-mbswcs2.c
│ │ │ │ ├── tst-mbswcs3.c
│ │ │ │ ├── tst-mbswcs4.c
│ │ │ │ ├── tst-mbswcs5.c
│ │ │ │ ├── tst-mbswcs6.c
│ │ │ │ ├── tst-mbswcs.sh
│ │ │ │ ├── tst-numeric.c
│ │ │ │ ├── tst-numeric.data
│ │ │ │ ├── tst-numeric.sh
│ │ │ │ ├── tst-rpmatch.c
│ │ │ │ ├── tst-rpmatch.sh
│ │ │ │ ├── tst-setlocale2.c
│ │ │ │ ├── tst-setlocale.c
│ │ │ │ ├── tst-sscanf.c
│ │ │ │ ├── tst-strfmon1.c
│ │ │ │ ├── tst-trans.c
│ │ │ │ ├── tst-trans.sh
│ │ │ │ ├── tst-wctype.c
│ │ │ │ ├── tst-wctype.input
│ │ │ │ ├── tst-wctype.sh
│ │ │ │ ├── tst-xlocale1.c
│ │ │ │ ├── tst-xlocale2.c
│ │ │ │ └── xfrm-test.c
│ │ │ ├── login
│ │ │ │ ├── endutxent.c
│ │ │ │ ├── forkpty.c
│ │ │ │ ├── getpt.c
│ │ │ │ ├── getutent.c
│ │ │ │ ├── getutent_r.c
│ │ │ │ ├── getutid.c
│ │ │ │ ├── getutid_r.c
│ │ │ │ ├── getutline.c
│ │ │ │ ├── getutline_r.c
│ │ │ │ ├── getutmp.c
│ │ │ │ ├── getutmpx.c
│ │ │ │ ├── getutxent.c
│ │ │ │ ├── getutxid.c
│ │ │ │ ├── getutxline.c
│ │ │ │ ├── grantpt.c
│ │ │ │ ├── lastlog.h
│ │ │ │ ├── login.c
│ │ │ │ ├── login_tty.c
│ │ │ │ ├── logout.c
│ │ │ │ ├── logwtmp.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── openpty.c
│ │ │ │ ├── programs
│ │ │ │ │ ├── pt_chown.c
│ │ │ │ │ └── utmpdump.c
│ │ │ │ ├── ptsname.c
│ │ │ │ ├── pty.h
│ │ │ │ ├── pututxline.c
│ │ │ │ ├── setutxent.c
│ │ │ │ ├── tst-grantpt.c
│ │ │ │ ├── tst-utmp.c
│ │ │ │ ├── tst-utmpx.c
│ │ │ │ ├── unlockpt.c
│ │ │ │ ├── updwtmp.c
│ │ │ │ ├── updwtmpx.c
│ │ │ │ ├── utmp_file.c
│ │ │ │ ├── utmp.h
│ │ │ │ ├── utmpname.c
│ │ │ │ ├── utmp-private.h
│ │ │ │ ├── utmpxname.c
│ │ │ │ └── Versions
│ │ │ ├── mach
│ │ │ │ ├── devstream.c
│ │ │ │ ├── err_boot.sub
│ │ │ │ ├── err_ipc.sub
│ │ │ │ ├── err_kern.sub
│ │ │ │ ├── err_mach.sub
│ │ │ │ ├── error_compat.c
│ │ │ │ ├── errorlib.h
│ │ │ │ ├── err_server.sub
│ │ │ │ ├── errstring.c
│ │ │ │ ├── errsystems.awk
│ │ │ │ ├── err_us.sub
│ │ │ │ ├── lock-intern.h
│ │ │ │ ├── mach
│ │ │ │ │ ├── error.h
│ │ │ │ │ ├── mach.h
│ │ │ │ │ ├── mach_traps.h
│ │ │ │ │ └── mig_support.h
│ │ │ │ ├── mach_error.c
│ │ │ │ ├── mach_error.h
│ │ │ │ ├── mach.h
│ │ │ │ ├── mach_init.c
│ │ │ │ ├── mach_init.h
│ │ │ │ ├── Machrules
│ │ │ │ ├── Makefile
│ │ │ │ ├── mig-alloc.c
│ │ │ │ ├── mig-dealloc.c
│ │ │ │ ├── mig-reply.c
│ │ │ │ ├── mig_strncpy.c
│ │ │ │ ├── msg.c
│ │ │ │ ├── msg-destroy.c
│ │ │ │ ├── msgserver.c
│ │ │ │ ├── mutex-init.c
│ │ │ │ ├── mutex-solid.c
│ │ │ │ ├── setup-thread.c
│ │ │ │ ├── shortcut.awk
│ │ │ │ ├── spin-lock.c
│ │ │ │ ├── spin-lock.h
│ │ │ │ ├── spin-solid.c
│ │ │ │ ├── syscalls.awk
│ │ │ │ └── Versions
│ │ │ ├── Makeconfig
│ │ │ ├── Makefile
│ │ │ ├── Makefile.in
│ │ │ ├── Makerules
│ │ │ ├── malloc
│ │ │ │ ├── arena.c
│ │ │ │ ├── Depend
│ │ │ │ ├── hooks.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mallocbug.c
│ │ │ │ ├── malloc.c
│ │ │ │ ├── malloc.h
│ │ │ │ ├── mcheck.c
│ │ │ │ ├── mcheck.h
│ │ │ │ ├── mcheck-init.c
│ │ │ │ ├── memusage.c
│ │ │ │ ├── memusage.sh
│ │ │ │ ├── memusagestat.c
│ │ │ │ ├── morecore.c
│ │ │ │ ├── mtrace.c
│ │ │ │ ├── mtrace.pl
│ │ │ │ ├── obstack.c
│ │ │ │ ├── obstack.h
│ │ │ │ ├── set-freeres.c
│ │ │ │ ├── thread-freeres.c
│ │ │ │ ├── tst-calloc.c
│ │ │ │ ├── tst-malloc.c
│ │ │ │ ├── tst-mallocfork.c
│ │ │ │ ├── tst-mallocstate.c
│ │ │ │ ├── tst-mcheck.c
│ │ │ │ ├── tst-mtrace.c
│ │ │ │ ├── tst-mtrace.sh
│ │ │ │ ├── tst-obstack.c
│ │ │ │ ├── tst-trim1.c
│ │ │ │ ├── tst-valloc.c
│ │ │ │ └── Versions
│ │ │ ├── manual
│ │ │ │ ├── argp.texi
│ │ │ │ ├── arith.texi
│ │ │ │ ├── charset.texi
│ │ │ │ ├── conf.texi
│ │ │ │ ├── contrib.texi
│ │ │ │ ├── creature.texi
│ │ │ │ ├── crypt.texi
│ │ │ │ ├── ctype.texi
│ │ │ │ ├── debug.texi
│ │ │ │ ├── dir
│ │ │ │ ├── errno.texi
│ │ │ │ ├── examples
│ │ │ │ │ ├── add.c
│ │ │ │ │ ├── argp-ex1.c
│ │ │ │ │ ├── argp-ex2.c
│ │ │ │ │ ├── argp-ex3.c
│ │ │ │ │ ├── argp-ex4.c
│ │ │ │ │ ├── atexit.c
│ │ │ │ │ ├── db.c
│ │ │ │ │ ├── dir2.c
│ │ │ │ │ ├── dir.c
│ │ │ │ │ ├── execinfo.c
│ │ │ │ │ ├── filecli.c
│ │ │ │ │ ├── filesrv.c
│ │ │ │ │ ├── fmtmsgexpl.c
│ │ │ │ │ ├── genpass.c
│ │ │ │ │ ├── inetcli.c
│ │ │ │ │ ├── inetsrv.c
│ │ │ │ │ ├── isockad.c
│ │ │ │ │ ├── longopt.c
│ │ │ │ │ ├── memopen.c
│ │ │ │ │ ├── memstrm.c
│ │ │ │ │ ├── mkfsock.c
│ │ │ │ │ ├── mkisock.c
│ │ │ │ │ ├── mygetpass.c
│ │ │ │ │ ├── pipe.c
│ │ │ │ │ ├── popen.c
│ │ │ │ │ ├── README
│ │ │ │ │ ├── rprintf.c
│ │ │ │ │ ├── search.c
│ │ │ │ │ ├── select.c
│ │ │ │ │ ├── setjmp.c
│ │ │ │ │ ├── sigh1.c
│ │ │ │ │ ├── sigusr.c
│ │ │ │ │ ├── stpcpy.c
│ │ │ │ │ ├── strdupa.c
│ │ │ │ │ ├── strftim.c
│ │ │ │ │ ├── strncat.c
│ │ │ │ │ ├── subopt.c
│ │ │ │ │ ├── swapcontext.c
│ │ │ │ │ ├── termios.c
│ │ │ │ │ ├── testopt.c
│ │ │ │ │ ├── testpass.c
│ │ │ │ │ └── timeval_subtract.c
│ │ │ │ ├── fdl-1.3.texi
│ │ │ │ ├── filesys.texi
│ │ │ │ ├── freemanuals.texi
│ │ │ │ ├── getopt.texi
│ │ │ │ ├── header.texi
│ │ │ │ ├── install.texi
│ │ │ │ ├── intro.texi
│ │ │ │ ├── io.texi
│ │ │ │ ├── job.texi
│ │ │ │ ├── lang.texi
│ │ │ │ ├── lgpl-2.1.texi
│ │ │ │ ├── libcbook.texi
│ │ │ │ ├── libc.texinfo
│ │ │ │ ├── libc-texinfo.sh
│ │ │ │ ├── libm-err-tab.pl
│ │ │ │ ├── llio.texi
│ │ │ │ ├── locale.texi
│ │ │ │ ├── macros.texi
│ │ │ │ ├── maint.texi
│ │ │ │ ├── Makefile
│ │ │ │ ├── math.texi
│ │ │ │ ├── memory.texi
│ │ │ │ ├── message.texi
│ │ │ │ ├── nss.texi
│ │ │ │ ├── nsswitch.texi
│ │ │ │ ├── pattern.texi
│ │ │ │ ├── pipe.texi
│ │ │ │ ├── platform.texi
│ │ │ │ ├── process.texi
│ │ │ │ ├── resource.texi
│ │ │ │ ├── search.texi
│ │ │ │ ├── setjmp.texi
│ │ │ │ ├── signal.texi
│ │ │ │ ├── socket.texi
│ │ │ │ ├── startup.texi
│ │ │ │ ├── stdio-fp.c
│ │ │ │ ├── stdio.texi
│ │ │ │ ├── string.texi
│ │ │ │ ├── summary.awk
│ │ │ │ ├── sysinfo.texi
│ │ │ │ ├── syslog.texi
│ │ │ │ ├── terminal.texi
│ │ │ │ ├── texinfo.tex
│ │ │ │ ├── texis.awk
│ │ │ │ ├── time.texi
│ │ │ │ ├── tsort.awk
│ │ │ │ ├── users.texi
│ │ │ │ └── xtract-typefun.awk
│ │ │ ├── math
│ │ │ │ ├── atest-exp2.c
│ │ │ │ ├── atest-exp.c
│ │ │ │ ├── atest-sincos.c
│ │ │ │ ├── basic-test.c
│ │ │ │ ├── bits
│ │ │ │ │ ├── cmathcalls.h
│ │ │ │ │ ├── mathcalls.h
│ │ │ │ │ └── math-finite.h
│ │ │ │ ├── bug-nextafter.c
│ │ │ │ ├── bug-nexttoward.c
│ │ │ │ ├── bug-tgmath1.c
│ │ │ │ ├── cabs.c
│ │ │ │ ├── cabsf.c
│ │ │ │ ├── cabsl.c
│ │ │ │ ├── carg.c
│ │ │ │ ├── cargf.c
│ │ │ │ ├── cargl.c
│ │ │ │ ├── cimag.c
│ │ │ │ ├── cimagf.c
│ │ │ │ ├── cimagl.c
│ │ │ │ ├── complex.h
│ │ │ │ ├── conj.c
│ │ │ │ ├── conjf.c
│ │ │ │ ├── conjl.c
│ │ │ │ ├── creal.c
│ │ │ │ ├── crealf.c
│ │ │ │ ├── creall.c
│ │ │ │ ├── divtc3.c
│ │ │ │ ├── e_acoshl.c
│ │ │ │ ├── e_acosl.c
│ │ │ │ ├── e_asinl.c
│ │ │ │ ├── e_atan2l.c
│ │ │ │ ├── e_atanhl.c
│ │ │ │ ├── e_coshl.c
│ │ │ │ ├── e_exp10.c
│ │ │ │ ├── e_exp10f.c
│ │ │ │ ├── e_exp10l.c
│ │ │ │ ├── e_exp2l.c
│ │ │ │ ├── e_expl.c
│ │ │ │ ├── e_fmodl.c
│ │ │ │ ├── e_gammal_r.c
│ │ │ │ ├── e_hypotl.c
│ │ │ │ ├── e_j0l.c
│ │ │ │ ├── e_j1l.c
│ │ │ │ ├── e_jnl.c
│ │ │ │ ├── e_lgammal_r.c
│ │ │ │ ├── e_log10l.c
│ │ │ │ ├── e_log2l.c
│ │ │ │ ├── e_logl.c
│ │ │ │ ├── e_powl.c
│ │ │ │ ├── e_rem_pio2l.c
│ │ │ │ ├── e_scalb.c
│ │ │ │ ├── e_scalbf.c
│ │ │ │ ├── e_scalbl.c
│ │ │ │ ├── e_sinhl.c
│ │ │ │ ├── e_sqrtl.c
│ │ │ │ ├── fclrexcpt.c
│ │ │ │ ├── fedisblxcpt.c
│ │ │ │ ├── feenablxcpt.c
│ │ │ │ ├── fegetenv.c
│ │ │ │ ├── fegetexcept.c
│ │ │ │ ├── fegetround.c
│ │ │ │ ├── feholdexcpt.c
│ │ │ │ ├── fenv.h
│ │ │ │ ├── fesetenv.c
│ │ │ │ ├── fesetround.c
│ │ │ │ ├── feupdateenv.c
│ │ │ │ ├── fgetexcptflg.c
│ │ │ │ ├── fpu_control.c
│ │ │ │ ├── fraiseexcpt.c
│ │ │ │ ├── fsetexcptflg.c
│ │ │ │ ├── ftestexcept.c
│ │ │ │ ├── gen-libm-test.pl
│ │ │ │ ├── ieee-math.c
│ │ │ │ ├── k_cosl.c
│ │ │ │ ├── k_rem_pio2l.c
│ │ │ │ ├── k_sincosl.c
│ │ │ │ ├── k_sinl.c
│ │ │ │ ├── k_tanl.c
│ │ │ │ ├── libm-test.inc
│ │ │ │ ├── machine
│ │ │ │ │ └── asm.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── math.h
│ │ │ │ ├── multc3.c
│ │ │ │ ├── README.libm-test
│ │ │ │ ├── s_asinhl.c
│ │ │ │ ├── s_atanl.c
│ │ │ │ ├── s_cacos.c
│ │ │ │ ├── s_cacosf.c
│ │ │ │ ├── s_cacosh.c
│ │ │ │ ├── s_cacoshf.c
│ │ │ │ ├── s_cacoshl.c
│ │ │ │ ├── s_cacosl.c
│ │ │ │ ├── s_casin.c
│ │ │ │ ├── s_casinf.c
│ │ │ │ ├── s_casinh.c
│ │ │ │ ├── s_casinhf.c
│ │ │ │ ├── s_casinhl.c
│ │ │ │ ├── s_casinl.c
│ │ │ │ ├── s_catan.c
│ │ │ │ ├── s_catanf.c
│ │ │ │ ├── s_catanh.c
│ │ │ │ ├── s_catanhf.c
│ │ │ │ ├── s_catanhl.c
│ │ │ │ ├── s_catanl.c
│ │ │ │ ├── s_cbrtl.c
│ │ │ │ ├── s_ccos.c
│ │ │ │ ├── s_ccosf.c
│ │ │ │ ├── s_ccosh.c
│ │ │ │ ├── s_ccoshf.c
│ │ │ │ ├── s_ccoshl.c
│ │ │ │ ├── s_ccosl.c
│ │ │ │ ├── s_cexp.c
│ │ │ │ ├── s_cexpf.c
│ │ │ │ ├── s_cexpl.c
│ │ │ │ ├── s_clog10.c
│ │ │ │ ├── s_clog10f.c
│ │ │ │ ├── s_clog10l.c
│ │ │ │ ├── s_clog.c
│ │ │ │ ├── s_clogf.c
│ │ │ │ ├── s_clogl.c
│ │ │ │ ├── s_cpow.c
│ │ │ │ ├── s_cpowf.c
│ │ │ │ ├── s_cpowl.c
│ │ │ │ ├── s_cproj.c
│ │ │ │ ├── s_cprojf.c
│ │ │ │ ├── s_cprojl.c
│ │ │ │ ├── s_csin.c
│ │ │ │ ├── s_csinf.c
│ │ │ │ ├── s_csinh.c
│ │ │ │ ├── s_csinhf.c
│ │ │ │ ├── s_csinhl.c
│ │ │ │ ├── s_csinl.c
│ │ │ │ ├── s_csqrt.c
│ │ │ │ ├── s_csqrtf.c
│ │ │ │ ├── s_csqrtl.c
│ │ │ │ ├── s_ctan.c
│ │ │ │ ├── s_ctanf.c
│ │ │ │ ├── s_ctanh.c
│ │ │ │ ├── s_ctanhf.c
│ │ │ │ ├── s_ctanhl.c
│ │ │ │ ├── s_ctanl.c
│ │ │ │ ├── s_erfl.c
│ │ │ │ ├── setfpucw.c
│ │ │ │ ├── s_expm1l.c
│ │ │ │ ├── s_fdim.c
│ │ │ │ ├── s_fdimf.c
│ │ │ │ ├── s_fdiml.c
│ │ │ │ ├── s_fma.c
│ │ │ │ ├── s_fmaf.c
│ │ │ │ ├── s_fmal.c
│ │ │ │ ├── s_fmax.c
│ │ │ │ ├── s_fmaxf.c
│ │ │ │ ├── s_fmaxl.c
│ │ │ │ ├── s_fmin.c
│ │ │ │ ├── s_fminf.c
│ │ │ │ ├── s_fminl.c
│ │ │ │ ├── s_ldexp.c
│ │ │ │ ├── s_ldexpf.c
│ │ │ │ ├── s_ldexpl.c
│ │ │ │ ├── s_log1pl.c
│ │ │ │ ├── s_nan.c
│ │ │ │ ├── s_nanf.c
│ │ │ │ ├── s_nanl.c
│ │ │ │ ├── s_nextafter.c
│ │ │ │ ├── s_nexttowardf.c
│ │ │ │ ├── s_nexttowardl.c
│ │ │ │ ├── s_significand.c
│ │ │ │ ├── s_significandf.c
│ │ │ │ ├── s_significandl.c
│ │ │ │ ├── s_tanhl.c
│ │ │ │ ├── test-double.c
│ │ │ │ ├── test-fenv.c
│ │ │ │ ├── test-float.c
│ │ │ │ ├── test-fpucw.c
│ │ │ │ ├── test-idouble.c
│ │ │ │ ├── test-ifloat.c
│ │ │ │ ├── test-ildoubl.c
│ │ │ │ ├── test-ldouble.c
│ │ │ │ ├── test-matherr.c
│ │ │ │ ├── test-misc.c
│ │ │ │ ├── test-powl.c
│ │ │ │ ├── test-tgmath2.c
│ │ │ │ ├── test-tgmath.c
│ │ │ │ ├── test-tgmath-int.c
│ │ │ │ ├── test-tgmath-ret.c
│ │ │ │ ├── tgmath.h
│ │ │ │ ├── t_sincosl.c
│ │ │ │ ├── tst-CMPLX2.c
│ │ │ │ ├── tst-CMPLX.c
│ │ │ │ ├── tst-definitions.c
│ │ │ │ ├── Versions
│ │ │ │ ├── w_acos.c
│ │ │ │ ├── w_acosf.c
│ │ │ │ ├── w_acosh.c
│ │ │ │ ├── w_acoshf.c
│ │ │ │ ├── w_acoshl.c
│ │ │ │ ├── w_acosl.c
│ │ │ │ ├── w_asin.c
│ │ │ │ ├── w_asinf.c
│ │ │ │ ├── w_asinl.c
│ │ │ │ ├── w_atan2.c
│ │ │ │ ├── w_atan2f.c
│ │ │ │ ├── w_atan2l.c
│ │ │ │ ├── w_atanh.c
│ │ │ │ ├── w_atanhf.c
│ │ │ │ ├── w_atanhl.c
│ │ │ │ ├── w_cosh.c
│ │ │ │ ├── w_coshf.c
│ │ │ │ ├── w_coshl.c
│ │ │ │ ├── w_drem.c
│ │ │ │ ├── w_dremf.c
│ │ │ │ ├── w_dreml.c
│ │ │ │ ├── w_exp10.c
│ │ │ │ ├── w_exp10f.c
│ │ │ │ ├── w_exp10l.c
│ │ │ │ ├── w_exp2.c
│ │ │ │ ├── w_exp2f.c
│ │ │ │ ├── w_exp2l.c
│ │ │ │ ├── w_expl.c
│ │ │ │ ├── w_fmod.c
│ │ │ │ ├── w_fmodf.c
│ │ │ │ ├── w_fmodl.c
│ │ │ │ ├── w_hypot.c
│ │ │ │ ├── w_hypotf.c
│ │ │ │ ├── w_hypotl.c
│ │ │ │ ├── w_ilogb.c
│ │ │ │ ├── w_ilogbf.c
│ │ │ │ ├── w_ilogbl.c
│ │ │ │ ├── w_j0.c
│ │ │ │ ├── w_j0f.c
│ │ │ │ ├── w_j0l.c
│ │ │ │ ├── w_j1.c
│ │ │ │ ├── w_j1f.c
│ │ │ │ ├── w_j1l.c
│ │ │ │ ├── w_jn.c
│ │ │ │ ├── w_jnf.c
│ │ │ │ ├── w_jnl.c
│ │ │ │ ├── w_lgamma.c
│ │ │ │ ├── w_lgammaf.c
│ │ │ │ ├── w_lgammaf_r.c
│ │ │ │ ├── w_lgammal.c
│ │ │ │ ├── w_lgammal_r.c
│ │ │ │ ├── w_lgamma_r.c
│ │ │ │ ├── w_log10.c
│ │ │ │ ├── w_log10f.c
│ │ │ │ ├── w_log10l.c
│ │ │ │ ├── w_log2.c
│ │ │ │ ├── w_log2f.c
│ │ │ │ ├── w_log2l.c
│ │ │ │ ├── w_log.c
│ │ │ │ ├── w_logf.c
│ │ │ │ ├── w_logl.c
│ │ │ │ ├── w_pow.c
│ │ │ │ ├── w_powf.c
│ │ │ │ ├── w_powl.c
│ │ │ │ ├── w_remainder.c
│ │ │ │ ├── w_remainderf.c
│ │ │ │ ├── w_remainderl.c
│ │ │ │ ├── w_scalb.c
│ │ │ │ ├── w_scalbf.c
│ │ │ │ ├── w_scalbl.c
│ │ │ │ ├── w_sinh.c
│ │ │ │ ├── w_sinhf.c
│ │ │ │ ├── w_sinhl.c
│ │ │ │ ├── w_sqrt.c
│ │ │ │ ├── w_sqrtf.c
│ │ │ │ ├── w_sqrtl.c
│ │ │ │ ├── w_tgamma.c
│ │ │ │ ├── w_tgammaf.c
│ │ │ │ └── w_tgammal.c
│ │ │ ├── misc
│ │ │ │ ├── acct.c
│ │ │ │ ├── ar.h
│ │ │ │ ├── bits
│ │ │ │ │ ├── error.h
│ │ │ │ │ ├── select2.h
│ │ │ │ │ ├── stab.def
│ │ │ │ │ ├── syslog.h
│ │ │ │ │ └── syslog-ldbl.h
│ │ │ │ ├── brk.c
│ │ │ │ ├── bug-hsearch1.c
│ │ │ │ ├── chflags.c
│ │ │ │ ├── chroot.c
│ │ │ │ ├── daemon.c
│ │ │ │ ├── dirname.c
│ │ │ │ ├── efgcvt.c
│ │ │ │ ├── efgcvt_r.c
│ │ │ │ ├── err.c
│ │ │ │ ├── err.h
│ │ │ │ ├── error.c
│ │ │ │ ├── error.h
│ │ │ │ ├── fchflags.c
│ │ │ │ ├── fdatasync.c
│ │ │ │ ├── fgetxattr.c
│ │ │ │ ├── flistxattr.c
│ │ │ │ ├── fremovexattr.c
│ │ │ │ ├── fsetxattr.c
│ │ │ │ ├── fstab.c
│ │ │ │ ├── fstab.h
│ │ │ │ ├── fsync.c
│ │ │ │ ├── ftruncate64.c
│ │ │ │ ├── ftruncate.c
│ │ │ │ ├── futimesat.c
│ │ │ │ ├── futimes.c
│ │ │ │ ├── getauxval.c
│ │ │ │ ├── getclktck.c
│ │ │ │ ├── getdomain.c
│ │ │ │ ├── getdtsz.c
│ │ │ │ ├── gethostid.c
│ │ │ │ ├── gethostname.c
│ │ │ │ ├── getloadavg.c
│ │ │ │ ├── getpagesize.c
│ │ │ │ ├── getpass.c
│ │ │ │ ├── getsysstats.c
│ │ │ │ ├── getttyent.c
│ │ │ │ ├── getusershell.c
│ │ │ │ ├── getxattr.c
│ │ │ │ ├── gtty.c
│ │ │ │ ├── hsearch.c
│ │ │ │ ├── hsearch_r.c
│ │ │ │ ├── init-misc.c
│ │ │ │ ├── insremque.c
│ │ │ │ ├── ioctl.c
│ │ │ │ ├── lgetxattr.c
│ │ │ │ ├── libgen.h
│ │ │ │ ├── listxattr.c
│ │ │ │ ├── llistxattr.c
│ │ │ │ ├── lremovexattr.c
│ │ │ │ ├── lsearch.c
│ │ │ │ ├── lseek.c
│ │ │ │ ├── lsetxattr.c
│ │ │ │ ├── lutimes.c
│ │ │ │ ├── madvise.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mincore.c
│ │ │ │ ├── mkdtemp.c
│ │ │ │ ├── mkostemp64.c
│ │ │ │ ├── mkostemp.c
│ │ │ │ ├── mkostemps64.c
│ │ │ │ ├── mkostemps.c
│ │ │ │ ├── mkstemp64.c
│ │ │ │ ├── mkstemp.c
│ │ │ │ ├── mkstemps64.c
│ │ │ │ ├── mkstemps.c
│ │ │ │ ├── mktemp.c
│ │ │ │ ├── mlockall.c
│ │ │ │ ├── mlock.c
│ │ │ │ ├── mmap64.c
│ │ │ │ ├── mmap.c
│ │ │ │ ├── mntent.c
│ │ │ │ ├── mntent.h
│ │ │ │ ├── mntent_r.c
│ │ │ │ ├── mprotect.c
│ │ │ │ ├── msync.c
│ │ │ │ ├── munlockall.c
│ │ │ │ ├── munlock.c
│ │ │ │ ├── munmap.c
│ │ │ │ ├── preadv64.c
│ │ │ │ ├── preadv.c
│ │ │ │ ├── pselect.c
│ │ │ │ ├── ptrace.c
│ │ │ │ ├── pwritev64.c
│ │ │ │ ├── pwritev.c
│ │ │ │ ├── qefgcvt.c
│ │ │ │ ├── qefgcvt_r.c
│ │ │ │ ├── readv.c
│ │ │ │ ├── reboot.c
│ │ │ │ ├── regexp.c
│ │ │ │ ├── regexp.h
│ │ │ │ ├── remap_file_pages.c
│ │ │ │ ├── removexattr.c
│ │ │ │ ├── revoke.c
│ │ │ │ ├── sbrk.c
│ │ │ │ ├── search.h
│ │ │ │ ├── select.c
│ │ │ │ ├── setdomain.c
│ │ │ │ ├── setegid.c
│ │ │ │ ├── seteuid.c
│ │ │ │ ├── sethostid.c
│ │ │ │ ├── sethostname.c
│ │ │ │ ├── setregid.c
│ │ │ │ ├── setreuid.c
│ │ │ │ ├── setxattr.c
│ │ │ │ ├── sgtty.h
│ │ │ │ ├── sstk.c
│ │ │ │ ├── stab.h
│ │ │ │ ├── stty.c
│ │ │ │ ├── swapoff.c
│ │ │ │ ├── swapon.c
│ │ │ │ ├── sync.c
│ │ │ │ ├── syncfs.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── auxv.h
│ │ │ │ │ ├── cdefs.h
│ │ │ │ │ ├── dir.h
│ │ │ │ │ ├── file.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── mman.h
│ │ │ │ │ ├── queue.h
│ │ │ │ │ ├── select.h
│ │ │ │ │ ├── syslog.h
│ │ │ │ │ ├── uio.h
│ │ │ │ │ ├── ustat.h
│ │ │ │ │ └── xattr.h
│ │ │ │ ├── syscall.c
│ │ │ │ ├── syscall.h
│ │ │ │ ├── sysexits.h
│ │ │ │ ├── syslog.c
│ │ │ │ ├── syslog.h
│ │ │ │ ├── truncate64.c
│ │ │ │ ├── truncate.c
│ │ │ │ ├── tsearch.c
│ │ │ │ ├── tst-dirname.c
│ │ │ │ ├── tst-efgcvt.c
│ │ │ │ ├── tst-error1.c
│ │ │ │ ├── tst-fdset.c
│ │ │ │ ├── tst-hsearch.c
│ │ │ │ ├── tst-insremque.c
│ │ │ │ ├── tst-mntent2.c
│ │ │ │ ├── tst-mntent.c
│ │ │ │ ├── tst-pselect.c
│ │ │ │ ├── tst-tsearch.c
│ │ │ │ ├── ttyent.h
│ │ │ │ ├── ttyslot.c
│ │ │ │ ├── ualarm.c
│ │ │ │ ├── usleep.c
│ │ │ │ ├── ustat.c
│ │ │ │ ├── ustat.h
│ │ │ │ ├── utimes.c
│ │ │ │ ├── Versions
│ │ │ │ ├── vhangup.c
│ │ │ │ └── writev.c
│ │ │ ├── NAMESPACE
│ │ │ ├── NEWS
│ │ │ ├── nis
│ │ │ │ ├── Depend
│ │ │ │ ├── libnsl.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── nis_add.c
│ │ │ │ ├── nis_addmember.c
│ │ │ │ ├── nis_callback.c
│ │ │ │ ├── nis_call.c
│ │ │ │ ├── nis_checkpoint.c
│ │ │ │ ├── nis_clone_dir.c
│ │ │ │ ├── nis_clone_obj.c
│ │ │ │ ├── nis_clone_res.c
│ │ │ │ ├── nis_creategroup.c
│ │ │ │ ├── nis_defaults.c
│ │ │ │ ├── nis_destroygroup.c
│ │ │ │ ├── nis_domain_of.c
│ │ │ │ ├── nis_domain_of_r.c
│ │ │ │ ├── nis_error.c
│ │ │ │ ├── nis_error.h
│ │ │ │ ├── nis_file.c
│ │ │ │ ├── nis_findserv.c
│ │ │ │ ├── nis_free.c
│ │ │ │ ├── nis_getservlist.c
│ │ │ │ ├── nis_hash.c
│ │ │ │ ├── nis_intern.h
│ │ │ │ ├── nis_ismember.c
│ │ │ │ ├── nis_local_names.c
│ │ │ │ ├── nis_lookup.c
│ │ │ │ ├── nis_mkdir.c
│ │ │ │ ├── nis_modify.c
│ │ │ │ ├── nis_ping.c
│ │ │ │ ├── nisplus-parser.h
│ │ │ │ ├── nis_print.c
│ │ │ │ ├── nis_print_group_entry.c
│ │ │ │ ├── nis_remove.c
│ │ │ │ ├── nis_removemember.c
│ │ │ │ ├── nis_rmdir.c
│ │ │ │ ├── nis_server.c
│ │ │ │ ├── nis_subr.c
│ │ │ │ ├── nis_table.c
│ │ │ │ ├── nis_util.c
│ │ │ │ ├── nis_verifygroup.c
│ │ │ │ ├── nis_xdr.c
│ │ │ │ ├── nis_xdr.h
│ │ │ │ ├── nss
│ │ │ │ ├── nss_compat
│ │ │ │ │ ├── compat-grp.c
│ │ │ │ │ ├── compat-initgroups.c
│ │ │ │ │ ├── compat-pwd.c
│ │ │ │ │ └── compat-spwd.c
│ │ │ │ ├── nss-default.c
│ │ │ │ ├── nss_nis
│ │ │ │ │ ├── nis-alias.c
│ │ │ │ │ ├── nis-ethers.c
│ │ │ │ │ ├── nis-grp.c
│ │ │ │ │ ├── nis-hosts.c
│ │ │ │ │ ├── nis-initgroups.c
│ │ │ │ │ ├── nis-netgrp.c
│ │ │ │ │ ├── nis-network.c
│ │ │ │ │ ├── nis-proto.c
│ │ │ │ │ ├── nis-publickey.c
│ │ │ │ │ ├── nis-pwd.c
│ │ │ │ │ ├── nis-rpc.c
│ │ │ │ │ ├── nis-service.c
│ │ │ │ │ └── nis-spwd.c
│ │ │ │ ├── nss-nis.c
│ │ │ │ ├── nss-nis.h
│ │ │ │ ├── nss_nisplus
│ │ │ │ │ ├── nisplus-alias.c
│ │ │ │ │ ├── nisplus-ethers.c
│ │ │ │ │ ├── nisplus-grp.c
│ │ │ │ │ ├── nisplus-hosts.c
│ │ │ │ │ ├── nisplus-initgroups.c
│ │ │ │ │ ├── nisplus-netgrp.c
│ │ │ │ │ ├── nisplus-network.c
│ │ │ │ │ ├── nisplus-parser.c
│ │ │ │ │ ├── nisplus-proto.c
│ │ │ │ │ ├── nisplus-publickey.c
│ │ │ │ │ ├── nisplus-pwd.c
│ │ │ │ │ ├── nisplus-rpc.c
│ │ │ │ │ ├── nisplus-service.c
│ │ │ │ │ └── nisplus-spwd.c
│ │ │ │ ├── nss-nisplus.c
│ │ │ │ ├── nss-nisplus.h
│ │ │ │ ├── rpcsvc
│ │ │ │ │ ├── nis_callback.h
│ │ │ │ │ ├── nis_callback.x
│ │ │ │ │ ├── nis.h
│ │ │ │ │ ├── nislib.h
│ │ │ │ │ ├── nis_object.x
│ │ │ │ │ ├── nis_tags.h
│ │ │ │ │ ├── nis.x
│ │ │ │ │ ├── ypclnt.h
│ │ │ │ │ ├── yp.h
│ │ │ │ │ ├── yp_prot.h
│ │ │ │ │ ├── ypupd.h
│ │ │ │ │ └── yp.x
│ │ │ │ ├── Versions
│ │ │ │ ├── ypclnt.c
│ │ │ │ ├── ypupdate_xdr.c
│ │ │ │ └── yp_xdr.c
│ │ │ ├── nptl
│ │ │ │ ├── alloca_cutoff.c
│ │ │ │ ├── allocatestack.c
│ │ │ │ ├── ANNOUNCE
│ │ │ │ ├── Banner
│ │ │ │ ├── cancellation.c
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── cleanup.c
│ │ │ │ ├── cleanup_compat.c
│ │ │ │ ├── cleanup_defer.c
│ │ │ │ ├── cleanup_defer_compat.c
│ │ │ │ ├── cleanup_routine.c
│ │ │ │ ├── cond-perf.c
│ │ │ │ ├── configure
│ │ │ │ ├── descr.h
│ │ │ │ ├── DESIGN-barrier.txt
│ │ │ │ ├── DESIGN-condvar.txt
│ │ │ │ ├── DESIGN-rwlock.txt
│ │ │ │ ├── DESIGN-sem.txt
│ │ │ │ ├── DESIGN-systemtap-probes.txt
│ │ │ │ ├── eintr.c
│ │ │ │ ├── errno-loc.c
│ │ │ │ ├── events.c
│ │ │ │ ├── forward.c
│ │ │ │ ├── herrno.c
│ │ │ │ ├── libc-cancellation.c
│ │ │ │ ├── libc-cleanup.c
│ │ │ │ ├── lowlevellock.h
│ │ │ │ ├── Makeconfig
│ │ │ │ ├── Makefile
│ │ │ │ ├── nptl-init.c
│ │ │ │ ├── old_pthread_atfork.c
│ │ │ │ ├── old_pthread_cond_broadcast.c
│ │ │ │ ├── old_pthread_cond_destroy.c
│ │ │ │ ├── old_pthread_cond_init.c
│ │ │ │ ├── old_pthread_cond_signal.c
│ │ │ │ ├── old_pthread_cond_timedwait.c
│ │ │ │ ├── old_pthread_cond_wait.c
│ │ │ │ ├── perf.c
│ │ │ │ ├── pt-allocrtsig.c
│ │ │ │ ├── pt-cleanup.c
│ │ │ │ ├── pt-crti.S
│ │ │ │ ├── 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_getstackaddr.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_setstackaddr.c
│ │ │ │ ├── pthread_attr_setstack.c
│ │ │ │ ├── pthread_attr_setstacksize.c
│ │ │ │ ├── pthread_barrierattr_destroy.c
│ │ │ │ ├── pthread_barrierattr_getpshared.c
│ │ │ │ ├── pthread_barrierattr_init.c
│ │ │ │ ├── pthread_barrierattr_setpshared.c
│ │ │ │ ├── pthread_barrier_destroy.c
│ │ │ │ ├── pthread_barrier_init.c
│ │ │ │ ├── pthread_barrier_wait.c
│ │ │ │ ├── pthread_cancel.c
│ │ │ │ ├── pthread_clock_gettime.c
│ │ │ │ ├── pthread_clock_settime.c
│ │ │ │ ├── pthread_condattr_destroy.c
│ │ │ │ ├── pthread_condattr_getclock.c
│ │ │ │ ├── pthread_condattr_getpshared.c
│ │ │ │ ├── pthread_condattr_init.c
│ │ │ │ ├── pthread_condattr_setclock.c
│ │ │ │ ├── pthread_condattr_setpshared.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_create.c
│ │ │ │ ├── pthread_detach.c
│ │ │ │ ├── pthread_equal.c
│ │ │ │ ├── pthread-errnos.sym
│ │ │ │ ├── pthread_exit.c
│ │ │ │ ├── pthread_getattr_np.c
│ │ │ │ ├── pthread_getconcurrency.c
│ │ │ │ ├── pthread_getcpuclockid.c
│ │ │ │ ├── pthread_getschedparam.c
│ │ │ │ ├── pthread_getspecific.c
│ │ │ │ ├── pthread_join.c
│ │ │ │ ├── pthread_key_create.c
│ │ │ │ ├── pthread_key_delete.c
│ │ │ │ ├── pthread_kill_other_threads.c
│ │ │ │ ├── pthread_mutexattr_destroy.c
│ │ │ │ ├── pthread_mutexattr_getprioceiling.c
│ │ │ │ ├── pthread_mutexattr_getprotocol.c
│ │ │ │ ├── pthread_mutexattr_getpshared.c
│ │ │ │ ├── pthread_mutexattr_getrobust.c
│ │ │ │ ├── pthread_mutexattr_gettype.c
│ │ │ │ ├── pthread_mutexattr_init.c
│ │ │ │ ├── pthread_mutexattr_setprioceiling.c
│ │ │ │ ├── pthread_mutexattr_setprotocol.c
│ │ │ │ ├── pthread_mutexattr_setpshared.c
│ │ │ │ ├── pthread_mutexattr_setrobust.c
│ │ │ │ ├── pthread_mutexattr_settype.c
│ │ │ │ ├── pthread_mutex_consistent.c
│ │ │ │ ├── pthread_mutex_destroy.c
│ │ │ │ ├── pthread_mutex_getprioceiling.c
│ │ │ │ ├── pthread_mutex_init.c
│ │ │ │ ├── pthread_mutex_lock.c
│ │ │ │ ├── pthread_mutex_setprioceiling.c
│ │ │ │ ├── pthread_mutex_timedlock.c
│ │ │ │ ├── pthread_mutex_trylock.c
│ │ │ │ ├── pthread_mutex_unlock.c
│ │ │ │ ├── pthread_once.c
│ │ │ │ ├── pthreadP.h
│ │ │ │ ├── pthread_rwlockattr_destroy.c
│ │ │ │ ├── pthread_rwlockattr_getkind_np.c
│ │ │ │ ├── pthread_rwlockattr_getpshared.c
│ │ │ │ ├── pthread_rwlockattr_init.c
│ │ │ │ ├── pthread_rwlockattr_setkind_np.c
│ │ │ │ ├── pthread_rwlockattr_setpshared.c
│ │ │ │ ├── pthread_rwlock_destroy.c
│ │ │ │ ├── pthread_rwlock_init.c
│ │ │ │ ├── pthread_rwlock_rdlock.c
│ │ │ │ ├── pthread_rwlock_timedrdlock.c
│ │ │ │ ├── pthread_rwlock_timedwrlock.c
│ │ │ │ ├── pthread_rwlock_tryrdlock.c
│ │ │ │ ├── pthread_rwlock_trywrlock.c
│ │ │ │ ├── pthread_rwlock_unlock.c
│ │ │ │ ├── pthread_rwlock_wrlock.c
│ │ │ │ ├── pthread_self.c
│ │ │ │ ├── pthread_setcancelstate.c
│ │ │ │ ├── pthread_setcanceltype.c
│ │ │ │ ├── pthread_setconcurrency.c
│ │ │ │ ├── pthread_setegid.c
│ │ │ │ ├── pthread_seteuid.c
│ │ │ │ ├── pthread_setgid.c
│ │ │ │ ├── pthread_setregid.c
│ │ │ │ ├── pthread_setresgid.c
│ │ │ │ ├── pthread_setresuid.c
│ │ │ │ ├── pthread_setreuid.c
│ │ │ │ ├── pthread_setschedparam.c
│ │ │ │ ├── pthread_setschedprio.c
│ │ │ │ ├── pthread_setspecific.c
│ │ │ │ ├── pthread_setuid.c
│ │ │ │ ├── pthread_spin_destroy.c
│ │ │ │ ├── pthread_spin_init.c
│ │ │ │ ├── pthread_spin_unlock.c
│ │ │ │ ├── pthread_testcancel.c
│ │ │ │ ├── pthread_timedjoin.c
│ │ │ │ ├── pthread_tryjoin.c
│ │ │ │ ├── pt-raise.c
│ │ │ │ ├── pt-system.c
│ │ │ │ ├── res.c
│ │ │ │ ├── semaphore.h
│ │ │ │ ├── semaphoreP.h
│ │ │ │ ├── sem_close.c
│ │ │ │ ├── sem_destroy.c
│ │ │ │ ├── sem_getvalue.c
│ │ │ │ ├── sem_init.c
│ │ │ │ ├── sem_open.c
│ │ │ │ ├── sem_unlink.c
│ │ │ │ ├── shlib-versions
│ │ │ │ ├── sigaction.c
│ │ │ │ ├── sockperf.c
│ │ │ │ ├── sysdeps
│ │ │ │ │ ├── i386
│ │ │ │ │ │ ├── i486
│ │ │ │ │ │ │ └── pthread_spin_trylock.S
│ │ │ │ │ │ ├── i586
│ │ │ │ │ │ │ └── pthread_spin_trylock.S
│ │ │ │ │ │ ├── i686
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── pthread_spin_trylock.S
│ │ │ │ │ │ │ └── tls.h
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ ├── pthread_spin_lock.S
│ │ │ │ │ │ ├── pthread_spin_unlock.S
│ │ │ │ │ │ ├── tcb-offsets.sym
│ │ │ │ │ │ └── tls.h
│ │ │ │ │ ├── powerpc
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ │ ├── pthread_spin_lock.c
│ │ │ │ │ │ ├── pthread_spin_trylock.c
│ │ │ │ │ │ ├── tcb-offsets.sym
│ │ │ │ │ │ └── tls.h
│ │ │ │ │ ├── pthread
│ │ │ │ │ │ ├── aio_misc.h
│ │ │ │ │ │ ├── allocalim.h
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── libc-lock.h
│ │ │ │ │ │ │ ├── libc-lockP.h
│ │ │ │ │ │ │ ├── sigthread.h
│ │ │ │ │ │ │ └── stdio-lock.h
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── createthread.c
│ │ │ │ │ │ ├── flockfile.c
│ │ │ │ │ │ ├── ftrylockfile.c
│ │ │ │ │ │ ├── funlockfile.c
│ │ │ │ │ │ ├── gai_misc.h
│ │ │ │ │ │ ├── librt-cancellation.c
│ │ │ │ │ │ ├── list.h
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── malloc-machine.h
│ │ │ │ │ │ ├── posix-timer.h
│ │ │ │ │ │ ├── pthread-functions.h
│ │ │ │ │ │ ├── pthread.h
│ │ │ │ │ │ ├── pthread_sigmask.c
│ │ │ │ │ │ ├── pt-longjmp.c
│ │ │ │ │ │ ├── setxid.h
│ │ │ │ │ │ ├── sigfillset.c
│ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ ├── Subdirs
│ │ │ │ │ │ ├── tcb-offsets.h
│ │ │ │ │ │ ├── timer_create.c
│ │ │ │ │ │ ├── timer_delete.c
│ │ │ │ │ │ ├── timer_getoverr.c
│ │ │ │ │ │ ├── timer_gettime.c
│ │ │ │ │ │ ├── timer_routines.c
│ │ │ │ │ │ ├── timer_settime.c
│ │ │ │ │ │ ├── tst-mqueue8x.c
│ │ │ │ │ │ ├── tst-timer.c
│ │ │ │ │ │ └── unwind-forcedunwind.c
│ │ │ │ │ ├── s390
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ ├── pthread_spin_lock.c
│ │ │ │ │ │ ├── pthread_spin_trylock.c
│ │ │ │ │ │ ├── pthread_spin_unlock.c
│ │ │ │ │ │ ├── tcb-offsets.sym
│ │ │ │ │ │ └── tls.h
│ │ │ │ │ ├── sh
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ ├── pthread_spin_lock.c
│ │ │ │ │ │ ├── pthread_spin_trylock.S
│ │ │ │ │ │ ├── pthread_spin_unlock.S
│ │ │ │ │ │ ├── tcb-offsets.sym
│ │ │ │ │ │ └── tls.h
│ │ │ │ │ ├── sparc
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── sparc32
│ │ │ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ │ │ ├── pthread_spin_lock.S
│ │ │ │ │ │ │ ├── pthread_spin_trylock.S
│ │ │ │ │ │ │ └── sparcv9
│ │ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ │ ├── pthread_spin_lock.S
│ │ │ │ │ │ │ ├── pthread_spin_trylock.S
│ │ │ │ │ │ │ └── pthread_spin_unlock.S
│ │ │ │ │ │ ├── sparc64
│ │ │ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ │ ├── pthread_spin_lock.S
│ │ │ │ │ │ │ ├── pthread_spin_trylock.S
│ │ │ │ │ │ │ └── pthread_spin_unlock.S
│ │ │ │ │ │ ├── tcb-offsets.sym
│ │ │ │ │ │ └── tls.h
│ │ │ │ │ ├── unix
│ │ │ │ │ │ └── sysv
│ │ │ │ │ │ └── linux
│ │ │ │ │ │ ├── aio_misc.h
│ │ │ │ │ │ ├── allocrtsig.c
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── local_lim.h
│ │ │ │ │ │ │ └── posix_opt.h
│ │ │ │ │ │ ├── createthread.c
│ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ ├── fork.h
│ │ │ │ │ │ ├── getpid.c
│ │ │ │ │ │ ├── i386
│ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ ├── createthread.c
│ │ │ │ │ │ │ ├── dl-sysdep.h
│ │ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ │ ├── i486
│ │ │ │ │ │ │ │ ├── libc-lowlevellock.S
│ │ │ │ │ │ │ │ ├── lowlevellock.S
│ │ │ │ │ │ │ │ ├── lowlevelrobustlock.S
│ │ │ │ │ │ │ │ ├── pthread_barrier_wait.S
│ │ │ │ │ │ │ │ ├── pthread_cond_broadcast.S
│ │ │ │ │ │ │ │ ├── pthread_cond_signal.S
│ │ │ │ │ │ │ │ ├── pthread_cond_timedwait.S
│ │ │ │ │ │ │ │ ├── pthread_cond_wait.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_rdlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_unlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_wrlock.S
│ │ │ │ │ │ │ │ ├── sem_post.S
│ │ │ │ │ │ │ │ ├── sem_timedwait.S
│ │ │ │ │ │ │ │ ├── sem_trywait.S
│ │ │ │ │ │ │ │ └── sem_wait.S
│ │ │ │ │ │ │ ├── i586
│ │ │ │ │ │ │ │ ├── libc-lowlevellock.S
│ │ │ │ │ │ │ │ ├── lowlevellock.S
│ │ │ │ │ │ │ │ ├── lowlevelrobustlock.S
│ │ │ │ │ │ │ │ ├── pthread_barrier_wait.S
│ │ │ │ │ │ │ │ ├── pthread_cond_broadcast.S
│ │ │ │ │ │ │ │ ├── pthread_cond_signal.S
│ │ │ │ │ │ │ │ ├── pthread_cond_timedwait.S
│ │ │ │ │ │ │ │ ├── pthread_cond_wait.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_rdlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_unlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_wrlock.S
│ │ │ │ │ │ │ │ ├── sem_post.S
│ │ │ │ │ │ │ │ ├── sem_timedwait.S
│ │ │ │ │ │ │ │ ├── sem_trywait.S
│ │ │ │ │ │ │ │ └── sem_wait.S
│ │ │ │ │ │ │ ├── i686
│ │ │ │ │ │ │ │ ├── dl-sysdep.h
│ │ │ │ │ │ │ │ ├── libc-lowlevellock.S
│ │ │ │ │ │ │ │ ├── lowlevellock.S
│ │ │ │ │ │ │ │ ├── lowlevelrobustlock.S
│ │ │ │ │ │ │ │ ├── pthread_barrier_wait.S
│ │ │ │ │ │ │ │ ├── pthread_cond_broadcast.S
│ │ │ │ │ │ │ │ ├── pthread_cond_signal.S
│ │ │ │ │ │ │ │ ├── pthread_cond_timedwait.S
│ │ │ │ │ │ │ │ ├── pthread_cond_wait.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_rdlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_unlock.S
│ │ │ │ │ │ │ │ ├── pthread_rwlock_wrlock.S
│ │ │ │ │ │ │ │ ├── sem_post.S
│ │ │ │ │ │ │ │ ├── sem_timedwait.S
│ │ │ │ │ │ │ │ ├── sem_trywait.S
│ │ │ │ │ │ │ │ └── sem_wait.S
│ │ │ │ │ │ │ ├── i786
│ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── lowlevellock.h
│ │ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ │ ├── pthread_once.S
│ │ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ │ ├── pthread_spin_unlock.S
│ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ ├── smp.h
│ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── internaltypes.h
│ │ │ │ │ │ ├── jmp-unwind.c
│ │ │ │ │ │ ├── kernel-posix-timers.h
│ │ │ │ │ │ ├── libc-lowlevellock.c
│ │ │ │ │ │ ├── libc_multiple_threads.c
│ │ │ │ │ │ ├── libc_pthread_init.c
│ │ │ │ │ │ ├── lowlevelbarrier.sym
│ │ │ │ │ │ ├── lowlevelcond.sym
│ │ │ │ │ │ ├── lowlevellock.c
│ │ │ │ │ │ ├── lowlevelrobustlock.c
│ │ │ │ │ │ ├── lowlevelrobustlock.sym
│ │ │ │ │ │ ├── lowlevelrwlock.sym
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── mq_notify.c
│ │ │ │ │ │ ├── powerpc
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── local_lim.h
│ │ │ │ │ │ │ │ ├── pthreadtypes.h
│ │ │ │ │ │ │ │ └── semaphore.h
│ │ │ │ │ │ │ ├── createthread.c
│ │ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ │ ├── lowlevellock.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ │ ├── powerpc32
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ │ ├── powerpc64
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ │ ├── timer_create.c
│ │ │ │ │ │ │ │ ├── timer_delete.c
│ │ │ │ │ │ │ │ ├── timer_getoverr.c
│ │ │ │ │ │ │ │ ├── timer_gettime.c
│ │ │ │ │ │ │ │ ├── timer_settime.c
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ │ ├── pthread_attr_setstack.c
│ │ │ │ │ │ │ ├── pthread_attr_setstacksize.c
│ │ │ │ │ │ │ ├── pthread_once.c
│ │ │ │ │ │ │ ├── pthread_spin_unlock.c
│ │ │ │ │ │ │ ├── pt-longjmp.c
│ │ │ │ │ │ │ ├── sem_post.c
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── pt-fork.c
│ │ │ │ │ │ ├── pthread_attr_getaffinity.c
│ │ │ │ │ │ ├── pthread_attr_setaffinity.c
│ │ │ │ │ │ ├── pthread_getaffinity.c
│ │ │ │ │ │ ├── pthread_getcpuclockid.c
│ │ │ │ │ │ ├── pthread_getname.c
│ │ │ │ │ │ ├── pthread_kill.c
│ │ │ │ │ │ ├── pthread_mutex_cond_lock.c
│ │ │ │ │ │ ├── pthread-pi-defines.sym
│ │ │ │ │ │ ├── pthread_setaffinity.c
│ │ │ │ │ │ ├── pthread_setname.c
│ │ │ │ │ │ ├── pthread_sigqueue.c
│ │ │ │ │ │ ├── pthread_yield.c
│ │ │ │ │ │ ├── pt-raise.c
│ │ │ │ │ │ ├── raise.c
│ │ │ │ │ │ ├── register-atfork.c
│ │ │ │ │ │ ├── rtld-lowlevel.h
│ │ │ │ │ │ ├── s390
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── pthreadtypes.h
│ │ │ │ │ │ │ │ └── semaphore.h
│ │ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ │ ├── jmp-unwind.c
│ │ │ │ │ │ │ ├── lowlevellock.h
│ │ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ │ ├── pthread_once.c
│ │ │ │ │ │ │ ├── s390-32
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ │ └── s390-64
│ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ ├── timer_create.c
│ │ │ │ │ │ │ ├── timer_delete.c
│ │ │ │ │ │ │ ├── timer_getoverr.c
│ │ │ │ │ │ │ ├── timer_gettime.c
│ │ │ │ │ │ │ ├── timer_settime.c
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ ├── sem_post.c
│ │ │ │ │ │ ├── sem_timedwait.c
│ │ │ │ │ │ ├── sem_trywait.c
│ │ │ │ │ │ ├── sem_wait.c
│ │ │ │ │ │ ├── sh
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── pthreadtypes.h
│ │ │ │ │ │ │ │ └── semaphore.h
│ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ ├── createthread.c
│ │ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ │ ├── libc-lowlevellock.S
│ │ │ │ │ │ │ ├── lowlevel-atomic.h
│ │ │ │ │ │ │ ├── lowlevellock.h
│ │ │ │ │ │ │ ├── lowlevellock.S
│ │ │ │ │ │ │ ├── lowlevelrobustlock.S
│ │ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ │ ├── pthread_barrier_wait.S
│ │ │ │ │ │ │ ├── pthread_cond_broadcast.S
│ │ │ │ │ │ │ ├── pthread_cond_signal.S
│ │ │ │ │ │ │ ├── pthread_cond_timedwait.S
│ │ │ │ │ │ │ ├── pthread_cond_wait.S
│ │ │ │ │ │ │ ├── pthread_once.S
│ │ │ │ │ │ │ ├── pthread_rwlock_rdlock.S
│ │ │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S
│ │ │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S
│ │ │ │ │ │ │ ├── pthread_rwlock_unlock.S
│ │ │ │ │ │ │ ├── pthread_rwlock_wrlock.S
│ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ ├── sem_post.S
│ │ │ │ │ │ │ ├── sem_timedwait.S
│ │ │ │ │ │ │ ├── sem_trywait.S
│ │ │ │ │ │ │ ├── sem_wait.S
│ │ │ │ │ │ │ ├── sh4
│ │ │ │ │ │ │ │ └── lowlevellock.h
│ │ │ │ │ │ │ ├── smp.h
│ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ ├── sigtimedwait.c
│ │ │ │ │ │ ├── sigwait.c
│ │ │ │ │ │ ├── sigwaitinfo.c
│ │ │ │ │ │ ├── sleep.c
│ │ │ │ │ │ ├── smp.h
│ │ │ │ │ │ ├── sparc
│ │ │ │ │ │ │ ├── aio_cancel.c
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── local_lim.h
│ │ │ │ │ │ │ │ ├── pthreadtypes.h
│ │ │ │ │ │ │ │ └── semaphore.h
│ │ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ │ ├── internaltypes.h
│ │ │ │ │ │ │ ├── lowlevellock.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ │ ├── pthread_barrier_destroy.c
│ │ │ │ │ │ │ ├── pthread_barrier_init.c
│ │ │ │ │ │ │ ├── pthread_barrier_wait.c
│ │ │ │ │ │ │ ├── pthread_once.c
│ │ │ │ │ │ │ ├── sem_init.c
│ │ │ │ │ │ │ ├── sem_post.c
│ │ │ │ │ │ │ ├── sem_timedwait.c
│ │ │ │ │ │ │ ├── sem_wait.c
│ │ │ │ │ │ │ ├── sparc32
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── lowlevellock.c
│ │ │ │ │ │ │ │ ├── pthread_barrier_wait.c
│ │ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ │ ├── sem_post.c
│ │ │ │ │ │ │ │ ├── sem_timedwait.c
│ │ │ │ │ │ │ │ ├── sem_trywait.c
│ │ │ │ │ │ │ │ ├── sem_wait.c
│ │ │ │ │ │ │ │ ├── sparcv9
│ │ │ │ │ │ │ │ │ ├── pthread_barrier_wait.c
│ │ │ │ │ │ │ │ │ ├── sem_post.c
│ │ │ │ │ │ │ │ │ ├── sem_timedwait.c
│ │ │ │ │ │ │ │ │ ├── sem_trywait.c
│ │ │ │ │ │ │ │ │ └── sem_wait.c
│ │ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ │ ├── sparc64
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ │ │ ├── timer_create.c
│ │ │ │ │ │ │ │ ├── timer_delete.c
│ │ │ │ │ │ │ │ ├── timer_getoverr.c
│ │ │ │ │ │ │ │ ├── timer_gettime.c
│ │ │ │ │ │ │ │ ├── timer_settime.c
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── structsem.sym
│ │ │ │ │ │ ├── timer_create.c
│ │ │ │ │ │ ├── timer_delete.c
│ │ │ │ │ │ ├── timer_getoverr.c
│ │ │ │ │ │ ├── timer_gettime.c
│ │ │ │ │ │ ├── timer_routines.c
│ │ │ │ │ │ ├── timer_settime.c
│ │ │ │ │ │ ├── unregister-atfork.c
│ │ │ │ │ │ ├── unwindbuf.sym
│ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ ├── x86
│ │ │ │ │ │ │ └── bits
│ │ │ │ │ │ │ ├── pthreadtypes.h
│ │ │ │ │ │ │ └── semaphore.h
│ │ │ │ │ │ └── x86_64
│ │ │ │ │ │ ├── cancellation.S
│ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ ├── compat-timer.h
│ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── libc-cancellation.S
│ │ │ │ │ │ ├── libc-lowlevellock.S
│ │ │ │ │ │ ├── librt-cancellation.S
│ │ │ │ │ │ ├── lowlevellock.h
│ │ │ │ │ │ ├── lowlevellock.S
│ │ │ │ │ │ ├── lowlevelrobustlock.S
│ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ ├── pthread_barrier_wait.S
│ │ │ │ │ │ ├── pthread_cond_broadcast.S
│ │ │ │ │ │ ├── pthread_cond_signal.S
│ │ │ │ │ │ ├── pthread_cond_timedwait.S
│ │ │ │ │ │ ├── pthread_cond_wait.S
│ │ │ │ │ │ ├── pthread_once.S
│ │ │ │ │ │ ├── pthread_rwlock_rdlock.S
│ │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S
│ │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S
│ │ │ │ │ │ ├── pthread_rwlock_unlock.S
│ │ │ │ │ │ ├── pthread_rwlock_wrlock.S
│ │ │ │ │ │ ├── pthread_setaffinity.c
│ │ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ │ ├── pthread_spin_unlock.S
│ │ │ │ │ │ ├── pt-vfork.S
│ │ │ │ │ │ ├── sem_post.S
│ │ │ │ │ │ ├── sem_timedwait.S
│ │ │ │ │ │ ├── sem_trywait.S
│ │ │ │ │ │ ├── sem_wait.S
│ │ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ │ ├── timer_create.c
│ │ │ │ │ │ ├── timer_delete.c
│ │ │ │ │ │ ├── timer_getoverr.c
│ │ │ │ │ │ ├── timer_gettime.c
│ │ │ │ │ │ ├── timer_settime.c
│ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ └── vfork.S
│ │ │ │ │ └── x86_64
│ │ │ │ │ ├── 64
│ │ │ │ │ │ └── shlib-versions
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── pthreaddef.h
│ │ │ │ │ ├── pthread_spin_init.c
│ │ │ │ │ ├── pthread_spin_lock.S
│ │ │ │ │ ├── pthread_spin_trylock.S
│ │ │ │ │ ├── pthread_spin_unlock.S
│ │ │ │ │ ├── tcb-offsets.sym
│ │ │ │ │ ├── tls.h
│ │ │ │ │ └── x32
│ │ │ │ │ ├── shlib-versions
│ │ │ │ │ └── tls.h
│ │ │ │ ├── TODO
│ │ │ │ ├── TODO-kernel
│ │ │ │ ├── TODO-testing
│ │ │ │ ├── tpp.c
│ │ │ │ ├── tst-abstime.c
│ │ │ │ ├── tst-align2.c
│ │ │ │ ├── tst-align3.c
│ │ │ │ ├── tst-align.c
│ │ │ │ ├── tst-atfork1.c
│ │ │ │ ├── tst-atfork2.c
│ │ │ │ ├── tst-atfork2mod.c
│ │ │ │ ├── tst-attr1.c
│ │ │ │ ├── tst-attr2.c
│ │ │ │ ├── tst-attr3.c
│ │ │ │ ├── tst-backtrace1.c
│ │ │ │ ├── tst-barrier1.c
│ │ │ │ ├── tst-barrier2.c
│ │ │ │ ├── tst-barrier3.c
│ │ │ │ ├── tst-barrier4.c
│ │ │ │ ├── tst-basic1.c
│ │ │ │ ├── tst-basic2.c
│ │ │ │ ├── tst-basic3.c
│ │ │ │ ├── tst-basic4.c
│ │ │ │ ├── tst-basic5.c
│ │ │ │ ├── tst-basic6.c
│ │ │ │ ├── tst-basic7.c
│ │ │ │ ├── tst-cancel10.c
│ │ │ │ ├── tst-cancel11.c
│ │ │ │ ├── tst-cancel12.c
│ │ │ │ ├── tst-cancel13.c
│ │ │ │ ├── tst-cancel14.c
│ │ │ │ ├── tst-cancel15.c
│ │ │ │ ├── tst-cancel16.c
│ │ │ │ ├── tst-cancel17.c
│ │ │ │ ├── tst-cancel18.c
│ │ │ │ ├── tst-cancel19.c
│ │ │ │ ├── tst-cancel1.c
│ │ │ │ ├── tst-cancel20.c
│ │ │ │ ├── tst-cancel21.c
│ │ │ │ ├── tst-cancel22.c
│ │ │ │ ├── tst-cancel23.c
│ │ │ │ ├── tst-cancel24.cc
│ │ │ │ ├── tst-cancel25.c
│ │ │ │ ├── tst-cancel2.c
│ │ │ │ ├── tst-cancel3.c
│ │ │ │ ├── tst-cancel4.c
│ │ │ │ ├── tst-cancel5.c
│ │ │ │ ├── tst-cancel6.c
│ │ │ │ ├── tst-cancel7.c
│ │ │ │ ├── tst-cancel8.c
│ │ │ │ ├── tst-cancel9.c
│ │ │ │ ├── tst-cancel-self.c
│ │ │ │ ├── tst-cancel-self-cancelstate.c
│ │ │ │ ├── tst-cancel-self-canceltype.c
│ │ │ │ ├── tst-cancel-self-cleanup.c
│ │ │ │ ├── tst-cancel-self-testcancel.c
│ │ │ │ ├── tst-cancel-wrappers.sh
│ │ │ │ ├── tst-cancelx10.c
│ │ │ │ ├── tst-cancelx11.c
│ │ │ │ ├── tst-cancelx12.c
│ │ │ │ ├── tst-cancelx13.c
│ │ │ │ ├── tst-cancelx14.c
│ │ │ │ ├── tst-cancelx15.c
│ │ │ │ ├── tst-cancelx16.c
│ │ │ │ ├── tst-cancelx17.c
│ │ │ │ ├── tst-cancelx18.c
│ │ │ │ ├── tst-cancelx1.c
│ │ │ │ ├── tst-cancelx20.c
│ │ │ │ ├── tst-cancelx21.c
│ │ │ │ ├── tst-cancelx2.c
│ │ │ │ ├── tst-cancelx3.c
│ │ │ │ ├── tst-cancelx4.c
│ │ │ │ ├── tst-cancelx5.c
│ │ │ │ ├── tst-cancelx6.c
│ │ │ │ ├── tst-cancelx7.c
│ │ │ │ ├── tst-cancelx8.c
│ │ │ │ ├── tst-cancelx9.c
│ │ │ │ ├── tst-cleanup0.c
│ │ │ │ ├── tst-cleanup0.expect
│ │ │ │ ├── tst-cleanup1.c
│ │ │ │ ├── tst-cleanup2.c
│ │ │ │ ├── tst-cleanup3.c
│ │ │ │ ├── tst-cleanup4aux.c
│ │ │ │ ├── tst-cleanup4.c
│ │ │ │ ├── tst-cleanupx0.c
│ │ │ │ ├── tst-cleanupx0.expect
│ │ │ │ ├── tst-cleanupx1.c
│ │ │ │ ├── tst-cleanupx2.c
│ │ │ │ ├── tst-cleanupx3.c
│ │ │ │ ├── tst-cleanupx4.c
│ │ │ │ ├── tst-clock1.c
│ │ │ │ ├── tst-clock2.c
│ │ │ │ ├── tst-cond10.c
│ │ │ │ ├── tst-cond11.c
│ │ │ │ ├── tst-cond12.c
│ │ │ │ ├── tst-cond13.c
│ │ │ │ ├── tst-cond14.c
│ │ │ │ ├── tst-cond15.c
│ │ │ │ ├── tst-cond16.c
│ │ │ │ ├── tst-cond17.c
│ │ │ │ ├── tst-cond18.c
│ │ │ │ ├── tst-cond19.c
│ │ │ │ ├── tst-cond1.c
│ │ │ │ ├── tst-cond20.c
│ │ │ │ ├── tst-cond21.c
│ │ │ │ ├── tst-cond22.c
│ │ │ │ ├── tst-cond23.c
│ │ │ │ ├── tst-cond2.c
│ │ │ │ ├── tst-cond3.c
│ │ │ │ ├── tst-cond4.c
│ │ │ │ ├── tst-cond5.c
│ │ │ │ ├── tst-cond6.c
│ │ │ │ ├── tst-cond7.c
│ │ │ │ ├── tst-cond8.c
│ │ │ │ ├── tst-cond9.c
│ │ │ │ ├── tst-context1.c
│ │ │ │ ├── tst-detach1.c
│ │ │ │ ├── tst-dlsym1.c
│ │ │ │ ├── tst-eintr1.c
│ │ │ │ ├── tst-eintr2.c
│ │ │ │ ├── tst-eintr3.c
│ │ │ │ ├── tst-eintr4.c
│ │ │ │ ├── tst-eintr5.c
│ │ │ │ ├── tst-exec1.c
│ │ │ │ ├── tst-exec2.c
│ │ │ │ ├── tst-exec3.c
│ │ │ │ ├── tst-exec4.c
│ │ │ │ ├── tst-execstack.c
│ │ │ │ ├── tst-execstack-mod.c
│ │ │ │ ├── tst-exit1.c
│ │ │ │ ├── tst-exit2.c
│ │ │ │ ├── tst-exit3.c
│ │ │ │ ├── tst-fini1.c
│ │ │ │ ├── tst-fini1mod.c
│ │ │ │ ├── tst-flock1.c
│ │ │ │ ├── tst-flock2.c
│ │ │ │ ├── tst-fork1.c
│ │ │ │ ├── tst-fork2.c
│ │ │ │ ├── tst-fork3.c
│ │ │ │ ├── tst-fork4.c
│ │ │ │ ├── tst-getpid1.c
│ │ │ │ ├── tst-getpid2.c
│ │ │ │ ├── tst-getpid3.c
│ │ │ │ ├── tst-initializers1.c
│ │ │ │ ├── tst-initializers1-c89.c
│ │ │ │ ├── tst-initializers1-c99.c
│ │ │ │ ├── tst-initializers1-gnu89.c
│ │ │ │ ├── tst-initializers1-gnu99.c
│ │ │ │ ├── tst-join1.c
│ │ │ │ ├── tst-join2.c
│ │ │ │ ├── tst-join3.c
│ │ │ │ ├── tst-join4.c
│ │ │ │ ├── tst-join5.c
│ │ │ │ ├── tst-join6.c
│ │ │ │ ├── tst-key1.c
│ │ │ │ ├── tst-key2.c
│ │ │ │ ├── tst-key3.c
│ │ │ │ ├── tst-key4.c
│ │ │ │ ├── tst-kill1.c
│ │ │ │ ├── tst-kill2.c
│ │ │ │ ├── tst-kill3.c
│ │ │ │ ├── tst-kill4.c
│ │ │ │ ├── tst-kill5.c
│ │ │ │ ├── tst-kill6.c
│ │ │ │ ├── tst-locale1.c
│ │ │ │ ├── tst-locale2.c
│ │ │ │ ├── tst-mutex1.c
│ │ │ │ ├── tst-mutex2.c
│ │ │ │ ├── tst-mutex3.c
│ │ │ │ ├── tst-mutex4.c
│ │ │ │ ├── tst-mutex5a.c
│ │ │ │ ├── tst-mutex5.c
│ │ │ │ ├── tst-mutex6.c
│ │ │ │ ├── tst-mutex7a.c
│ │ │ │ ├── tst-mutex7.c
│ │ │ │ ├── tst-mutex8.c
│ │ │ │ ├── tst-mutex9.c
│ │ │ │ ├── tst-mutexpi1.c
│ │ │ │ ├── tst-mutexpi2.c
│ │ │ │ ├── tst-mutexpi3.c
│ │ │ │ ├── tst-mutexpi4.c
│ │ │ │ ├── tst-mutexpi5a.c
│ │ │ │ ├── tst-mutexpi5.c
│ │ │ │ ├── tst-mutexpi6.c
│ │ │ │ ├── tst-mutexpi7a.c
│ │ │ │ ├── tst-mutexpi7.c
│ │ │ │ ├── tst-mutexpi8.c
│ │ │ │ ├── tst-mutexpi9.c
│ │ │ │ ├── tst-mutexpp10.c
│ │ │ │ ├── tst-mutexpp1.c
│ │ │ │ ├── tst-mutexpp6.c
│ │ │ │ ├── tst-oddstacklimit.c
│ │ │ │ ├── tst-once1.c
│ │ │ │ ├── tst-once2.c
│ │ │ │ ├── tst-once3.c
│ │ │ │ ├── tst-once4.c
│ │ │ │ ├── tst-oncex3.c
│ │ │ │ ├── tst-oncex4.c
│ │ │ │ ├── tst-popen1.c
│ │ │ │ ├── tst-pthread-getattr.c
│ │ │ │ ├── tst-raise1.c
│ │ │ │ ├── tst-_res1.c
│ │ │ │ ├── tst-_res1mod1.c
│ │ │ │ ├── tst-_res1mod2.c
│ │ │ │ ├── tst-robust1.c
│ │ │ │ ├── tst-robust2.c
│ │ │ │ ├── tst-robust3.c
│ │ │ │ ├── tst-robust4.c
│ │ │ │ ├── tst-robust5.c
│ │ │ │ ├── tst-robust6.c
│ │ │ │ ├── tst-robust7.c
│ │ │ │ ├── tst-robust8.c
│ │ │ │ ├── tst-robust9.c
│ │ │ │ ├── tst-robustpi1.c
│ │ │ │ ├── tst-robustpi2.c
│ │ │ │ ├── tst-robustpi3.c
│ │ │ │ ├── tst-robustpi4.c
│ │ │ │ ├── tst-robustpi5.c
│ │ │ │ ├── tst-robustpi6.c
│ │ │ │ ├── tst-robustpi7.c
│ │ │ │ ├── tst-robustpi8.c
│ │ │ │ ├── tst-robustpi9.c
│ │ │ │ ├── tst-rwlock10.c
│ │ │ │ ├── tst-rwlock11.c
│ │ │ │ ├── tst-rwlock12.c
│ │ │ │ ├── tst-rwlock13.c
│ │ │ │ ├── tst-rwlock14.c
│ │ │ │ ├── tst-rwlock1.c
│ │ │ │ ├── tst-rwlock2a.c
│ │ │ │ ├── tst-rwlock2.c
│ │ │ │ ├── tst-rwlock3.c
│ │ │ │ ├── tst-rwlock4.c
│ │ │ │ ├── tst-rwlock5.c
│ │ │ │ ├── tst-rwlock6.c
│ │ │ │ ├── tst-rwlock7.c
│ │ │ │ ├── tst-rwlock8.c
│ │ │ │ ├── tst-rwlock9.c
│ │ │ │ ├── tst-sched1.c
│ │ │ │ ├── tst-sem10.c
│ │ │ │ ├── tst-sem11.c
│ │ │ │ ├── tst-sem12.c
│ │ │ │ ├── tst-sem13.c
│ │ │ │ ├── tst-sem1.c
│ │ │ │ ├── tst-sem2.c
│ │ │ │ ├── tst-sem3.c
│ │ │ │ ├── tst-sem4.c
│ │ │ │ ├── tst-sem5.c
│ │ │ │ ├── tst-sem6.c
│ │ │ │ ├── tst-sem7.c
│ │ │ │ ├── tst-sem8.c
│ │ │ │ ├── tst-sem9.c
│ │ │ │ ├── tst-setuid1.c
│ │ │ │ ├── tst-setuid1-static.c
│ │ │ │ ├── tst-signal1.c
│ │ │ │ ├── tst-signal2.c
│ │ │ │ ├── tst-signal3.c
│ │ │ │ ├── tst-signal4.c
│ │ │ │ ├── tst-signal5.c
│ │ │ │ ├── tst-signal6.c
│ │ │ │ ├── tst-signal7.c
│ │ │ │ ├── tst-spin1.c
│ │ │ │ ├── tst-spin2.c
│ │ │ │ ├── tst-spin3.c
│ │ │ │ ├── tst-stack1.c
│ │ │ │ ├── tst-stack2.c
│ │ │ │ ├── tst-stack3.c
│ │ │ │ ├── tst-stackguard1.c
│ │ │ │ ├── tst-stackguard1-static.c
│ │ │ │ ├── tst-stdio1.c
│ │ │ │ ├── tst-stdio2.c
│ │ │ │ ├── tst-sysconf.c
│ │ │ │ ├── tst-tls1.c
│ │ │ │ ├── tst-tls2.c
│ │ │ │ ├── tst-tls3.c
│ │ │ │ ├── tst-tls3mod.c
│ │ │ │ ├── tst-tls4.c
│ │ │ │ ├── tst-tls4moda.c
│ │ │ │ ├── tst-tls4modb.c
│ │ │ │ ├── tst-tls5.c
│ │ │ │ ├── tst-tls5.h
│ │ │ │ ├── tst-tls5moda.c
│ │ │ │ ├── tst-tls5modb.c
│ │ │ │ ├── tst-tls5mod.c
│ │ │ │ ├── tst-tls5modc.c
│ │ │ │ ├── tst-tls5modd.c
│ │ │ │ ├── tst-tls5mode.c
│ │ │ │ ├── tst-tls5modf.c
│ │ │ │ ├── tst-tls6.sh
│ │ │ │ ├── tst-tpp.h
│ │ │ │ ├── tst-tsd1.c
│ │ │ │ ├── tst-tsd2.c
│ │ │ │ ├── tst-tsd3.c
│ │ │ │ ├── tst-tsd4.c
│ │ │ │ ├── tst-tsd5.c
│ │ │ │ ├── tst-tsd6.c
│ │ │ │ ├── tst-typesizes.c
│ │ │ │ ├── tst-umask1.c
│ │ │ │ ├── tst-unload.c
│ │ │ │ ├── tst-vfork1.c
│ │ │ │ ├── tst-vfork1x.c
│ │ │ │ ├── tst-vfork2.c
│ │ │ │ ├── tst-vfork2x.c
│ │ │ │ ├── unwind.c
│ │ │ │ ├── vars.c
│ │ │ │ ├── version.c
│ │ │ │ └── Versions
│ │ │ ├── nptl_db
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── db_info.c
│ │ │ │ ├── db-symbols.awk
│ │ │ │ ├── db-symbols.h
│ │ │ │ ├── fetch-value.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── proc_service.h
│ │ │ │ ├── shlib-versions
│ │ │ │ ├── structs.def
│ │ │ │ ├── td_init.c
│ │ │ │ ├── td_log.c
│ │ │ │ ├── td_symbol_list.c
│ │ │ │ ├── td_ta_clear_event.c
│ │ │ │ ├── td_ta_delete.c
│ │ │ │ ├── td_ta_enable_stats.c
│ │ │ │ ├── td_ta_event_addr.c
│ │ │ │ ├── td_ta_event_getmsg.c
│ │ │ │ ├── td_ta_get_nthreads.c
│ │ │ │ ├── td_ta_get_ph.c
│ │ │ │ ├── td_ta_get_stats.c
│ │ │ │ ├── td_ta_map_id2thr.c
│ │ │ │ ├── td_ta_map_lwp2thr.c
│ │ │ │ ├── td_ta_new.c
│ │ │ │ ├── td_ta_reset_stats.c
│ │ │ │ ├── td_ta_setconcurrency.c
│ │ │ │ ├── td_ta_set_event.c
│ │ │ │ ├── td_ta_thr_iter.c
│ │ │ │ ├── td_ta_tsd_iter.c
│ │ │ │ ├── td_thr_clear_event.c
│ │ │ │ ├── td_thr_dbresume.c
│ │ │ │ ├── td_thr_dbsuspend.c
│ │ │ │ ├── td_thr_event_enable.c
│ │ │ │ ├── td_thr_event_getmsg.c
│ │ │ │ ├── td_thr_getfpregs.c
│ │ │ │ ├── td_thr_getgregs.c
│ │ │ │ ├── td_thr_get_info.c
│ │ │ │ ├── td_thr_getxregs.c
│ │ │ │ ├── td_thr_getxregsize.c
│ │ │ │ ├── td_thr_set_event.c
│ │ │ │ ├── td_thr_setfpregs.c
│ │ │ │ ├── td_thr_setgregs.c
│ │ │ │ ├── td_thr_setprio.c
│ │ │ │ ├── td_thr_setsigpending.c
│ │ │ │ ├── td_thr_setxregs.c
│ │ │ │ ├── td_thr_sigsetmask.c
│ │ │ │ ├── td_thr_tlsbase.c
│ │ │ │ ├── td_thr_tls_get_addr.c
│ │ │ │ ├── td_thr_tsd.c
│ │ │ │ ├── td_thr_validate.c
│ │ │ │ ├── thread_db.h
│ │ │ │ ├── thread_dbP.h
│ │ │ │ └── Versions
│ │ │ ├── nscd
│ │ │ │ ├── aicache.c
│ │ │ │ ├── cache.c
│ │ │ │ ├── connections.c
│ │ │ │ ├── dbg_log.c
│ │ │ │ ├── dbg_log.h
│ │ │ │ ├── Depend
│ │ │ │ ├── gai.c
│ │ │ │ ├── getgrgid_r.c
│ │ │ │ ├── getgrnam_r.c
│ │ │ │ ├── gethstbyad_r.c
│ │ │ │ ├── gethstbynm3_r.c
│ │ │ │ ├── getpwnam_r.c
│ │ │ │ ├── getpwuid_r.c
│ │ │ │ ├── getsrvbynm_r.c
│ │ │ │ ├── getsrvbypt_r.c
│ │ │ │ ├── grpcache.c
│ │ │ │ ├── hstcache.c
│ │ │ │ ├── initgrcache.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mem.c
│ │ │ │ ├── netgroupcache.c
│ │ │ │ ├── nscd.c
│ │ │ │ ├── nscd-client.h
│ │ │ │ ├── nscd.conf
│ │ │ │ ├── nscd_conf.c
│ │ │ │ ├── nscd_getai.c
│ │ │ │ ├── nscd_getgr_r.c
│ │ │ │ ├── nscd_gethst_r.c
│ │ │ │ ├── nscd_getpw_r.c
│ │ │ │ ├── nscd_getserv_r.c
│ │ │ │ ├── nscd.h
│ │ │ │ ├── nscd_helper.c
│ │ │ │ ├── nscd.init
│ │ │ │ ├── nscd_initgroups.c
│ │ │ │ ├── nscd_netgroup.c
│ │ │ │ ├── nscd_proto.h
│ │ │ │ ├── nscd_setup_thread.c
│ │ │ │ ├── nscd_stat.c
│ │ │ │ ├── pwdcache.c
│ │ │ │ ├── res_hconf.c
│ │ │ │ ├── selinux.c
│ │ │ │ ├── selinux.h
│ │ │ │ └── servicescache.c
│ │ │ ├── nss
│ │ │ │ ├── alias-lookup.c
│ │ │ │ ├── bug-erange.c
│ │ │ │ ├── databases.def
│ │ │ │ ├── db-Makefile
│ │ │ │ ├── Depend
│ │ │ │ ├── digits_dots.c
│ │ │ │ ├── ethers-lookup.c
│ │ │ │ ├── function.def
│ │ │ │ ├── getent.c
│ │ │ │ ├── getnssent.c
│ │ │ │ ├── getnssent_r.c
│ │ │ │ ├── getXXbyYY.c
│ │ │ │ ├── getXXbyYY_r.c
│ │ │ │ ├── getXXent.c
│ │ │ │ ├── getXXent_r.c
│ │ │ │ ├── grp-lookup.c
│ │ │ │ ├── hosts-lookup.c
│ │ │ │ ├── key-lookup.c
│ │ │ │ ├── makedb.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── netgrp-lookup.c
│ │ │ │ ├── network-lookup.c
│ │ │ │ ├── nss_db
│ │ │ │ │ ├── db-init.c
│ │ │ │ │ ├── db-initgroups.c
│ │ │ │ │ ├── db-netgrp.c
│ │ │ │ │ ├── db-open.c
│ │ │ │ │ ├── db-XXX.c
│ │ │ │ │ └── nss_db.h
│ │ │ │ ├── nss_files
│ │ │ │ │ ├── files-alias.c
│ │ │ │ │ ├── files-ethers.c
│ │ │ │ │ ├── files-grp.c
│ │ │ │ │ ├── files-have_o_cloexec.c
│ │ │ │ │ ├── files-hosts.c
│ │ │ │ │ ├── files-init.c
│ │ │ │ │ ├── files-initgroups.c
│ │ │ │ │ ├── files-key.c
│ │ │ │ │ ├── files-netgrp.c
│ │ │ │ │ ├── files-network.c
│ │ │ │ │ ├── files-parse.c
│ │ │ │ │ ├── files-proto.c
│ │ │ │ │ ├── files-pwd.c
│ │ │ │ │ ├── files-rpc.c
│ │ │ │ │ ├── files-service.c
│ │ │ │ │ ├── files-sgrp.c
│ │ │ │ │ ├── files-spwd.c
│ │ │ │ │ └── files-XXX.c
│ │ │ │ ├── nss.h
│ │ │ │ ├── nss_test1.c
│ │ │ │ ├── nsswitch.c
│ │ │ │ ├── nsswitch.conf
│ │ │ │ ├── nsswitch.h
│ │ │ │ ├── proto-lookup.c
│ │ │ │ ├── pwd-lookup.c
│ │ │ │ ├── rpc-lookup.c
│ │ │ │ ├── service-lookup.c
│ │ │ │ ├── sgrp-lookup.c
│ │ │ │ ├── spwd-lookup.c
│ │ │ │ ├── test-netdb.c
│ │ │ │ ├── tst-nss-static.c
│ │ │ │ ├── tst-nss-test1.c
│ │ │ │ ├── Versions
│ │ │ │ └── XXX-lookup.c
│ │ │ ├── o-iterator.mk
│ │ │ ├── po
│ │ │ │ ├── be.po
│ │ │ │ ├── bg.po
│ │ │ │ ├── ca.po
│ │ │ │ ├── cs.po
│ │ │ │ ├── da.po
│ │ │ │ ├── de.po
│ │ │ │ ├── el.po
│ │ │ │ ├── en_GB.po
│ │ │ │ ├── es.po
│ │ │ │ ├── fi.po
│ │ │ │ ├── fr.po
│ │ │ │ ├── gl.po
│ │ │ │ ├── header.pot
│ │ │ │ ├── hr.po
│ │ │ │ ├── hu.po
│ │ │ │ ├── id.po
│ │ │ │ ├── it.po
│ │ │ │ ├── ja.po
│ │ │ │ ├── ko.po
│ │ │ │ ├── libc.pot
│ │ │ │ ├── lt.po
│ │ │ │ ├── Makefile
│ │ │ │ ├── nb.po
│ │ │ │ ├── nl.po
│ │ │ │ ├── pl.po
│ │ │ │ ├── pt_BR.po
│ │ │ │ ├── ru.po
│ │ │ │ ├── rw.po
│ │ │ │ ├── sk.po
│ │ │ │ ├── sv.po
│ │ │ │ ├── tr.po
│ │ │ │ ├── vi.po
│ │ │ │ ├── zh_CN.po
│ │ │ │ └── zh_TW.po
│ │ │ ├── posix
│ │ │ │ ├── alarm.c
│ │ │ │ ├── annexc.c
│ │ │ │ ├── bits
│ │ │ │ │ ├── posix1_lim.h
│ │ │ │ │ ├── posix2_lim.h
│ │ │ │ │ └── unistd.h
│ │ │ │ ├── BOOST.tests
│ │ │ │ ├── bsd-getpgrp.c
│ │ │ │ ├── bug-ga1.c
│ │ │ │ ├── bug-ga2.c
│ │ │ │ ├── bug-getopt1.c
│ │ │ │ ├── bug-getopt2.c
│ │ │ │ ├── bug-getopt3.c
│ │ │ │ ├── bug-getopt4.c
│ │ │ │ ├── bug-getopt5.c
│ │ │ │ ├── bug-glob1.c
│ │ │ │ ├── bug-glob2.c
│ │ │ │ ├── bug-glob3.c
│ │ │ │ ├── bug-regex10.c
│ │ │ │ ├── bug-regex11.c
│ │ │ │ ├── bug-regex12.c
│ │ │ │ ├── bug-regex13.c
│ │ │ │ ├── bug-regex14.c
│ │ │ │ ├── bug-regex15.c
│ │ │ │ ├── bug-regex16.c
│ │ │ │ ├── bug-regex17.c
│ │ │ │ ├── bug-regex18.c
│ │ │ │ ├── bug-regex19.c
│ │ │ │ ├── bug-regex1.c
│ │ │ │ ├── bug-regex20.c
│ │ │ │ ├── bug-regex21.c
│ │ │ │ ├── bug-regex22.c
│ │ │ │ ├── bug-regex23.c
│ │ │ │ ├── bug-regex24.c
│ │ │ │ ├── bug-regex25.c
│ │ │ │ ├── bug-regex26.c
│ │ │ │ ├── bug-regex27.c
│ │ │ │ ├── bug-regex28.c
│ │ │ │ ├── bug-regex29.c
│ │ │ │ ├── bug-regex2.c
│ │ │ │ ├── bug-regex30.c
│ │ │ │ ├── bug-regex31.c
│ │ │ │ ├── bug-regex31.input
│ │ │ │ ├── bug-regex32.c
│ │ │ │ ├── bug-regex33.c
│ │ │ │ ├── bug-regex3.c
│ │ │ │ ├── bug-regex4.c
│ │ │ │ ├── bug-regex5.c
│ │ │ │ ├── bug-regex6.c
│ │ │ │ ├── bug-regex7.c
│ │ │ │ ├── bug-regex8.c
│ │ │ │ ├── bug-regex9.c
│ │ │ │ ├── confstr.c
│ │ │ │ ├── cpio.h
│ │ │ │ ├── Depend
│ │ │ │ ├── environ.c
│ │ │ │ ├── execl.c
│ │ │ │ ├── execle.c
│ │ │ │ ├── execlp.c
│ │ │ │ ├── execv.c
│ │ │ │ ├── execve.c
│ │ │ │ ├── execvp.c
│ │ │ │ ├── execvpe.c
│ │ │ │ ├── _exit.c
│ │ │ │ ├── fexecve.c
│ │ │ │ ├── fnmatch.c
│ │ │ │ ├── fnmatch.h
│ │ │ │ ├── fnmatch_loop.c
│ │ │ │ ├── fork.c
│ │ │ │ ├── fpathconf.c
│ │ │ │ ├── gai.conf
│ │ │ │ ├── gai_strerror.c
│ │ │ │ ├── getaddrinfo.c
│ │ │ │ ├── get_child_max.c
│ │ │ │ ├── getconf.c
│ │ │ │ ├── getegid.c
│ │ │ │ ├── geteuid.c
│ │ │ │ ├── getgid.c
│ │ │ │ ├── getgroups.c
│ │ │ │ ├── getlogin.c
│ │ │ │ ├── getlogin_r.c
│ │ │ │ ├── getopt1.c
│ │ │ │ ├── getopt.c
│ │ │ │ ├── getopt.h
│ │ │ │ ├── getopt_init.c
│ │ │ │ ├── getopt_int.h
│ │ │ │ ├── getpgid.c
│ │ │ │ ├── getpgrp.c
│ │ │ │ ├── getpid.c
│ │ │ │ ├── getppid.c
│ │ │ │ ├── getresgid.c
│ │ │ │ ├── getresuid.c
│ │ │ │ ├── getsid.c
│ │ │ │ ├── getuid.c
│ │ │ │ ├── glob64.c
│ │ │ │ ├── glob.c
│ │ │ │ ├── glob.h
│ │ │ │ ├── globtest.c
│ │ │ │ ├── globtest.sh
│ │ │ │ ├── group_member.c
│ │ │ │ ├── init-posix.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── nanosleep.c
│ │ │ │ ├── pathconf.c
│ │ │ │ ├── pause.c
│ │ │ │ ├── PCRE.tests
│ │ │ │ ├── posix_madvise.c
│ │ │ │ ├── pread64.c
│ │ │ │ ├── pread.c
│ │ │ │ ├── ptestcases.h
│ │ │ │ ├── PTESTS
│ │ │ │ ├── PTESTS2C.sed
│ │ │ │ ├── pwrite64.c
│ │ │ │ ├── pwrite.c
│ │ │ │ ├── re_comp.h
│ │ │ │ ├── regcomp.c
│ │ │ │ ├── regexbug1.c
│ │ │ │ ├── regex.c
│ │ │ │ ├── regexec.c
│ │ │ │ ├── regex.h
│ │ │ │ ├── regex_internal.c
│ │ │ │ ├── regex_internal.h
│ │ │ │ ├── runptests.c
│ │ │ │ ├── runtests.c
│ │ │ │ ├── rxspencer
│ │ │ │ │ ├── COPYRIGHT
│ │ │ │ │ └── tests
│ │ │ │ ├── sched_cpualloc.c
│ │ │ │ ├── sched_cpucount.c
│ │ │ │ ├── sched_cpufree.c
│ │ │ │ ├── sched_getaffinity.c
│ │ │ │ ├── sched_getp.c
│ │ │ │ ├── sched_gets.c
│ │ │ │ ├── sched.h
│ │ │ │ ├── sched_primax.c
│ │ │ │ ├── sched_primin.c
│ │ │ │ ├── sched_rr_gi.c
│ │ │ │ ├── sched_setaffinity.c
│ │ │ │ ├── sched_setp.c
│ │ │ │ ├── sched_sets.c
│ │ │ │ ├── sched_yield.c
│ │ │ │ ├── setgid.c
│ │ │ │ ├── setlogin.c
│ │ │ │ ├── setpgid.c
│ │ │ │ ├── setpgrp.c
│ │ │ │ ├── setresgid.c
│ │ │ │ ├── setresuid.c
│ │ │ │ ├── setsid.c
│ │ │ │ ├── setuid.c
│ │ │ │ ├── sleep.c
│ │ │ │ ├── spawnattr_destroy.c
│ │ │ │ ├── spawnattr_getdefault.c
│ │ │ │ ├── spawnattr_getflags.c
│ │ │ │ ├── spawnattr_getpgroup.c
│ │ │ │ ├── spawnattr_getschedparam.c
│ │ │ │ ├── spawnattr_getschedpolicy.c
│ │ │ │ ├── spawnattr_getsigmask.c
│ │ │ │ ├── spawnattr_init.c
│ │ │ │ ├── spawnattr_setdefault.c
│ │ │ │ ├── spawnattr_setflags.c
│ │ │ │ ├── spawnattr_setpgroup.c
│ │ │ │ ├── spawnattr_setschedparam.c
│ │ │ │ ├── spawnattr_setschedpolicy.c
│ │ │ │ ├── spawnattr_setsigmask.c
│ │ │ │ ├── spawn.c
│ │ │ │ ├── spawn_faction_addclose.c
│ │ │ │ ├── spawn_faction_adddup2.c
│ │ │ │ ├── spawn_faction_addopen.c
│ │ │ │ ├── spawn_faction_destroy.c
│ │ │ │ ├── spawn_faction_init.c
│ │ │ │ ├── spawn.h
│ │ │ │ ├── spawni.c
│ │ │ │ ├── spawn_int.h
│ │ │ │ ├── spawnp.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── times.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── unistd.h
│ │ │ │ │ ├── utsname.h
│ │ │ │ │ └── wait.h
│ │ │ │ ├── sysconf.c
│ │ │ │ ├── tar.h
│ │ │ │ ├── testcases.h
│ │ │ │ ├── testfnm.c
│ │ │ │ ├── TESTS
│ │ │ │ ├── TESTS2C.sed
│ │ │ │ ├── test-vfork.c
│ │ │ │ ├── times.c
│ │ │ │ ├── transbug.c
│ │ │ │ ├── tst-boost.c
│ │ │ │ ├── tst-chmod.c
│ │ │ │ ├── tst-cpucount.c
│ │ │ │ ├── tst-cpuset.c
│ │ │ │ ├── tst-dir.c
│ │ │ │ ├── tst-exec.c
│ │ │ │ ├── tst-execl1.c
│ │ │ │ ├── tst-execl2.c
│ │ │ │ ├── tst-execle1.c
│ │ │ │ ├── tst-execle2.c
│ │ │ │ ├── tst-execlp1.c
│ │ │ │ ├── tst-execlp2.c
│ │ │ │ ├── tst-execv1.c
│ │ │ │ ├── tst-execv2.c
│ │ │ │ ├── tst-execve1.c
│ │ │ │ ├── tst-execve2.c
│ │ │ │ ├── tst-execvp1.c
│ │ │ │ ├── tst-execvp2.c
│ │ │ │ ├── tst-execvp3.c
│ │ │ │ ├── tst-execvp4.c
│ │ │ │ ├── tst-fnmatch2.c
│ │ │ │ ├── tst-fnmatch.c
│ │ │ │ ├── tst-fnmatch.input
│ │ │ │ ├── tst-fork.c
│ │ │ │ ├── tst-getaddrinfo2.c
│ │ │ │ ├── tst-getaddrinfo3.c
│ │ │ │ ├── tst-getaddrinfo.c
│ │ │ │ ├── tst-getconf.sh
│ │ │ │ ├── tst-getlogin.c
│ │ │ │ ├── tstgetopt.c
│ │ │ │ ├── tst-getopt_long1.c
│ │ │ │ ├── tst-gnuglob.c
│ │ │ │ ├── tst-mmap.c
│ │ │ │ ├── tst-nanosleep.c
│ │ │ │ ├── tst-nice.c
│ │ │ │ ├── tst-pcre.c
│ │ │ │ ├── tst-preadwrite64.c
│ │ │ │ ├── tst-preadwrite.c
│ │ │ │ ├── tst-regex2.c
│ │ │ │ ├── tst-regex.c
│ │ │ │ ├── tst-regexloc.c
│ │ │ │ ├── tst-rfc3484-2.c
│ │ │ │ ├── tst-rfc3484-3.c
│ │ │ │ ├── tst-rfc3484.c
│ │ │ │ ├── tst-rxspencer.c
│ │ │ │ ├── tst-spawn.c
│ │ │ │ ├── tst-sysconf.c
│ │ │ │ ├── tst-truncate64.c
│ │ │ │ ├── tst-truncate.c
│ │ │ │ ├── tst-vfork1.c
│ │ │ │ ├── tst-vfork2.c
│ │ │ │ ├── tst-vfork3.c
│ │ │ │ ├── tst-waitid.c
│ │ │ │ ├── uname.c
│ │ │ │ ├── unistd.h
│ │ │ │ ├── Versions
│ │ │ │ ├── vfork.c
│ │ │ │ ├── wait3.c
│ │ │ │ ├── wait4.c
│ │ │ │ ├── wait.c
│ │ │ │ ├── wait.h
│ │ │ │ ├── waitid.c
│ │ │ │ ├── waitpid.c
│ │ │ │ ├── wordexp.c
│ │ │ │ ├── wordexp.h
│ │ │ │ ├── wordexp-test.c
│ │ │ │ └── wordexp-tst.sh
│ │ │ ├── PROJECTS
│ │ │ ├── pwd
│ │ │ │ ├── fgetpwent.c
│ │ │ │ ├── fgetpwent_r.c
│ │ │ │ ├── getpw.c
│ │ │ │ ├── getpwent.c
│ │ │ │ ├── getpwent_r.c
│ │ │ │ ├── getpwnam.c
│ │ │ │ ├── getpwnam_r.c
│ │ │ │ ├── getpwuid.c
│ │ │ │ ├── getpwuid_r.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── putpwent.c
│ │ │ │ ├── pwd.h
│ │ │ │ ├── tst-getpw.c
│ │ │ │ └── Versions
│ │ │ ├── README
│ │ │ ├── resolv
│ │ │ │ ├── arpa
│ │ │ │ │ ├── nameser_compat.h
│ │ │ │ │ └── nameser.h
│ │ │ │ ├── Banner
│ │ │ │ ├── base64.c
│ │ │ │ ├── Depend
│ │ │ │ ├── gai_cancel.c
│ │ │ │ ├── gai_error.c
│ │ │ │ ├── gai_misc.c
│ │ │ │ ├── gai_misc.h
│ │ │ │ ├── gai_notify.c
│ │ │ │ ├── gai_sigqueue.c
│ │ │ │ ├── gai_suspend.c
│ │ │ │ ├── ga_test.c
│ │ │ │ ├── getaddrinfo_a.c
│ │ │ │ ├── gethnamaddr.c
│ │ │ │ ├── herror.c
│ │ │ │ ├── inet_addr.c
│ │ │ │ ├── inet_neta.c
│ │ │ │ ├── inet_net_ntop.c
│ │ │ │ ├── inet_net_pton.c
│ │ │ │ ├── inet_ntop.c
│ │ │ │ ├── inet_pton.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mapv4v6addr.h
│ │ │ │ ├── mapv4v6hostent.h
│ │ │ │ ├── netdb.h
│ │ │ │ ├── nsap_addr.c
│ │ │ │ ├── ns_date.c
│ │ │ │ ├── ns_name.c
│ │ │ │ ├── ns_netint.c
│ │ │ │ ├── ns_parse.c
│ │ │ │ ├── ns_print.c
│ │ │ │ ├── ns_samedomain.c
│ │ │ │ ├── nss_dns
│ │ │ │ │ ├── dns-canon.c
│ │ │ │ │ ├── dns-host.c
│ │ │ │ │ └── dns-network.c
│ │ │ │ ├── ns_ttl.c
│ │ │ │ ├── README
│ │ │ │ ├── res_comp.c
│ │ │ │ ├── res_data.c
│ │ │ │ ├── res_debug.c
│ │ │ │ ├── res_debug.h
│ │ │ │ ├── res_hconf.c
│ │ │ │ ├── res_hconf.h
│ │ │ │ ├── res_init.c
│ │ │ │ ├── res_libc.c
│ │ │ │ ├── res_mkquery.c
│ │ │ │ ├── resolv.h
│ │ │ │ ├── res_query.c
│ │ │ │ ├── res_send.c
│ │ │ │ ├── res-state.c
│ │ │ │ ├── sys
│ │ │ │ │ └── bitypes.h
│ │ │ │ ├── tst-aton.c
│ │ │ │ ├── tst-inet_ntop.c
│ │ │ │ ├── tst-leaks2.c
│ │ │ │ ├── tst-leaks.c
│ │ │ │ └── Versions
│ │ │ ├── resource
│ │ │ │ ├── bug-ulimit1.c
│ │ │ │ ├── getpriority.c
│ │ │ │ ├── getrlimit64.c
│ │ │ │ ├── getrlimit.c
│ │ │ │ ├── getrusage.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── nice.c
│ │ │ │ ├── setpriority.c
│ │ │ │ ├── setrlimit64.c
│ │ │ │ ├── setrlimit.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── resource.h
│ │ │ │ │ ├── vlimit.h
│ │ │ │ │ └── vtimes.h
│ │ │ │ ├── tst-getrlimit.c
│ │ │ │ ├── ulimit.c
│ │ │ │ ├── ulimit.h
│ │ │ │ ├── Versions
│ │ │ │ ├── vlimit.c
│ │ │ │ └── vtimes.c
│ │ │ ├── rt
│ │ │ │ ├── aio_cancel.c
│ │ │ │ ├── aio_error.c
│ │ │ │ ├── aio_fsync.c
│ │ │ │ ├── aio.h
│ │ │ │ ├── aio_misc.c
│ │ │ │ ├── aio_notify.c
│ │ │ │ ├── aio_read64.c
│ │ │ │ ├── aio_read.c
│ │ │ │ ├── aio_return.c
│ │ │ │ ├── aio_sigqueue.c
│ │ │ │ ├── aio_suspend.c
│ │ │ │ ├── aio_write64.c
│ │ │ │ ├── aio_write.c
│ │ │ │ ├── bits
│ │ │ │ │ └── mqueue2.h
│ │ │ │ ├── clock_getcpuclockid.c
│ │ │ │ ├── clock_getres.c
│ │ │ │ ├── clock_gettime.c
│ │ │ │ ├── clock_nanosleep.c
│ │ │ │ ├── clock_settime.c
│ │ │ │ ├── Depend
│ │ │ │ ├── get_clockfreq.c
│ │ │ │ ├── lio_listio64.c
│ │ │ │ ├── lio_listio.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mq_close.c
│ │ │ │ ├── mq_getattr.c
│ │ │ │ ├── mq_notify.c
│ │ │ │ ├── mq_open.c
│ │ │ │ ├── mq_receive.c
│ │ │ │ ├── mq_send.c
│ │ │ │ ├── mq_setattr.c
│ │ │ │ ├── mq_timedreceive.c
│ │ │ │ ├── mq_timedsend.c
│ │ │ │ ├── mqueue.h
│ │ │ │ ├── mq_unlink.c
│ │ │ │ ├── shm_open.c
│ │ │ │ ├── shm_unlink.c
│ │ │ │ ├── timer_create.c
│ │ │ │ ├── timer_delete.c
│ │ │ │ ├── timer_getoverr.c
│ │ │ │ ├── timer_gettime.c
│ │ │ │ ├── timer_settime.c
│ │ │ │ ├── tst-aio10.c
│ │ │ │ ├── tst-aio2.c
│ │ │ │ ├── tst-aio3.c
│ │ │ │ ├── tst-aio4.c
│ │ │ │ ├── tst-aio5.c
│ │ │ │ ├── tst-aio64.c
│ │ │ │ ├── tst-aio6.c
│ │ │ │ ├── tst-aio7.c
│ │ │ │ ├── tst-aio8.c
│ │ │ │ ├── tst-aio9.c
│ │ │ │ ├── tst-aio.c
│ │ │ │ ├── tst-clock2.c
│ │ │ │ ├── tst-clock.c
│ │ │ │ ├── tst-clock_nanosleep.c
│ │ │ │ ├── tst-cpuclock1.c
│ │ │ │ ├── tst-cpuclock2.c
│ │ │ │ ├── tst-cputimer1.c
│ │ │ │ ├── tst-cputimer2.c
│ │ │ │ ├── tst-cputimer3.c
│ │ │ │ ├── tst-mqueue1.c
│ │ │ │ ├── tst-mqueue2.c
│ │ │ │ ├── tst-mqueue3.c
│ │ │ │ ├── tst-mqueue4.c
│ │ │ │ ├── tst-mqueue5.c
│ │ │ │ ├── tst-mqueue6.c
│ │ │ │ ├── tst-mqueue7.c
│ │ │ │ ├── tst-mqueue8.c
│ │ │ │ ├── tst-mqueue9.c
│ │ │ │ ├── tst-mqueue.h
│ │ │ │ ├── tst-shm.c
│ │ │ │ ├── tst-timer2.c
│ │ │ │ ├── tst-timer3.c
│ │ │ │ ├── tst-timer4.c
│ │ │ │ ├── tst-timer5.c
│ │ │ │ ├── tst-timer.c
│ │ │ │ └── Versions
│ │ │ ├── Rules
│ │ │ ├── scripts
│ │ │ │ ├── abilist.awk
│ │ │ │ ├── abi-versions.awk
│ │ │ │ ├── begin-end-check.pl
│ │ │ │ ├── check-c++-types.sh
│ │ │ │ ├── check-execstack.awk
│ │ │ │ ├── check-local-headers.sh
│ │ │ │ ├── check-localplt.awk
│ │ │ │ ├── check-textrel.awk
│ │ │ │ ├── config.guess
│ │ │ │ ├── config.sub
│ │ │ │ ├── config-uname.sh
│ │ │ │ ├── cpp
│ │ │ │ ├── data
│ │ │ │ │ ├── c++-types-alpha-linux-gnu.data
│ │ │ │ │ ├── c++-types-i386-linux-gnu.data
│ │ │ │ │ ├── c++-types-ia64-linux-gnu.data
│ │ │ │ │ ├── c++-types-powerpc64-linux-gnu.data
│ │ │ │ │ ├── c++-types-powerpc-linux-gnu.data
│ │ │ │ │ ├── c++-types-s390-linux-gnu.data
│ │ │ │ │ ├── c++-types-s390x-linux-gnu.data
│ │ │ │ │ ├── c++-types-sparc64-linux-gnu.data
│ │ │ │ │ ├── c++-types-sparc-linux-gnu.data
│ │ │ │ │ ├── c++-types-x32-linux-gnu.data
│ │ │ │ │ ├── c++-types-x86_64-linux-gnu.data
│ │ │ │ │ ├── localplt-generic.data
│ │ │ │ │ ├── localplt-i386-linux-gnu.data
│ │ │ │ │ ├── localplt-powerpc64-linux-gnu.data
│ │ │ │ │ ├── localplt-powerpc-linux-gnu.data
│ │ │ │ │ ├── localplt-s390-linux-gnu.data
│ │ │ │ │ ├── localplt-s390x-linux-gnu.data
│ │ │ │ │ ├── localplt-sparc64-linux-gnu.data
│ │ │ │ │ └── localplt-sparc-linux-gnu.data
│ │ │ │ ├── documented.sh
│ │ │ │ ├── firstversions.awk
│ │ │ │ ├── gen-as-const.awk
│ │ │ │ ├── gen-libc-abis
│ │ │ │ ├── gen-sorted.awk
│ │ │ │ ├── install-sh
│ │ │ │ ├── lib-names.awk
│ │ │ │ ├── list-sources.sh
│ │ │ │ ├── localplt.awk
│ │ │ │ ├── mkinstalldirs
│ │ │ │ ├── move-if-change
│ │ │ │ ├── output-format.sed
│ │ │ │ ├── rellns-sh
│ │ │ │ ├── rpm2dynsym.sh
│ │ │ │ ├── soversions.awk
│ │ │ │ ├── test-installation.pl
│ │ │ │ └── versions.awk
│ │ │ ├── setjmp
│ │ │ │ ├── bits
│ │ │ │ │ └── setjmp2.h
│ │ │ │ ├── bsd-_setjmp.c
│ │ │ │ ├── bsd-setjmp.c
│ │ │ │ ├── bug269-setjmp.c
│ │ │ │ ├── jmpbug.c
│ │ │ │ ├── jmp-unwind.c
│ │ │ │ ├── __longjmp.c
│ │ │ │ ├── longjmp.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── setjmp.c
│ │ │ │ ├── setjmp.h
│ │ │ │ ├── sigjmp.c
│ │ │ │ ├── tst-setjmp.c
│ │ │ │ └── Versions
│ │ │ ├── shadow
│ │ │ │ ├── fgetspent.c
│ │ │ │ ├── fgetspent_r.c
│ │ │ │ ├── getspent.c
│ │ │ │ ├── getspent_r.c
│ │ │ │ ├── getspnam.c
│ │ │ │ ├── getspnam_r.c
│ │ │ │ ├── lckpwdf.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── putspent.c
│ │ │ │ ├── sgetspent.c
│ │ │ │ ├── sgetspent_r.c
│ │ │ │ ├── shadow.h
│ │ │ │ ├── tst-shadow.c
│ │ │ │ └── Versions
│ │ │ ├── shlib-versions
│ │ │ ├── signal
│ │ │ │ ├── allocrtsig.c
│ │ │ │ ├── kill.c
│ │ │ │ ├── killpg.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── raise.c
│ │ │ │ ├── sigaction.c
│ │ │ │ ├── sigaddset.c
│ │ │ │ ├── sigaltstack.c
│ │ │ │ ├── sigandset.c
│ │ │ │ ├── sigblock.c
│ │ │ │ ├── sigdelset.c
│ │ │ │ ├── sigempty.c
│ │ │ │ ├── sigfillset.c
│ │ │ │ ├── siggetmask.c
│ │ │ │ ├── sighold.c
│ │ │ │ ├── sigignore.c
│ │ │ │ ├── sigintr.c
│ │ │ │ ├── sigisempty.c
│ │ │ │ ├── sigismem.c
│ │ │ │ ├── signal.c
│ │ │ │ ├── signal.h
│ │ │ │ ├── sigorset.c
│ │ │ │ ├── sigpause.c
│ │ │ │ ├── sigpending.c
│ │ │ │ ├── sigprocmask.c
│ │ │ │ ├── sigqueue.c
│ │ │ │ ├── sigrelse.c
│ │ │ │ ├── sigreturn.c
│ │ │ │ ├── sigset.c
│ │ │ │ ├── sigsetmask.c
│ │ │ │ ├── sigsetops.c
│ │ │ │ ├── sigsetops.h
│ │ │ │ ├── sigstack.c
│ │ │ │ ├── sigsuspend.c
│ │ │ │ ├── sigtimedwait.c
│ │ │ │ ├── sigvec.c
│ │ │ │ ├── sigwait.c
│ │ │ │ ├── sigwaitinfo.c
│ │ │ │ ├── sys
│ │ │ │ │ └── signal.h
│ │ │ │ ├── sysv_signal.c
│ │ │ │ ├── tst-raise.c
│ │ │ │ ├── tst-signal.c
│ │ │ │ ├── tst-sigset2.c
│ │ │ │ ├── tst-sigset.c
│ │ │ │ ├── tst-sigsimple.c
│ │ │ │ └── Versions
│ │ │ ├── socket
│ │ │ │ ├── accept4.c
│ │ │ │ ├── accept.c
│ │ │ │ ├── bind.c
│ │ │ │ ├── bits
│ │ │ │ │ └── socket2.h
│ │ │ │ ├── connect.c
│ │ │ │ ├── getpeername.c
│ │ │ │ ├── getsockname.c
│ │ │ │ ├── getsockopt.c
│ │ │ │ ├── have_sock_cloexec.c
│ │ │ │ ├── isfdtype.c
│ │ │ │ ├── listen.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── opensock.c
│ │ │ │ ├── recv.c
│ │ │ │ ├── recvfrom.c
│ │ │ │ ├── recvmsg.c
│ │ │ │ ├── send.c
│ │ │ │ ├── sendmsg.c
│ │ │ │ ├── sendto.c
│ │ │ │ ├── setsockopt.c
│ │ │ │ ├── shutdown.c
│ │ │ │ ├── sockatmark.c
│ │ │ │ ├── socket.c
│ │ │ │ ├── socketpair.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── socket.h
│ │ │ │ │ └── un.h
│ │ │ │ └── Versions
│ │ │ ├── soft-fp
│ │ │ │ ├── adddf3.c
│ │ │ │ ├── addsf3.c
│ │ │ │ ├── addtf3.c
│ │ │ │ ├── Banner
│ │ │ │ ├── divdf3.c
│ │ │ │ ├── divsf3.c
│ │ │ │ ├── divtf3.c
│ │ │ │ ├── double.h
│ │ │ │ ├── eqdf2.c
│ │ │ │ ├── eqsf2.c
│ │ │ │ ├── eqtf2.c
│ │ │ │ ├── extenddftf2.c
│ │ │ │ ├── extended.h
│ │ │ │ ├── extendsfdf2.c
│ │ │ │ ├── extendsftf2.c
│ │ │ │ ├── fixdfdi.c
│ │ │ │ ├── fixdfsi.c
│ │ │ │ ├── fixsfdi.c
│ │ │ │ ├── fixsfsi.c
│ │ │ │ ├── fixtfdi.c
│ │ │ │ ├── fixtfsi.c
│ │ │ │ ├── fixunsdfdi.c
│ │ │ │ ├── fixunsdfsi.c
│ │ │ │ ├── fixunssfdi.c
│ │ │ │ ├── fixunssfsi.c
│ │ │ │ ├── fixunstfdi.c
│ │ │ │ ├── fixunstfsi.c
│ │ │ │ ├── floatdidf.c
│ │ │ │ ├── floatdisf.c
│ │ │ │ ├── floatditf.c
│ │ │ │ ├── floatsidf.c
│ │ │ │ ├── floatsisf.c
│ │ │ │ ├── floatsitf.c
│ │ │ │ ├── floatundidf.c
│ │ │ │ ├── floatundisf.c
│ │ │ │ ├── floatunditf.c
│ │ │ │ ├── floatunsidf.c
│ │ │ │ ├── floatunsisf.c
│ │ │ │ ├── floatunsitf.c
│ │ │ │ ├── gedf2.c
│ │ │ │ ├── gesf2.c
│ │ │ │ ├── getf2.c
│ │ │ │ ├── ledf2.c
│ │ │ │ ├── lesf2.c
│ │ │ │ ├── letf2.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── muldf3.c
│ │ │ │ ├── mulsf3.c
│ │ │ │ ├── multf3.c
│ │ │ │ ├── negdf2.c
│ │ │ │ ├── negsf2.c
│ │ │ │ ├── negtf2.c
│ │ │ │ ├── op-1.h
│ │ │ │ ├── op-2.h
│ │ │ │ ├── op-4.h
│ │ │ │ ├── op-8.h
│ │ │ │ ├── op-common.h
│ │ │ │ ├── quad.h
│ │ │ │ ├── single.h
│ │ │ │ ├── soft-fp.h
│ │ │ │ ├── sqrtdf2.c
│ │ │ │ ├── sqrtsf2.c
│ │ │ │ ├── sqrttf2.c
│ │ │ │ ├── subdf3.c
│ │ │ │ ├── subsf3.c
│ │ │ │ ├── subtf3.c
│ │ │ │ ├── testit.c
│ │ │ │ ├── truncdfsf2.c
│ │ │ │ ├── trunctfdf2.c
│ │ │ │ ├── trunctfsf2.c
│ │ │ │ ├── unorddf2.c
│ │ │ │ ├── unordsf2.c
│ │ │ │ └── unordtf2.c
│ │ │ ├── stdio-common
│ │ │ │ ├── asprintf.c
│ │ │ │ ├── bits
│ │ │ │ │ └── printf-ldbl.h
│ │ │ │ ├── bug10.c
│ │ │ │ ├── bug11.c
│ │ │ │ ├── bug12.c
│ │ │ │ ├── bug13.c
│ │ │ │ ├── bug14.c
│ │ │ │ ├── bug16.c
│ │ │ │ ├── bug17.c
│ │ │ │ ├── bug18a.c
│ │ │ │ ├── bug18.c
│ │ │ │ ├── bug19a.c
│ │ │ │ ├── bug19.c
│ │ │ │ ├── bug1.c
│ │ │ │ ├── bug1.input
│ │ │ │ ├── bug20.c
│ │ │ │ ├── bug21.c
│ │ │ │ ├── bug22.c
│ │ │ │ ├── bug23.c
│ │ │ │ ├── bug24.c
│ │ │ │ ├── bug25.c
│ │ │ │ ├── bug2.c
│ │ │ │ ├── bug3.c
│ │ │ │ ├── bug4.c
│ │ │ │ ├── bug5.c
│ │ │ │ ├── bug6.c
│ │ │ │ ├── bug6.input
│ │ │ │ ├── bug7.c
│ │ │ │ ├── bug8.c
│ │ │ │ ├── bug9.c
│ │ │ │ ├── bug-vfprintf-nargs.c
│ │ │ │ ├── ctermid.c
│ │ │ │ ├── cuserid.c
│ │ │ │ ├── Depend
│ │ │ │ ├── dprintf.c
│ │ │ │ ├── errlist.c
│ │ │ │ ├── errnobug.c
│ │ │ │ ├── flockfile.c
│ │ │ │ ├── fprintf.c
│ │ │ │ ├── fscanf.c
│ │ │ │ ├── ftrylockfile.c
│ │ │ │ ├── funlockfile.c
│ │ │ │ ├── fxprintf.c
│ │ │ │ ├── getline.c
│ │ │ │ ├── getw.c
│ │ │ │ ├── _i18n_number.h
│ │ │ │ ├── isoc99_fscanf.c
│ │ │ │ ├── isoc99_scanf.c
│ │ │ │ ├── isoc99_sscanf.c
│ │ │ │ ├── isoc99_vfscanf.c
│ │ │ │ ├── isoc99_vscanf.c
│ │ │ │ ├── isoc99_vsscanf.c
│ │ │ │ ├── _itoa.c
│ │ │ │ ├── itoa-digits.c
│ │ │ │ ├── itoa-udigits.c
│ │ │ │ ├── _itowa.c
│ │ │ │ ├── itowa-digits.c
│ │ │ │ ├── _itowa.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── perror.c
│ │ │ │ ├── printf.c
│ │ │ │ ├── printf_fp.c
│ │ │ │ ├── printf_fphex.c
│ │ │ │ ├── printf.h
│ │ │ │ ├── printf-parse.h
│ │ │ │ ├── printf-parsemb.c
│ │ │ │ ├── printf-parsewc.c
│ │ │ │ ├── printf-prs.c
│ │ │ │ ├── printf_size.c
│ │ │ │ ├── psiginfo.c
│ │ │ │ ├── psiginfo-data.h
│ │ │ │ ├── psiginfo-define.h
│ │ │ │ ├── psignal.c
│ │ │ │ ├── putw.c
│ │ │ │ ├── reg-modifier.c
│ │ │ │ ├── reg-printf.c
│ │ │ │ ├── reg-type.c
│ │ │ │ ├── remove.c
│ │ │ │ ├── renameat.c
│ │ │ │ ├── rename.c
│ │ │ │ ├── scanf10.c
│ │ │ │ ├── scanf11.c
│ │ │ │ ├── scanf12.c
│ │ │ │ ├── scanf12.input
│ │ │ │ ├── scanf13.c
│ │ │ │ ├── scanf14.c
│ │ │ │ ├── scanf15.c
│ │ │ │ ├── scanf16.c
│ │ │ │ ├── scanf17.c
│ │ │ │ ├── scanf1.c
│ │ │ │ ├── scanf2.c
│ │ │ │ ├── scanf3.c
│ │ │ │ ├── scanf4.c
│ │ │ │ ├── scanf5.c
│ │ │ │ ├── scanf7.c
│ │ │ │ ├── scanf8.c
│ │ │ │ ├── scanf9.c
│ │ │ │ ├── scanf.c
│ │ │ │ ├── siglist.c
│ │ │ │ ├── snprintf.c
│ │ │ │ ├── sprintf.c
│ │ │ │ ├── sscanf.c
│ │ │ │ ├── stdio_ext.h
│ │ │ │ ├── stdio_lim.h.in
│ │ │ │ ├── tempnam.c
│ │ │ │ ├── tempname.c
│ │ │ │ ├── temptest.c
│ │ │ │ ├── test-fseek.c
│ │ │ │ ├── test-fwrite.c
│ │ │ │ ├── test-popen.c
│ │ │ │ ├── test_rdwr.c
│ │ │ │ ├── test-vfprintf.c
│ │ │ │ ├── tfformat.c
│ │ │ │ ├── tiformat.c
│ │ │ │ ├── tllformat.c
│ │ │ │ ├── tmpfile64.c
│ │ │ │ ├── tmpfile.c
│ │ │ │ ├── tmpnam.c
│ │ │ │ ├── tmpnam_r.c
│ │ │ │ ├── tst-cookie.c
│ │ │ │ ├── tstdiomisc.c
│ │ │ │ ├── tst-fdopen.c
│ │ │ │ ├── tst-ferror.c
│ │ │ │ ├── tst-ferror.input
│ │ │ │ ├── tst-fgets.c
│ │ │ │ ├── tst-fileno.c
│ │ │ │ ├── tst-fmemopen2.c
│ │ │ │ ├── tst-fmemopen.c
│ │ │ │ ├── tst-fphex.c
│ │ │ │ ├── tst-fphex-wide.c
│ │ │ │ ├── tst-fseek.c
│ │ │ │ ├── tst-fwrite.c
│ │ │ │ ├── tstgetln.c
│ │ │ │ ├── tstgetln.input
│ │ │ │ ├── tst-gets.c
│ │ │ │ ├── tst-gets.input
│ │ │ │ ├── tst-grouping.c
│ │ │ │ ├── tst-long-dbl-fphex.c
│ │ │ │ ├── tst-obprintf.c
│ │ │ │ ├── tst-perror.c
│ │ │ │ ├── tst-popen2.c
│ │ │ │ ├── tst-popen.c
│ │ │ │ ├── tst-printf.c
│ │ │ │ ├── tst-printf.sh
│ │ │ │ ├── tst-printfsz.c
│ │ │ │ ├── tst-put-error.c
│ │ │ │ ├── tst-rndseek.c
│ │ │ │ ├── tstscanf.c
│ │ │ │ ├── tstscanf.input
│ │ │ │ ├── tst-setvbuf1.c
│ │ │ │ ├── tst-setvbuf1.expect
│ │ │ │ ├── tst-sprintf2.c
│ │ │ │ ├── tst-sprintf3.c
│ │ │ │ ├── tst-sprintf.c
│ │ │ │ ├── tst-sscanf.c
│ │ │ │ ├── tst-swprintf.c
│ │ │ │ ├── tst-swscanf.c
│ │ │ │ ├── tst-tmpnam.c
│ │ │ │ ├── tst-unbputc.c
│ │ │ │ ├── tst-unbputc.sh
│ │ │ │ ├── tst-ungetc.c
│ │ │ │ ├── tst-unlockedio.c
│ │ │ │ ├── tst-wc-printf.c
│ │ │ │ ├── Versions
│ │ │ │ ├── vfprintf.c
│ │ │ │ ├── vfscanf.c
│ │ │ │ ├── vfwprintf.c
│ │ │ │ ├── vfwscanf.c
│ │ │ │ ├── vprintf.c
│ │ │ │ └── xbug.c
│ │ │ ├── stdlib
│ │ │ │ ├── a64l.c
│ │ │ │ ├── abort.c
│ │ │ │ ├── abs.c
│ │ │ │ ├── addmul_1.c
│ │ │ │ ├── add_n.c
│ │ │ │ ├── alloca.h
│ │ │ │ ├── atexit.c
│ │ │ │ ├── atof.c
│ │ │ │ ├── atoi.c
│ │ │ │ ├── atol.c
│ │ │ │ ├── atoll.c
│ │ │ │ ├── at_quick_exit.c
│ │ │ │ ├── bits
│ │ │ │ │ ├── monetary-ldbl.h
│ │ │ │ │ ├── stdlib.h
│ │ │ │ │ └── stdlib-ldbl.h
│ │ │ │ ├── bsearch.c
│ │ │ │ ├── bug-fmtmsg1.c
│ │ │ │ ├── bug-getcontext.c
│ │ │ │ ├── bug-strtod2.c
│ │ │ │ ├── bug-strtod.c
│ │ │ │ ├── canonicalize.c
│ │ │ │ ├── cmp.c
│ │ │ │ ├── cxa_atexit.c
│ │ │ │ ├── cxa_at_quick_exit.c
│ │ │ │ ├── cxa_finalize.c
│ │ │ │ ├── dbl2mpn.c
│ │ │ │ ├── Depend
│ │ │ │ ├── div.c
│ │ │ │ ├── divmod_1.c
│ │ │ │ ├── divrem.c
│ │ │ │ ├── drand48.c
│ │ │ │ ├── drand48-iter.c
│ │ │ │ ├── drand48_r.c
│ │ │ │ ├── erand48.c
│ │ │ │ ├── erand48_r.c
│ │ │ │ ├── errno.h
│ │ │ │ ├── exit.c
│ │ │ │ ├── exit.h
│ │ │ │ ├── fmtmsg.c
│ │ │ │ ├── fmtmsg.h
│ │ │ │ ├── fpioconst.c
│ │ │ │ ├── fpioconst.h
│ │ │ │ ├── getcontext.c
│ │ │ │ ├── getenv.c
│ │ │ │ ├── getsubopt.c
│ │ │ │ ├── gmp.h
│ │ │ │ ├── gmp-impl.h
│ │ │ │ ├── grouping.c
│ │ │ │ ├── grouping.h
│ │ │ │ ├── groupingwc.c
│ │ │ │ ├── inlines.c
│ │ │ │ ├── isomac.c
│ │ │ │ ├── jrand48.c
│ │ │ │ ├── jrand48_r.c
│ │ │ │ ├── l64a.c
│ │ │ │ ├── labs.c
│ │ │ │ ├── lcong48.c
│ │ │ │ ├── lcong48_r.c
│ │ │ │ ├── ldbl2mpn.c
│ │ │ │ ├── ldiv.c
│ │ │ │ ├── llabs.c
│ │ │ │ ├── lldiv.c
│ │ │ │ ├── longlong.h
│ │ │ │ ├── lrand48.c
│ │ │ │ ├── lrand48_r.c
│ │ │ │ ├── lshift.c
│ │ │ │ ├── makecontext.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mblen.c
│ │ │ │ ├── mbstowcs.c
│ │ │ │ ├── mbtowc.c
│ │ │ │ ├── mod_1.c
│ │ │ │ ├── monetary.h
│ │ │ │ ├── mp_clz_tab.c
│ │ │ │ ├── mpn2dbl.c
│ │ │ │ ├── mpn2flt.c
│ │ │ │ ├── mpn2ldbl.c
│ │ │ │ ├── mrand48.c
│ │ │ │ ├── mrand48_r.c
│ │ │ │ ├── msort.c
│ │ │ │ ├── mul_1.c
│ │ │ │ ├── mul.c
│ │ │ │ ├── mul_n.c
│ │ │ │ ├── nrand48.c
│ │ │ │ ├── nrand48_r.c
│ │ │ │ ├── old_atexit.c
│ │ │ │ ├── on_exit.c
│ │ │ │ ├── putenv.c
│ │ │ │ ├── qsort.c
│ │ │ │ ├── quick_exit.c
│ │ │ │ ├── rand.c
│ │ │ │ ├── random.c
│ │ │ │ ├── random_r.c
│ │ │ │ ├── rand_r.c
│ │ │ │ ├── rpmatch.c
│ │ │ │ ├── rshift.c
│ │ │ │ ├── secure-getenv.c
│ │ │ │ ├── seed48.c
│ │ │ │ ├── seed48_r.c
│ │ │ │ ├── setcontext.c
│ │ │ │ ├── setenv.c
│ │ │ │ ├── srand48.c
│ │ │ │ ├── srand48_r.c
│ │ │ │ ├── stdlib.h
│ │ │ │ ├── strfmon.c
│ │ │ │ ├── strfmon_l.c
│ │ │ │ ├── strtod.c
│ │ │ │ ├── strtod_l.c
│ │ │ │ ├── strtof.c
│ │ │ │ ├── strtof_l.c
│ │ │ │ ├── strtoimax.c
│ │ │ │ ├── strtol.c
│ │ │ │ ├── strtold.c
│ │ │ │ ├── strtold_l.c
│ │ │ │ ├── strtol_l.c
│ │ │ │ ├── strtoll.c
│ │ │ │ ├── strtoll_l.c
│ │ │ │ ├── strtoul.c
│ │ │ │ ├── strtoul_l.c
│ │ │ │ ├── strtoull.c
│ │ │ │ ├── strtoull_l.c
│ │ │ │ ├── strtoumax.c
│ │ │ │ ├── submul_1.c
│ │ │ │ ├── sub_n.c
│ │ │ │ ├── swapcontext.c
│ │ │ │ ├── sys
│ │ │ │ │ └── errno.h
│ │ │ │ ├── system.c
│ │ │ │ ├── tens_in_limb.c
│ │ │ │ ├── test-a64l.c
│ │ │ │ ├── test-canon2.c
│ │ │ │ ├── test-canon.c
│ │ │ │ ├── testdiv.c
│ │ │ │ ├── testdiv.input
│ │ │ │ ├── testmb2.c
│ │ │ │ ├── testmb.c
│ │ │ │ ├── testrand.c
│ │ │ │ ├── testsort.c
│ │ │ │ ├── tst-atof1.c
│ │ │ │ ├── tst-atof2.c
│ │ │ │ ├── tst-bsearch.c
│ │ │ │ ├── tst-environ.c
│ │ │ │ ├── tst-fmtmsg.c
│ │ │ │ ├── tst-fmtmsg.sh
│ │ │ │ ├── tst-limits.c
│ │ │ │ ├── tst-makecontext2.c
│ │ │ │ ├── tst-makecontext3.c
│ │ │ │ ├── tst-makecontext.c
│ │ │ │ ├── tst-putenv.c
│ │ │ │ ├── tst-putenvmod.c
│ │ │ │ ├── tst-qsort2.c
│ │ │ │ ├── tst-qsort.c
│ │ │ │ ├── tst-rand48-2.c
│ │ │ │ ├── tst-rand48.c
│ │ │ │ ├── tst-random2.c
│ │ │ │ ├── tst-random.c
│ │ │ │ ├── tst-setcontext.c
│ │ │ │ ├── tst-strtod2.c
│ │ │ │ ├── tst-strtod3.c
│ │ │ │ ├── tst-strtod4.c
│ │ │ │ ├── tst-strtod5.c
│ │ │ │ ├── tst-strtod6.c
│ │ │ │ ├── tst-strtod.c
│ │ │ │ ├── tst-strtol.c
│ │ │ │ ├── tst-strtoll.c
│ │ │ │ ├── tst-system.c
│ │ │ │ ├── tst-unsetenv1.c
│ │ │ │ ├── tst-xpg-basename.c
│ │ │ │ ├── ucontext.h
│ │ │ │ ├── udiv_qrnnd.c
│ │ │ │ ├── Versions
│ │ │ │ ├── wcstoimax.c
│ │ │ │ ├── wcstombs.c
│ │ │ │ ├── wcstoumax.c
│ │ │ │ ├── wctomb.c
│ │ │ │ └── xpg_basename.c
│ │ │ ├── streams
│ │ │ │ ├── fattach.c
│ │ │ │ ├── fdetach.c
│ │ │ │ ├── getmsg.c
│ │ │ │ ├── getpmsg.c
│ │ │ │ ├── isastream.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── putmsg.c
│ │ │ │ ├── putpmsg.c
│ │ │ │ ├── stropts.h
│ │ │ │ ├── sys
│ │ │ │ │ └── stropts.h
│ │ │ │ └── Versions
│ │ │ ├── string
│ │ │ │ ├── argz-addsep.c
│ │ │ │ ├── argz-append.c
│ │ │ │ ├── argz-count.c
│ │ │ │ ├── argz-create.c
│ │ │ │ ├── argz-ctsep.c
│ │ │ │ ├── argz-delete.c
│ │ │ │ ├── argz-extract.c
│ │ │ │ ├── argz.h
│ │ │ │ ├── argz-insert.c
│ │ │ │ ├── argz-next.c
│ │ │ │ ├── argz-replace.c
│ │ │ │ ├── argz-stringify.c
│ │ │ │ ├── basename.c
│ │ │ │ ├── bcopy.c
│ │ │ │ ├── bits
│ │ │ │ │ ├── string2.h
│ │ │ │ │ └── string3.h
│ │ │ │ ├── bug-envz1.c
│ │ │ │ ├── bug-strchr1.c
│ │ │ │ ├── bug-strcoll1.c
│ │ │ │ ├── bug-strncat1.c
│ │ │ │ ├── bug-strpbrk1.c
│ │ │ │ ├── bug-strspn1.c
│ │ │ │ ├── bug-strstr1.c
│ │ │ │ ├── bug-strtok1.c
│ │ │ │ ├── byteswap.h
│ │ │ │ ├── bzero.c
│ │ │ │ ├── Depend
│ │ │ │ ├── endian.h
│ │ │ │ ├── envz.c
│ │ │ │ ├── envz.h
│ │ │ │ ├── ffs.c
│ │ │ │ ├── ffsll.c
│ │ │ │ ├── inl-tester.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── memccpy.c
│ │ │ │ ├── memchr.c
│ │ │ │ ├── memcmp.c
│ │ │ │ ├── memcpy.c
│ │ │ │ ├── memfrob.c
│ │ │ │ ├── memmem.c
│ │ │ │ ├── memmove.c
│ │ │ │ ├── memory.h
│ │ │ │ ├── mempcpy.c
│ │ │ │ ├── memrchr.c
│ │ │ │ ├── memset.c
│ │ │ │ ├── noinl-tester.c
│ │ │ │ ├── rawmemchr.c
│ │ │ │ ├── stpcpy.c
│ │ │ │ ├── stpncpy.c
│ │ │ │ ├── stratcliff.c
│ │ │ │ ├── strcasecmp.c
│ │ │ │ ├── strcasecmp_l.c
│ │ │ │ ├── strcasestr.c
│ │ │ │ ├── strcat.c
│ │ │ │ ├── strchr.c
│ │ │ │ ├── strchrnul.c
│ │ │ │ ├── strcmp.c
│ │ │ │ ├── strcoll.c
│ │ │ │ ├── strcoll_l.c
│ │ │ │ ├── strcpy.c
│ │ │ │ ├── strcspn.c
│ │ │ │ ├── strdup.c
│ │ │ │ ├── _strerror.c
│ │ │ │ ├── strerror.c
│ │ │ │ ├── strerror_l.c
│ │ │ │ ├── strfry.c
│ │ │ │ ├── string.h
│ │ │ │ ├── string-inlines.c
│ │ │ │ ├── strings.h
│ │ │ │ ├── strlen.c
│ │ │ │ ├── strncase.c
│ │ │ │ ├── strncase_l.c
│ │ │ │ ├── strncat.c
│ │ │ │ ├── strncmp.c
│ │ │ │ ├── strncpy.c
│ │ │ │ ├── strndup.c
│ │ │ │ ├── strnlen.c
│ │ │ │ ├── strpbrk.c
│ │ │ │ ├── strrchr.c
│ │ │ │ ├── strsep.c
│ │ │ │ ├── strsignal.c
│ │ │ │ ├── strspn.c
│ │ │ │ ├── strstr.c
│ │ │ │ ├── strtok.c
│ │ │ │ ├── strtok_r.c
│ │ │ │ ├── str-two-way.h
│ │ │ │ ├── strverscmp.c
│ │ │ │ ├── strxfrm.c
│ │ │ │ ├── strxfrm_l.c
│ │ │ │ ├── swab.c
│ │ │ │ ├── testcopy.c
│ │ │ │ ├── tester.c
│ │ │ │ ├── test-ffs.c
│ │ │ │ ├── test-memccpy.c
│ │ │ │ ├── test-memchr.c
│ │ │ │ ├── test-memcmp.c
│ │ │ │ ├── test-memcpy.c
│ │ │ │ ├── test-memmem.c
│ │ │ │ ├── test-memmove.c
│ │ │ │ ├── test-mempcpy.c
│ │ │ │ ├── test-memset.c
│ │ │ │ ├── test-rawmemchr.c
│ │ │ │ ├── test-stpcpy.c
│ │ │ │ ├── test-stpncpy.c
│ │ │ │ ├── test-strcasecmp.c
│ │ │ │ ├── test-strcasestr.c
│ │ │ │ ├── test-strcat.c
│ │ │ │ ├── test-strchr.c
│ │ │ │ ├── test-strchrnul.c
│ │ │ │ ├── test-strcmp.c
│ │ │ │ ├── test-strcpy.c
│ │ │ │ ├── test-strcspn.c
│ │ │ │ ├── test-string.h
│ │ │ │ ├── test-strlen.c
│ │ │ │ ├── test-strncasecmp.c
│ │ │ │ ├── test-strncat.c
│ │ │ │ ├── test-strncmp.c
│ │ │ │ ├── test-strncpy.c
│ │ │ │ ├── test-strnlen.c
│ │ │ │ ├── test-strpbrk.c
│ │ │ │ ├── test-strrchr.c
│ │ │ │ ├── test-strspn.c
│ │ │ │ ├── test-strstr.c
│ │ │ │ ├── tst-bswap.c
│ │ │ │ ├── tst-endian.c
│ │ │ │ ├── tst-inlcall.c
│ │ │ │ ├── tst-strfry.c
│ │ │ │ ├── tst-strlen.c
│ │ │ │ ├── tst-strtok.c
│ │ │ │ ├── tst-strtok_r.c
│ │ │ │ ├── tst-strxfrm2.c
│ │ │ │ ├── tst-strxfrm.c
│ │ │ │ ├── tst-svc2.c
│ │ │ │ ├── tst-svc.c
│ │ │ │ ├── tst-svc.expect
│ │ │ │ ├── tst-svc.input
│ │ │ │ ├── Versions
│ │ │ │ ├── wordcopy.c
│ │ │ │ └── xpg-strerror.c
│ │ │ ├── sunrpc
│ │ │ │ ├── auth_des.c
│ │ │ │ ├── authdes_prot.c
│ │ │ │ ├── auth_none.c
│ │ │ │ ├── auth_unix.c
│ │ │ │ ├── authuxprot.c
│ │ │ │ ├── bindrsvprt.c
│ │ │ │ ├── clnt_gen.c
│ │ │ │ ├── clnt_perr.c
│ │ │ │ ├── clnt_raw.c
│ │ │ │ ├── clnt_simp.c
│ │ │ │ ├── clnt_tcp.c
│ │ │ │ ├── clnt_udp.c
│ │ │ │ ├── clnt_unix.c
│ │ │ │ ├── create_xid.c
│ │ │ │ ├── des_crypt.c
│ │ │ │ ├── des_impl.c
│ │ │ │ ├── des_soft.c
│ │ │ │ ├── etc.rpc
│ │ │ │ ├── get_myaddr.c
│ │ │ │ ├── getrpcport.c
│ │ │ │ ├── key_call.c
│ │ │ │ ├── key_prot.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── netname.c
│ │ │ │ ├── openchild.c
│ │ │ │ ├── pmap_clnt.c
│ │ │ │ ├── pmap_prot2.c
│ │ │ │ ├── pmap_prot.c
│ │ │ │ ├── pmap_rmt.c
│ │ │ │ ├── pm_getmaps.c
│ │ │ │ ├── pm_getport.c
│ │ │ │ ├── proto.h
│ │ │ │ ├── publickey.c
│ │ │ │ ├── rpc
│ │ │ │ │ ├── auth_des.h
│ │ │ │ │ ├── auth.h
│ │ │ │ │ ├── auth_unix.h
│ │ │ │ │ ├── clnt.h
│ │ │ │ │ ├── des_crypt.h
│ │ │ │ │ ├── key_prot.h
│ │ │ │ │ ├── netdb.h
│ │ │ │ │ ├── pmap_clnt.h
│ │ │ │ │ ├── pmap_prot.h
│ │ │ │ │ ├── pmap_rmt.h
│ │ │ │ │ ├── rpc_des.h
│ │ │ │ │ ├── rpc.h
│ │ │ │ │ ├── rpc_msg.h
│ │ │ │ │ ├── svc_auth.h
│ │ │ │ │ ├── svc.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ └── xdr.h
│ │ │ │ ├── rpc_clntout.c
│ │ │ │ ├── rpc_cmsg.c
│ │ │ │ ├── rpc_common.c
│ │ │ │ ├── rpc_cout.c
│ │ │ │ ├── rpc_dtable.c
│ │ │ │ ├── rpcgen.c
│ │ │ │ ├── rpc_hout.c
│ │ │ │ ├── rpcinfo.c
│ │ │ │ ├── rpc_main.c
│ │ │ │ ├── rpc_parse.c
│ │ │ │ ├── rpc_parse.h
│ │ │ │ ├── rpc_prot.c
│ │ │ │ ├── rpc_sample.c
│ │ │ │ ├── rpc_scan.c
│ │ │ │ ├── rpc_scan.h
│ │ │ │ ├── rpcsvc
│ │ │ │ │ ├── bootparam.h
│ │ │ │ │ ├── bootparam_prot.x
│ │ │ │ │ ├── key_prot.x
│ │ │ │ │ ├── klm_prot.x
│ │ │ │ │ ├── mount.x
│ │ │ │ │ ├── nfs_prot.x
│ │ │ │ │ ├── nlm_prot.x
│ │ │ │ │ ├── rex.x
│ │ │ │ │ ├── rquota.x
│ │ │ │ │ ├── rstat.x
│ │ │ │ │ ├── rusers.x
│ │ │ │ │ ├── sm_inter.x
│ │ │ │ │ ├── spray.x
│ │ │ │ │ └── yppasswd.x
│ │ │ │ ├── rpc_svcout.c
│ │ │ │ ├── rpc_tblout.c
│ │ │ │ ├── rpc_thread.c
│ │ │ │ ├── rpc_util.c
│ │ │ │ ├── rpc_util.h
│ │ │ │ ├── rtime.c
│ │ │ │ ├── svc_auth.c
│ │ │ │ ├── svcauth_des.c
│ │ │ │ ├── svc_authux.c
│ │ │ │ ├── svc.c
│ │ │ │ ├── svc_raw.c
│ │ │ │ ├── svc_run.c
│ │ │ │ ├── svc_simple.c
│ │ │ │ ├── svc_tcp.c
│ │ │ │ ├── svc_udp.c
│ │ │ │ ├── svc_unix.c
│ │ │ │ ├── thrsvc.c
│ │ │ │ ├── tst-getmyaddr.c
│ │ │ │ ├── tst-xdrmem2.c
│ │ │ │ ├── tst-xdrmem.c
│ │ │ │ ├── Versions
│ │ │ │ ├── xcrypt.c
│ │ │ │ ├── xdr_array.c
│ │ │ │ ├── xdr.c
│ │ │ │ ├── xdr_float.c
│ │ │ │ ├── xdr_intXX_t.c
│ │ │ │ ├── xdr_mem.c
│ │ │ │ ├── xdr_rec.c
│ │ │ │ ├── xdr_ref.c
│ │ │ │ ├── xdr_sizeof.c
│ │ │ │ └── xdr_stdio.c
│ │ │ ├── sysdeps
│ │ │ │ ├── generic
│ │ │ │ │ ├── abort-instr.h
│ │ │ │ │ ├── aio_misc.h
│ │ │ │ │ ├── allocalim.h
│ │ │ │ │ ├── a.out.h
│ │ │ │ │ ├── asm-syntax.h
│ │ │ │ │ ├── bits
│ │ │ │ │ │ └── hwcap.h
│ │ │ │ │ ├── bp-checks.h
│ │ │ │ │ ├── bp-semctl.h
│ │ │ │ │ ├── bp-start.h
│ │ │ │ │ ├── bp-sym.h
│ │ │ │ │ ├── bp-thunks.h
│ │ │ │ │ ├── confstr.h
│ │ │ │ │ ├── device-nrs.h
│ │ │ │ │ ├── dirstream.h
│ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ ├── dl-dtprocnum.h
│ │ │ │ │ ├── dl-fptr.h
│ │ │ │ │ ├── dl-hash.h
│ │ │ │ │ ├── dl-irel.h
│ │ │ │ │ ├── dl-librecon.h
│ │ │ │ │ ├── dl-lookupcfg.h
│ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ ├── dl-osinfo.h
│ │ │ │ │ ├── dl-procinfo.c
│ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ ├── dl-sysdep.h
│ │ │ │ │ ├── dl-tls.h
│ │ │ │ │ ├── dwarf2.h
│ │ │ │ │ ├── entry.h
│ │ │ │ │ ├── errqueue.h
│ │ │ │ │ ├── fd_to_filename.h
│ │ │ │ │ ├── fork.h
│ │ │ │ │ ├── fpu_control.h
│ │ │ │ │ ├── frame.h
│ │ │ │ │ ├── framestate.c
│ │ │ │ │ ├── gccframe.h
│ │ │ │ │ ├── _G_config.h
│ │ │ │ │ ├── gmp-mparam.h
│ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ ├── ifreq.h
│ │ │ │ │ ├── ifunc-sel.h
│ │ │ │ │ ├── intr-msg.h
│ │ │ │ │ ├── inttypes.h
│ │ │ │ │ ├── _itoa.h
│ │ │ │ │ ├── ldconfig.h
│ │ │ │ │ ├── ldsodefs.h
│ │ │ │ │ ├── libcidn.abilist
│ │ │ │ │ ├── libm-test-ulps
│ │ │ │ │ ├── libnss_compat.abilist
│ │ │ │ │ ├── libnss_db.abilist
│ │ │ │ │ ├── libnss_dns.abilist
│ │ │ │ │ ├── libnss_files.abilist
│ │ │ │ │ ├── libnss_hesiod.abilist
│ │ │ │ │ ├── libnss_nis.abilist
│ │ │ │ │ ├── libnss_nisplus.abilist
│ │ │ │ │ ├── local-setxid.h
│ │ │ │ │ ├── machine-gmon.h
│ │ │ │ │ ├── machine-lock.h
│ │ │ │ │ ├── machine-sp.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── malloc-machine.h
│ │ │ │ │ ├── math_ldbl.h
│ │ │ │ │ ├── math_ldbl_opt.h
│ │ │ │ │ ├── math_private.h
│ │ │ │ │ ├── memcopy.h
│ │ │ │ │ ├── memusage.h
│ │ │ │ │ ├── net
│ │ │ │ │ │ └── if.h
│ │ │ │ │ ├── netinet
│ │ │ │ │ │ ├── if_ether.h
│ │ │ │ │ │ ├── in_systm.h
│ │ │ │ │ │ ├── ip.h
│ │ │ │ │ │ └── tcp.h
│ │ │ │ │ ├── nfs
│ │ │ │ │ │ └── nfs.h
│ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ ├── nscd-types.h
│ │ │ │ │ ├── pagecopy.h
│ │ │ │ │ ├── paths.h
│ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ ├── pty-private.h
│ │ │ │ │ ├── register-dump.h
│ │ │ │ │ ├── rtld-lowlevel.h
│ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ ├── siglist.h
│ │ │ │ │ ├── sigset-cvt-mask.h
│ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ ├── stackinfo.h
│ │ │ │ │ ├── stdint.h
│ │ │ │ │ ├── symbol-hacks.h
│ │ │ │ │ ├── sys
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ ├── reboot.h
│ │ │ │ │ │ ├── socketvar.h
│ │ │ │ │ │ ├── swap.h
│ │ │ │ │ │ ├── syscall.h
│ │ │ │ │ │ ├── sysinfo.h
│ │ │ │ │ │ ├── sysmacros.h
│ │ │ │ │ │ ├── ttydefaults.h
│ │ │ │ │ │ └── ucontext.h
│ │ │ │ │ ├── sysdep-cancel.h
│ │ │ │ │ ├── sysdep.h
│ │ │ │ │ ├── testrtsig.h
│ │ │ │ │ ├── thread_state.h
│ │ │ │ │ ├── tls.h
│ │ │ │ │ ├── tls-macros.h
│ │ │ │ │ ├── tst-audit.h
│ │ │ │ │ ├── tst-stack-align.h
│ │ │ │ │ ├── unsecvars.h
│ │ │ │ │ ├── unwind-dw2.c
│ │ │ │ │ ├── unwind-dw2-fde.c
│ │ │ │ │ ├── unwind-dw2-fde-glibc.c
│ │ │ │ │ ├── unwind-dw2-fde.h
│ │ │ │ │ ├── unwind.h
│ │ │ │ │ ├── unwind-pe.c
│ │ │ │ │ ├── unwind-pe.h
│ │ │ │ │ └── utmp-equal.h
│ │ │ │ ├── gnu
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── ipc.h
│ │ │ │ │ │ ├── msq.h
│ │ │ │ │ │ ├── sem.h
│ │ │ │ │ │ ├── shm.h
│ │ │ │ │ │ ├── utmp.h
│ │ │ │ │ │ └── utmpx.h
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── errlist.awk
│ │ │ │ │ ├── errlist.c
│ │ │ │ │ ├── errlist-compat.awk
│ │ │ │ │ ├── _G_config.h
│ │ │ │ │ ├── getutmp.c
│ │ │ │ │ ├── getutmpx.c
│ │ │ │ │ ├── glob64.c
│ │ │ │ │ ├── ifaddrs.c
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── net
│ │ │ │ │ │ └── if.h
│ │ │ │ │ ├── netinet
│ │ │ │ │ │ ├── ip_icmp.h
│ │ │ │ │ │ ├── tcp.h
│ │ │ │ │ │ └── udp.h
│ │ │ │ │ ├── rt-unwind-resume.c
│ │ │ │ │ ├── siglist.c
│ │ │ │ │ ├── sys
│ │ │ │ │ │ └── mtio.h
│ │ │ │ │ ├── unwind-resume.c
│ │ │ │ │ ├── updwtmp.c
│ │ │ │ │ ├── utmp_file.c
│ │ │ │ │ └── utmpx.h
│ │ │ │ ├── i386
│ │ │ │ │ ├── abort-instr.h
│ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ ├── add_n.S
│ │ │ │ │ ├── asm-syntax.h
│ │ │ │ │ ├── backtrace.c
│ │ │ │ │ ├── bp-asm.h
│ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ ├── bzero.c
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── crti.S
│ │ │ │ │ ├── crtn.S
│ │ │ │ │ ├── dl-irel.h
│ │ │ │ │ ├── dl-lookupcfg.h
│ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ ├── dl-procinfo.c
│ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ ├── dl-tlsdesc.h
│ │ │ │ │ ├── dl-tlsdesc.S
│ │ │ │ │ ├── dl-tls.h
│ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ ├── ffs.c
│ │ │ │ │ ├── fpu
│ │ │ │ │ │ ├── doasin.c
│ │ │ │ │ │ ├── e_acosf.S
│ │ │ │ │ │ ├── e_acoshf.S
│ │ │ │ │ │ ├── e_acoshl.S
│ │ │ │ │ │ ├── e_acosh.S
│ │ │ │ │ │ ├── e_acosl.c
│ │ │ │ │ │ ├── e_acos.S
│ │ │ │ │ │ ├── e_asinf.S
│ │ │ │ │ │ ├── e_asin.S
│ │ │ │ │ │ ├── e_atan2f.S
│ │ │ │ │ │ ├── e_atan2l.c
│ │ │ │ │ │ ├── e_atan2.S
│ │ │ │ │ │ ├── e_atanhf.S
│ │ │ │ │ │ ├── e_atanhl.S
│ │ │ │ │ │ ├── e_atanh.S
│ │ │ │ │ │ ├── e_exp10f.S
│ │ │ │ │ │ ├── e_exp10l.S
│ │ │ │ │ │ ├── e_exp10.S
│ │ │ │ │ │ ├── e_exp2f.S
│ │ │ │ │ │ ├── e_exp2l.S
│ │ │ │ │ │ ├── e_exp2.S
│ │ │ │ │ │ ├── e_expf.S
│ │ │ │ │ │ ├── e_expl.S
│ │ │ │ │ │ ├── e_exp.S
│ │ │ │ │ │ ├── e_fmodf.S
│ │ │ │ │ │ ├── e_fmodl.c
│ │ │ │ │ │ ├── e_fmod.S
│ │ │ │ │ │ ├── e_hypotf.S
│ │ │ │ │ │ ├── e_hypot.S
│ │ │ │ │ │ ├── e_ilogbf.S
│ │ │ │ │ │ ├── e_ilogbl.S
│ │ │ │ │ │ ├── e_ilogb.S
│ │ │ │ │ │ ├── e_log10f.S
│ │ │ │ │ │ ├── e_log10l.S
│ │ │ │ │ │ ├── e_log10.S
│ │ │ │ │ │ ├── e_log2f.S
│ │ │ │ │ │ ├── e_log2l.S
│ │ │ │ │ │ ├── e_log2.S
│ │ │ │ │ │ ├── e_logf.S
│ │ │ │ │ │ ├── e_logl.S
│ │ │ │ │ │ ├── e_log.S
│ │ │ │ │ │ ├── e_powf.S
│ │ │ │ │ │ ├── e_powl.S
│ │ │ │ │ │ ├── e_pow.S
│ │ │ │ │ │ ├── e_remainderf.S
│ │ │ │ │ │ ├── e_remainderl.S
│ │ │ │ │ │ ├── e_remainder.S
│ │ │ │ │ │ ├── e_rem_pio2.c
│ │ │ │ │ │ ├── e_scalbf.S
│ │ │ │ │ │ ├── e_scalbl.S
│ │ │ │ │ │ ├── e_scalb.S
│ │ │ │ │ │ ├── e_sqrtf.S
│ │ │ │ │ │ ├── e_sqrtl.c
│ │ │ │ │ │ ├── e_sqrt.S
│ │ │ │ │ │ ├── fclrexcpt.c
│ │ │ │ │ │ ├── fedisblxcpt.c
│ │ │ │ │ │ ├── feenablxcpt.c
│ │ │ │ │ │ ├── fegetenv.c
│ │ │ │ │ │ ├── fegetexcept.c
│ │ │ │ │ │ ├── fegetround.c
│ │ │ │ │ │ ├── feholdexcpt.c
│ │ │ │ │ │ ├── fenv_private.h
│ │ │ │ │ │ ├── fesetenv.c
│ │ │ │ │ │ ├── fesetround.c
│ │ │ │ │ │ ├── feupdateenv.c
│ │ │ │ │ │ ├── fgetexcptflg.c
│ │ │ │ │ │ ├── fraiseexcpt.c
│ │ │ │ │ │ ├── fsetexcptflg.c
│ │ │ │ │ │ ├── ftestexcept.c
│ │ │ │ │ │ ├── halfulp.c
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── k_rem_pio2l.c
│ │ │ │ │ │ ├── libm-test-ulps
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── math_private.h
│ │ │ │ │ │ ├── mpatan2.c
│ │ │ │ │ │ ├── mpatan.c
│ │ │ │ │ │ ├── mpexp.c
│ │ │ │ │ │ ├── mplog.c
│ │ │ │ │ │ ├── mpsqrt.c
│ │ │ │ │ │ ├── s_asinhf.S
│ │ │ │ │ │ ├── s_asinhl.S
│ │ │ │ │ │ ├── s_asinh.S
│ │ │ │ │ │ ├── s_atanf.S
│ │ │ │ │ │ ├── s_atanl.c
│ │ │ │ │ │ ├── s_atan.S
│ │ │ │ │ │ ├── s_cbrtf.S
│ │ │ │ │ │ ├── s_cbrtl.S
│ │ │ │ │ │ ├── s_cbrt.S
│ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ ├── s_ceill.S
│ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ ├── s_copysignl.S
│ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ ├── s_expm1f.S
│ │ │ │ │ │ ├── s_expm1l.S
│ │ │ │ │ │ ├── s_expm1.S
│ │ │ │ │ │ ├── s_fabsf.S
│ │ │ │ │ │ ├── s_fabsl.S
│ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ ├── s_fdimf.S
│ │ │ │ │ │ ├── s_fdiml.S
│ │ │ │ │ │ ├── s_fdim.S
│ │ │ │ │ │ ├── s_finitef.S
│ │ │ │ │ │ ├── s_finitel.S
│ │ │ │ │ │ ├── s_finite.S
│ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ ├── s_floorl.S
│ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ ├── s_fmaxl.S
│ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ ├── s_fminl.S
│ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ ├── s_fpclassifyl.c
│ │ │ │ │ │ ├── s_frexpf.S
│ │ │ │ │ │ ├── s_frexpl.S
│ │ │ │ │ │ ├── s_frexp.S
│ │ │ │ │ │ ├── s_isinfl.c
│ │ │ │ │ │ ├── s_isnanl.c
│ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ ├── s_llrintl.S
│ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ ├── s_log1pf.S
│ │ │ │ │ │ ├── s_log1pl.S
│ │ │ │ │ │ ├── s_log1p.S
│ │ │ │ │ │ ├── s_logbf.S
│ │ │ │ │ │ ├── s_logbl.c
│ │ │ │ │ │ ├── s_logb.S
│ │ │ │ │ │ ├── slowexp.c
│ │ │ │ │ │ ├── slowpow.c
│ │ │ │ │ │ ├── s_lrintf.S
│ │ │ │ │ │ ├── s_lrintl.S
│ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ ├── s_nearbyintf.S
│ │ │ │ │ │ ├── s_nearbyintl.S
│ │ │ │ │ │ ├── s_nearbyint.S
│ │ │ │ │ │ ├── s_nextafterl.c
│ │ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ │ ├── s_nexttowardf.c
│ │ │ │ │ │ ├── s_remquof.S
│ │ │ │ │ │ ├── s_remquol.S
│ │ │ │ │ │ ├── s_remquo.S
│ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ ├── s_rintl.c
│ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ ├── s_scalbln.c
│ │ │ │ │ │ ├── s_scalblnf.c
│ │ │ │ │ │ ├── s_scalblnl.c
│ │ │ │ │ │ ├── s_scalbnf.S
│ │ │ │ │ │ ├── s_scalbnl.S
│ │ │ │ │ │ ├── s_scalbn.S
│ │ │ │ │ │ ├── s_significandf.S
│ │ │ │ │ │ ├── s_significandl.c
│ │ │ │ │ │ ├── s_significand.S
│ │ │ │ │ │ ├── s_truncf.S
│ │ │ │ │ │ ├── s_truncl.S
│ │ │ │ │ │ ├── s_trunc.S
│ │ │ │ │ │ ├── t_exp.c
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── gccframe.h
│ │ │ │ │ ├── gmp-mparam.h
│ │ │ │ │ ├── htonl.S
│ │ │ │ │ ├── htons.S
│ │ │ │ │ ├── i386-mcount.S
│ │ │ │ │ ├── i486
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ └── atomic.h
│ │ │ │ │ │ ├── htonl.S
│ │ │ │ │ │ ├── strcat.S
│ │ │ │ │ │ ├── string-inlines.c
│ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── i586
│ │ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── lshift.S
│ │ │ │ │ │ ├── memcopy.h
│ │ │ │ │ │ ├── memcpy_chk.S
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── mempcpy_chk.S
│ │ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ │ ├── memset_chk.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── memusage.h
│ │ │ │ │ │ ├── mul_1.S
│ │ │ │ │ │ ├── rshift.S
│ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ ├── submul_1.S
│ │ │ │ │ │ └── sub_n.S
│ │ │ │ │ ├── i686
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── bcopy.S
│ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ ├── cacheinfo.c
│ │ │ │ │ │ ├── dl-hash.h
│ │ │ │ │ │ ├── ffs.c
│ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ ├── e_logf.S
│ │ │ │ │ │ │ ├── e_logl.S
│ │ │ │ │ │ │ ├── e_log.S
│ │ │ │ │ │ │ ├── multiarch
│ │ │ │ │ │ │ │ ├── e_expf.c
│ │ │ │ │ │ │ │ ├── e_expf-ia32.S
│ │ │ │ │ │ │ │ ├── e_expf-sse2.S
│ │ │ │ │ │ │ │ └── Makefile
│ │ │ │ │ │ │ ├── s_fdimf.S
│ │ │ │ │ │ │ ├── s_fdiml.S
│ │ │ │ │ │ │ ├── s_fdim.S
│ │ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ │ ├── s_fmaxl.S
│ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ │ ├── s_fminl.S
│ │ │ │ │ │ │ └── s_fmin.S
│ │ │ │ │ │ ├── hp-timing.c
│ │ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ ├── memcpy_chk.S
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── memmove_chk.S
│ │ │ │ │ │ ├── memmove.S
│ │ │ │ │ │ ├── mempcpy_chk.S
│ │ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ │ ├── memset_chk.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── memusage.h
│ │ │ │ │ │ ├── multiarch
│ │ │ │ │ │ │ ├── bcopy.S
│ │ │ │ │ │ │ ├── bcopy-ssse3-rep.S
│ │ │ │ │ │ │ ├── bcopy-ssse3.S
│ │ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ │ ├── bzero-sse2-rep.S
│ │ │ │ │ │ │ ├── bzero-sse2.S
│ │ │ │ │ │ │ ├── ifunc-defines.sym
│ │ │ │ │ │ │ ├── init-arch.c
│ │ │ │ │ │ │ ├── init-arch.h
│ │ │ │ │ │ │ ├── locale-defines.sym
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ │ ├── memchr-sse2-bsf.S
│ │ │ │ │ │ │ ├── memchr-sse2.S
│ │ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ │ ├── memcmp-sse4.S
│ │ │ │ │ │ │ ├── memcmp-ssse3.S
│ │ │ │ │ │ │ ├── memcpy_chk.S
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memcpy-ssse3-rep.S
│ │ │ │ │ │ │ ├── memcpy-ssse3.S
│ │ │ │ │ │ │ ├── memmove_chk.S
│ │ │ │ │ │ │ ├── memmove.S
│ │ │ │ │ │ │ ├── memmove-ssse3-rep.S
│ │ │ │ │ │ │ ├── memmove-ssse3.S
│ │ │ │ │ │ │ ├── mempcpy_chk.S
│ │ │ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ │ │ ├── mempcpy-ssse3-rep.S
│ │ │ │ │ │ │ ├── mempcpy-ssse3.S
│ │ │ │ │ │ │ ├── memrchr-c.c
│ │ │ │ │ │ │ ├── memrchr.S
│ │ │ │ │ │ │ ├── memrchr-sse2-bsf.S
│ │ │ │ │ │ │ ├── memrchr-sse2.S
│ │ │ │ │ │ │ ├── memset_chk.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── memset-sse2-rep.S
│ │ │ │ │ │ │ ├── memset-sse2.S
│ │ │ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ │ │ ├── rawmemchr-sse2-bsf.S
│ │ │ │ │ │ │ ├── rawmemchr-sse2.S
│ │ │ │ │ │ │ ├── rtld-strnlen.c
│ │ │ │ │ │ │ ├── sched_cpucount.c
│ │ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ │ ├── s_fmaf.c
│ │ │ │ │ │ │ ├── s_fmaf-fma.c
│ │ │ │ │ │ │ ├── s_fma-fma.c
│ │ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ │ ├── stpcpy-sse2.S
│ │ │ │ │ │ │ ├── stpcpy-ssse3.S
│ │ │ │ │ │ │ ├── stpncpy.S
│ │ │ │ │ │ │ ├── stpncpy-sse2.S
│ │ │ │ │ │ │ ├── stpncpy-ssse3.S
│ │ │ │ │ │ │ ├── strcasecmp-c.c
│ │ │ │ │ │ │ ├── strcasecmp_l-c.c
│ │ │ │ │ │ │ ├── strcasecmp_l.S
│ │ │ │ │ │ │ ├── strcasecmp_l-sse4.S
│ │ │ │ │ │ │ ├── strcasecmp_l-ssse3.S
│ │ │ │ │ │ │ ├── strcasecmp.S
│ │ │ │ │ │ │ ├── strcasestr.c
│ │ │ │ │ │ │ ├── strcasestr-c.c
│ │ │ │ │ │ │ ├── strcasestr-nonascii.c
│ │ │ │ │ │ │ ├── strcat.S
│ │ │ │ │ │ │ ├── strcat-sse2.S
│ │ │ │ │ │ │ ├── strcat-ssse3.S
│ │ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ │ ├── strchr-sse2-bsf.S
│ │ │ │ │ │ │ ├── strchr-sse2.S
│ │ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ │ ├── strcmp-sse4.S
│ │ │ │ │ │ │ ├── strcmp-ssse3.S
│ │ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ │ ├── strcpy-sse2.S
│ │ │ │ │ │ │ ├── strcpy-ssse3.S
│ │ │ │ │ │ │ ├── strcspn-c.c
│ │ │ │ │ │ │ ├── strcspn.S
│ │ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ │ ├── strlen-sse2-bsf.S
│ │ │ │ │ │ │ ├── strlen-sse2.S
│ │ │ │ │ │ │ ├── strncase-c.c
│ │ │ │ │ │ │ ├── strncase_l-c.c
│ │ │ │ │ │ │ ├── strncase_l.S
│ │ │ │ │ │ │ ├── strncase_l-sse4.S
│ │ │ │ │ │ │ ├── strncase_l-ssse3.S
│ │ │ │ │ │ │ ├── strncase.S
│ │ │ │ │ │ │ ├── strncat-c.c
│ │ │ │ │ │ │ ├── strncat.S
│ │ │ │ │ │ │ ├── strncat-sse2.S
│ │ │ │ │ │ │ ├── strncat-ssse3.S
│ │ │ │ │ │ │ ├── strncmp-c.c
│ │ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ │ ├── strncmp-sse4.S
│ │ │ │ │ │ │ ├── strncmp-ssse3.S
│ │ │ │ │ │ │ ├── strncpy-c.c
│ │ │ │ │ │ │ ├── strncpy.S
│ │ │ │ │ │ │ ├── strncpy-sse2.S
│ │ │ │ │ │ │ ├── strncpy-ssse3.S
│ │ │ │ │ │ │ ├── strnlen-c.c
│ │ │ │ │ │ │ ├── strnlen.S
│ │ │ │ │ │ │ ├── strnlen-sse2.S
│ │ │ │ │ │ │ ├── strpbrk-c.c
│ │ │ │ │ │ │ ├── strpbrk.S
│ │ │ │ │ │ │ ├── strrchr.S
│ │ │ │ │ │ │ ├── strrchr-sse2-bsf.S
│ │ │ │ │ │ │ ├── strrchr-sse2.S
│ │ │ │ │ │ │ ├── strspn-c.c
│ │ │ │ │ │ │ ├── strspn.S
│ │ │ │ │ │ │ ├── strstr.c
│ │ │ │ │ │ │ ├── strstr-c.c
│ │ │ │ │ │ │ ├── test-multiarch.c
│ │ │ │ │ │ │ ├── varshift.c
│ │ │ │ │ │ │ ├── varshift.h
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ ├── wcschr-c.c
│ │ │ │ │ │ │ ├── wcschr.S
│ │ │ │ │ │ │ ├── wcschr-sse2.S
│ │ │ │ │ │ │ ├── wcscmp-c.c
│ │ │ │ │ │ │ ├── wcscmp.S
│ │ │ │ │ │ │ ├── wcscmp-sse2.S
│ │ │ │ │ │ │ ├── wcscpy-c.c
│ │ │ │ │ │ │ ├── wcscpy.S
│ │ │ │ │ │ │ ├── wcscpy-ssse3.S
│ │ │ │ │ │ │ ├── wcslen-c.c
│ │ │ │ │ │ │ ├── wcslen.S
│ │ │ │ │ │ │ ├── wcslen-sse2.S
│ │ │ │ │ │ │ ├── wcsrchr-c.c
│ │ │ │ │ │ │ ├── wcsrchr.S
│ │ │ │ │ │ │ ├── wcsrchr-sse2.S
│ │ │ │ │ │ │ ├── wmemcmp-c.c
│ │ │ │ │ │ │ ├── wmemcmp.S
│ │ │ │ │ │ │ ├── wmemcmp-sse4.S
│ │ │ │ │ │ │ └── wmemcmp-ssse3.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strtok_r.S
│ │ │ │ │ │ ├── strtok.S
│ │ │ │ │ │ └── tst-stack-align.h
│ │ │ │ │ ├── i786
│ │ │ │ │ │ └── Implies
│ │ │ │ │ ├── Implies
│ │ │ │ │ ├── init-first.c
│ │ │ │ │ ├── jmpbuf-offsets.h
│ │ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ │ ├── ldbl2mpn.c
│ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ ├── lshift.S
│ │ │ │ │ ├── machine-gmon.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── memchr.S
│ │ │ │ │ ├── memcmp.S
│ │ │ │ │ ├── memcopy.h
│ │ │ │ │ ├── memset.c
│ │ │ │ │ ├── memusage.h
│ │ │ │ │ ├── mp_clz_tab.c
│ │ │ │ │ ├── mul_1.S
│ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ ├── rshift.S
│ │ │ │ │ ├── setfpucw.c
│ │ │ │ │ ├── setjmp.S
│ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ ├── stackinfo.h
│ │ │ │ │ ├── start.S
│ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ ├── stpncpy.S
│ │ │ │ │ ├── strchrnul.S
│ │ │ │ │ ├── strchr.S
│ │ │ │ │ ├── strcspn.S
│ │ │ │ │ ├── string-inlines.c
│ │ │ │ │ ├── strlen.c
│ │ │ │ │ ├── strpbrk.S
│ │ │ │ │ ├── strrchr.S
│ │ │ │ │ ├── strspn.S
│ │ │ │ │ ├── strtok_r.S
│ │ │ │ │ ├── strtok.S
│ │ │ │ │ ├── submul_1.S
│ │ │ │ │ ├── sub_n.S
│ │ │ │ │ ├── sys
│ │ │ │ │ │ └── ucontext.h
│ │ │ │ │ ├── sysdep.h
│ │ │ │ │ ├── tlsdesc.c
│ │ │ │ │ ├── tlsdesc.sym
│ │ │ │ │ ├── tst-stack-align.h
│ │ │ │ │ └── Versions
│ │ │ │ ├── ieee754
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── huge_valf.h
│ │ │ │ │ │ ├── huge_val.h
│ │ │ │ │ │ ├── inf.h
│ │ │ │ │ │ └── nan.h
│ │ │ │ │ ├── dbl-64
│ │ │ │ │ │ ├── asincos.tbl
│ │ │ │ │ │ ├── atnat2.h
│ │ │ │ │ │ ├── atnat.h
│ │ │ │ │ │ ├── branred.c
│ │ │ │ │ │ ├── branred.h
│ │ │ │ │ │ ├── dbl2mpn.c
│ │ │ │ │ │ ├── dla.h
│ │ │ │ │ │ ├── doasin.c
│ │ │ │ │ │ ├── doasin.h
│ │ │ │ │ │ ├── dosincos.c
│ │ │ │ │ │ ├── dosincos.h
│ │ │ │ │ │ ├── e_acos.c
│ │ │ │ │ │ ├── e_acosh.c
│ │ │ │ │ │ ├── e_asin.c
│ │ │ │ │ │ ├── e_atan2.c
│ │ │ │ │ │ ├── e_atanh.c
│ │ │ │ │ │ ├── e_cosh.c
│ │ │ │ │ │ ├── e_exp10.c
│ │ │ │ │ │ ├── e_exp2.c
│ │ │ │ │ │ ├── e_exp.c
│ │ │ │ │ │ ├── e_fmod.c
│ │ │ │ │ │ ├── e_gamma_r.c
│ │ │ │ │ │ ├── e_hypot.c
│ │ │ │ │ │ ├── e_ilogb.c
│ │ │ │ │ │ ├── e_j0.c
│ │ │ │ │ │ ├── e_j1.c
│ │ │ │ │ │ ├── e_jn.c
│ │ │ │ │ │ ├── e_lgamma_r.c
│ │ │ │ │ │ ├── e_log10.c
│ │ │ │ │ │ ├── e_log2.c
│ │ │ │ │ │ ├── e_log.c
│ │ │ │ │ │ ├── e_pow.c
│ │ │ │ │ │ ├── e_remainder.c
│ │ │ │ │ │ ├── e_rem_pio2.c
│ │ │ │ │ │ ├── e_sinh.c
│ │ │ │ │ │ ├── e_sqrt.c
│ │ │ │ │ │ ├── halfulp.c
│ │ │ │ │ │ ├── k_cos.c
│ │ │ │ │ │ ├── k_rem_pio2.c
│ │ │ │ │ │ ├── k_sin.c
│ │ │ │ │ │ ├── k_tan.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── MathLib.h
│ │ │ │ │ │ ├── mpa2.h
│ │ │ │ │ │ ├── mpa.c
│ │ │ │ │ │ ├── mpa.h
│ │ │ │ │ │ ├── mpatan2.c
│ │ │ │ │ │ ├── mpatan.c
│ │ │ │ │ │ ├── mpatan.h
│ │ │ │ │ │ ├── mpexp.c
│ │ │ │ │ │ ├── mpexp.h
│ │ │ │ │ │ ├── mplog.c
│ │ │ │ │ │ ├── mplog.h
│ │ │ │ │ │ ├── mpn2dbl.c
│ │ │ │ │ │ ├── mpsqrt.c
│ │ │ │ │ │ ├── mpsqrt.h
│ │ │ │ │ │ ├── mptan.c
│ │ │ │ │ │ ├── mydefs.h
│ │ │ │ │ │ ├── powtwo.tbl
│ │ │ │ │ │ ├── root.tbl
│ │ │ │ │ │ ├── s_asinh.c
│ │ │ │ │ │ ├── s_atan.c
│ │ │ │ │ │ ├── s_cbrt.c
│ │ │ │ │ │ ├── s_ceil.c
│ │ │ │ │ │ ├── s_copysign.c
│ │ │ │ │ │ ├── s_cos.c
│ │ │ │ │ │ ├── s_erf.c
│ │ │ │ │ │ ├── s_expm1.c
│ │ │ │ │ │ ├── s_fabs.c
│ │ │ │ │ │ ├── s_finite.c
│ │ │ │ │ │ ├── s_floor.c
│ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ ├── s_fmaf.c
│ │ │ │ │ │ ├── s_fpclassify.c
│ │ │ │ │ │ ├── s_frexp.c
│ │ │ │ │ │ ├── sincos32.c
│ │ │ │ │ │ ├── sincos32.h
│ │ │ │ │ │ ├── sincostab.c
│ │ │ │ │ │ ├── s_isinf.c
│ │ │ │ │ │ ├── s_isinf_ns.c
│ │ │ │ │ │ ├── s_isnan.c
│ │ │ │ │ │ ├── s_llrint.c
│ │ │ │ │ │ ├── s_llround.c
│ │ │ │ │ │ ├── s_log1p.c
│ │ │ │ │ │ ├── s_logb.c
│ │ │ │ │ │ ├── slowexp.c
│ │ │ │ │ │ ├── slowpow.c
│ │ │ │ │ │ ├── s_lrint.c
│ │ │ │ │ │ ├── s_lround.c
│ │ │ │ │ │ ├── s_modf.c
│ │ │ │ │ │ ├── s_nearbyint.c
│ │ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ │ ├── s_remquo.c
│ │ │ │ │ │ ├── s_rint.c
│ │ │ │ │ │ ├── s_round.c
│ │ │ │ │ │ ├── s_scalbln.c
│ │ │ │ │ │ ├── s_scalbn.c
│ │ │ │ │ │ ├── s_signbit.c
│ │ │ │ │ │ ├── s_sin.c
│ │ │ │ │ │ ├── s_sincos.c
│ │ │ │ │ │ ├── s_tan.c
│ │ │ │ │ │ ├── s_tanh.c
│ │ │ │ │ │ ├── s_trunc.c
│ │ │ │ │ │ ├── t_exp2.h
│ │ │ │ │ │ ├── t_exp.c
│ │ │ │ │ │ ├── uasncs.h
│ │ │ │ │ │ ├── uatan.tbl
│ │ │ │ │ │ ├── uexp.h
│ │ │ │ │ │ ├── uexp.tbl
│ │ │ │ │ │ ├── ulog.h
│ │ │ │ │ │ ├── ulog.tbl
│ │ │ │ │ │ ├── upow.h
│ │ │ │ │ │ ├── upow.tbl
│ │ │ │ │ │ ├── urem.h
│ │ │ │ │ │ ├── uroot.h
│ │ │ │ │ │ ├── usncs.h
│ │ │ │ │ │ ├── utan.h
│ │ │ │ │ │ ├── utan.tbl
│ │ │ │ │ │ ├── w_exp.c
│ │ │ │ │ │ └── wordsize-64
│ │ │ │ │ │ ├── e_acosh.c
│ │ │ │ │ │ ├── e_cosh.c
│ │ │ │ │ │ ├── e_fmod.c
│ │ │ │ │ │ ├── e_log10.c
│ │ │ │ │ │ ├── e_log2.c
│ │ │ │ │ │ ├── math_private.h
│ │ │ │ │ │ ├── s_ceil.c
│ │ │ │ │ │ ├── s_finite.c
│ │ │ │ │ │ ├── s_floor.c
│ │ │ │ │ │ ├── s_frexp.c
│ │ │ │ │ │ ├── s_isinf.c
│ │ │ │ │ │ ├── s_isinf_ns.c
│ │ │ │ │ │ ├── s_isnan.c
│ │ │ │ │ │ ├── s_llround.c
│ │ │ │ │ │ ├── s_logb.c
│ │ │ │ │ │ ├── s_lround.c
│ │ │ │ │ │ ├── s_modf.c
│ │ │ │ │ │ ├── s_nearbyint.c
│ │ │ │ │ │ ├── s_remquo.c
│ │ │ │ │ │ ├── s_rint.c
│ │ │ │ │ │ ├── s_round.c
│ │ │ │ │ │ ├── s_scalbln.c
│ │ │ │ │ │ ├── s_scalbn.c
│ │ │ │ │ │ └── s_trunc.c
│ │ │ │ │ ├── flt-32
│ │ │ │ │ │ ├── e_acosf.c
│ │ │ │ │ │ ├── e_acoshf.c
│ │ │ │ │ │ ├── e_asinf.c
│ │ │ │ │ │ ├── e_atan2f.c
│ │ │ │ │ │ ├── e_atanhf.c
│ │ │ │ │ │ ├── e_coshf.c
│ │ │ │ │ │ ├── e_exp2f.c
│ │ │ │ │ │ ├── e_expf.c
│ │ │ │ │ │ ├── e_fmodf.c
│ │ │ │ │ │ ├── e_gammaf_r.c
│ │ │ │ │ │ ├── e_hypotf.c
│ │ │ │ │ │ ├── e_ilogbf.c
│ │ │ │ │ │ ├── e_j0f.c
│ │ │ │ │ │ ├── e_j1f.c
│ │ │ │ │ │ ├── e_jnf.c
│ │ │ │ │ │ ├── e_lgammaf_r.c
│ │ │ │ │ │ ├── e_log10f.c
│ │ │ │ │ │ ├── e_log2f.c
│ │ │ │ │ │ ├── e_logf.c
│ │ │ │ │ │ ├── e_powf.c
│ │ │ │ │ │ ├── e_remainderf.c
│ │ │ │ │ │ ├── e_rem_pio2f.c
│ │ │ │ │ │ ├── e_sinhf.c
│ │ │ │ │ │ ├── e_sqrtf.c
│ │ │ │ │ │ ├── k_cosf.c
│ │ │ │ │ │ ├── k_rem_pio2f.c
│ │ │ │ │ │ ├── k_sinf.c
│ │ │ │ │ │ ├── k_tanf.c
│ │ │ │ │ │ ├── math_private.h
│ │ │ │ │ │ ├── mpn2flt.c
│ │ │ │ │ │ ├── s_asinhf.c
│ │ │ │ │ │ ├── s_atanf.c
│ │ │ │ │ │ ├── s_cbrtf.c
│ │ │ │ │ │ ├── s_ceilf.c
│ │ │ │ │ │ ├── s_copysignf.c
│ │ │ │ │ │ ├── s_cosf.c
│ │ │ │ │ │ ├── s_erff.c
│ │ │ │ │ │ ├── s_expm1f.c
│ │ │ │ │ │ ├── s_fabsf.c
│ │ │ │ │ │ ├── s_finitef.c
│ │ │ │ │ │ ├── s_floorf.c
│ │ │ │ │ │ ├── s_fpclassifyf.c
│ │ │ │ │ │ ├── s_frexpf.c
│ │ │ │ │ │ ├── s_isinff.c
│ │ │ │ │ │ ├── s_isinf_nsf.c
│ │ │ │ │ │ ├── s_isnanf.c
│ │ │ │ │ │ ├── s_llrintf.c
│ │ │ │ │ │ ├── s_llroundf.c
│ │ │ │ │ │ ├── s_log1pf.c
│ │ │ │ │ │ ├── s_logbf.c
│ │ │ │ │ │ ├── s_lrintf.c
│ │ │ │ │ │ ├── s_lroundf.c
│ │ │ │ │ │ ├── s_modff.c
│ │ │ │ │ │ ├── s_nearbyintf.c
│ │ │ │ │ │ ├── s_nextafterf.c
│ │ │ │ │ │ ├── s_remquof.c
│ │ │ │ │ │ ├── s_rintf.c
│ │ │ │ │ │ ├── s_roundf.c
│ │ │ │ │ │ ├── s_scalblnf.c
│ │ │ │ │ │ ├── s_scalbnf.c
│ │ │ │ │ │ ├── s_signbitf.c
│ │ │ │ │ │ ├── s_sincosf.c
│ │ │ │ │ │ ├── s_sinf.c
│ │ │ │ │ │ ├── s_tanf.c
│ │ │ │ │ │ ├── s_tanhf.c
│ │ │ │ │ │ ├── s_truncf.c
│ │ │ │ │ │ ├── t_exp2f.h
│ │ │ │ │ │ └── w_expf.c
│ │ │ │ │ ├── ieee754.h
│ │ │ │ │ ├── k_standard.c
│ │ │ │ │ ├── ldbl-128
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ └── huge_vall.h
│ │ │ │ │ │ ├── e_acoshl.c
│ │ │ │ │ │ ├── e_acosl.c
│ │ │ │ │ │ ├── e_asinl.c
│ │ │ │ │ │ ├── e_atan2l.c
│ │ │ │ │ │ ├── e_atanhl.c
│ │ │ │ │ │ ├── e_coshl.c
│ │ │ │ │ │ ├── e_exp10l.c
│ │ │ │ │ │ ├── e_expl.c
│ │ │ │ │ │ ├── e_fmodl.c
│ │ │ │ │ │ ├── e_gammal_r.c
│ │ │ │ │ │ ├── e_hypotl.c
│ │ │ │ │ │ ├── e_ilogbl.c
│ │ │ │ │ │ ├── e_j0l.c
│ │ │ │ │ │ ├── e_j1l.c
│ │ │ │ │ │ ├── e_jnl.c
│ │ │ │ │ │ ├── e_lgammal_r.c
│ │ │ │ │ │ ├── e_log10l.c
│ │ │ │ │ │ ├── e_log2l.c
│ │ │ │ │ │ ├── e_logl.c
│ │ │ │ │ │ ├── e_powl.c
│ │ │ │ │ │ ├── e_remainderl.c
│ │ │ │ │ │ ├── e_rem_pio2l.c
│ │ │ │ │ │ ├── e_sinhl.c
│ │ │ │ │ │ ├── ieee754.h
│ │ │ │ │ │ ├── k_cosl.c
│ │ │ │ │ │ ├── k_sincosl.c
│ │ │ │ │ │ ├── k_sinl.c
│ │ │ │ │ │ ├── k_tanl.c
│ │ │ │ │ │ ├── ldbl2mpn.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── math_ldbl.h
│ │ │ │ │ │ ├── mpn2ldbl.c
│ │ │ │ │ │ ├── printf_fphex.c
│ │ │ │ │ │ ├── s_asinhl.c
│ │ │ │ │ │ ├── s_atanl.c
│ │ │ │ │ │ ├── s_cbrtl.c
│ │ │ │ │ │ ├── s_ceill.c
│ │ │ │ │ │ ├── s_copysignl.c
│ │ │ │ │ │ ├── s_cosl.c
│ │ │ │ │ │ ├── s_erfl.c
│ │ │ │ │ │ ├── s_expm1l.c
│ │ │ │ │ │ ├── s_fabsl.c
│ │ │ │ │ │ ├── s_finitel.c
│ │ │ │ │ │ ├── s_floorl.c
│ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ ├── s_fmal.c
│ │ │ │ │ │ ├── s_fpclassifyl.c
│ │ │ │ │ │ ├── s_frexpl.c
│ │ │ │ │ │ ├── s_isinfl.c
│ │ │ │ │ │ ├── s_isinf_nsl.c
│ │ │ │ │ │ ├── s_isnanl.c
│ │ │ │ │ │ ├── s_llrintl.c
│ │ │ │ │ │ ├── s_llroundl.c
│ │ │ │ │ │ ├── s_log1pl.c
│ │ │ │ │ │ ├── s_logbl.c
│ │ │ │ │ │ ├── s_lrintl.c
│ │ │ │ │ │ ├── s_lroundl.c
│ │ │ │ │ │ ├── s_modfl.c
│ │ │ │ │ │ ├── s_nearbyintl.c
│ │ │ │ │ │ ├── s_nextafterl.c
│ │ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ │ ├── s_nexttowardf.c
│ │ │ │ │ │ ├── s_remquol.c
│ │ │ │ │ │ ├── s_rintl.c
│ │ │ │ │ │ ├── s_roundl.c
│ │ │ │ │ │ ├── s_scalblnl.c
│ │ │ │ │ │ ├── s_scalbnl.c
│ │ │ │ │ │ ├── s_signbitl.c
│ │ │ │ │ │ ├── s_sincosl.c
│ │ │ │ │ │ ├── s_sinl.c
│ │ │ │ │ │ ├── s_tanhl.c
│ │ │ │ │ │ ├── s_tanl.c
│ │ │ │ │ │ ├── strtold_l.c
│ │ │ │ │ │ ├── s_truncl.c
│ │ │ │ │ │ ├── t_expl.h
│ │ │ │ │ │ ├── t_sincosl.c
│ │ │ │ │ │ └── w_expl.c
│ │ │ │ │ ├── ldbl-128ibm
│ │ │ │ │ │ ├── e_acoshl.c
│ │ │ │ │ │ ├── e_acosl.c
│ │ │ │ │ │ ├── e_asinl.c
│ │ │ │ │ │ ├── e_atan2l.c
│ │ │ │ │ │ ├── e_atanhl.c
│ │ │ │ │ │ ├── e_coshl.c
│ │ │ │ │ │ ├── e_exp10l.c
│ │ │ │ │ │ ├── e_expl.c
│ │ │ │ │ │ ├── e_fmodl.c
│ │ │ │ │ │ ├── e_gammal_r.c
│ │ │ │ │ │ ├── e_hypotl.c
│ │ │ │ │ │ ├── e_ilogbl.c
│ │ │ │ │ │ ├── e_j0l.c
│ │ │ │ │ │ ├── e_j1l.c
│ │ │ │ │ │ ├── e_jnl.c
│ │ │ │ │ │ ├── e_lgammal_r.c
│ │ │ │ │ │ ├── e_log10l.c
│ │ │ │ │ │ ├── e_log2l.c
│ │ │ │ │ │ ├── e_logl.c
│ │ │ │ │ │ ├── e_powl.c
│ │ │ │ │ │ ├── e_remainderl.c
│ │ │ │ │ │ ├── e_rem_pio2l.c
│ │ │ │ │ │ ├── e_sinhl.c
│ │ │ │ │ │ ├── e_sqrtl.c
│ │ │ │ │ │ ├── ieee754.h
│ │ │ │ │ │ ├── k_cosl.c
│ │ │ │ │ │ ├── k_sincosl.c
│ │ │ │ │ │ ├── k_sinl.c
│ │ │ │ │ │ ├── k_tanl.c
│ │ │ │ │ │ ├── ldbl2mpn.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── math_ldbl.h
│ │ │ │ │ │ ├── mpn2ldbl.c
│ │ │ │ │ │ ├── printf_fphex.c
│ │ │ │ │ │ ├── s_asinhl.c
│ │ │ │ │ │ ├── s_atanl.c
│ │ │ │ │ │ ├── s_cbrtl.c
│ │ │ │ │ │ ├── s_ceill.c
│ │ │ │ │ │ ├── s_copysignl.c
│ │ │ │ │ │ ├── s_cosl.c
│ │ │ │ │ │ ├── s_cprojl.c
│ │ │ │ │ │ ├── s_ctanhl.c
│ │ │ │ │ │ ├── s_ctanl.c
│ │ │ │ │ │ ├── s_erfl.c
│ │ │ │ │ │ ├── s_expm1l.c
│ │ │ │ │ │ ├── s_fabsl.c
│ │ │ │ │ │ ├── s_finitel.c
│ │ │ │ │ │ ├── s_floorl.c
│ │ │ │ │ │ ├── s_fmal.c
│ │ │ │ │ │ ├── s_fpclassifyl.c
│ │ │ │ │ │ ├── s_frexpl.c
│ │ │ │ │ │ ├── s_isinfl.c
│ │ │ │ │ │ ├── s_isinf_nsl.c
│ │ │ │ │ │ ├── s_isnanl.c
│ │ │ │ │ │ ├── s_llrintl.c
│ │ │ │ │ │ ├── s_llroundl.c
│ │ │ │ │ │ ├── s_log1pl.c
│ │ │ │ │ │ ├── s_logbl.c
│ │ │ │ │ │ ├── s_lrintl.c
│ │ │ │ │ │ ├── s_lroundl.c
│ │ │ │ │ │ ├── s_modfl.c
│ │ │ │ │ │ ├── s_nearbyintl.c
│ │ │ │ │ │ ├── s_nextafterl.c
│ │ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ │ ├── s_nexttowardf.c
│ │ │ │ │ │ ├── s_remquol.c
│ │ │ │ │ │ ├── s_rintl.c
│ │ │ │ │ │ ├── s_roundl.c
│ │ │ │ │ │ ├── s_scalblnl.c
│ │ │ │ │ │ ├── s_scalbnl.c
│ │ │ │ │ │ ├── s_signbitl.c
│ │ │ │ │ │ ├── s_sincosl.c
│ │ │ │ │ │ ├── s_sinl.c
│ │ │ │ │ │ ├── s_tanhl.c
│ │ │ │ │ │ ├── s_tanl.c
│ │ │ │ │ │ ├── strtold_l.c
│ │ │ │ │ │ ├── s_truncl.c
│ │ │ │ │ │ ├── t_sincosl.c
│ │ │ │ │ │ └── w_expl.c
│ │ │ │ │ ├── ldbl-64-128
│ │ │ │ │ │ ├── e_ilogbl.c
│ │ │ │ │ │ ├── s_asinhl.c
│ │ │ │ │ │ ├── s_atanl.c
│ │ │ │ │ │ ├── s_cbrtl.c
│ │ │ │ │ │ ├── s_ceill.c
│ │ │ │ │ │ ├── s_copysignl.c
│ │ │ │ │ │ ├── s_cosl.c
│ │ │ │ │ │ ├── s_erfl.c
│ │ │ │ │ │ ├── s_expm1l.c
│ │ │ │ │ │ ├── s_fabsl.c
│ │ │ │ │ │ ├── s_finitel.c
│ │ │ │ │ │ ├── s_floorl.c
│ │ │ │ │ │ ├── s_fmal.c
│ │ │ │ │ │ ├── s_fpclassifyl.c
│ │ │ │ │ │ ├── s_frexpl.c
│ │ │ │ │ │ ├── s_isinfl.c
│ │ │ │ │ │ ├── s_isnanl.c
│ │ │ │ │ │ ├── s_llrintl.c
│ │ │ │ │ │ ├── s_llroundl.c
│ │ │ │ │ │ ├── s_log1pl.c
│ │ │ │ │ │ ├── s_logbl.c
│ │ │ │ │ │ ├── s_lrintl.c
│ │ │ │ │ │ ├── s_lroundl.c
│ │ │ │ │ │ ├── s_modfl.c
│ │ │ │ │ │ ├── s_nearbyintl.c
│ │ │ │ │ │ ├── s_nextafterl.c
│ │ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ │ ├── s_nexttowardf.c
│ │ │ │ │ │ ├── s_remquol.c
│ │ │ │ │ │ ├── s_rintl.c
│ │ │ │ │ │ ├── s_roundl.c
│ │ │ │ │ │ ├── s_scalblnl.c
│ │ │ │ │ │ ├── s_scalbnl.c
│ │ │ │ │ │ ├── s_signbitl.c
│ │ │ │ │ │ ├── s_sincosl.c
│ │ │ │ │ │ ├── s_sinl.c
│ │ │ │ │ │ ├── s_tanhl.c
│ │ │ │ │ │ ├── s_tanl.c
│ │ │ │ │ │ ├── strtold_l.c
│ │ │ │ │ │ ├── s_truncl.c
│ │ │ │ │ │ └── w_expl.c
│ │ │ │ │ ├── ldbl-96
│ │ │ │ │ │ ├── e_acoshl.c
│ │ │ │ │ │ ├── e_asinl.c
│ │ │ │ │ │ ├── e_atan2l.c
│ │ │ │ │ │ ├── e_atanhl.c
│ │ │ │ │ │ ├── e_coshl.c
│ │ │ │ │ │ ├── e_gammal_r.c
│ │ │ │ │ │ ├── e_hypotl.c
│ │ │ │ │ │ ├── e_ilogbl.c
│ │ │ │ │ │ ├── e_j0l.c
│ │ │ │ │ │ ├── e_j1l.c
│ │ │ │ │ │ ├── e_jnl.c
│ │ │ │ │ │ ├── e_lgammal_r.c
│ │ │ │ │ │ ├── e_remainderl.c
│ │ │ │ │ │ ├── e_rem_pio2l.c
│ │ │ │ │ │ ├── e_sinhl.c
│ │ │ │ │ │ ├── k_cosl.c
│ │ │ │ │ │ ├── k_sinl.c
│ │ │ │ │ │ ├── k_tanl.c
│ │ │ │ │ │ ├── ldbl2mpn.c
│ │ │ │ │ │ ├── math_ldbl.h
│ │ │ │ │ │ ├── mpn2ldbl.c
│ │ │ │ │ │ ├── printf_fphex.c
│ │ │ │ │ │ ├── s_asinhl.c
│ │ │ │ │ │ ├── s_cbrtl.c
│ │ │ │ │ │ ├── s_ceill.c
│ │ │ │ │ │ ├── s_copysignl.c
│ │ │ │ │ │ ├── s_cosl.c
│ │ │ │ │ │ ├── s_erfl.c
│ │ │ │ │ │ ├── s_fabsl.c
│ │ │ │ │ │ ├── s_finitel.c
│ │ │ │ │ │ ├── s_floorl.c
│ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ ├── s_fmal.c
│ │ │ │ │ │ ├── s_fpclassifyl.c
│ │ │ │ │ │ ├── s_frexpl.c
│ │ │ │ │ │ ├── s_isinfl.c
│ │ │ │ │ │ ├── s_isinf_nsl.c
│ │ │ │ │ │ ├── s_isnanl.c
│ │ │ │ │ │ ├── s_llrintl.c
│ │ │ │ │ │ ├── s_llroundl.c
│ │ │ │ │ │ ├── s_logbl.c
│ │ │ │ │ │ ├── s_lrintl.c
│ │ │ │ │ │ ├── s_lroundl.c
│ │ │ │ │ │ ├── s_modfl.c
│ │ │ │ │ │ ├── s_nearbyintl.c
│ │ │ │ │ │ ├── s_nextafterl.c
│ │ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ │ ├── s_nexttowardf.c
│ │ │ │ │ │ ├── s_remquol.c
│ │ │ │ │ │ ├── s_rintl.c
│ │ │ │ │ │ ├── s_roundl.c
│ │ │ │ │ │ ├── s_scalblnl.c
│ │ │ │ │ │ ├── s_scalbnl.c
│ │ │ │ │ │ ├── s_signbitl.c
│ │ │ │ │ │ ├── s_sincosl.c
│ │ │ │ │ │ ├── s_sinl.c
│ │ │ │ │ │ ├── s_tanhl.c
│ │ │ │ │ │ ├── s_tanl.c
│ │ │ │ │ │ ├── strtold_l.c
│ │ │ │ │ │ ├── s_truncl.c
│ │ │ │ │ │ ├── t_sincosl.c
│ │ │ │ │ │ └── w_expl.c
│ │ │ │ │ ├── ldbl-opt
│ │ │ │ │ │ ├── cabs.c
│ │ │ │ │ │ ├── cabsl.c
│ │ │ │ │ │ ├── carg.c
│ │ │ │ │ │ ├── cargl.c
│ │ │ │ │ │ ├── cimag.c
│ │ │ │ │ │ ├── cimagl.c
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── conj.c
│ │ │ │ │ │ ├── conjl.c
│ │ │ │ │ │ ├── creal.c
│ │ │ │ │ │ ├── creall.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── math_ldbl_opt.c
│ │ │ │ │ │ ├── math_ldbl_opt.h
│ │ │ │ │ │ ├── nldbl-acos.c
│ │ │ │ │ │ ├── nldbl-acosh.c
│ │ │ │ │ │ ├── nldbl-asin.c
│ │ │ │ │ │ ├── nldbl-asinh.c
│ │ │ │ │ │ ├── nldbl-asprintf.c
│ │ │ │ │ │ ├── nldbl-asprintf_chk.c
│ │ │ │ │ │ ├── nldbl-atan2.c
│ │ │ │ │ │ ├── nldbl-atan.c
│ │ │ │ │ │ ├── nldbl-atanh.c
│ │ │ │ │ │ ├── nldbl-cabs.c
│ │ │ │ │ │ ├── nldbl-cacos.c
│ │ │ │ │ │ ├── nldbl-cacosh.c
│ │ │ │ │ │ ├── nldbl-carg.c
│ │ │ │ │ │ ├── nldbl-casin.c
│ │ │ │ │ │ ├── nldbl-casinh.c
│ │ │ │ │ │ ├── nldbl-catan.c
│ │ │ │ │ │ ├── nldbl-catanh.c
│ │ │ │ │ │ ├── nldbl-cbrt.c
│ │ │ │ │ │ ├── nldbl-ccos.c
│ │ │ │ │ │ ├── nldbl-ccosh.c
│ │ │ │ │ │ ├── nldbl-ceil.c
│ │ │ │ │ │ ├── nldbl-cexp.c
│ │ │ │ │ │ ├── nldbl-cimag.c
│ │ │ │ │ │ ├── nldbl-clog10.c
│ │ │ │ │ │ ├── nldbl-clog.c
│ │ │ │ │ │ ├── nldbl-compat.c
│ │ │ │ │ │ ├── nldbl-compat.h
│ │ │ │ │ │ ├── nldbl-conj.c
│ │ │ │ │ │ ├── nldbl-copysign.c
│ │ │ │ │ │ ├── nldbl-cos.c
│ │ │ │ │ │ ├── nldbl-cosh.c
│ │ │ │ │ │ ├── nldbl-cpow.c
│ │ │ │ │ │ ├── nldbl-cproj.c
│ │ │ │ │ │ ├── nldbl-creal.c
│ │ │ │ │ │ ├── nldbl-csin.c
│ │ │ │ │ │ ├── nldbl-csinh.c
│ │ │ │ │ │ ├── nldbl-csqrt.c
│ │ │ │ │ │ ├── nldbl-ctan.c
│ │ │ │ │ │ ├── nldbl-ctanh.c
│ │ │ │ │ │ ├── nldbl-dprintf.c
│ │ │ │ │ │ ├── nldbl-dprintf_chk.c
│ │ │ │ │ │ ├── nldbl-drem.c
│ │ │ │ │ │ ├── nldbl-erf.c
│ │ │ │ │ │ ├── nldbl-erfc.c
│ │ │ │ │ │ ├── nldbl-exp10.c
│ │ │ │ │ │ ├── nldbl-exp2.c
│ │ │ │ │ │ ├── nldbl-exp.c
│ │ │ │ │ │ ├── nldbl-expm1.c
│ │ │ │ │ │ ├── nldbl-fabs.c
│ │ │ │ │ │ ├── nldbl-fdim.c
│ │ │ │ │ │ ├── nldbl-finite.c
│ │ │ │ │ │ ├── nldbl-floor.c
│ │ │ │ │ │ ├── nldbl-fma.c
│ │ │ │ │ │ ├── nldbl-fmax.c
│ │ │ │ │ │ ├── nldbl-fmin.c
│ │ │ │ │ │ ├── nldbl-fmod.c
│ │ │ │ │ │ ├── nldbl-fprintf.c
│ │ │ │ │ │ ├── nldbl-fprintf_chk.c
│ │ │ │ │ │ ├── nldbl-frexp.c
│ │ │ │ │ │ ├── nldbl-fscanf.c
│ │ │ │ │ │ ├── nldbl-fwprintf.c
│ │ │ │ │ │ ├── nldbl-fwprintf_chk.c
│ │ │ │ │ │ ├── nldbl-fwscanf.c
│ │ │ │ │ │ ├── nldbl-gamma.c
│ │ │ │ │ │ ├── nldbl-hypot.c
│ │ │ │ │ │ ├── nldbl-ilogb.c
│ │ │ │ │ │ ├── nldbl-iovfscanf.c
│ │ │ │ │ │ ├── nldbl-isinf.c
│ │ │ │ │ │ ├── nldbl-isnan.c
│ │ │ │ │ │ ├── nldbl-isoc99_fscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_fwscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_scanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_sscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_swscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_vfscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_vfwscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_vscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_vsscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_vswscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_vwscanf.c
│ │ │ │ │ │ ├── nldbl-isoc99_wscanf.c
│ │ │ │ │ │ ├── nldbl-j0.c
│ │ │ │ │ │ ├── nldbl-j1.c
│ │ │ │ │ │ ├── nldbl-jn.c
│ │ │ │ │ │ ├── nldbl-ldexp.c
│ │ │ │ │ │ ├── nldbl-lgamma.c
│ │ │ │ │ │ ├── nldbl-lgamma_r.c
│ │ │ │ │ │ ├── nldbl-llrint.c
│ │ │ │ │ │ ├── nldbl-llround.c
│ │ │ │ │ │ ├── nldbl-log10.c
│ │ │ │ │ │ ├── nldbl-log1p.c
│ │ │ │ │ │ ├── nldbl-log2.c
│ │ │ │ │ │ ├── nldbl-logb.c
│ │ │ │ │ │ ├── nldbl-log.c
│ │ │ │ │ │ ├── nldbl-lrint.c
│ │ │ │ │ │ ├── nldbl-lround.c
│ │ │ │ │ │ ├── nldbl-modf.c
│ │ │ │ │ │ ├── nldbl-nan.c
│ │ │ │ │ │ ├── nldbl-nearbyint.c
│ │ │ │ │ │ ├── nldbl-nextafter.c
│ │ │ │ │ │ ├── nldbl-nexttoward.c
│ │ │ │ │ │ ├── nldbl-nexttowardf.c
│ │ │ │ │ │ ├── nldbl-obstack_printf.c
│ │ │ │ │ │ ├── nldbl-obstack_printf_chk.c
│ │ │ │ │ │ ├── nldbl-obstack_vprintf.c
│ │ │ │ │ │ ├── nldbl-obstack_vprintf_chk.c
│ │ │ │ │ │ ├── nldbl-pow10.c
│ │ │ │ │ │ ├── nldbl-pow.c
│ │ │ │ │ │ ├── nldbl-printf.c
│ │ │ │ │ │ ├── nldbl-printf_chk.c
│ │ │ │ │ │ ├── nldbl-printf_fp.c
│ │ │ │ │ │ ├── nldbl-printf_size.c
│ │ │ │ │ │ ├── nldbl-qecvt.c
│ │ │ │ │ │ ├── nldbl-qecvt_r.c
│ │ │ │ │ │ ├── nldbl-qfcvt.c
│ │ │ │ │ │ ├── nldbl-qfcvt_r.c
│ │ │ │ │ │ ├── nldbl-qgcvt.c
│ │ │ │ │ │ ├── nldbl-remainder.c
│ │ │ │ │ │ ├── nldbl-remquo.c
│ │ │ │ │ │ ├── nldbl-rint.c
│ │ │ │ │ │ ├── nldbl-round.c
│ │ │ │ │ │ ├── nldbl-scalb.c
│ │ │ │ │ │ ├── nldbl-scalbln.c
│ │ │ │ │ │ ├── nldbl-scalbn.c
│ │ │ │ │ │ ├── nldbl-scanf.c
│ │ │ │ │ │ ├── nldbl-signbit.c
│ │ │ │ │ │ ├── nldbl-significand.c
│ │ │ │ │ │ ├── nldbl-sin.c
│ │ │ │ │ │ ├── nldbl-sincos.c
│ │ │ │ │ │ ├── nldbl-sinh.c
│ │ │ │ │ │ ├── nldbl-snprintf.c
│ │ │ │ │ │ ├── nldbl-snprintf_chk.c
│ │ │ │ │ │ ├── nldbl-sprintf.c
│ │ │ │ │ │ ├── nldbl-sprintf_chk.c
│ │ │ │ │ │ ├── nldbl-sqrt.c
│ │ │ │ │ │ ├── nldbl-sscanf.c
│ │ │ │ │ │ ├── nldbl-strfmon.c
│ │ │ │ │ │ ├── nldbl-strfmon_l.c
│ │ │ │ │ │ ├── nldbl-strtold.c
│ │ │ │ │ │ ├── nldbl-strtoldint.c
│ │ │ │ │ │ ├── nldbl-strtold_l.c
│ │ │ │ │ │ ├── nldbl-swprintf.c
│ │ │ │ │ │ ├── nldbl-swprintf_chk.c
│ │ │ │ │ │ ├── nldbl-swscanf.c
│ │ │ │ │ │ ├── nldbl-syslog.c
│ │ │ │ │ │ ├── nldbl-syslog_chk.c
│ │ │ │ │ │ ├── nldbl-tan.c
│ │ │ │ │ │ ├── nldbl-tanh.c
│ │ │ │ │ │ ├── nldbl-tgamma.c
│ │ │ │ │ │ ├── nldbl-trunc.c
│ │ │ │ │ │ ├── nldbl-vasprintf.c
│ │ │ │ │ │ ├── nldbl-vasprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vdprintf.c
│ │ │ │ │ │ ├── nldbl-vdprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vfprintf.c
│ │ │ │ │ │ ├── nldbl-vfprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vfscanf.c
│ │ │ │ │ │ ├── nldbl-vfwprintf.c
│ │ │ │ │ │ ├── nldbl-vfwprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vfwscanf.c
│ │ │ │ │ │ ├── nldbl-vprintf.c
│ │ │ │ │ │ ├── nldbl-vprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vscanf.c
│ │ │ │ │ │ ├── nldbl-vsnprintf.c
│ │ │ │ │ │ ├── nldbl-vsnprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vsprintf.c
│ │ │ │ │ │ ├── nldbl-vsprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vsscanf.c
│ │ │ │ │ │ ├── nldbl-vswprintf.c
│ │ │ │ │ │ ├── nldbl-vswprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vswscanf.c
│ │ │ │ │ │ ├── nldbl-vsyslog.c
│ │ │ │ │ │ ├── nldbl-vsyslog_chk.c
│ │ │ │ │ │ ├── nldbl-vwprintf.c
│ │ │ │ │ │ ├── nldbl-vwprintf_chk.c
│ │ │ │ │ │ ├── nldbl-vwscanf.c
│ │ │ │ │ │ ├── nldbl-wcstold.c
│ │ │ │ │ │ ├── nldbl-wcstoldint.c
│ │ │ │ │ │ ├── nldbl-wcstold_l.c
│ │ │ │ │ │ ├── nldbl-wprintf.c
│ │ │ │ │ │ ├── nldbl-wprintf_chk.c
│ │ │ │ │ │ ├── nldbl-wscanf.c
│ │ │ │ │ │ ├── nldbl-y0.c
│ │ │ │ │ │ ├── nldbl-y1.c
│ │ │ │ │ │ ├── nldbl-yn.c
│ │ │ │ │ │ ├── s_asinh.c
│ │ │ │ │ │ ├── s_atan.c
│ │ │ │ │ │ ├── s_cacos.c
│ │ │ │ │ │ ├── s_cacosh.c
│ │ │ │ │ │ ├── s_cacoshl.c
│ │ │ │ │ │ ├── s_cacosl.c
│ │ │ │ │ │ ├── s_casin.c
│ │ │ │ │ │ ├── s_casinh.c
│ │ │ │ │ │ ├── s_casinhl.c
│ │ │ │ │ │ ├── s_casinl.c
│ │ │ │ │ │ ├── s_catan.c
│ │ │ │ │ │ ├── s_catanh.c
│ │ │ │ │ │ ├── s_catanhl.c
│ │ │ │ │ │ ├── s_catanl.c
│ │ │ │ │ │ ├── s_cbrt.c
│ │ │ │ │ │ ├── s_ccos.c
│ │ │ │ │ │ ├── s_ccosh.c
│ │ │ │ │ │ ├── s_ccoshl.c
│ │ │ │ │ │ ├── s_ccosl.c
│ │ │ │ │ │ ├── s_ceil.c
│ │ │ │ │ │ ├── s_cexp.c
│ │ │ │ │ │ ├── s_cexpl.c
│ │ │ │ │ │ ├── s_clog10.c
│ │ │ │ │ │ ├── s_clog10l.c
│ │ │ │ │ │ ├── s_clog.c
│ │ │ │ │ │ ├── s_clogl.c
│ │ │ │ │ │ ├── s_copysign.c
│ │ │ │ │ │ ├── s_cpow.c
│ │ │ │ │ │ ├── s_cpowl.c
│ │ │ │ │ │ ├── s_cproj.c
│ │ │ │ │ │ ├── s_cprojl.c
│ │ │ │ │ │ ├── s_csin.c
│ │ │ │ │ │ ├── s_csinh.c
│ │ │ │ │ │ ├── s_csinhl.c
│ │ │ │ │ │ ├── s_csinl.c
│ │ │ │ │ │ ├── s_csqrt.c
│ │ │ │ │ │ ├── s_csqrtl.c
│ │ │ │ │ │ ├── s_ctan.c
│ │ │ │ │ │ ├── s_ctanh.c
│ │ │ │ │ │ ├── s_ctanhl.c
│ │ │ │ │ │ ├── s_ctanl.c
│ │ │ │ │ │ ├── s_erf.c
│ │ │ │ │ │ ├── s_expm1.c
│ │ │ │ │ │ ├── s_fabs.c
│ │ │ │ │ │ ├── s_fdim.c
│ │ │ │ │ │ ├── s_fdiml.c
│ │ │ │ │ │ ├── s_finite.c
│ │ │ │ │ │ ├── s_floor.c
│ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ ├── s_fmal.c
│ │ │ │ │ │ ├── s_fmax.c
│ │ │ │ │ │ ├── s_fmaxl.c
│ │ │ │ │ │ ├── s_fmin.c
│ │ │ │ │ │ ├── s_fminl.c
│ │ │ │ │ │ ├── s_frexp.c
│ │ │ │ │ │ ├── s_isinf.c
│ │ │ │ │ │ ├── s_isnan.c
│ │ │ │ │ │ ├── s_ldexp.c
│ │ │ │ │ │ ├── s_ldexpl.c
│ │ │ │ │ │ ├── s_llrint.c
│ │ │ │ │ │ ├── s_llround.c
│ │ │ │ │ │ ├── s_log1p.c
│ │ │ │ │ │ ├── s_logb.c
│ │ │ │ │ │ ├── s_lrint.c
│ │ │ │ │ │ ├── s_lround.c
│ │ │ │ │ │ ├── s_modf.c
│ │ │ │ │ │ ├── s_nan.c
│ │ │ │ │ │ ├── s_nanl.c
│ │ │ │ │ │ ├── s_nearbyint.c
│ │ │ │ │ │ ├── s_nextafter.c
│ │ │ │ │ │ ├── s_nexttowardfd.c
│ │ │ │ │ │ ├── s_remquo.c
│ │ │ │ │ │ ├── s_rint.c
│ │ │ │ │ │ ├── s_round.c
│ │ │ │ │ │ ├── s_scalbln.c
│ │ │ │ │ │ ├── s_scalbn.c
│ │ │ │ │ │ ├── s_significand.c
│ │ │ │ │ │ ├── s_significandl.c
│ │ │ │ │ │ ├── s_sin.c
│ │ │ │ │ │ ├── s_sincos.c
│ │ │ │ │ │ ├── s_tan.c
│ │ │ │ │ │ ├── s_tanh.c
│ │ │ │ │ │ ├── s_trunc.c
│ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ ├── w_acos.c
│ │ │ │ │ │ ├── w_acosh.c
│ │ │ │ │ │ ├── w_acoshl.c
│ │ │ │ │ │ ├── w_acosl.c
│ │ │ │ │ │ ├── w_asin.c
│ │ │ │ │ │ ├── w_asinl.c
│ │ │ │ │ │ ├── w_atan2.c
│ │ │ │ │ │ ├── w_atan2l.c
│ │ │ │ │ │ ├── w_atanh.c
│ │ │ │ │ │ ├── w_atanhl.c
│ │ │ │ │ │ ├── w_cosh.c
│ │ │ │ │ │ ├── w_coshl.c
│ │ │ │ │ │ ├── w_drem.c
│ │ │ │ │ │ ├── w_dreml.c
│ │ │ │ │ │ ├── w_exp10.c
│ │ │ │ │ │ ├── w_exp10l.c
│ │ │ │ │ │ ├── w_exp.c
│ │ │ │ │ │ ├── w_fmod.c
│ │ │ │ │ │ ├── w_fmodl.c
│ │ │ │ │ │ ├── w_hypot.c
│ │ │ │ │ │ ├── w_hypotl.c
│ │ │ │ │ │ ├── w_ilogb.c
│ │ │ │ │ │ ├── w_ilogbl.c
│ │ │ │ │ │ ├── w_j0.c
│ │ │ │ │ │ ├── w_j0l.c
│ │ │ │ │ │ ├── w_j1.c
│ │ │ │ │ │ ├── w_j1l.c
│ │ │ │ │ │ ├── w_jn.c
│ │ │ │ │ │ ├── w_jnl.c
│ │ │ │ │ │ ├── w_lgamma.c
│ │ │ │ │ │ ├── w_lgammal.c
│ │ │ │ │ │ ├── w_lgammal_r.c
│ │ │ │ │ │ ├── w_lgamma_r.c
│ │ │ │ │ │ ├── w_log10.c
│ │ │ │ │ │ ├── w_log10l.c
│ │ │ │ │ │ ├── w_log2.c
│ │ │ │ │ │ ├── w_log2l.c
│ │ │ │ │ │ ├── w_log.c
│ │ │ │ │ │ ├── w_logl.c
│ │ │ │ │ │ ├── w_pow.c
│ │ │ │ │ │ ├── w_powl.c
│ │ │ │ │ │ ├── w_remainder.c
│ │ │ │ │ │ ├── w_remainderl.c
│ │ │ │ │ │ ├── w_scalb.c
│ │ │ │ │ │ ├── w_scalbl.c
│ │ │ │ │ │ ├── w_sinh.c
│ │ │ │ │ │ ├── w_sinhl.c
│ │ │ │ │ │ ├── w_sqrt.c
│ │ │ │ │ │ ├── w_sqrtl.c
│ │ │ │ │ │ ├── w_tgamma.c
│ │ │ │ │ │ └── w_tgammal.c
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── s_lib_version.c
│ │ │ │ │ ├── s_matherr.c
│ │ │ │ │ ├── s_signgam.c
│ │ │ │ │ └── support.c
│ │ │ │ ├── mach
│ │ │ │ │ ├── adjtime.c
│ │ │ │ │ ├── bits
│ │ │ │ │ │ └── libc-lock.h
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── getloadavg.c
│ │ │ │ │ ├── getpagesize.c
│ │ │ │ │ ├── getsysstats.c
│ │ │ │ │ ├── gettimeofday.c
│ │ │ │ │ ├── hurd
│ │ │ │ │ │ ├── accept4.c
│ │ │ │ │ │ ├── accept.c
│ │ │ │ │ │ ├── access.c
│ │ │ │ │ │ ├── adjtime.c
│ │ │ │ │ │ ├── bind.c
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ │ ├── libc-lock.h
│ │ │ │ │ │ │ ├── libc-tsd.h
│ │ │ │ │ │ │ ├── local_lim.h
│ │ │ │ │ │ │ ├── posix_opt.h
│ │ │ │ │ │ │ ├── socket.h
│ │ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ │ ├── statvfs.h
│ │ │ │ │ │ │ └── typesizes.h
│ │ │ │ │ │ ├── brk.c
│ │ │ │ │ │ ├── chdir.c
│ │ │ │ │ │ ├── check_fds.c
│ │ │ │ │ │ ├── chflags.c
│ │ │ │ │ │ ├── chmod.c
│ │ │ │ │ │ ├── chown.c
│ │ │ │ │ │ ├── chroot.c
│ │ │ │ │ │ ├── clock.c
│ │ │ │ │ │ ├── close.c
│ │ │ │ │ │ ├── closedir.c
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── connect.c
│ │ │ │ │ │ ├── cthreads.c
│ │ │ │ │ │ ├── device-nrs.h
│ │ │ │ │ │ ├── dirfd.c
│ │ │ │ │ │ ├── dirstream.h
│ │ │ │ │ │ ├── dl-cache.c
│ │ │ │ │ │ ├── dl-execstack.c
│ │ │ │ │ │ ├── dl-sysdep.c
│ │ │ │ │ │ ├── dl-sysdep.h
│ │ │ │ │ │ ├── dup2.c
│ │ │ │ │ │ ├── dup3.c
│ │ │ │ │ │ ├── enbl-secure.c
│ │ │ │ │ │ ├── err_hurd.sub
│ │ │ │ │ │ ├── errlist.c
│ │ │ │ │ │ ├── errno.c
│ │ │ │ │ │ ├── errno-loc.c
│ │ │ │ │ │ ├── errnos.awk
│ │ │ │ │ │ ├── euidaccess.c
│ │ │ │ │ │ ├── execve.c
│ │ │ │ │ │ ├── _exit.c
│ │ │ │ │ │ ├── faccessat.c
│ │ │ │ │ │ ├── fchdir.c
│ │ │ │ │ │ ├── fchflags.c
│ │ │ │ │ │ ├── fchmodat.c
│ │ │ │ │ │ ├── fchmod.c
│ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ ├── fchown.c
│ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ ├── fdatasync.c
│ │ │ │ │ │ ├── fdopendir.c
│ │ │ │ │ │ ├── fexecve.c
│ │ │ │ │ │ ├── fgetxattr.c
│ │ │ │ │ │ ├── flistxattr.c
│ │ │ │ │ │ ├── flock.c
│ │ │ │ │ │ ├── fork.c
│ │ │ │ │ │ ├── fpathconf.c
│ │ │ │ │ │ ├── fremovexattr.c
│ │ │ │ │ │ ├── fsetxattr.c
│ │ │ │ │ │ ├── fstatfs64.c
│ │ │ │ │ │ ├── fstatfs.c
│ │ │ │ │ │ ├── fstatvfs64.c
│ │ │ │ │ │ ├── fstatvfs.c
│ │ │ │ │ │ ├── fsync.c
│ │ │ │ │ │ ├── ftruncate.c
│ │ │ │ │ │ ├── futimes.c
│ │ │ │ │ │ ├── fxstat64.c
│ │ │ │ │ │ ├── fxstatat64.c
│ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ ├── _G_config.h
│ │ │ │ │ │ ├── getclktck.c
│ │ │ │ │ │ ├── getcwd.c
│ │ │ │ │ │ ├── getdents.c
│ │ │ │ │ │ ├── getdomain.c
│ │ │ │ │ │ ├── getdtsz.c
│ │ │ │ │ │ ├── getegid.c
│ │ │ │ │ │ ├── geteuid.c
│ │ │ │ │ │ ├── getgid.c
│ │ │ │ │ │ ├── getgroups.c
│ │ │ │ │ │ ├── gethostid.c
│ │ │ │ │ │ ├── gethostname.c
│ │ │ │ │ │ ├── getitimer.c
│ │ │ │ │ │ ├── getlogin.c
│ │ │ │ │ │ ├── getlogin_r.c
│ │ │ │ │ │ ├── getpeername.c
│ │ │ │ │ │ ├── getpgid.c
│ │ │ │ │ │ ├── getpid.c
│ │ │ │ │ │ ├── getppid.c
│ │ │ │ │ │ ├── getpriority.c
│ │ │ │ │ │ ├── getresgid.c
│ │ │ │ │ │ ├── getresuid.c
│ │ │ │ │ │ ├── getrlimit.c
│ │ │ │ │ │ ├── getrusage.c
│ │ │ │ │ │ ├── getsid.c
│ │ │ │ │ │ ├── getsockname.c
│ │ │ │ │ │ ├── getsockopt.c
│ │ │ │ │ │ ├── getuid.c
│ │ │ │ │ │ ├── getxattr.c
│ │ │ │ │ │ ├── group_member.c
│ │ │ │ │ │ ├── i386
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ └── sigcontext.h
│ │ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ │ ├── exc2signal.c
│ │ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ │ ├── intr-msg.h
│ │ │ │ │ │ │ ├── ioperm.c
│ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ ├── longjmp-ts.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ ├── signal-defines.sym
│ │ │ │ │ │ │ ├── sigreturn.c
│ │ │ │ │ │ │ ├── static-start.S
│ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ └── io.h
│ │ │ │ │ │ │ ├── tls.h
│ │ │ │ │ │ │ ├── trampoline.c
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── if_index.c
│ │ │ │ │ │ ├── ifreq.c
│ │ │ │ │ │ ├── ifreq.h
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── init-posix.c
│ │ │ │ │ │ ├── ioctl.c
│ │ │ │ │ │ ├── isatty.c
│ │ │ │ │ │ ├── jmp-unwind.c
│ │ │ │ │ │ ├── kernel-features.h
│ │ │ │ │ │ ├── kill.c
│ │ │ │ │ │ ├── lchmod.c
│ │ │ │ │ │ ├── lchown.c
│ │ │ │ │ │ ├── lgetxattr.c
│ │ │ │ │ │ ├── libc-ldscript
│ │ │ │ │ │ ├── libc_p-ldscript
│ │ │ │ │ │ ├── linkat.c
│ │ │ │ │ │ ├── link.c
│ │ │ │ │ │ ├── listen.c
│ │ │ │ │ │ ├── listxattr.c
│ │ │ │ │ │ ├── lseek64.c
│ │ │ │ │ │ ├── lseek.c
│ │ │ │ │ │ ├── lsetxattr.c
│ │ │ │ │ │ ├── lutimes.c
│ │ │ │ │ │ ├── lxstat64.c
│ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ ├── Makeconfig
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── malloc-machine.h
│ │ │ │ │ │ ├── mig-reply.c
│ │ │ │ │ │ ├── mkdirat.c
│ │ │ │ │ │ ├── mkdir.c
│ │ │ │ │ │ ├── mlock.c
│ │ │ │ │ │ ├── mmap.c
│ │ │ │ │ │ ├── munlock.c
│ │ │ │ │ │ ├── net
│ │ │ │ │ │ │ ├── ethernet.h
│ │ │ │ │ │ │ ├── if_arp.h
│ │ │ │ │ │ │ ├── if_ether.h
│ │ │ │ │ │ │ ├── if_ppp.h
│ │ │ │ │ │ │ └── route.h
│ │ │ │ │ │ ├── open64.c
│ │ │ │ │ │ ├── openat64.c
│ │ │ │ │ │ ├── openat.c
│ │ │ │ │ │ ├── open.c
│ │ │ │ │ │ ├── opendir.c
│ │ │ │ │ │ ├── pathconf.c
│ │ │ │ │ │ ├── pipe.c
│ │ │ │ │ │ ├── poll.c
│ │ │ │ │ │ ├── powerpc
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ └── sigcontext.h
│ │ │ │ │ │ │ ├── exc2signal.c
│ │ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ │ ├── intr-msg.h
│ │ │ │ │ │ │ ├── longjmp-ts.c
│ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ ├── sigreturn.c
│ │ │ │ │ │ │ ├── static-start.S
│ │ │ │ │ │ │ └── trampoline.c
│ │ │ │ │ │ ├── ppoll.c
│ │ │ │ │ │ ├── pread64.c
│ │ │ │ │ │ ├── pread.c
│ │ │ │ │ │ ├── prof-freq.c
│ │ │ │ │ │ ├── profil.c
│ │ │ │ │ │ ├── pselect.c
│ │ │ │ │ │ ├── ptrace.c
│ │ │ │ │ │ ├── ptsname.c
│ │ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ │ ├── pwrite.c
│ │ │ │ │ │ ├── read.c
│ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ ├── readdir.c
│ │ │ │ │ │ ├── readdir_r.c
│ │ │ │ │ │ ├── readlinkat.c
│ │ │ │ │ │ ├── readlink.c
│ │ │ │ │ │ ├── reboot.c
│ │ │ │ │ │ ├── recv.c
│ │ │ │ │ │ ├── recvfrom.c
│ │ │ │ │ │ ├── recvmsg.c
│ │ │ │ │ │ ├── removexattr.c
│ │ │ │ │ │ ├── rename.c
│ │ │ │ │ │ ├── revoke.c
│ │ │ │ │ │ ├── rewinddir.c
│ │ │ │ │ │ ├── rmdir.c
│ │ │ │ │ │ ├── sbrk.c
│ │ │ │ │ │ ├── seekdir.c
│ │ │ │ │ │ ├── select.c
│ │ │ │ │ │ ├── send.c
│ │ │ │ │ │ ├── sendfile64.c
│ │ │ │ │ │ ├── sendfile.c
│ │ │ │ │ │ ├── sendmsg.c
│ │ │ │ │ │ ├── sendto.c
│ │ │ │ │ │ ├── setdomain.c
│ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ ├── setgroups.c
│ │ │ │ │ │ ├── sethostid.c
│ │ │ │ │ │ ├── sethostname.c
│ │ │ │ │ │ ├── setitimer.c
│ │ │ │ │ │ ├── setlogin.c
│ │ │ │ │ │ ├── setpgid.c
│ │ │ │ │ │ ├── setpriority.c
│ │ │ │ │ │ ├── setregid.c
│ │ │ │ │ │ ├── setresgid.c
│ │ │ │ │ │ ├── setresuid.c
│ │ │ │ │ │ ├── setreuid.c
│ │ │ │ │ │ ├── setrlimit.c
│ │ │ │ │ │ ├── setsid.c
│ │ │ │ │ │ ├── setsockopt.c
│ │ │ │ │ │ ├── settimeofday.c
│ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ ├── setxattr.c
│ │ │ │ │ │ ├── shutdown.c
│ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ ├── sigaltstack.c
│ │ │ │ │ │ ├── siglist.h
│ │ │ │ │ │ ├── sigpending.c
│ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ ├── sigstack.c
│ │ │ │ │ │ ├── sigsuspend.c
│ │ │ │ │ │ ├── sigwait.c
│ │ │ │ │ │ ├── socket.c
│ │ │ │ │ │ ├── socketpair.c
│ │ │ │ │ │ ├── spawni.c
│ │ │ │ │ │ ├── statfs64.c
│ │ │ │ │ │ ├── statfs.c
│ │ │ │ │ │ ├── statfsconv.c
│ │ │ │ │ │ ├── statvfs64.c
│ │ │ │ │ │ ├── statvfs.c
│ │ │ │ │ │ ├── Subdirs
│ │ │ │ │ │ ├── symlinkat.c
│ │ │ │ │ │ ├── symlink.c
│ │ │ │ │ │ ├── sync.c
│ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ └── param.h
│ │ │ │ │ │ ├── telldir.c
│ │ │ │ │ │ ├── times.c
│ │ │ │ │ │ ├── tls.h
│ │ │ │ │ │ ├── tmpfile64.c
│ │ │ │ │ │ ├── tmpfile.c
│ │ │ │ │ │ ├── truncate.c
│ │ │ │ │ │ ├── ttyname.c
│ │ │ │ │ │ ├── ttyname_r.c
│ │ │ │ │ │ ├── umask.c
│ │ │ │ │ │ ├── uname.c
│ │ │ │ │ │ ├── unlinkat.c
│ │ │ │ │ │ ├── unlink.c
│ │ │ │ │ │ ├── utimes.c
│ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ ├── wait4.c
│ │ │ │ │ │ ├── write.c
│ │ │ │ │ │ ├── xmknodat.c
│ │ │ │ │ │ ├── xmknod.c
│ │ │ │ │ │ ├── xstat64.c
│ │ │ │ │ │ ├── xstat.c
│ │ │ │ │ │ └── xstatconv.c
│ │ │ │ │ ├── i386
│ │ │ │ │ │ ├── machine-lock.h
│ │ │ │ │ │ ├── machine-sp.h
│ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ └── thread_state.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mprotect.c
│ │ │ │ │ ├── msync.c
│ │ │ │ │ ├── munmap.c
│ │ │ │ │ ├── nanosleep.c
│ │ │ │ │ ├── pagecopy.h
│ │ │ │ │ ├── powerpc
│ │ │ │ │ │ ├── machine-lock.h
│ │ │ │ │ │ ├── machine-sp.h
│ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ └── thread_state.h
│ │ │ │ │ ├── readonly-area.c
│ │ │ │ │ ├── sched_yield.c
│ │ │ │ │ ├── sleep.c
│ │ │ │ │ ├── _strerror.c
│ │ │ │ │ ├── strerror_l.c
│ │ │ │ │ ├── Subdirs
│ │ │ │ │ ├── sys
│ │ │ │ │ │ ├── reboot.h
│ │ │ │ │ │ └── syscall.h
│ │ │ │ │ ├── sysdep.h
│ │ │ │ │ ├── thread_state.h
│ │ │ │ │ ├── usleep.c
│ │ │ │ │ └── xpg-strerror.c
│ │ │ │ ├── posix
│ │ │ │ │ ├── clock.c
│ │ │ │ │ ├── clock_getres.c
│ │ │ │ │ ├── ctermid.c
│ │ │ │ │ ├── cuserid.c
│ │ │ │ │ ├── dup2.c
│ │ │ │ │ ├── dup.c
│ │ │ │ │ ├── euidaccess.c
│ │ │ │ │ ├── flock.c
│ │ │ │ │ ├── fpathconf.c
│ │ │ │ │ ├── gai_strerror.c
│ │ │ │ │ ├── gai_strerror-strs.h
│ │ │ │ │ ├── getaddrinfo.c
│ │ │ │ │ ├── getcwd.c
│ │ │ │ │ ├── getdtsz.c
│ │ │ │ │ ├── gethostname.c
│ │ │ │ │ ├── getpagesize.c
│ │ │ │ │ ├── gettimeofday.c
│ │ │ │ │ ├── isatty.c
│ │ │ │ │ ├── isfdtype.c
│ │ │ │ │ ├── killpg.c
│ │ │ │ │ ├── libc_fatal.c
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── open64.c
│ │ │ │ │ ├── pathconf.c
│ │ │ │ │ ├── pause.c
│ │ │ │ │ ├── posix_fallocate64.c
│ │ │ │ │ ├── posix_fallocate.c
│ │ │ │ │ ├── pread64.c
│ │ │ │ │ ├── pread.c
│ │ │ │ │ ├── preadv64.c
│ │ │ │ │ ├── preadv.c
│ │ │ │ │ ├── profil.c
│ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ ├── pwrite.c
│ │ │ │ │ ├── pwritev64.c
│ │ │ │ │ ├── pwritev.c
│ │ │ │ │ ├── raise.c
│ │ │ │ │ ├── readv.c
│ │ │ │ │ ├── remove.c
│ │ │ │ │ ├── rename.c
│ │ │ │ │ ├── shm_open.c
│ │ │ │ │ ├── shm_unlink.c
│ │ │ │ │ ├── sigblock.c
│ │ │ │ │ ├── sigignore.c
│ │ │ │ │ ├── sigintr.c
│ │ │ │ │ ├── signal.c
│ │ │ │ │ ├── sigpause.c
│ │ │ │ │ ├── sigset.c
│ │ │ │ │ ├── sigsetmask.c
│ │ │ │ │ ├── sigsuspend.c
│ │ │ │ │ ├── sigvec.c
│ │ │ │ │ ├── sigwait.c
│ │ │ │ │ ├── sleep.c
│ │ │ │ │ ├── spawni.c
│ │ │ │ │ ├── sprofil.c
│ │ │ │ │ ├── sysconf.c
│ │ │ │ │ ├── system.c
│ │ │ │ │ ├── sysv_signal.c
│ │ │ │ │ ├── tempname.c
│ │ │ │ │ ├── truncate.c
│ │ │ │ │ ├── ttyname.c
│ │ │ │ │ ├── ttyname_r.c
│ │ │ │ │ ├── utimes.c
│ │ │ │ │ ├── wait3.c
│ │ │ │ │ ├── wait.c
│ │ │ │ │ ├── waitid.c
│ │ │ │ │ └── writev.c
│ │ │ │ ├── powerpc
│ │ │ │ │ ├── abort-instr.h
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ ├── endian.h
│ │ │ │ │ │ ├── fenv.h
│ │ │ │ │ │ ├── hwcap.h
│ │ │ │ │ │ ├── link.h
│ │ │ │ │ │ ├── mathdef.h
│ │ │ │ │ │ └── setjmp.h
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── dl-procinfo.c
│ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ ├── dl-tls.h
│ │ │ │ │ ├── ffs.c
│ │ │ │ │ ├── fpu
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── fenvinline.h
│ │ │ │ │ │ │ └── mathinline.h
│ │ │ │ │ │ ├── e_hypot.c
│ │ │ │ │ │ ├── e_hypotf.c
│ │ │ │ │ │ ├── e_rem_pio2f.c
│ │ │ │ │ │ ├── e_sqrt.c
│ │ │ │ │ │ ├── e_sqrtf.c
│ │ │ │ │ │ ├── fclrexcpt.c
│ │ │ │ │ │ ├── fedisblxcpt.c
│ │ │ │ │ │ ├── feenablxcpt.c
│ │ │ │ │ │ ├── fegetenv.c
│ │ │ │ │ │ ├── fegetexcept.c
│ │ │ │ │ │ ├── fegetround.c
│ │ │ │ │ │ ├── feholdexcpt.c
│ │ │ │ │ │ ├── fe_mask.c
│ │ │ │ │ │ ├── fe_nomask.c
│ │ │ │ │ │ ├── fenv_const.c
│ │ │ │ │ │ ├── fenv_libc.h
│ │ │ │ │ │ ├── fesetenv.c
│ │ │ │ │ │ ├── fesetround.c
│ │ │ │ │ │ ├── feupdateenv.c
│ │ │ │ │ │ ├── fgetexcptflg.c
│ │ │ │ │ │ ├── fpu_control.h
│ │ │ │ │ │ ├── fraiseexcpt.c
│ │ │ │ │ │ ├── fsetexcptflg.c
│ │ │ │ │ │ ├── ftestexcept.c
│ │ │ │ │ │ ├── k_cosf.c
│ │ │ │ │ │ ├── k_rem_pio2f.c
│ │ │ │ │ │ ├── k_sinf.c
│ │ │ │ │ │ ├── libm-test-ulps
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── math_ldbl.h
│ │ │ │ │ │ ├── math_private.h
│ │ │ │ │ │ ├── s_cosf.c
│ │ │ │ │ │ ├── s_fabsf.S
│ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ ├── s_fdim.c
│ │ │ │ │ │ ├── s_fdimf.c
│ │ │ │ │ │ ├── s_float_bitwise.h
│ │ │ │ │ │ ├── s_fmaf.S
│ │ │ │ │ │ ├── s_fma.S
│ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ ├── s_isnan.c
│ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ ├── s_llround.c
│ │ │ │ │ │ ├── s_llroundf.c
│ │ │ │ │ │ ├── s_lrintf.S
│ │ │ │ │ │ ├── s_rint.c
│ │ │ │ │ │ ├── s_rintf.c
│ │ │ │ │ │ ├── s_sinf.c
│ │ │ │ │ │ ├── test-powerpc-snan.c
│ │ │ │ │ │ ├── t_sqrt.c
│ │ │ │ │ │ ├── tst-setcontext-fpscr.c
│ │ │ │ │ │ ├── w_sqrt.c
│ │ │ │ │ │ └── w_sqrtf.c
│ │ │ │ │ ├── gccframe.h
│ │ │ │ │ ├── ifunc-sel.h
│ │ │ │ │ ├── Implies
│ │ │ │ │ ├── jmpbuf-offsets.h
│ │ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ │ ├── locale-defines.sym
│ │ │ │ │ ├── longjmp.c
│ │ │ │ │ ├── machine-gmon.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── memmove.c
│ │ │ │ │ ├── memusage.h
│ │ │ │ │ ├── mp_clz_tab.c
│ │ │ │ │ ├── novmx-longjmp.c
│ │ │ │ │ ├── novmxsetjmp.h
│ │ │ │ │ ├── novmx-sigjmp.c
│ │ │ │ │ ├── powerpc32
│ │ │ │ │ │ ├── 970
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── a2
│ │ │ │ │ │ │ └── memcpy.S
│ │ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── backtrace.c
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ ├── bp-asm.h
│ │ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ ├── cell
│ │ │ │ │ │ │ └── memcpy.S
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── crti.S
│ │ │ │ │ │ ├── crtn.S
│ │ │ │ │ │ ├── dl-dtprocnum.h
│ │ │ │ │ │ ├── dl-irel.h
│ │ │ │ │ │ ├── dl-machine.c
│ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ ├── dl-start.S
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ ├── fprrest.S
│ │ │ │ │ │ │ ├── fprsave.S
│ │ │ │ │ │ │ ├── __longjmp-common.S
│ │ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ ├── s_copysignl.S
│ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ ├── setjmp-common.S
│ │ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ │ ├── s_fabsl.S
│ │ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ │ ├── s_fdim.c
│ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ ├── s_fma.S
│ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ ├── s_llrint.c
│ │ │ │ │ │ │ ├── s_llrintf.c
│ │ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ │ ├── s_lroundf.S
│ │ │ │ │ │ │ ├── s_lround.S
│ │ │ │ │ │ │ ├── s_nearbyintf.S
│ │ │ │ │ │ │ ├── s_nearbyint.S
│ │ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ │ ├── s_roundf.S
│ │ │ │ │ │ │ ├── s_round.S
│ │ │ │ │ │ │ ├── s_truncf.S
│ │ │ │ │ │ │ └── s_trunc.S
│ │ │ │ │ │ ├── gprrest0.S
│ │ │ │ │ │ ├── gprrest1.S
│ │ │ │ │ │ ├── gprsave0.S
│ │ │ │ │ │ ├── gprsave1.S
│ │ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── libgcc-compat.S
│ │ │ │ │ │ ├── __longjmp-common.S
│ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ ├── lshift.S
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── mcount.c
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── mul_1.S
│ │ │ │ │ │ ├── power4
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── mpa.c
│ │ │ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ │ ├── s_llroundf.S
│ │ │ │ │ │ │ │ ├── s_llround.S
│ │ │ │ │ │ │ │ ├── slowexp.c
│ │ │ │ │ │ │ │ ├── slowpow.c
│ │ │ │ │ │ │ │ ├── w_sqrtf.S
│ │ │ │ │ │ │ │ └── w_sqrt.S
│ │ │ │ │ │ │ ├── hp-timing.c
│ │ │ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ │ ├── memcopy.h
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ │ └── wordcopy.c
│ │ │ │ │ │ ├── power5
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── w_sqrtf.S
│ │ │ │ │ │ │ │ └── w_sqrt.S
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── power5+
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ │ ├── s_llroundf.S
│ │ │ │ │ │ │ │ ├── s_llround.S
│ │ │ │ │ │ │ │ ├── s_lround.S
│ │ │ │ │ │ │ │ ├── s_roundf.S
│ │ │ │ │ │ │ │ ├── s_round.S
│ │ │ │ │ │ │ │ ├── s_truncf.S
│ │ │ │ │ │ │ │ └── s_trunc.S
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── power6
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ │ ├── s_llroundf.S
│ │ │ │ │ │ │ │ └── s_llround.S
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ └── wordcopy.c
│ │ │ │ │ │ ├── power6x
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ │ │ └── s_lround.S
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── power7
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_finitef.S
│ │ │ │ │ │ │ │ ├── s_finite.S
│ │ │ │ │ │ │ │ ├── s_isinff.S
│ │ │ │ │ │ │ │ ├── s_isinf.S
│ │ │ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── s_logb.c
│ │ │ │ │ │ │ │ ├── s_logbf.c
│ │ │ │ │ │ │ │ └── s_logbl.c
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ │ │ ├── memrchr.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ │ │ ├── strcasecmp_l.S
│ │ │ │ │ │ │ ├── strcasecmp.S
│ │ │ │ │ │ │ ├── strchrnul.S
│ │ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ │ └── strnlen.S
│ │ │ │ │ │ ├── ppc-mcount.S
│ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ ├── rshift.S
│ │ │ │ │ │ ├── rtld-memset.c
│ │ │ │ │ │ ├── setjmp-common.S
│ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ │ ├── start.S
│ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ ├── submul_1.S
│ │ │ │ │ │ ├── sub_n.S
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── powerpc64
│ │ │ │ │ │ ├── 970
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── a2
│ │ │ │ │ │ │ └── memcpy.S
│ │ │ │ │ │ ├── backtrace.c
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ ├── bp-asm.h
│ │ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ ├── cell
│ │ │ │ │ │ │ └── memcpy.S
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── crti.S
│ │ │ │ │ │ ├── crtn.S
│ │ │ │ │ │ ├── dl-dtprocnum.h
│ │ │ │ │ │ ├── dl-irel.h
│ │ │ │ │ │ ├── dl-machine.c
│ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── entry.h
│ │ │ │ │ │ ├── ffsll.c
│ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ ├── e_sqrt.c
│ │ │ │ │ │ │ ├── e_sqrtf.c
│ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ ├── s_ceill.S
│ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ ├── s_copysignl.S
│ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ ├── s_fabsl.S
│ │ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ │ ├── s_fdim.c
│ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ ├── s_fma.S
│ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ ├── s_llroundf.S
│ │ │ │ │ │ │ ├── s_llround.S
│ │ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ │ ├── s_lroundf.S
│ │ │ │ │ │ │ ├── s_lround.S
│ │ │ │ │ │ │ ├── s_nearbyintf.S
│ │ │ │ │ │ │ ├── s_nearbyintl.S
│ │ │ │ │ │ │ ├── s_nearbyint.S
│ │ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ │ ├── s_roundf.S
│ │ │ │ │ │ │ ├── s_roundl.S
│ │ │ │ │ │ │ ├── s_round.S
│ │ │ │ │ │ │ ├── s_truncf.S
│ │ │ │ │ │ │ ├── s_truncl.S
│ │ │ │ │ │ │ └── s_trunc.S
│ │ │ │ │ │ ├── hp-timing.c
│ │ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── __longjmp-common.S
│ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── power4
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── mpa.c
│ │ │ │ │ │ │ │ ├── slowexp.c
│ │ │ │ │ │ │ │ ├── slowpow.c
│ │ │ │ │ │ │ │ ├── w_sqrt.c
│ │ │ │ │ │ │ │ └── w_sqrtf.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ │ ├── memcopy.h
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ │ └── wordcopy.c
│ │ │ │ │ │ ├── power5
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ └── s_isnan.S
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── power5+
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ │ ├── s_llround.S
│ │ │ │ │ │ │ │ ├── s_roundf.S
│ │ │ │ │ │ │ │ ├── s_round.S
│ │ │ │ │ │ │ │ ├── s_truncf.S
│ │ │ │ │ │ │ │ └── s_trunc.S
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── power6
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ │ └── s_isnan.S
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ └── wordcopy.c
│ │ │ │ │ │ ├── power6x
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ │ └── s_llround.S
│ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ ├── power7
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── s_finitef.S
│ │ │ │ │ │ │ │ ├── s_finite.S
│ │ │ │ │ │ │ │ ├── s_isinff.S
│ │ │ │ │ │ │ │ ├── s_isinf.S
│ │ │ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── s_logb.c
│ │ │ │ │ │ │ │ ├── s_logbf.c
│ │ │ │ │ │ │ │ └── s_logbl.c
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ │ │ ├── memrchr.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ │ │ ├── strcasecmp_l.S
│ │ │ │ │ │ │ ├── strcasecmp.S
│ │ │ │ │ │ │ ├── strchrnul.S
│ │ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ │ └── strnlen.S
│ │ │ │ │ │ ├── ppc-mcount.S
│ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ ├── rtld-memset.c
│ │ │ │ │ │ ├── setjmp-common.S
│ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ │ ├── start.S
│ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ └── sysdep.h
│ │ │ │ │ ├── rtld-global-offsets.sym
│ │ │ │ │ ├── sched_cpucount.c
│ │ │ │ │ ├── sigjmp.c
│ │ │ │ │ ├── stackinfo.h
│ │ │ │ │ ├── strcat.c
│ │ │ │ │ ├── sys
│ │ │ │ │ │ └── platform
│ │ │ │ │ │ └── ppc.h
│ │ │ │ │ ├── sysdep.h
│ │ │ │ │ ├── test-arith.c
│ │ │ │ │ ├── test-arithf.c
│ │ │ │ │ ├── test-gettimebase.c
│ │ │ │ │ ├── tst-stack-align.h
│ │ │ │ │ └── Versions
│ │ │ │ ├── pthread
│ │ │ │ │ ├── aio_cancel.c
│ │ │ │ │ ├── aio_fsync.c
│ │ │ │ │ ├── aio_misc.c
│ │ │ │ │ ├── aio_misc.h
│ │ │ │ │ ├── aio_notify.c
│ │ │ │ │ ├── aio_read64.c
│ │ │ │ │ ├── aio_read.c
│ │ │ │ │ ├── aio_suspend.c
│ │ │ │ │ ├── aio_write64.c
│ │ │ │ │ ├── aio_write.c
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── lio_listio64.c
│ │ │ │ │ ├── lio_listio.c
│ │ │ │ │ └── Versions
│ │ │ │ ├── s390
│ │ │ │ │ ├── abort-instr.h
│ │ │ │ │ ├── asm-syntax.h
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ ├── byteswap-16.h
│ │ │ │ │ │ ├── byteswap.h
│ │ │ │ │ │ ├── endian.h
│ │ │ │ │ │ ├── link.h
│ │ │ │ │ │ ├── linkmap.h
│ │ │ │ │ │ ├── mathdef.h
│ │ │ │ │ │ ├── setjmp.h
│ │ │ │ │ │ ├── string.h
│ │ │ │ │ │ └── xtitypes.h
│ │ │ │ │ ├── dl-procinfo.c
│ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ ├── dl-tls.h
│ │ │ │ │ ├── ffs.c
│ │ │ │ │ ├── fpu
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── fenv.h
│ │ │ │ │ │ │ └── mathinline.h
│ │ │ │ │ │ ├── e_sqrt.c
│ │ │ │ │ │ ├── e_sqrtf.c
│ │ │ │ │ │ ├── e_sqrtl.c
│ │ │ │ │ │ ├── fclrexcpt.c
│ │ │ │ │ │ ├── fedisblxcpt.c
│ │ │ │ │ │ ├── feenablxcpt.c
│ │ │ │ │ │ ├── fegetenv.c
│ │ │ │ │ │ ├── fegetexcept.c
│ │ │ │ │ │ ├── fegetround.c
│ │ │ │ │ │ ├── feholdexcpt.c
│ │ │ │ │ │ ├── fenv_libc.h
│ │ │ │ │ │ ├── fesetenv.c
│ │ │ │ │ │ ├── fesetround.c
│ │ │ │ │ │ ├── feupdateenv.c
│ │ │ │ │ │ ├── fgetexcptflg.c
│ │ │ │ │ │ ├── fpu_control.h
│ │ │ │ │ │ ├── fraiseexcpt.c
│ │ │ │ │ │ ├── fsetexcptflg.c
│ │ │ │ │ │ ├── ftestexcept.c
│ │ │ │ │ │ ├── libm-test-ulps
│ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ └── s_fmaf.c
│ │ │ │ │ ├── gccframe.h
│ │ │ │ │ ├── gmp-mparam.h
│ │ │ │ │ ├── Implies
│ │ │ │ │ ├── jmpbuf-offsets.h
│ │ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ │ ├── libc-tls.c
│ │ │ │ │ ├── machine-gmon.h
│ │ │ │ │ ├── memusage.h
│ │ │ │ │ ├── s390-32
│ │ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── backtrace.c
│ │ │ │ │ │ ├── bcopy.S
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── crti.S
│ │ │ │ │ │ ├── crtn.S
│ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── __longjmp.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── mul_1.S
│ │ │ │ │ │ ├── s390-mcount.S
│ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ │ ├── start.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strncpy.S
│ │ │ │ │ │ ├── sub_n.S
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── s390-64
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── backtrace.c
│ │ │ │ │ │ ├── bcopy.S
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ │ ├── bzero.S
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── crti.S
│ │ │ │ │ │ ├── crtn.S
│ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── iso-8859-1_cp037_z900.c
│ │ │ │ │ │ ├── __longjmp.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── s390x-mcount.S
│ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ │ ├── start.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strncpy.S
│ │ │ │ │ │ ├── sub_n.S
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ ├── utf16-utf32-z9.c
│ │ │ │ │ │ ├── utf8-utf16-z9.c
│ │ │ │ │ │ └── utf8-utf32-z9.c
│ │ │ │ │ ├── stackinfo.h
│ │ │ │ │ └── Versions
│ │ │ │ ├── sh
│ │ │ │ │ ├── abort-instr.h
│ │ │ │ │ ├── backtrace.c
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── endian.h
│ │ │ │ │ │ ├── huge_val.h
│ │ │ │ │ │ ├── link.h
│ │ │ │ │ │ ├── linkmap.h
│ │ │ │ │ │ └── setjmp.h
│ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── crti.S
│ │ │ │ │ ├── crtn.S
│ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ ├── dl-tls.h
│ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ ├── gccframe.h
│ │ │ │ │ ├── gmp-mparam.h
│ │ │ │ │ ├── Implies
│ │ │ │ │ ├── init-first.c
│ │ │ │ │ ├── jmpbuf-offsets.h
│ │ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ │ ├── libc-tls.c
│ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ ├── machine-gmon.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── _mcount.S
│ │ │ │ │ ├── memcpy.S
│ │ │ │ │ ├── memset.S
│ │ │ │ │ ├── memusage.h
│ │ │ │ │ ├── sh3
│ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ └── setjmp.S
│ │ │ │ │ ├── sh4
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ └── mathdef.h
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ └── fenv.h
│ │ │ │ │ │ │ ├── fclrexcpt.c
│ │ │ │ │ │ │ ├── fedisblxcpt.c
│ │ │ │ │ │ │ ├── feenablxcpt.c
│ │ │ │ │ │ │ ├── fegetenv.c
│ │ │ │ │ │ │ ├── fegetexcept.c
│ │ │ │ │ │ │ ├── fegetround.c
│ │ │ │ │ │ │ ├── feholdexcpt.c
│ │ │ │ │ │ │ ├── fesetenv.c
│ │ │ │ │ │ │ ├── fesetround.c
│ │ │ │ │ │ │ ├── feupdateenv.c
│ │ │ │ │ │ │ ├── fpu_control.h
│ │ │ │ │ │ │ ├── fraiseexcpt.c
│ │ │ │ │ │ │ ├── fsetexcptflg.c
│ │ │ │ │ │ │ ├── ftestexcept.c
│ │ │ │ │ │ │ └── libm-test-ulps
│ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── stackinfo.h
│ │ │ │ │ ├── start.S
│ │ │ │ │ ├── strlen.S
│ │ │ │ │ ├── sys
│ │ │ │ │ │ └── ucontext.h
│ │ │ │ │ └── sysdep.h
│ │ │ │ ├── sparc
│ │ │ │ │ ├── abort-instr.h
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── endian.h
│ │ │ │ │ │ ├── huge_vall.h
│ │ │ │ │ │ ├── hwcap.h
│ │ │ │ │ │ ├── link.h
│ │ │ │ │ │ ├── mathdef.h
│ │ │ │ │ │ └── string.h
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.in
│ │ │ │ │ ├── crti.S
│ │ │ │ │ ├── crtn.S
│ │ │ │ │ ├── dl-dtprocnum.h
│ │ │ │ │ ├── dl-procinfo.c
│ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ ├── dl-sysdep.h
│ │ │ │ │ ├── dl-tls.h
│ │ │ │ │ ├── fpu
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── fenv.h
│ │ │ │ │ │ │ └── mathinline.h
│ │ │ │ │ │ ├── fclrexcpt.c
│ │ │ │ │ │ ├── fedisblxcpt.c
│ │ │ │ │ │ ├── feenablxcpt.c
│ │ │ │ │ │ ├── fegetenv.c
│ │ │ │ │ │ ├── fegetexcept.c
│ │ │ │ │ │ ├── fegetround.c
│ │ │ │ │ │ ├── feholdexcpt.c
│ │ │ │ │ │ ├── fenv_private.h
│ │ │ │ │ │ ├── fesetenv.c
│ │ │ │ │ │ ├── fesetround.c
│ │ │ │ │ │ ├── feupdateenv.c
│ │ │ │ │ │ ├── fgetexcptflg.c
│ │ │ │ │ │ ├── fpu_control.h
│ │ │ │ │ │ ├── fraiseexcpt.c
│ │ │ │ │ │ ├── fsetexcptflg.c
│ │ │ │ │ │ ├── ftestexcept.c
│ │ │ │ │ │ ├── libm-test-ulps
│ │ │ │ │ │ └── math_private.h
│ │ │ │ │ ├── gccframe.h
│ │ │ │ │ ├── machine-gmon.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ ├── memusage.h
│ │ │ │ │ ├── sparc32
│ │ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── alloca.S
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ │ ├── setjmp.h
│ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ │ ├── bzero.c
│ │ │ │ │ │ ├── divrem.m4
│ │ │ │ │ │ ├── dl-irel.h
│ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ ├── dl-plt.h
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── dotmul.S
│ │ │ │ │ │ ├── e_sqrt.c
│ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ ├── e_sqrtl.c
│ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ ├── s_fabsf.S
│ │ │ │ │ │ │ ├── s_fabsl.c
│ │ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ │ ├── s_signbitf.S
│ │ │ │ │ │ │ ├── s_signbitl.S
│ │ │ │ │ │ │ ├── s_signbit.S
│ │ │ │ │ │ │ ├── w_sqrtf.S
│ │ │ │ │ │ │ └── w_sqrt.S
│ │ │ │ │ │ ├── ieee754.h
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── jmpbuf-offsets.h
│ │ │ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ ├── lshift.S
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── mul_1.S
│ │ │ │ │ │ ├── rem.S
│ │ │ │ │ │ ├── rshift.S
│ │ │ │ │ │ ├── sdiv.S
│ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ ├── soft-fp
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── q_add.c
│ │ │ │ │ │ │ ├── q_cmp.c
│ │ │ │ │ │ │ ├── q_cmpe.c
│ │ │ │ │ │ │ ├── q_div.c
│ │ │ │ │ │ │ ├── q_dtoq.c
│ │ │ │ │ │ │ ├── q_feq.c
│ │ │ │ │ │ │ ├── q_fge.c
│ │ │ │ │ │ │ ├── q_fgt.c
│ │ │ │ │ │ │ ├── q_fle.c
│ │ │ │ │ │ │ ├── q_flt.c
│ │ │ │ │ │ │ ├── q_fne.c
│ │ │ │ │ │ │ ├── q_itoq.c
│ │ │ │ │ │ │ ├── q_lltoq.c
│ │ │ │ │ │ │ ├── q_mul.c
│ │ │ │ │ │ │ ├── q_neg.c
│ │ │ │ │ │ │ ├── q_qtod.c
│ │ │ │ │ │ │ ├── q_qtoi.c
│ │ │ │ │ │ │ ├── q_qtoll.c
│ │ │ │ │ │ │ ├── q_qtos.c
│ │ │ │ │ │ │ ├── q_qtou.c
│ │ │ │ │ │ │ ├── q_qtoull.c
│ │ │ │ │ │ │ ├── q_sqrt.c
│ │ │ │ │ │ │ ├── q_stoq.c
│ │ │ │ │ │ │ ├── q_sub.c
│ │ │ │ │ │ │ ├── q_ulltoq.c
│ │ │ │ │ │ │ ├── q_util.c
│ │ │ │ │ │ │ ├── q_utoq.c
│ │ │ │ │ │ │ ├── sfp-machine.h
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── sparcv8
│ │ │ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ │ │ ├── dotmul.S
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── mul_1.S
│ │ │ │ │ │ │ ├── rem.S
│ │ │ │ │ │ │ ├── sdiv.S
│ │ │ │ │ │ │ ├── submul_1.S
│ │ │ │ │ │ │ ├── udiv.S
│ │ │ │ │ │ │ ├── umul.S
│ │ │ │ │ │ │ └── urem.S
│ │ │ │ │ │ ├── sparcv9
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ └── atomic.h
│ │ │ │ │ │ │ ├── bzero.c
│ │ │ │ │ │ │ ├── dotmul.S
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── multiarch
│ │ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ │ │ ├── s_ceilf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ │ │ ├── s_ceil-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ │ │ ├── s_copysignf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ │ │ ├── s_copysign-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fabsf.S
│ │ │ │ │ │ │ │ │ ├── s_fabsf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ │ │ │ ├── s_fabs-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ │ │ ├── s_floorf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ │ │ ├── s_floor-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ │ │ │ ├── s_fmaf.c
│ │ │ │ │ │ │ │ │ ├── s_fmaf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fma-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ │ │ │ ├── s_fmaxf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ │ │ ├── s_fmax-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ │ │ │ ├── s_fminf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ │ │ │ ├── s_fmin-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ │ │ │ ├── s_llrintf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ │ │ ├── s_llrint-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ │ │ │ ├── s_rintf-vis3.S
│ │ │ │ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ │ │ │ ├── s_rint-vis3.S
│ │ │ │ │ │ │ │ │ ├── w_sqrtf.S
│ │ │ │ │ │ │ │ │ ├── w_sqrtf-vis3.S
│ │ │ │ │ │ │ │ │ ├── w_sqrt.S
│ │ │ │ │ │ │ │ │ └── w_sqrt-vis3.S
│ │ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ │ ├── s_fabs.S
│ │ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ │ ├── s_lrintf.S
│ │ │ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ │ │ ├── unix
│ │ │ │ │ │ │ │ │ └── sysv
│ │ │ │ │ │ │ │ │ └── linux
│ │ │ │ │ │ │ │ │ └── multiarch
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── w_sqrtf.S
│ │ │ │ │ │ │ │ └── w_sqrt.S
│ │ │ │ │ │ │ ├── hp-timing.c
│ │ │ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── multiarch
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── memcpy-niagara1.S
│ │ │ │ │ │ │ │ ├── memcpy-niagara2.S
│ │ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ │ ├── memcpy-ultra3.S
│ │ │ │ │ │ │ │ ├── memset-niagara1.S
│ │ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ │ ├── rtld-memcpy.c
│ │ │ │ │ │ │ │ └── rtld-memset.c
│ │ │ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ │ │ ├── rem.S
│ │ │ │ │ │ │ ├── rtld-memcpy.c
│ │ │ │ │ │ │ ├── rtld-memset.c
│ │ │ │ │ │ │ ├── sdiv.S
│ │ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ │ ├── stpncpy.S
│ │ │ │ │ │ │ ├── strcat.S
│ │ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ │ ├── strcspn.S
│ │ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ │ ├── strncpy.S
│ │ │ │ │ │ │ ├── strpbrk.S
│ │ │ │ │ │ │ ├── strrchr.c
│ │ │ │ │ │ │ ├── strspn.S
│ │ │ │ │ │ │ ├── udiv.S
│ │ │ │ │ │ │ ├── umul.S
│ │ │ │ │ │ │ └── urem.S
│ │ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ │ ├── start.S
│ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ ├── strcat.S
│ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ ├── strrchr.c
│ │ │ │ │ │ ├── submul_1.S
│ │ │ │ │ │ ├── sub_n.S
│ │ │ │ │ │ ├── udiv.S
│ │ │ │ │ │ ├── umul.S
│ │ │ │ │ │ ├── urem.S
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── sparc64
│ │ │ │ │ │ ├── addmul_1.S
│ │ │ │ │ │ ├── add_n.S
│ │ │ │ │ │ ├── align-cpy.S
│ │ │ │ │ │ ├── backtrace.c
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ ├── bzero.c
│ │ │ │ │ │ ├── dl-irel.h
│ │ │ │ │ │ ├── dl-machine.h
│ │ │ │ │ │ ├── dl-plt.h
│ │ │ │ │ │ ├── dl-trampoline.S
│ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ ├── e_sqrtl.c
│ │ │ │ │ │ │ ├── multiarch
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ │ ├── s_ceilf-vis3.S
│ │ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ │ ├── s_ceil-vis3.S
│ │ │ │ │ │ │ │ ├── s_finitef.S
│ │ │ │ │ │ │ │ ├── s_finitef-vis3.S
│ │ │ │ │ │ │ │ ├── s_finite.S
│ │ │ │ │ │ │ │ ├── s_finite-vis3.S
│ │ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ │ ├── s_floorf-vis3.S
│ │ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ │ ├── s_floor-vis3.S
│ │ │ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ │ │ ├── s_fmaf.c
│ │ │ │ │ │ │ │ ├── s_fmaf-vis3.S
│ │ │ │ │ │ │ │ ├── s_fma-vis3.S
│ │ │ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ │ │ ├── s_fmaxf-vis3.S
│ │ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ │ ├── s_fmax-vis3.S
│ │ │ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ │ │ ├── s_fminf-vis3.S
│ │ │ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ │ │ ├── s_fmin-vis3.S
│ │ │ │ │ │ │ │ ├── s_isinff.S
│ │ │ │ │ │ │ │ ├── s_isinff-vis3.S
│ │ │ │ │ │ │ │ ├── s_isinf.S
│ │ │ │ │ │ │ │ ├── s_isinf-vis3.S
│ │ │ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ │ │ ├── s_isnanf-vis3.S
│ │ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ │ ├── s_isnan-vis3.S
│ │ │ │ │ │ │ │ ├── s_lrintf.S
│ │ │ │ │ │ │ │ ├── s_lrintf-vis3.S
│ │ │ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ │ │ ├── s_lrint-vis3.S
│ │ │ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ │ │ ├── s_rintf-vis3.S
│ │ │ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ │ │ ├── s_rint-vis3.S
│ │ │ │ │ │ │ │ ├── s_signbitf.S
│ │ │ │ │ │ │ │ ├── s_signbitf-vis3.S
│ │ │ │ │ │ │ │ ├── s_signbit.S
│ │ │ │ │ │ │ │ └── s_signbit-vis3.S
│ │ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ │ │ ├── s_fabs.c
│ │ │ │ │ │ │ ├── s_fabsf.c
│ │ │ │ │ │ │ ├── s_fabsl.c
│ │ │ │ │ │ │ ├── s_finitef.S
│ │ │ │ │ │ │ ├── s_finite.S
│ │ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ │ │ ├── s_isinff.S
│ │ │ │ │ │ │ ├── s_isinf.S
│ │ │ │ │ │ │ ├── s_isnanf.S
│ │ │ │ │ │ │ ├── s_isnan.S
│ │ │ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ │ │ ├── s_lrintf.S
│ │ │ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ │ ├── s_signbitf.S
│ │ │ │ │ │ │ ├── s_signbitl.S
│ │ │ │ │ │ │ ├── s_signbit.S
│ │ │ │ │ │ │ ├── w_sqrtf.S
│ │ │ │ │ │ │ └── w_sqrt.S
│ │ │ │ │ │ ├── hp-timing.c
│ │ │ │ │ │ ├── hp-timing.h
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ │ │ ├── lshift.S
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── memchr.S
│ │ │ │ │ │ ├── memcmp.S
│ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ ├── mul_1.S
│ │ │ │ │ │ ├── multiarch
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── memcpy-niagara1.S
│ │ │ │ │ │ │ ├── memcpy-niagara2.S
│ │ │ │ │ │ │ ├── memcpy.S
│ │ │ │ │ │ │ ├── memcpy-ultra3.S
│ │ │ │ │ │ │ ├── memset-niagara1.S
│ │ │ │ │ │ │ ├── memset.S
│ │ │ │ │ │ │ ├── rtld-memcpy.c
│ │ │ │ │ │ │ └── rtld-memset.c
│ │ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ │ ├── rshift.S
│ │ │ │ │ │ ├── rtld-memcpy.c
│ │ │ │ │ │ ├── rtld-memset.c
│ │ │ │ │ │ ├── soft-fp
│ │ │ │ │ │ │ ├── e_ilogbl.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── qp_add.c
│ │ │ │ │ │ │ ├── qp_cmp.c
│ │ │ │ │ │ │ ├── qp_cmpe.c
│ │ │ │ │ │ │ ├── qp_div.c
│ │ │ │ │ │ │ ├── qp_dtoq.c
│ │ │ │ │ │ │ ├── qp_feq.c
│ │ │ │ │ │ │ ├── qp_fge.c
│ │ │ │ │ │ │ ├── qp_fgt.c
│ │ │ │ │ │ │ ├── qp_fle.c
│ │ │ │ │ │ │ ├── qp_flt.c
│ │ │ │ │ │ │ ├── qp_fne.c
│ │ │ │ │ │ │ ├── qp_itoq.c
│ │ │ │ │ │ │ ├── qp_mul.c
│ │ │ │ │ │ │ ├── qp_neg.S
│ │ │ │ │ │ │ ├── qp_qtod.c
│ │ │ │ │ │ │ ├── qp_qtoi.c
│ │ │ │ │ │ │ ├── qp_qtos.c
│ │ │ │ │ │ │ ├── qp_qtoui.c
│ │ │ │ │ │ │ ├── qp_qtoux.c
│ │ │ │ │ │ │ ├── qp_qtox.c
│ │ │ │ │ │ │ ├── qp_sqrt.c
│ │ │ │ │ │ │ ├── qp_stoq.c
│ │ │ │ │ │ │ ├── qp_sub.c
│ │ │ │ │ │ │ ├── qp_uitoq.c
│ │ │ │ │ │ │ ├── qp_util.c
│ │ │ │ │ │ │ ├── qp_uxtoq.c
│ │ │ │ │ │ │ ├── qp_xtoq.c
│ │ │ │ │ │ │ ├── sfp-machine.h
│ │ │ │ │ │ │ ├── s_frexpl.c
│ │ │ │ │ │ │ ├── s_scalblnl.c
│ │ │ │ │ │ │ ├── s_scalbnl.c
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── stackguard-macros.h
│ │ │ │ │ │ ├── start.S
│ │ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ │ ├── stpncpy.S
│ │ │ │ │ │ ├── strcat.S
│ │ │ │ │ │ ├── strchr.S
│ │ │ │ │ │ ├── strcmp.S
│ │ │ │ │ │ ├── strcpy.S
│ │ │ │ │ │ ├── strcspn.S
│ │ │ │ │ │ ├── strlen.S
│ │ │ │ │ │ ├── strncmp.S
│ │ │ │ │ │ ├── strncpy.S
│ │ │ │ │ │ ├── strpbrk.S
│ │ │ │ │ │ ├── strrchr.c
│ │ │ │ │ │ ├── strspn.S
│ │ │ │ │ │ ├── submul_1.S
│ │ │ │ │ │ ├── sub_n.S
│ │ │ │ │ │ └── Versions
│ │ │ │ │ ├── sparc-ifunc.h
│ │ │ │ │ ├── sparc-mcount.S
│ │ │ │ │ ├── stackinfo.h
│ │ │ │ │ ├── Subdirs
│ │ │ │ │ ├── sys
│ │ │ │ │ │ └── trap.h
│ │ │ │ │ └── sysdep.h
│ │ │ │ ├── unix
│ │ │ │ │ ├── alarm.c
│ │ │ │ │ ├── bsd
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── posix_opt.h
│ │ │ │ │ │ │ ├── signum.h
│ │ │ │ │ │ │ └── stat.h
│ │ │ │ │ │ ├── bsd4.4
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── dirent.h
│ │ │ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ │ │ ├── sockaddr.h
│ │ │ │ │ │ │ │ └── socket.h
│ │ │ │ │ │ │ ├── cmsg_nxthdr.c
│ │ │ │ │ │ │ ├── freebsd
│ │ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ │ ├── environments.h
│ │ │ │ │ │ │ │ │ └── typesizes.h
│ │ │ │ │ │ │ │ └── sys
│ │ │ │ │ │ │ │ └── sysmacros.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── sigblock.c
│ │ │ │ │ │ │ ├── sigsetmask.c
│ │ │ │ │ │ │ ├── sigvec.c
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── tcdrain.c
│ │ │ │ │ │ │ ├── tcgetattr.c
│ │ │ │ │ │ │ ├── tcsetattr.c
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ ├── wait3.c
│ │ │ │ │ │ │ ├── wait.c
│ │ │ │ │ │ │ └── waitpid.c
│ │ │ │ │ │ ├── bsdstat.h
│ │ │ │ │ │ ├── bsdtty.h
│ │ │ │ │ │ ├── clock.c
│ │ │ │ │ │ ├── confstr.h
│ │ │ │ │ │ ├── ftime.c
│ │ │ │ │ │ ├── getpt.c
│ │ │ │ │ │ ├── gtty.c
│ │ │ │ │ │ ├── i386
│ │ │ │ │ │ │ ├── vfork.S
│ │ │ │ │ │ │ └── wait3.S
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── init-posix.c
│ │ │ │ │ │ ├── poll.c
│ │ │ │ │ │ ├── ptsname.c
│ │ │ │ │ │ ├── seekdir.c
│ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ ├── setrgid.c
│ │ │ │ │ │ ├── setruid.c
│ │ │ │ │ │ ├── setsid.c
│ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ ├── sigsuspend.c
│ │ │ │ │ │ ├── stty.c
│ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ └── reboot.h
│ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ ├── tcflow.c
│ │ │ │ │ │ ├── tcflush.c
│ │ │ │ │ │ ├── tcgetpgrp.c
│ │ │ │ │ │ ├── tcsendbrk.c
│ │ │ │ │ │ ├── tcsetpgrp.c
│ │ │ │ │ │ ├── telldir.c
│ │ │ │ │ │ ├── times.c
│ │ │ │ │ │ ├── ualarm.c
│ │ │ │ │ │ ├── ulimit.c
│ │ │ │ │ │ ├── unlockpt.c
│ │ │ │ │ │ └── usleep.c
│ │ │ │ │ ├── clock_gettime.c
│ │ │ │ │ ├── clock_nanosleep.c
│ │ │ │ │ ├── clock_settime.c
│ │ │ │ │ ├── closedir.c
│ │ │ │ │ ├── confstr.h
│ │ │ │ │ ├── dirfd.c
│ │ │ │ │ ├── dirstream.h
│ │ │ │ │ ├── fdopendir.c
│ │ │ │ │ ├── get_child_max.c
│ │ │ │ │ ├── getlogin.c
│ │ │ │ │ ├── getlogin_r.c
│ │ │ │ │ ├── getpagesize.c
│ │ │ │ │ ├── grantpt.c
│ │ │ │ │ ├── i386
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ └── sysdep.S
│ │ │ │ │ ├── Implies
│ │ │ │ │ ├── inet
│ │ │ │ │ │ ├── Subdirs
│ │ │ │ │ │ └── syscalls.list
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── make-syscalls.sh
│ │ │ │ │ ├── mkfifoat.c
│ │ │ │ │ ├── mkfifo.c
│ │ │ │ │ ├── nice.c
│ │ │ │ │ ├── opendir.c
│ │ │ │ │ ├── powerpc
│ │ │ │ │ │ └── sysdep.h
│ │ │ │ │ ├── readdir.c
│ │ │ │ │ ├── readdir_r.c
│ │ │ │ │ ├── rewinddir.c
│ │ │ │ │ ├── seekdir.c
│ │ │ │ │ ├── setxid.h
│ │ │ │ │ ├── sh
│ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ └── sysdep.S
│ │ │ │ │ ├── sockatmark.c
│ │ │ │ │ ├── s-proto-bp.S
│ │ │ │ │ ├── s-proto-cancel.S
│ │ │ │ │ ├── s-proto.S
│ │ │ │ │ ├── stime.c
│ │ │ │ │ ├── Subdirs
│ │ │ │ │ ├── syscall.S
│ │ │ │ │ ├── syscalls.list
│ │ │ │ │ ├── syscall-template.S
│ │ │ │ │ ├── sysdep.h
│ │ │ │ │ ├── sysv
│ │ │ │ │ │ └── linux
│ │ │ │ │ │ ├── accept4.c
│ │ │ │ │ │ ├── accept.S
│ │ │ │ │ │ ├── adjtime.c
│ │ │ │ │ │ ├── aio_sigqueue.c
│ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ ├── bind.S
│ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ │ ├── dirent.h
│ │ │ │ │ │ │ ├── epoll.h
│ │ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ │ ├── eventfd.h
│ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ ├── in.h
│ │ │ │ │ │ │ ├── initspin.h
│ │ │ │ │ │ │ ├── inotify.h
│ │ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ │ ├── ioctl-types.h
│ │ │ │ │ │ │ ├── ipc.h
│ │ │ │ │ │ │ ├── local_lim.h
│ │ │ │ │ │ │ ├── mqueue.h
│ │ │ │ │ │ │ ├── msq.h
│ │ │ │ │ │ │ ├── poll.h
│ │ │ │ │ │ │ ├── posix_opt.h
│ │ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ │ ├── sched.h
│ │ │ │ │ │ │ ├── sem.h
│ │ │ │ │ │ │ ├── shm.h
│ │ │ │ │ │ │ ├── sigaction.h
│ │ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ │ ├── signalfd.h
│ │ │ │ │ │ │ ├── signum.h
│ │ │ │ │ │ │ ├── sigset.h
│ │ │ │ │ │ │ ├── sigstack.h
│ │ │ │ │ │ │ ├── socket.h
│ │ │ │ │ │ │ ├── socket_type.h
│ │ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ │ ├── statvfs.h
│ │ │ │ │ │ │ ├── sysctl.h
│ │ │ │ │ │ │ ├── sys_errlist.h
│ │ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ │ ├── time.h
│ │ │ │ │ │ │ ├── timerfd.h
│ │ │ │ │ │ │ ├── timex.h
│ │ │ │ │ │ │ ├── uio.h
│ │ │ │ │ │ │ ├── utsname.h
│ │ │ │ │ │ │ └── waitflags.h
│ │ │ │ │ │ ├── check_native.c
│ │ │ │ │ │ ├── check_pf.c
│ │ │ │ │ │ ├── clock.c
│ │ │ │ │ │ ├── clock_getcpuclockid.c
│ │ │ │ │ │ ├── clock_getres.c
│ │ │ │ │ │ ├── clock_gettime.c
│ │ │ │ │ │ ├── clock_nanosleep.c
│ │ │ │ │ │ ├── clock_settime.c
│ │ │ │ │ │ ├── cmsg_nxthdr.c
│ │ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ ├── connect.S
│ │ │ │ │ │ ├── device-nrs.h
│ │ │ │ │ │ ├── dl-brk.c
│ │ │ │ │ │ ├── dl-execstack.c
│ │ │ │ │ │ ├── dl-fxstatat64.c
│ │ │ │ │ │ ├── dl-getcwd.c
│ │ │ │ │ │ ├── dl-librecon.h
│ │ │ │ │ │ ├── dl-openat64.c
│ │ │ │ │ │ ├── dl-opendir.c
│ │ │ │ │ │ ├── dl-origin.c
│ │ │ │ │ │ ├── dl-osinfo.h
│ │ │ │ │ │ ├── dl-sbrk.c
│ │ │ │ │ │ ├── dl-sysdep.c
│ │ │ │ │ │ ├── dl-sysdep.h
│ │ │ │ │ │ ├── dl-vdso.c
│ │ │ │ │ │ ├── dl-vdso.h
│ │ │ │ │ │ ├── epoll_pwait.c
│ │ │ │ │ │ ├── errqueue.h
│ │ │ │ │ │ ├── eventfd.c
│ │ │ │ │ │ ├── eventfd_read.c
│ │ │ │ │ │ ├── eventfd_write.c
│ │ │ │ │ │ ├── execve.c
│ │ │ │ │ │ ├── _exit.c
│ │ │ │ │ │ ├── exit-thread.S
│ │ │ │ │ │ ├── faccessat.c
│ │ │ │ │ │ ├── fallocate64.c
│ │ │ │ │ │ ├── fallocate.c
│ │ │ │ │ │ ├── fatal-prepare.h
│ │ │ │ │ │ ├── fchmodat.c
│ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ ├── fd_to_filename.h
│ │ │ │ │ │ ├── fexecve.c
│ │ │ │ │ │ ├── fpathconf.c
│ │ │ │ │ │ ├── fstatfs64.c
│ │ │ │ │ │ ├── fstatvfs64.c
│ │ │ │ │ │ ├── fstatvfs.c
│ │ │ │ │ │ ├── ftime.c
│ │ │ │ │ │ ├── ftruncate64.c
│ │ │ │ │ │ ├── futimens.c
│ │ │ │ │ │ ├── futimesat.c
│ │ │ │ │ │ ├── futimes.c
│ │ │ │ │ │ ├── fxstat64.c
│ │ │ │ │ │ ├── fxstatat64.c
│ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ ├── gai_sigqueue.c
│ │ │ │ │ │ ├── getclktck.c
│ │ │ │ │ │ ├── getcwd.c
│ │ │ │ │ │ ├── getdents64.c
│ │ │ │ │ │ ├── getdents.c
│ │ │ │ │ │ ├── getdirentries64.c
│ │ │ │ │ │ ├── getdirentries.c
│ │ │ │ │ │ ├── getdtsz.c
│ │ │ │ │ │ ├── gethostid.c
│ │ │ │ │ │ ├── getipv4sourcefilter.c
│ │ │ │ │ │ ├── getloadavg.c
│ │ │ │ │ │ ├── getlogin.c
│ │ │ │ │ │ ├── getlogin_r.c
│ │ │ │ │ │ ├── getpagesize.c
│ │ │ │ │ │ ├── getpeername.S
│ │ │ │ │ │ ├── getpriority.c
│ │ │ │ │ │ ├── getpt.c
│ │ │ │ │ │ ├── getrlimit64.c
│ │ │ │ │ │ ├── getsockname.S
│ │ │ │ │ │ ├── getsockopt.S
│ │ │ │ │ │ ├── getsourcefilter.c
│ │ │ │ │ │ ├── getsysstats.c
│ │ │ │ │ │ ├── grantpt.c
│ │ │ │ │ │ ├── i386
│ │ │ │ │ │ │ ├── accept4.S
│ │ │ │ │ │ │ ├── alphasort64.c
│ │ │ │ │ │ │ ├── bp-thunks.h
│ │ │ │ │ │ │ ├── brk.c
│ │ │ │ │ │ │ ├── call_fallocate.S
│ │ │ │ │ │ │ ├── call_pselect6.S
│ │ │ │ │ │ │ ├── call_sync_file_range.S
│ │ │ │ │ │ │ ├── chown.c
│ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ ├── dl-librecon.h
│ │ │ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ │ │ ├── epoll_pwait.S
│ │ │ │ │ │ │ ├── _exit.S
│ │ │ │ │ │ │ ├── fallocate64.c
│ │ │ │ │ │ │ ├── fallocate.c
│ │ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ │ ├── fchown.c
│ │ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ ├── get_clockfreq.c
│ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ ├── getdents64.c
│ │ │ │ │ │ │ ├── getegid.c
│ │ │ │ │ │ │ ├── geteuid.c
│ │ │ │ │ │ │ ├── getgid.c
│ │ │ │ │ │ │ ├── getgroups.c
│ │ │ │ │ │ │ ├── getmsg.c
│ │ │ │ │ │ │ ├── getresgid.c
│ │ │ │ │ │ │ ├── getresuid.c
│ │ │ │ │ │ │ ├── getrlimit64.c
│ │ │ │ │ │ │ ├── getrlimit.c
│ │ │ │ │ │ │ ├── getuid.c
│ │ │ │ │ │ │ ├── glob64.c
│ │ │ │ │ │ │ ├── i686
│ │ │ │ │ │ │ │ └── sysconf.c
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── internal_accept4.S
│ │ │ │ │ │ │ ├── lchown.c
│ │ │ │ │ │ │ ├── ldconfig.h
│ │ │ │ │ │ │ ├── lockf64.c
│ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ ├── makecontext.S
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── mmap64.S
│ │ │ │ │ │ │ ├── mmap.S
│ │ │ │ │ │ │ ├── msgctl.c
│ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ ├── olddirent.h
│ │ │ │ │ │ │ ├── oldgetrlimit64.c
│ │ │ │ │ │ │ ├── posix_fadvise64.S
│ │ │ │ │ │ │ ├── posix_fallocate64.c
│ │ │ │ │ │ │ ├── posix_fallocate.c
│ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ ├── pselect.c
│ │ │ │ │ │ │ ├── putmsg.c
│ │ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ │ ├── readelflib.c
│ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ ├── scandir64.c
│ │ │ │ │ │ │ ├── semctl.c
│ │ │ │ │ │ │ ├── semtimedop.S
│ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ │ ├── setfsgid.c
│ │ │ │ │ │ │ ├── setfsuid.c
│ │ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ │ ├── setgroups.c
│ │ │ │ │ │ │ ├── setregid.c
│ │ │ │ │ │ │ ├── setresgid.c
│ │ │ │ │ │ │ ├── setresuid.c
│ │ │ │ │ │ │ ├── setreuid.c
│ │ │ │ │ │ │ ├── setrlimit.c
│ │ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ │ ├── shmctl.c
│ │ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ ├── sync_file_range.c
│ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── sysconf.c
│ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ ├── sysdep.S
│ │ │ │ │ │ │ ├── ucontext_i.sym
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ ├── versionsort64.c
│ │ │ │ │ │ │ ├── vfork.S
│ │ │ │ │ │ │ └── xstat.c
│ │ │ │ │ │ ├── ifaddrs.c
│ │ │ │ │ │ ├── if_index.c
│ │ │ │ │ │ ├── ifreq.c
│ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ ├── internal_accept4.S
│ │ │ │ │ │ ├── internal_recvmmsg.S
│ │ │ │ │ │ ├── internal_sendmmsg.S
│ │ │ │ │ │ ├── internal_statvfs64.c
│ │ │ │ │ │ ├── internal_statvfs.c
│ │ │ │ │ │ ├── ipc_priv.h
│ │ │ │ │ │ ├── kernel-features.h
│ │ │ │ │ │ ├── kernel-posix-cpu-timers.h
│ │ │ │ │ │ ├── kernel_sigaction.h
│ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ ├── kernel_termios.h
│ │ │ │ │ │ ├── lddlibc4.c
│ │ │ │ │ │ ├── ldd-rewrite.sed
│ │ │ │ │ │ ├── ldsodefs.h
│ │ │ │ │ │ ├── libc_fatal.c
│ │ │ │ │ │ ├── linkat.c
│ │ │ │ │ │ ├── linux_fsinfo.h
│ │ │ │ │ │ ├── listen.S
│ │ │ │ │ │ ├── llseek.c
│ │ │ │ │ │ ├── local-setxid.h
│ │ │ │ │ │ ├── lseek64.c
│ │ │ │ │ │ ├── lutimes.c
│ │ │ │ │ │ ├── lxstat64.c
│ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ ├── makedev.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── mkdirat.c
│ │ │ │ │ │ ├── mmap64.c
│ │ │ │ │ │ ├── mq_close.c
│ │ │ │ │ │ ├── mq_getattr.c
│ │ │ │ │ │ ├── mq_notify.c
│ │ │ │ │ │ ├── mq_open.c
│ │ │ │ │ │ ├── mq_receive.c
│ │ │ │ │ │ ├── mq_send.c
│ │ │ │ │ │ ├── mq_unlink.c
│ │ │ │ │ │ ├── msgctl.c
│ │ │ │ │ │ ├── msgget.c
│ │ │ │ │ │ ├── msgrcv.c
│ │ │ │ │ │ ├── msgsnd.c
│ │ │ │ │ │ ├── net
│ │ │ │ │ │ │ ├── ethernet.h
│ │ │ │ │ │ │ ├── if_arp.h
│ │ │ │ │ │ │ ├── if_packet.h
│ │ │ │ │ │ │ ├── if_ppp.h
│ │ │ │ │ │ │ ├── if_shaper.h
│ │ │ │ │ │ │ ├── if_slip.h
│ │ │ │ │ │ │ ├── ppp-comp.h
│ │ │ │ │ │ │ ├── ppp_defs.h
│ │ │ │ │ │ │ └── route.h
│ │ │ │ │ │ ├── netash
│ │ │ │ │ │ │ └── ash.h
│ │ │ │ │ │ ├── netatalk
│ │ │ │ │ │ │ └── at.h
│ │ │ │ │ │ ├── netax25
│ │ │ │ │ │ │ └── ax25.h
│ │ │ │ │ │ ├── neteconet
│ │ │ │ │ │ │ └── ec.h
│ │ │ │ │ │ ├── netinet
│ │ │ │ │ │ │ ├── if_ether.h
│ │ │ │ │ │ │ ├── if_fddi.h
│ │ │ │ │ │ │ └── if_tr.h
│ │ │ │ │ │ ├── netipx
│ │ │ │ │ │ │ └── ipx.h
│ │ │ │ │ │ ├── netiucv
│ │ │ │ │ │ │ └── iucv.h
│ │ │ │ │ │ ├── netlinkaccess.h
│ │ │ │ │ │ ├── netpacket
│ │ │ │ │ │ │ └── packet.h
│ │ │ │ │ │ ├── netrom
│ │ │ │ │ │ │ └── netrom.h
│ │ │ │ │ │ ├── netrose
│ │ │ │ │ │ │ └── rose.h
│ │ │ │ │ │ ├── nfs
│ │ │ │ │ │ │ └── nfs.h
│ │ │ │ │ │ ├── nice.c
│ │ │ │ │ │ ├── not-cancel.h
│ │ │ │ │ │ ├── nscd_setup_thread.c
│ │ │ │ │ │ ├── ntp_gettime.c
│ │ │ │ │ │ ├── ntp_gettimex.c
│ │ │ │ │ │ ├── open_2.c
│ │ │ │ │ │ ├── open64_2.c
│ │ │ │ │ │ ├── open64.c
│ │ │ │ │ │ ├── openat64.c
│ │ │ │ │ │ ├── openat.c
│ │ │ │ │ │ ├── opendir.c
│ │ │ │ │ │ ├── opensock.c
│ │ │ │ │ │ ├── pathconf.c
│ │ │ │ │ │ ├── pathconf.h
│ │ │ │ │ │ ├── paths.h
│ │ │ │ │ │ ├── posix_fadvise64.c
│ │ │ │ │ │ ├── posix_fadvise.c
│ │ │ │ │ │ ├── posix_fallocate64.c
│ │ │ │ │ │ ├── posix_fallocate.c
│ │ │ │ │ │ ├── posix_madvise.c
│ │ │ │ │ │ ├── powerpc
│ │ │ │ │ │ │ ├── aix
│ │ │ │ │ │ │ │ ├── aix-dirent.h
│ │ │ │ │ │ │ │ ├── aix-errno.h
│ │ │ │ │ │ │ │ ├── aix-stat.h
│ │ │ │ │ │ │ │ ├── aix-termios.h
│ │ │ │ │ │ │ │ ├── direntconv.c
│ │ │ │ │ │ │ │ ├── errnoconv.c
│ │ │ │ │ │ │ │ ├── statconv.c
│ │ │ │ │ │ │ │ ├── tcgetattr.c
│ │ │ │ │ │ │ │ └── tcsetattr.c
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── environments.h
│ │ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ │ ├── ioctl-types.h
│ │ │ │ │ │ │ │ ├── ipc.h
│ │ │ │ │ │ │ │ ├── libc-vdso.h
│ │ │ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ │ │ ├── msq.h
│ │ │ │ │ │ │ │ ├── sem.h
│ │ │ │ │ │ │ │ ├── shm.h
│ │ │ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ │ ├── chown.c
│ │ │ │ │ │ │ ├── configure
│ │ │ │ │ │ │ ├── configure.in
│ │ │ │ │ │ │ ├── dl-brk.S
│ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ ├── dl-sysdep.c
│ │ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ │ ├── get_clockfreq.c
│ │ │ │ │ │ │ ├── getdents64.c
│ │ │ │ │ │ │ ├── getmsg.c
│ │ │ │ │ │ │ ├── getrlimit64.c
│ │ │ │ │ │ │ ├── getrlimit.c
│ │ │ │ │ │ │ ├── gettimeofday.c
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ │ ├── ioctl.c
│ │ │ │ │ │ │ ├── ipc_priv.h
│ │ │ │ │ │ │ ├── kernel_termios.h
│ │ │ │ │ │ │ ├── lchown.S
│ │ │ │ │ │ │ ├── ldconfig.h
│ │ │ │ │ │ │ ├── ldd-rewrite.sed
│ │ │ │ │ │ │ ├── libc-start.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── nldbl-abi.h
│ │ │ │ │ │ │ ├── oldgetrlimit64.c
│ │ │ │ │ │ │ ├── powerpc32
│ │ │ │ │ │ │ │ ├── 970
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── a2
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── brk.S
│ │ │ │ │ │ │ │ ├── cell
│ │ │ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ │ ├── fe_mask.c
│ │ │ │ │ │ │ │ │ ├── fe_nomask.c
│ │ │ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ │ │ └── nptl
│ │ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ │ ├── ftruncate64.c
│ │ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ │ ├── getcontext-common.S
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── glob64.c
│ │ │ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ │ │ ├── lockf64.c
│ │ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ │ ├── makecontext.S
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── posix_fadvise64.c
│ │ │ │ │ │ │ │ ├── posix_fadvise.c
│ │ │ │ │ │ │ │ ├── power4
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power5
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power5+
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power6
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power6x
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power7
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── pread64.c
│ │ │ │ │ │ │ │ ├── pread.c
│ │ │ │ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ │ │ │ ├── pwrite.c
│ │ │ │ │ │ │ │ ├── scandir64.c
│ │ │ │ │ │ │ │ ├── setcontext-common.S
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ │ ├── swapcontext-common.S
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ ├── truncate64.c
│ │ │ │ │ │ │ │ ├── ucontext_i.sym
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ ├── vfork.S
│ │ │ │ │ │ │ │ └── xstat.c
│ │ │ │ │ │ │ ├── powerpc64
│ │ │ │ │ │ │ │ ├── 970
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── a2
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── brk.S
│ │ │ │ │ │ │ │ ├── cell
│ │ │ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ │ ├── fe_mask.c
│ │ │ │ │ │ │ │ │ ├── fe_nomask.c
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ │ │ ├── ldsodefs.h
│ │ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ │ ├── makecontext.S
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ │ ├── power4
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power5
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power5+
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power6
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power6x
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── power7
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── pread64.c
│ │ │ │ │ │ │ │ ├── pread.c
│ │ │ │ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ │ │ │ ├── pwrite.c
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── sync_file_range.c
│ │ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ ├── ucontext_i.sym
│ │ │ │ │ │ │ │ ├── umount.c
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ ├── putmsg.c
│ │ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ │ ├── readelflib.c
│ │ │ │ │ │ │ ├── rt-sysdep.c
│ │ │ │ │ │ │ ├── setrlimit.c
│ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ ├── procfs.h
│ │ │ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ │ │ ├── ucontext.h
│ │ │ │ │ │ │ │ └── user.h
│ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── sysdep.c
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── ppoll.c
│ │ │ │ │ │ ├── pread64.c
│ │ │ │ │ │ ├── pread.c
│ │ │ │ │ │ ├── preadv64.c
│ │ │ │ │ │ ├── preadv.c
│ │ │ │ │ │ ├── prlimit.c
│ │ │ │ │ │ ├── prof-freq.c
│ │ │ │ │ │ ├── profil.c
│ │ │ │ │ │ ├── pselect.c
│ │ │ │ │ │ ├── ptrace.c
│ │ │ │ │ │ ├── ptsname.c
│ │ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ │ ├── pwrite.c
│ │ │ │ │ │ ├── pwritev64.c
│ │ │ │ │ │ ├── pwritev.c
│ │ │ │ │ │ ├── readahead.c
│ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ ├── readlinkat.c
│ │ │ │ │ │ ├── readonly-area.c
│ │ │ │ │ │ ├── readv.c
│ │ │ │ │ │ ├── reboot.c
│ │ │ │ │ │ ├── recvfrom.S
│ │ │ │ │ │ ├── recvmmsg.c
│ │ │ │ │ │ ├── recvmsg.S
│ │ │ │ │ │ ├── recv.S
│ │ │ │ │ │ ├── remove.c
│ │ │ │ │ │ ├── renameat.c
│ │ │ │ │ │ ├── s390
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── elfclass.h
│ │ │ │ │ │ │ │ ├── environments.h
│ │ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ │ ├── hwcap.h
│ │ │ │ │ │ │ │ ├── ipc.h
│ │ │ │ │ │ │ │ ├── libc-vdso.h
│ │ │ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ │ │ ├── msq.h
│ │ │ │ │ │ │ │ ├── sem.h
│ │ │ │ │ │ │ │ ├── shm.h
│ │ │ │ │ │ │ │ ├── sigaction.h
│ │ │ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ │ │ ├── typesizes.h
│ │ │ │ │ │ │ │ ├── utmp.h
│ │ │ │ │ │ │ │ └── utmpx.h
│ │ │ │ │ │ │ ├── brk.c
│ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ │ └── s_fma.c
│ │ │ │ │ │ │ ├── gettimeofday.c
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ │ ├── ldconfig.h
│ │ │ │ │ │ │ ├── ldd-rewrite.sed
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── nldbl-abi.h
│ │ │ │ │ │ │ ├── opensock.c
│ │ │ │ │ │ │ ├── readelflib.c
│ │ │ │ │ │ │ ├── rt-sysdep.S
│ │ │ │ │ │ │ ├── s390-32
│ │ │ │ │ │ │ │ ├── alphasort64.c
│ │ │ │ │ │ │ │ ├── chown.c
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ │ │ ├── fchown.c
│ │ │ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── getdents64.c
│ │ │ │ │ │ │ │ ├── getegid.c
│ │ │ │ │ │ │ │ ├── geteuid.c
│ │ │ │ │ │ │ │ ├── getgid.c
│ │ │ │ │ │ │ │ ├── getgroups.c
│ │ │ │ │ │ │ │ ├── getresgid.c
│ │ │ │ │ │ │ │ ├── getresuid.c
│ │ │ │ │ │ │ │ ├── getrlimit64.c
│ │ │ │ │ │ │ │ ├── getrlimit.c
│ │ │ │ │ │ │ │ ├── getuid.c
│ │ │ │ │ │ │ │ ├── getutent.c
│ │ │ │ │ │ │ │ ├── getutent_r.c
│ │ │ │ │ │ │ │ ├── getutid.c
│ │ │ │ │ │ │ │ ├── getutid_r.c
│ │ │ │ │ │ │ │ ├── getutline.c
│ │ │ │ │ │ │ │ ├── getutline_r.c
│ │ │ │ │ │ │ │ ├── getutmp.c
│ │ │ │ │ │ │ │ ├── getutxent.c
│ │ │ │ │ │ │ │ ├── getutxid.c
│ │ │ │ │ │ │ │ ├── getutxline.c
│ │ │ │ │ │ │ │ ├── lchown.c
│ │ │ │ │ │ │ │ ├── lockf64.c
│ │ │ │ │ │ │ │ ├── login32.c
│ │ │ │ │ │ │ │ ├── login.c
│ │ │ │ │ │ │ │ ├── ____longjmp_chk.c
│ │ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ │ ├── makecontext.c
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── mmap64.S
│ │ │ │ │ │ │ │ ├── mmap.S
│ │ │ │ │ │ │ │ ├── msgctl.c
│ │ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ │ ├── oldgetrlimit64.c
│ │ │ │ │ │ │ │ ├── posix_fadvise64.c
│ │ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ │ ├── pututxline.c
│ │ │ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ │ ├── scandir64.c
│ │ │ │ │ │ │ │ ├── semctl.c
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ │ │ ├── setfsgid.c
│ │ │ │ │ │ │ │ ├── setfsuid.c
│ │ │ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ │ │ ├── setgroups.c
│ │ │ │ │ │ │ │ ├── setregid.c
│ │ │ │ │ │ │ │ ├── setresgid.c
│ │ │ │ │ │ │ │ ├── setresuid.c
│ │ │ │ │ │ │ │ ├── setreuid.c
│ │ │ │ │ │ │ │ ├── setrlimit.c
│ │ │ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ │ │ ├── shmctl.c
│ │ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ ├── sysdep.S
│ │ │ │ │ │ │ │ ├── updwtmp.c
│ │ │ │ │ │ │ │ ├── updwtmpx.c
│ │ │ │ │ │ │ │ ├── utmp32.c
│ │ │ │ │ │ │ │ ├── utmp32.h
│ │ │ │ │ │ │ │ ├── utmp-compat.h
│ │ │ │ │ │ │ │ ├── utmp-convert.h
│ │ │ │ │ │ │ │ ├── utmpx32.c
│ │ │ │ │ │ │ │ ├── utmpx32.h
│ │ │ │ │ │ │ │ ├── utmpx-convert.h
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ ├── versionsort64.c
│ │ │ │ │ │ │ │ └── xstat.c
│ │ │ │ │ │ │ ├── s390-64
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ │ │ ├── ____longjmp_chk.c
│ │ │ │ │ │ │ │ ├── makecontext.c
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── mmap.S
│ │ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ │ │ ├── sigpending.c
│ │ │ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ ├── sysdep.S
│ │ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ │ ├── sa_len.c
│ │ │ │ │ │ │ ├── semtimedop.c
│ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ ├── elf.h
│ │ │ │ │ │ │ │ ├── procfs.h
│ │ │ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ │ │ ├── ucontext.h
│ │ │ │ │ │ │ │ └── user.h
│ │ │ │ │ │ │ ├── system.c
│ │ │ │ │ │ │ ├── ucontext_i.sym
│ │ │ │ │ │ │ └── Versions
│ │ │ │ │ │ ├── sa_len.c
│ │ │ │ │ │ ├── sched_getaffinity.c
│ │ │ │ │ │ ├── sched_getcpu.c
│ │ │ │ │ │ ├── sched_setaffinity.c
│ │ │ │ │ │ ├── scsi
│ │ │ │ │ │ │ ├── scsi.h
│ │ │ │ │ │ │ ├── scsi_ioctl.h
│ │ │ │ │ │ │ └── sg.h
│ │ │ │ │ │ ├── segfault.c
│ │ │ │ │ │ ├── semctl.c
│ │ │ │ │ │ ├── semget.c
│ │ │ │ │ │ ├── semop.c
│ │ │ │ │ │ ├── semtimedop.c
│ │ │ │ │ │ ├── sendmmsg.c
│ │ │ │ │ │ ├── sendmsg.S
│ │ │ │ │ │ ├── send.S
│ │ │ │ │ │ ├── sendto.S
│ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ ├── setgroups.c
│ │ │ │ │ │ ├── sethostid.c
│ │ │ │ │ │ ├── setipv4sourcefilter.c
│ │ │ │ │ │ ├── setregid.c
│ │ │ │ │ │ ├── setresgid.c
│ │ │ │ │ │ ├── setresuid.c
│ │ │ │ │ │ ├── setreuid.c
│ │ │ │ │ │ ├── setrlimit64.c
│ │ │ │ │ │ ├── setsockopt.S
│ │ │ │ │ │ ├── setsourcefilter.c
│ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ ├── sh
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── atomic.h
│ │ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ │ │ └── shm.h
│ │ │ │ │ │ │ ├── brk.c
│ │ │ │ │ │ │ ├── chown.c
│ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ │ ├── fchown.c
│ │ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ ├── getegid.c
│ │ │ │ │ │ │ ├── geteuid.c
│ │ │ │ │ │ │ ├── getgroups.c
│ │ │ │ │ │ │ ├── getresgid.c
│ │ │ │ │ │ │ ├── getresuid.c
│ │ │ │ │ │ │ ├── getrlimit64.c
│ │ │ │ │ │ │ ├── getrlimit.c
│ │ │ │ │ │ │ ├── getuid.c
│ │ │ │ │ │ │ ├── lchown.c
│ │ │ │ │ │ │ ├── lockf64.c
│ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ ├── makecontext.S
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── msgctl.c
│ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ ├── pipe.S
│ │ │ │ │ │ │ ├── pread64.c
│ │ │ │ │ │ │ ├── pread.c
│ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ │ │ ├── pwrite.c
│ │ │ │ │ │ │ ├── semctl.c
│ │ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ │ ├── setfsgid.c
│ │ │ │ │ │ │ ├── setfsuid.c
│ │ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ │ ├── setgroups.c
│ │ │ │ │ │ │ ├── setregid.c
│ │ │ │ │ │ │ ├── setresgid.c
│ │ │ │ │ │ │ ├── setresuid.c
│ │ │ │ │ │ │ ├── setreuid.c
│ │ │ │ │ │ │ ├── setrlimit.c
│ │ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ │ ├── sh3
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ │ └── ucontext.h
│ │ │ │ │ │ │ │ └── ucontext_i.sym
│ │ │ │ │ │ │ ├── sh4
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ │ └── ucontext.h
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ └── ucontext_i.sym
│ │ │ │ │ │ │ ├── shmctl.c
│ │ │ │ │ │ │ ├── sigaltstack-offsets.sym
│ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ ├── procfs.h
│ │ │ │ │ │ │ │ └── user.h
│ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ ├── sysdep.S
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ ├── vfork.S
│ │ │ │ │ │ │ └── xstat.c
│ │ │ │ │ │ ├── shmat.c
│ │ │ │ │ │ ├── shmctl.c
│ │ │ │ │ │ ├── shmdt.c
│ │ │ │ │ │ ├── shmget.c
│ │ │ │ │ │ ├── shm_open.c
│ │ │ │ │ │ ├── shm_unlink.c
│ │ │ │ │ │ ├── shutdown.S
│ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ ├── siglist.h
│ │ │ │ │ │ ├── signal.c
│ │ │ │ │ │ ├── signalfd.c
│ │ │ │ │ │ ├── sigpending.c
│ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ ├── sigqueue.c
│ │ │ │ │ │ ├── sigreturn.c
│ │ │ │ │ │ ├── sigset-cvt-mask.h
│ │ │ │ │ │ ├── sigstack.c
│ │ │ │ │ │ ├── sigsuspend.c
│ │ │ │ │ │ ├── sigtimedwait.c
│ │ │ │ │ │ ├── sigwait.c
│ │ │ │ │ │ ├── sigwaitinfo.c
│ │ │ │ │ │ ├── sizes.h
│ │ │ │ │ │ ├── sleep.c
│ │ │ │ │ │ ├── socketcall.h
│ │ │ │ │ │ ├── socketpair.S
│ │ │ │ │ │ ├── sparc
│ │ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ │ │ ├── environments.h
│ │ │ │ │ │ │ │ ├── epoll.h
│ │ │ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ │ │ ├── eventfd.h
│ │ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ │ ├── inotify.h
│ │ │ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ │ │ ├── ipc.h
│ │ │ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ │ │ ├── msq.h
│ │ │ │ │ │ │ │ ├── poll.h
│ │ │ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ │ │ ├── sem.h
│ │ │ │ │ │ │ │ ├── setjmp.h
│ │ │ │ │ │ │ │ ├── shm.h
│ │ │ │ │ │ │ │ ├── sigaction.h
│ │ │ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ │ │ ├── signalfd.h
│ │ │ │ │ │ │ │ ├── signum.h
│ │ │ │ │ │ │ │ ├── sigstack.h
│ │ │ │ │ │ │ │ ├── socket_type.h
│ │ │ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ │ │ ├── timerfd.h
│ │ │ │ │ │ │ │ ├── typesizes.h
│ │ │ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ ├── fork.S
│ │ │ │ │ │ │ ├── getshmlba.c
│ │ │ │ │ │ │ ├── getsysstats.c
│ │ │ │ │ │ │ ├── kernel_termios.h
│ │ │ │ │ │ │ ├── ldd-rewrite.sed
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── readelflib.c
│ │ │ │ │ │ │ ├── rt-sysdep.c
│ │ │ │ │ │ │ ├── sparc32
│ │ │ │ │ │ │ │ ├── brk.c
│ │ │ │ │ │ │ │ ├── chown.c
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── fchownat.c
│ │ │ │ │ │ │ │ ├── fchown.c
│ │ │ │ │ │ │ │ ├── fcntl.c
│ │ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── getdents64.c
│ │ │ │ │ │ │ │ ├── getegid.c
│ │ │ │ │ │ │ │ ├── geteuid.c
│ │ │ │ │ │ │ │ ├── getgid.c
│ │ │ │ │ │ │ │ ├── getgroups.c
│ │ │ │ │ │ │ │ ├── getuid.c
│ │ │ │ │ │ │ │ ├── glob64.c
│ │ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ │ │ ├── lchown.c
│ │ │ │ │ │ │ │ ├── lockf64.c
│ │ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ │ ├── makecontext.c
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── msgctl.c
│ │ │ │ │ │ │ │ ├── nldbl-abi.h
│ │ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ │ ├── pipe.S
│ │ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ │ ├── scandir64.c
│ │ │ │ │ │ │ │ ├── semctl.c
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── setegid.c
│ │ │ │ │ │ │ │ ├── seteuid.c
│ │ │ │ │ │ │ │ ├── setfsgid.c
│ │ │ │ │ │ │ │ ├── setfsuid.c
│ │ │ │ │ │ │ │ ├── setgid.c
│ │ │ │ │ │ │ │ ├── setgroups.c
│ │ │ │ │ │ │ │ ├── setregid.c
│ │ │ │ │ │ │ │ ├── setresgid.c
│ │ │ │ │ │ │ │ ├── setresuid.c
│ │ │ │ │ │ │ │ ├── setreuid.c
│ │ │ │ │ │ │ │ ├── setuid.c
│ │ │ │ │ │ │ │ ├── shmctl.c
│ │ │ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ │ ├── sparcv9
│ │ │ │ │ │ │ │ │ ├── fpu
│ │ │ │ │ │ │ │ │ │ └── Implies
│ │ │ │ │ │ │ │ │ └── get_clockfreq.c
│ │ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ ├── ucontext_i.sym
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ └── xstat.c
│ │ │ │ │ │ │ ├── sparc64
│ │ │ │ │ │ │ │ ├── brk.S
│ │ │ │ │ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ │ │ │ │ ├── bsd-setjmp.S
│ │ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ │ ├── dl-brk.S
│ │ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ │ ├── dl-fxstatat64.c
│ │ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ │ ├── get_clockfreq.c
│ │ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ │ ├── __longjmp.S
│ │ │ │ │ │ │ │ ├── longjmp.S
│ │ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ │ ├── makecontext.c
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ ├── msgctl.c
│ │ │ │ │ │ │ │ ├── msgrcv.c
│ │ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ │ ├── pause.c
│ │ │ │ │ │ │ │ ├── pipe.S
│ │ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ │ ├── semctl.c
│ │ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ │ ├── setjmp.S
│ │ │ │ │ │ │ │ ├── shmctl.c
│ │ │ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ │ ├── sigjmp.S
│ │ │ │ │ │ │ │ ├── sigpending.c
│ │ │ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ │ │ ├── sizes.h
│ │ │ │ │ │ │ │ ├── socket.S
│ │ │ │ │ │ │ │ ├── swapcontext.c
│ │ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ │ ├── time.c
│ │ │ │ │ │ │ │ ├── ucontext_i.h
│ │ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ │ ├── wordexp.c
│ │ │ │ │ │ │ │ ├── xstat.c
│ │ │ │ │ │ │ │ └── xstatconv.c
│ │ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ │ ├── procfs.h
│ │ │ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ │ │ ├── trap.h
│ │ │ │ │ │ │ │ ├── ucontext.h
│ │ │ │ │ │ │ │ └── user.h
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── sysdep.c
│ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ ├── system.c
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ └── vfork.S
│ │ │ │ │ │ ├── speed.c
│ │ │ │ │ │ ├── statfs64.c
│ │ │ │ │ │ ├── statvfs64.c
│ │ │ │ │ │ ├── statvfs.c
│ │ │ │ │ │ ├── symlinkat.c
│ │ │ │ │ │ ├── sync_file_range.c
│ │ │ │ │ │ ├── sys
│ │ │ │ │ │ │ ├── acct.h
│ │ │ │ │ │ │ ├── epoll.h
│ │ │ │ │ │ │ ├── eventfd.h
│ │ │ │ │ │ │ ├── fanotify.h
│ │ │ │ │ │ │ ├── fsuid.h
│ │ │ │ │ │ │ ├── inotify.h
│ │ │ │ │ │ │ ├── kdaemon.h
│ │ │ │ │ │ │ ├── kd.h
│ │ │ │ │ │ │ ├── klog.h
│ │ │ │ │ │ │ ├── mount.h
│ │ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ │ ├── pci.h
│ │ │ │ │ │ │ ├── personality.h
│ │ │ │ │ │ │ ├── prctl.h
│ │ │ │ │ │ │ ├── procfs.h
│ │ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ │ ├── quota.h
│ │ │ │ │ │ │ ├── raw.h
│ │ │ │ │ │ │ ├── reboot.h
│ │ │ │ │ │ │ ├── signalfd.h
│ │ │ │ │ │ │ ├── soundcard.h
│ │ │ │ │ │ │ ├── swap.h
│ │ │ │ │ │ │ ├── syscall.h
│ │ │ │ │ │ │ ├── sysctl.h
│ │ │ │ │ │ │ ├── sysinfo.h
│ │ │ │ │ │ │ ├── sysmacros.h
│ │ │ │ │ │ │ ├── timerfd.h
│ │ │ │ │ │ │ ├── timex.h
│ │ │ │ │ │ │ ├── ttydefaults.h
│ │ │ │ │ │ │ ├── ultrasound.h
│ │ │ │ │ │ │ ├── user.h
│ │ │ │ │ │ │ └── vt.h
│ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ ├── sysconf.c
│ │ │ │ │ │ ├── sysctl.c
│ │ │ │ │ │ ├── sysctl.mk
│ │ │ │ │ │ ├── syslog.c
│ │ │ │ │ │ ├── system.c
│ │ │ │ │ │ ├── tcdrain.c
│ │ │ │ │ │ ├── tcflow.c
│ │ │ │ │ │ ├── tcflush.c
│ │ │ │ │ │ ├── tcgetattr.c
│ │ │ │ │ │ ├── tcgetpgrp.c
│ │ │ │ │ │ ├── tcsendbrk.c
│ │ │ │ │ │ ├── tcsetattr.c
│ │ │ │ │ │ ├── tcsetpgrp.c
│ │ │ │ │ │ ├── termio.h
│ │ │ │ │ │ ├── testrtsig.h
│ │ │ │ │ │ ├── time.c
│ │ │ │ │ │ ├── times.c
│ │ │ │ │ │ ├── timespec_get.c
│ │ │ │ │ │ ├── truncate64.c
│ │ │ │ │ │ ├── tst-clone.c
│ │ │ │ │ │ ├── tst-getcpu.c
│ │ │ │ │ │ ├── ttyname.c
│ │ │ │ │ │ ├── ttyname_r.c
│ │ │ │ │ │ ├── ualarm.c
│ │ │ │ │ │ ├── ulimit.c
│ │ │ │ │ │ ├── umount2.S
│ │ │ │ │ │ ├── umount.S
│ │ │ │ │ │ ├── unlinkat.c
│ │ │ │ │ │ ├── unlockpt.c
│ │ │ │ │ │ ├── updwtmp.c
│ │ │ │ │ │ ├── usleep.c
│ │ │ │ │ │ ├── ustat.c
│ │ │ │ │ │ ├── utimensat.c
│ │ │ │ │ │ ├── utimes.c
│ │ │ │ │ │ ├── utmp_file.c
│ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ ├── vfork.c
│ │ │ │ │ │ ├── wait3.c
│ │ │ │ │ │ ├── wait.c
│ │ │ │ │ │ ├── waitid.c
│ │ │ │ │ │ ├── waitpid.c
│ │ │ │ │ │ ├── wordsize-64
│ │ │ │ │ │ │ ├── aio_read64.c
│ │ │ │ │ │ │ ├── aio_read.c
│ │ │ │ │ │ │ ├── aio_write64.c
│ │ │ │ │ │ │ ├── aio_write.c
│ │ │ │ │ │ │ ├── creat64.c
│ │ │ │ │ │ │ ├── dl-fxstatat64.c
│ │ │ │ │ │ │ ├── fallocate64.c
│ │ │ │ │ │ │ ├── fallocate.c
│ │ │ │ │ │ │ ├── fstatfs64.c
│ │ │ │ │ │ │ ├── fstatvfs64.c
│ │ │ │ │ │ │ ├── fstatvfs.c
│ │ │ │ │ │ │ ├── ftruncate64.c
│ │ │ │ │ │ │ ├── fxstat64.c
│ │ │ │ │ │ │ ├── fxstatat64.c
│ │ │ │ │ │ │ ├── fxstatat.c
│ │ │ │ │ │ │ ├── fxstat.c
│ │ │ │ │ │ │ ├── getdents64.c
│ │ │ │ │ │ │ ├── getdents.c
│ │ │ │ │ │ │ ├── getdirentries64.c
│ │ │ │ │ │ │ ├── getdirentries.c
│ │ │ │ │ │ │ ├── getrlimit64.c
│ │ │ │ │ │ │ ├── glob64.c
│ │ │ │ │ │ │ ├── internal_statvfs64.c
│ │ │ │ │ │ │ ├── lio_listio64.c
│ │ │ │ │ │ │ ├── lio_listio.c
│ │ │ │ │ │ │ ├── lxstat64.c
│ │ │ │ │ │ │ ├── lxstat.c
│ │ │ │ │ │ │ ├── mmap64.c
│ │ │ │ │ │ │ ├── open64.c
│ │ │ │ │ │ │ ├── openat64.c
│ │ │ │ │ │ │ ├── openat.c
│ │ │ │ │ │ │ ├── posix_fadvise64.c
│ │ │ │ │ │ │ ├── posix_fadvise.c
│ │ │ │ │ │ │ ├── posix_fallocate64.c
│ │ │ │ │ │ │ ├── posix_fallocate.c
│ │ │ │ │ │ │ ├── pread64.c
│ │ │ │ │ │ │ ├── preadv64.c
│ │ │ │ │ │ │ ├── preadv.c
│ │ │ │ │ │ │ ├── pwrite64.c
│ │ │ │ │ │ │ ├── pwritev64.c
│ │ │ │ │ │ │ ├── pwritev.c
│ │ │ │ │ │ │ ├── readdir64.c
│ │ │ │ │ │ │ ├── readdir64_r.c
│ │ │ │ │ │ │ ├── readdir.c
│ │ │ │ │ │ │ ├── readdir_r.c
│ │ │ │ │ │ │ ├── sendfile64.c
│ │ │ │ │ │ │ ├── setrlimit64.c
│ │ │ │ │ │ │ ├── statfs64.c
│ │ │ │ │ │ │ ├── statvfs64.c
│ │ │ │ │ │ │ ├── statvfs.c
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── truncate64.c
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ ├── xstat64.c
│ │ │ │ │ │ │ └── xstat.c
│ │ │ │ │ │ ├── writev.c
│ │ │ │ │ │ ├── x86
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ │ │ ├── environments.h
│ │ │ │ │ │ │ │ ├── epoll.h
│ │ │ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ │ │ ├── ipctypes.h
│ │ │ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ │ │ ├── msq.h
│ │ │ │ │ │ │ │ ├── sem.h
│ │ │ │ │ │ │ │ ├── shm.h
│ │ │ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ │ │ ├── sysctl.h
│ │ │ │ │ │ │ │ ├── typesizes.h
│ │ │ │ │ │ │ │ └── wchar.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ └── sys
│ │ │ │ │ │ │ ├── debugreg.h
│ │ │ │ │ │ │ ├── elf.h
│ │ │ │ │ │ │ ├── io.h
│ │ │ │ │ │ │ ├── perm.h
│ │ │ │ │ │ │ ├── procfs.h
│ │ │ │ │ │ │ ├── reg.h
│ │ │ │ │ │ │ ├── ucontext.h
│ │ │ │ │ │ │ ├── user.h
│ │ │ │ │ │ │ └── vm86.h
│ │ │ │ │ │ ├── x86_64
│ │ │ │ │ │ │ ├── 64
│ │ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ │ └── nptl
│ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ ├── bits
│ │ │ │ │ │ │ │ └── libc-vdso.h
│ │ │ │ │ │ │ ├── brk.c
│ │ │ │ │ │ │ ├── clock_gettime.c
│ │ │ │ │ │ │ ├── clone.S
│ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ ├── dl-procinfo.c
│ │ │ │ │ │ │ ├── dl-procinfo.h
│ │ │ │ │ │ │ ├── get_clockfreq.c
│ │ │ │ │ │ │ ├── getcontext.S
│ │ │ │ │ │ │ ├── gettimeofday.c
│ │ │ │ │ │ │ ├── Implies
│ │ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ │ ├── kernel_stat.h
│ │ │ │ │ │ │ ├── ldconfig.h
│ │ │ │ │ │ │ ├── ldd-rewrite.sed
│ │ │ │ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ │ │ │ ├── makecontext.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── profil-counter.h
│ │ │ │ │ │ │ ├── readelflib.c
│ │ │ │ │ │ │ ├── recv.c
│ │ │ │ │ │ │ ├── register-dump.h
│ │ │ │ │ │ │ ├── sched_getcpu.S
│ │ │ │ │ │ │ ├── sched_setaffinity.c
│ │ │ │ │ │ │ ├── send.c
│ │ │ │ │ │ │ ├── setcontext.S
│ │ │ │ │ │ │ ├── sigaction.c
│ │ │ │ │ │ │ ├── sigaltstack-offsets.sym
│ │ │ │ │ │ │ ├── sigcontextinfo.h
│ │ │ │ │ │ │ ├── sigpending.c
│ │ │ │ │ │ │ ├── sigprocmask.c
│ │ │ │ │ │ │ ├── __start_context.S
│ │ │ │ │ │ │ ├── swapcontext.S
│ │ │ │ │ │ │ ├── syscall.S
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── sysconf.c
│ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ ├── sysdep.S
│ │ │ │ │ │ │ ├── time.c
│ │ │ │ │ │ │ ├── timespec_get.c
│ │ │ │ │ │ │ ├── ucontext_i.sym
│ │ │ │ │ │ │ ├── umount.c
│ │ │ │ │ │ │ ├── Versions
│ │ │ │ │ │ │ ├── vfork.S
│ │ │ │ │ │ │ └── x32
│ │ │ │ │ │ │ ├── alphasort64.c
│ │ │ │ │ │ │ ├── alphasort.c
│ │ │ │ │ │ │ ├── arch_prctl.c
│ │ │ │ │ │ │ ├── configure
│ │ │ │ │ │ │ ├── dl-cache.h
│ │ │ │ │ │ │ ├── fseeko64.c
│ │ │ │ │ │ │ ├── fseeko.c
│ │ │ │ │ │ │ ├── ftello64.c
│ │ │ │ │ │ │ ├── ftello.c
│ │ │ │ │ │ │ ├── ftw64.c
│ │ │ │ │ │ │ ├── ftw.c
│ │ │ │ │ │ │ ├── getcpu.c
│ │ │ │ │ │ │ ├── glob.c
│ │ │ │ │ │ │ ├── init-first.c
│ │ │ │ │ │ │ ├── iofgetpos64.c
│ │ │ │ │ │ │ ├── iofgetpos.c
│ │ │ │ │ │ │ ├── iofopen64.c
│ │ │ │ │ │ │ ├── iofopen.c
│ │ │ │ │ │ │ ├── iofsetpos64.c
│ │ │ │ │ │ │ ├── iofsetpos.c
│ │ │ │ │ │ │ ├── llseek.S
│ │ │ │ │ │ │ ├── lockf64.c
│ │ │ │ │ │ │ ├── lockf.c
│ │ │ │ │ │ │ ├── lseek.S
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── mkostemp64.c
│ │ │ │ │ │ │ ├── mkostemp.c
│ │ │ │ │ │ │ ├── mkstemp64.c
│ │ │ │ │ │ │ ├── mkstemp.c
│ │ │ │ │ │ │ ├── nptl
│ │ │ │ │ │ │ │ ├── ld.abilist
│ │ │ │ │ │ │ │ ├── libanl.abilist
│ │ │ │ │ │ │ │ ├── libBrokenLocale.abilist
│ │ │ │ │ │ │ │ ├── libc.abilist
│ │ │ │ │ │ │ │ ├── libcrypt.abilist
│ │ │ │ │ │ │ │ ├── libdl.abilist
│ │ │ │ │ │ │ │ ├── libm.abilist
│ │ │ │ │ │ │ │ ├── libnsl.abilist
│ │ │ │ │ │ │ │ ├── libpthread.abilist
│ │ │ │ │ │ │ │ ├── libresolv.abilist
│ │ │ │ │ │ │ │ ├── librt.abilist
│ │ │ │ │ │ │ │ ├── libthread_db.abilist
│ │ │ │ │ │ │ │ └── libutil.abilist
│ │ │ │ │ │ │ ├── scandir64.c
│ │ │ │ │ │ │ ├── scandirat64.c
│ │ │ │ │ │ │ ├── scandirat.c
│ │ │ │ │ │ │ ├── scandir.c
│ │ │ │ │ │ │ ├── sched_getcpu.S
│ │ │ │ │ │ │ ├── sched_getcpu-static.c
│ │ │ │ │ │ │ ├── syscalls.list
│ │ │ │ │ │ │ ├── sysctl.mk
│ │ │ │ │ │ │ ├── sysdep.h
│ │ │ │ │ │ │ ├── tmpfile64.c
│ │ │ │ │ │ │ ├── tmpfile.c
│ │ │ │ │ │ │ ├── versionsort64.c
│ │ │ │ │ │ │ └── versionsort.c
│ │ │ │ │ │ ├── xmknodat.c
│ │ │ │ │ │ ├── xmknod.c
│ │ │ │ │ │ ├── xstat64.c
│ │ │ │ │ │ ├── xstat.c
│ │ │ │ │ │ ├── xstatconv.c
│ │ │ │ │ │ └── xstatconv.h
│ │ │ │ │ ├── telldir.c
│ │ │ │ │ ├── time.c
│ │ │ │ │ ├── utime.c
│ │ │ │ │ └── x86_64
│ │ │ │ │ ├── sysdep.h
│ │ │ │ │ └── sysdep.S
│ │ │ │ ├── wordsize-32
│ │ │ │ │ ├── bits
│ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ ├── divdi3.c
│ │ │ │ │ ├── llabs.c
│ │ │ │ │ ├── lldiv.c
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── strtoimax.c
│ │ │ │ │ ├── strtoumax.c
│ │ │ │ │ ├── symbol-hacks.h
│ │ │ │ │ ├── Versions
│ │ │ │ │ ├── wcstoimax.c
│ │ │ │ │ └── wcstoumax.c
│ │ │ │ ├── wordsize-64
│ │ │ │ │ ├── alphasort64.c
│ │ │ │ │ ├── alphasort.c
│ │ │ │ │ ├── bits
│ │ │ │ │ │ └── wordsize.h
│ │ │ │ │ ├── fseeko64.c
│ │ │ │ │ ├── fseeko.c
│ │ │ │ │ ├── ftello64.c
│ │ │ │ │ ├── ftello.c
│ │ │ │ │ ├── ftw64.c
│ │ │ │ │ ├── ftw.c
│ │ │ │ │ ├── glob.c
│ │ │ │ │ ├── iofgetpos64.c
│ │ │ │ │ ├── iofgetpos.c
│ │ │ │ │ ├── iofopen64.c
│ │ │ │ │ ├── iofopen.c
│ │ │ │ │ ├── iofsetpos64.c
│ │ │ │ │ ├── iofsetpos.c
│ │ │ │ │ ├── labs.c
│ │ │ │ │ ├── ldiv.c
│ │ │ │ │ ├── lockf64.c
│ │ │ │ │ ├── lockf.c
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mkostemp64.c
│ │ │ │ │ ├── mkostemp.c
│ │ │ │ │ ├── mkstemp64.c
│ │ │ │ │ ├── mkstemp.c
│ │ │ │ │ ├── scandir64.c
│ │ │ │ │ ├── scandirat64.c
│ │ │ │ │ ├── scandirat.c
│ │ │ │ │ ├── scandir.c
│ │ │ │ │ ├── strtoimax.c
│ │ │ │ │ ├── strtol.c
│ │ │ │ │ ├── strtol_l.c
│ │ │ │ │ ├── strtoll.c
│ │ │ │ │ ├── strtoll_l.c
│ │ │ │ │ ├── strtoul.c
│ │ │ │ │ ├── strtoul_l.c
│ │ │ │ │ ├── strtoull.c
│ │ │ │ │ ├── strtoull_l.c
│ │ │ │ │ ├── strtoumax.c
│ │ │ │ │ ├── tmpfile64.c
│ │ │ │ │ ├── tmpfile.c
│ │ │ │ │ ├── tst-writev.c
│ │ │ │ │ ├── Versions
│ │ │ │ │ ├── versionsort64.c
│ │ │ │ │ ├── versionsort.c
│ │ │ │ │ ├── wcstoimax.c
│ │ │ │ │ ├── wcstol.c
│ │ │ │ │ ├── wcstol_l.c
│ │ │ │ │ ├── wcstoll.c
│ │ │ │ │ ├── wcstoll_l.c
│ │ │ │ │ ├── wcstoul.c
│ │ │ │ │ ├── wcstoul_l.c
│ │ │ │ │ ├── wcstoull.c
│ │ │ │ │ ├── wcstoull_l.c
│ │ │ │ │ └── wcstoumax.c
│ │ │ │ ├── x86
│ │ │ │ │ ├── bits
│ │ │ │ │ │ ├── byteswap-16.h
│ │ │ │ │ │ ├── byteswap.h
│ │ │ │ │ │ ├── endian.h
│ │ │ │ │ │ ├── huge_vall.h
│ │ │ │ │ │ ├── link.h
│ │ │ │ │ │ ├── linkmap.h
│ │ │ │ │ │ ├── mathdef.h
│ │ │ │ │ │ ├── select.h
│ │ │ │ │ │ ├── setjmp.h
│ │ │ │ │ │ ├── string.h
│ │ │ │ │ │ ├── wordsize.h
│ │ │ │ │ │ └── xtitypes.h
│ │ │ │ │ ├── fpu
│ │ │ │ │ │ └── bits
│ │ │ │ │ │ ├── fenv.h
│ │ │ │ │ │ └── mathinline.h
│ │ │ │ │ └── fpu_control.h
│ │ │ │ └── x86_64
│ │ │ │ ├── 64
│ │ │ │ │ ├── Implies-after
│ │ │ │ │ └── shlib-versions
│ │ │ │ ├── abort-instr.h
│ │ │ │ ├── addmul_1.S
│ │ │ │ ├── add_n.S
│ │ │ │ ├── backtrace.c
│ │ │ │ ├── bits
│ │ │ │ │ └── atomic.h
│ │ │ │ ├── bp-asm.h
│ │ │ │ ├── bsd-_setjmp.S
│ │ │ │ ├── bsd-setjmp.S
│ │ │ │ ├── bzero.S
│ │ │ │ ├── cacheinfo.c
│ │ │ │ ├── configure
│ │ │ │ ├── configure.in
│ │ │ │ ├── crti.S
│ │ │ │ ├── crtn.S
│ │ │ │ ├── dl-irel.h
│ │ │ │ ├── dl-lookupcfg.h
│ │ │ │ ├── dl-machine.h
│ │ │ │ ├── dl-runtime.c
│ │ │ │ ├── dl-tlsdesc.h
│ │ │ │ ├── dl-tlsdesc.S
│ │ │ │ ├── dl-tls.h
│ │ │ │ ├── dl-trampoline.h
│ │ │ │ ├── dl-trampoline.S
│ │ │ │ ├── ffs.c
│ │ │ │ ├── ffsll.c
│ │ │ │ ├── fpu
│ │ │ │ │ ├── dla.h
│ │ │ │ │ ├── e_acosl.c
│ │ │ │ │ ├── e_atan2l.c
│ │ │ │ │ ├── e_exp10l.S
│ │ │ │ │ ├── e_exp2l.S
│ │ │ │ │ ├── e_expf.S
│ │ │ │ │ ├── e_expl.S
│ │ │ │ │ ├── e_fmodl.S
│ │ │ │ │ ├── e_ilogbl.S
│ │ │ │ │ ├── e_log10l.S
│ │ │ │ │ ├── e_log2l.S
│ │ │ │ │ ├── e_logl.S
│ │ │ │ │ ├── e_powl.S
│ │ │ │ │ ├── e_remainderl.S
│ │ │ │ │ ├── e_scalbl.S
│ │ │ │ │ ├── e_sqrt.c
│ │ │ │ │ ├── e_sqrtf.c
│ │ │ │ │ ├── e_sqrtl.c
│ │ │ │ │ ├── fclrexcpt.c
│ │ │ │ │ ├── fedisblxcpt.c
│ │ │ │ │ ├── feenablxcpt.c
│ │ │ │ │ ├── fegetenv.c
│ │ │ │ │ ├── fegetexcept.c
│ │ │ │ │ ├── fegetround.c
│ │ │ │ │ ├── feholdexcpt.c
│ │ │ │ │ ├── fesetenv.c
│ │ │ │ │ ├── fesetround.c
│ │ │ │ │ ├── feupdateenv.c
│ │ │ │ │ ├── fgetexcptflg.c
│ │ │ │ │ ├── fraiseexcpt.c
│ │ │ │ │ ├── fsetexcptflg.c
│ │ │ │ │ ├── ftestexcept.c
│ │ │ │ │ ├── Implies
│ │ │ │ │ ├── k_rem_pio2l.c
│ │ │ │ │ ├── libm-test-ulps
│ │ │ │ │ ├── math_ldbl.h
│ │ │ │ │ ├── math_private.h
│ │ │ │ │ ├── multiarch
│ │ │ │ │ │ ├── doasin-fma4.c
│ │ │ │ │ │ ├── dosincos-fma4.c
│ │ │ │ │ │ ├── e_asin.c
│ │ │ │ │ │ ├── e_asin-fma4.c
│ │ │ │ │ │ ├── e_atan2-avx.c
│ │ │ │ │ │ ├── e_atan2.c
│ │ │ │ │ │ ├── e_atan2-fma4.c
│ │ │ │ │ │ ├── e_exp-avx.c
│ │ │ │ │ │ ├── e_exp.c
│ │ │ │ │ │ ├── e_exp-fma4.c
│ │ │ │ │ │ ├── e_log-avx.c
│ │ │ │ │ │ ├── e_log.c
│ │ │ │ │ │ ├── e_log-fma4.c
│ │ │ │ │ │ ├── e_pow.c
│ │ │ │ │ │ ├── e_pow-fma4.c
│ │ │ │ │ │ ├── halfulp-fma4.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── mpa-avx.c
│ │ │ │ │ │ ├── mpa-fma4.c
│ │ │ │ │ │ ├── mpatan2-fma4.c
│ │ │ │ │ │ ├── mpatan-fma4.c
│ │ │ │ │ │ ├── mpexp-avx.c
│ │ │ │ │ │ ├── mpexp-fma4.c
│ │ │ │ │ │ ├── mplog-avx.c
│ │ │ │ │ │ ├── mplog-fma4.c
│ │ │ │ │ │ ├── mpsqrt-fma4.c
│ │ │ │ │ │ ├── mptan-fma4.c
│ │ │ │ │ │ ├── s_atan-avx.c
│ │ │ │ │ │ ├── s_atan.c
│ │ │ │ │ │ ├── s_atan-fma4.c
│ │ │ │ │ │ ├── s_ceil-c.c
│ │ │ │ │ │ ├── s_ceilf-c.c
│ │ │ │ │ │ ├── s_ceilf.S
│ │ │ │ │ │ ├── s_ceil.S
│ │ │ │ │ │ ├── s_floor-c.c
│ │ │ │ │ │ ├── s_floorf-c.c
│ │ │ │ │ │ ├── s_floorf.S
│ │ │ │ │ │ ├── s_floor.S
│ │ │ │ │ │ ├── s_fma.c
│ │ │ │ │ │ ├── s_fmaf.c
│ │ │ │ │ │ ├── sincos32-fma4.c
│ │ │ │ │ │ ├── slowexp-avx.c
│ │ │ │ │ │ ├── slowexp-fma4.c
│ │ │ │ │ │ ├── slowpow-fma4.c
│ │ │ │ │ │ ├── s_nearbyint-c.c
│ │ │ │ │ │ ├── s_nearbyintf-c.c
│ │ │ │ │ │ ├── s_nearbyintf.S
│ │ │ │ │ │ ├── s_nearbyint.S
│ │ │ │ │ │ ├── s_rint-c.c
│ │ │ │ │ │ ├── s_rintf-c.c
│ │ │ │ │ │ ├── s_rintf.S
│ │ │ │ │ │ ├── s_rint.S
│ │ │ │ │ │ ├── s_sin-avx.c
│ │ │ │ │ │ ├── s_sin.c
│ │ │ │ │ │ ├── s_sin-fma4.c
│ │ │ │ │ │ ├── s_tan-avx.c
│ │ │ │ │ │ ├── s_tan.c
│ │ │ │ │ │ └── s_tan-fma4.c
│ │ │ │ │ ├── printf_fphex.c
│ │ │ │ │ ├── s_atanl.c
│ │ │ │ │ ├── s_ceill.S
│ │ │ │ │ ├── s_copysignf.S
│ │ │ │ │ ├── s_copysignl.S
│ │ │ │ │ ├── s_copysign.S
│ │ │ │ │ ├── s_expm1l.S
│ │ │ │ │ ├── s_fabs.c
│ │ │ │ │ ├── s_fabsf.c
│ │ │ │ │ ├── s_fabsl.S
│ │ │ │ │ ├── s_fdiml.S
│ │ │ │ │ ├── s_finitel.S
│ │ │ │ │ ├── s_floorl.S
│ │ │ │ │ ├── s_fmaxf.S
│ │ │ │ │ ├── s_fmaxl.S
│ │ │ │ │ ├── s_fmax.S
│ │ │ │ │ ├── s_fminf.S
│ │ │ │ │ ├── s_fminl.S
│ │ │ │ │ ├── s_fmin.S
│ │ │ │ │ ├── s_fpclassifyl.c
│ │ │ │ │ ├── s_isinfl.c
│ │ │ │ │ ├── s_isnanl.c
│ │ │ │ │ ├── s_llrintf.S
│ │ │ │ │ ├── s_llrintl.S
│ │ │ │ │ ├── s_llrint.S
│ │ │ │ │ ├── s_log1pl.S
│ │ │ │ │ ├── s_logbl.c
│ │ │ │ │ ├── s_lrintf.S
│ │ │ │ │ ├── s_lrintl.S
│ │ │ │ │ ├── s_lrint.S
│ │ │ │ │ ├── s_nearbyintl.S
│ │ │ │ │ ├── s_nextafterl.c
│ │ │ │ │ ├── s_nexttoward.c
│ │ │ │ │ ├── s_nexttowardf.c
│ │ │ │ │ ├── s_rintl.c
│ │ │ │ │ ├── s_scalbnl.S
│ │ │ │ │ ├── s_signbitf.S
│ │ │ │ │ ├── s_signbit.S
│ │ │ │ │ ├── s_significandl.c
│ │ │ │ │ └── s_truncl.S
│ │ │ │ ├── hp-timing.c
│ │ │ │ ├── hp-timing.h
│ │ │ │ ├── htonl.S
│ │ │ │ ├── Implies
│ │ │ │ ├── jmpbuf-offsets.h
│ │ │ │ ├── jmpbuf-unwind.h
│ │ │ │ ├── l10nflist.c
│ │ │ │ ├── ldbl2mpn.c
│ │ │ │ ├── link-defines.sym
│ │ │ │ ├── locale-defines.sym
│ │ │ │ ├── ____longjmp_chk.S
│ │ │ │ ├── __longjmp.S
│ │ │ │ ├── lshift.S
│ │ │ │ ├── machine-gmon.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── _mcount.S
│ │ │ │ ├── memchr.S
│ │ │ │ ├── memcmp.S
│ │ │ │ ├── memcpy_chk.S
│ │ │ │ ├── memcpy.S
│ │ │ │ ├── memmove.c
│ │ │ │ ├── mempcpy_chk.S
│ │ │ │ ├── mempcpy.S
│ │ │ │ ├── memrchr.S
│ │ │ │ ├── memset_chk.S
│ │ │ │ ├── memset.S
│ │ │ │ ├── memusage.h
│ │ │ │ ├── mp_clz_tab.c
│ │ │ │ ├── mul_1.S
│ │ │ │ ├── multiarch
│ │ │ │ │ ├── bcopy.S
│ │ │ │ │ ├── bzero.S
│ │ │ │ │ ├── cacheinfo.c
│ │ │ │ │ ├── ifunc-defines.sym
│ │ │ │ │ ├── init-arch.c
│ │ │ │ │ ├── init-arch.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── memcmp.S
│ │ │ │ │ ├── memcmp-sse4.S
│ │ │ │ │ ├── memcmp-ssse3.S
│ │ │ │ │ ├── memcpy_chk.S
│ │ │ │ │ ├── memcpy.S
│ │ │ │ │ ├── memcpy-ssse3-back.S
│ │ │ │ │ ├── memcpy-ssse3.S
│ │ │ │ │ ├── memmove.c
│ │ │ │ │ ├── memmove_chk.c
│ │ │ │ │ ├── memmove-ssse3-back.S
│ │ │ │ │ ├── memmove-ssse3.S
│ │ │ │ │ ├── mempcpy_chk.S
│ │ │ │ │ ├── mempcpy.S
│ │ │ │ │ ├── mempcpy-ssse3-back.S
│ │ │ │ │ ├── mempcpy-ssse3.S
│ │ │ │ │ ├── memset_chk.S
│ │ │ │ │ ├── memset.S
│ │ │ │ │ ├── memset-x86-64.S
│ │ │ │ │ ├── rawmemchr.S
│ │ │ │ │ ├── rtld-memcmp.c
│ │ │ │ │ ├── rtld-strlen.S
│ │ │ │ │ ├── sched_cpucount.c
│ │ │ │ │ ├── stpcpy.S
│ │ │ │ │ ├── stpcpy-sse2-unaligned.S
│ │ │ │ │ ├── stpcpy-ssse3.S
│ │ │ │ │ ├── stpncpy-c.c
│ │ │ │ │ ├── stpncpy.S
│ │ │ │ │ ├── stpncpy-sse2-unaligned.S
│ │ │ │ │ ├── stpncpy-ssse3.S
│ │ │ │ │ ├── strcasecmp_l.S
│ │ │ │ │ ├── strcasecmp_l-ssse3.S
│ │ │ │ │ ├── strcasestr.c
│ │ │ │ │ ├── strcasestr-c.c
│ │ │ │ │ ├── strcasestr-nonascii.c
│ │ │ │ │ ├── strcat.S
│ │ │ │ │ ├── strcat-sse2-unaligned.S
│ │ │ │ │ ├── strcat-ssse3.S
│ │ │ │ │ ├── strchr.S
│ │ │ │ │ ├── strchr-sse2-no-bsf.S
│ │ │ │ │ ├── strcmp.S
│ │ │ │ │ ├── strcmp-sse42.S
│ │ │ │ │ ├── strcmp-ssse3.S
│ │ │ │ │ ├── strcpy.S
│ │ │ │ │ ├── strcpy-sse2-unaligned.S
│ │ │ │ │ ├── strcpy-ssse3.S
│ │ │ │ │ ├── strcspn-c.c
│ │ │ │ │ ├── strcspn.S
│ │ │ │ │ ├── strend-sse4.S
│ │ │ │ │ ├── strlen.S
│ │ │ │ │ ├── strlen-sse2-no-bsf.S
│ │ │ │ │ ├── strlen-sse2-pminub.S
│ │ │ │ │ ├── strlen-sse4.S
│ │ │ │ │ ├── strncase_l.S
│ │ │ │ │ ├── strncase_l-ssse3.S
│ │ │ │ │ ├── strncat-c.c
│ │ │ │ │ ├── strncat.S
│ │ │ │ │ ├── strncat-sse2-unaligned.S
│ │ │ │ │ ├── strncat-ssse3.S
│ │ │ │ │ ├── strncmp.S
│ │ │ │ │ ├── strncmp-ssse3.S
│ │ │ │ │ ├── strncpy-c.c
│ │ │ │ │ ├── strncpy.S
│ │ │ │ │ ├── strncpy-sse2-unaligned.S
│ │ │ │ │ ├── strncpy-ssse3.S
│ │ │ │ │ ├── strnlen.S
│ │ │ │ │ ├── strnlen-sse2-no-bsf.S
│ │ │ │ │ ├── strpbrk-c.c
│ │ │ │ │ ├── strpbrk.S
│ │ │ │ │ ├── strrchr.S
│ │ │ │ │ ├── strrchr-sse2-no-bsf.S
│ │ │ │ │ ├── strspn-c.c
│ │ │ │ │ ├── strspn.S
│ │ │ │ │ ├── strstr.c
│ │ │ │ │ ├── strstr-c.c
│ │ │ │ │ ├── test-multiarch.c
│ │ │ │ │ ├── varshift.c
│ │ │ │ │ ├── varshift.h
│ │ │ │ │ ├── Versions
│ │ │ │ │ ├── wcscpy-c.c
│ │ │ │ │ ├── wcscpy.S
│ │ │ │ │ ├── wcscpy-ssse3.S
│ │ │ │ │ ├── wmemcmp-c.c
│ │ │ │ │ ├── wmemcmp.S
│ │ │ │ │ ├── wmemcmp-sse4.S
│ │ │ │ │ └── wmemcmp-ssse3.S
│ │ │ │ ├── preconfigure
│ │ │ │ ├── preconfigure.in
│ │ │ │ ├── rawmemchr.S
│ │ │ │ ├── rshift.S
│ │ │ │ ├── rtld-memcmp.c
│ │ │ │ ├── rtld-memset.c
│ │ │ │ ├── rtld-strchr.S
│ │ │ │ ├── rtld-strlen.S
│ │ │ │ ├── sched_cpucount.c
│ │ │ │ ├── setjmp.S
│ │ │ │ ├── stackguard-macros.h
│ │ │ │ ├── stackinfo.h
│ │ │ │ ├── start.S
│ │ │ │ ├── stpcpy_chk.S
│ │ │ │ ├── stpcpy.S
│ │ │ │ ├── strcasecmp_l-nonascii.c
│ │ │ │ ├── strcasecmp_l.S
│ │ │ │ ├── strcasecmp.S
│ │ │ │ ├── strcat.S
│ │ │ │ ├── strchrnul.S
│ │ │ │ ├── strchr.S
│ │ │ │ ├── strcmp.S
│ │ │ │ ├── strcpy_chk.S
│ │ │ │ ├── strcpy.S
│ │ │ │ ├── strcspn.S
│ │ │ │ ├── strlen.S
│ │ │ │ ├── strncase_l-nonascii.c
│ │ │ │ ├── strncase_l.S
│ │ │ │ ├── strncase.S
│ │ │ │ ├── strncmp.S
│ │ │ │ ├── strnlen.S
│ │ │ │ ├── strpbrk.S
│ │ │ │ ├── strrchr.S
│ │ │ │ ├── strspn.S
│ │ │ │ ├── strtok_r.S
│ │ │ │ ├── strtok.S
│ │ │ │ ├── submul_1.S
│ │ │ │ ├── sub_n.S
│ │ │ │ ├── sysdep.h
│ │ │ │ ├── tlsdesc.c
│ │ │ │ ├── tlsdesc.sym
│ │ │ │ ├── tst-mallocalign1.c
│ │ │ │ ├── tst-quad1.c
│ │ │ │ ├── tst-quad1pie.c
│ │ │ │ ├── tst-quad2.c
│ │ │ │ ├── tst-quad2pie.c
│ │ │ │ ├── tst-quadmod1pie.S
│ │ │ │ ├── tst-quadmod1.S
│ │ │ │ ├── tst-quadmod2pie.S
│ │ │ │ ├── tst-quadmod2.S
│ │ │ │ ├── tst-stack-align.h
│ │ │ │ ├── tst-xmmymm.sh
│ │ │ │ ├── Versions
│ │ │ │ ├── wcschr.S
│ │ │ │ ├── wcscmp.S
│ │ │ │ ├── wcslen.S
│ │ │ │ ├── wcsrchr.S
│ │ │ │ └── x32
│ │ │ │ ├── divdi3.c
│ │ │ │ ├── dl-machine.h
│ │ │ │ ├── ffs.c
│ │ │ │ ├── gmp-mparam.h
│ │ │ │ ├── Implies-after
│ │ │ │ ├── _itoa.h
│ │ │ │ ├── shlib-versions
│ │ │ │ ├── symbol-hacks.h
│ │ │ │ └── sysdep.h
│ │ │ ├── sysvipc
│ │ │ │ ├── ftok.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── msgctl.c
│ │ │ │ ├── msgget.c
│ │ │ │ ├── msgrcv.c
│ │ │ │ ├── msgsnd.c
│ │ │ │ ├── semctl.c
│ │ │ │ ├── semget.c
│ │ │ │ ├── semop.c
│ │ │ │ ├── semtimedop.c
│ │ │ │ ├── shmat.c
│ │ │ │ ├── shmctl.c
│ │ │ │ ├── shmdt.c
│ │ │ │ ├── shmget.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── ipc.h
│ │ │ │ │ ├── msg.h
│ │ │ │ │ ├── sem.h
│ │ │ │ │ └── shm.h
│ │ │ │ └── Versions
│ │ │ ├── tags
│ │ │ ├── termios
│ │ │ │ ├── cfmakeraw.c
│ │ │ │ ├── cfsetspeed.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── speed.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── termios.h
│ │ │ │ │ └── ttychars.h
│ │ │ │ ├── tcdrain.c
│ │ │ │ ├── tcflow.c
│ │ │ │ ├── tcflush.c
│ │ │ │ ├── tcgetattr.c
│ │ │ │ ├── tcgetpgrp.c
│ │ │ │ ├── tcgetsid.c
│ │ │ │ ├── tcsendbrk.c
│ │ │ │ ├── tcsetattr.c
│ │ │ │ ├── tcsetpgrp.c
│ │ │ │ ├── termios.h
│ │ │ │ └── Versions
│ │ │ ├── test-skeleton.c
│ │ │ ├── time
│ │ │ │ ├── adjtime.c
│ │ │ │ ├── alt_digit.c
│ │ │ │ ├── asctime.c
│ │ │ │ ├── bug-asctime.c
│ │ │ │ ├── bug-asctime_r.c
│ │ │ │ ├── bug-getdate1.c
│ │ │ │ ├── bug-mktime1.c
│ │ │ │ ├── clock.c
│ │ │ │ ├── clocktest.c
│ │ │ │ ├── ctime.c
│ │ │ │ ├── ctime_r.c
│ │ │ │ ├── datemsk
│ │ │ │ ├── Depend
│ │ │ │ ├── difftime.c
│ │ │ │ ├── dysize.c
│ │ │ │ ├── era.c
│ │ │ │ ├── ftime.c
│ │ │ │ ├── getdate.c
│ │ │ │ ├── getitimer.c
│ │ │ │ ├── gettimeofday.c
│ │ │ │ ├── gmtime.c
│ │ │ │ ├── lc-time-cleanup.c
│ │ │ │ ├── localtime.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mktime.c
│ │ │ │ ├── offtime.c
│ │ │ │ ├── setitimer.c
│ │ │ │ ├── settimeofday.c
│ │ │ │ ├── stime.c
│ │ │ │ ├── strftime.c
│ │ │ │ ├── strftime_l.c
│ │ │ │ ├── strptime.c
│ │ │ │ ├── strptime_l.c
│ │ │ │ ├── sys
│ │ │ │ │ ├── timeb.h
│ │ │ │ │ └── time.h
│ │ │ │ ├── test_time.c
│ │ │ │ ├── time.c
│ │ │ │ ├── timegm.c
│ │ │ │ ├── time.h
│ │ │ │ ├── timespec_get.c
│ │ │ │ ├── tst-ftime_l.c
│ │ │ │ ├── tst-getdate.c
│ │ │ │ ├── tst-mktime2.c
│ │ │ │ ├── tst-mktime3.c
│ │ │ │ ├── tst-mktime.c
│ │ │ │ ├── tst-posixtz.c
│ │ │ │ ├── tst-strftime.c
│ │ │ │ ├── tst-strptime2.c
│ │ │ │ ├── tst-strptime3.c
│ │ │ │ ├── tst-strptime.c
│ │ │ │ ├── tst_wcsftime.c
│ │ │ │ ├── tzfile.c
│ │ │ │ ├── tzset.c
│ │ │ │ ├── Versions
│ │ │ │ ├── wcsftime.c
│ │ │ │ └── wcsftime_l.c
│ │ │ ├── timezone
│ │ │ │ ├── africa
│ │ │ │ ├── antarctica
│ │ │ │ ├── asia
│ │ │ │ ├── australasia
│ │ │ │ ├── backward
│ │ │ │ ├── checktab.awk
│ │ │ │ ├── etcetera
│ │ │ │ ├── europe
│ │ │ │ ├── factory
│ │ │ │ ├── ialloc.c
│ │ │ │ ├── iso3166.tab
│ │ │ │ ├── leapseconds
│ │ │ │ ├── Makefile
│ │ │ │ ├── northamerica
│ │ │ │ ├── pacificnew
│ │ │ │ ├── private.h
│ │ │ │ ├── README
│ │ │ │ ├── scheck.c
│ │ │ │ ├── simplebackw
│ │ │ │ ├── solar87
│ │ │ │ ├── solar88
│ │ │ │ ├── solar89
│ │ │ │ ├── southamerica
│ │ │ │ ├── systemv
│ │ │ │ ├── test-tz.c
│ │ │ │ ├── tst-timezone.c
│ │ │ │ ├── tzfile.h
│ │ │ │ ├── tzselect.ksh
│ │ │ │ ├── yearistype
│ │ │ │ ├── zdump.c
│ │ │ │ ├── zic.c
│ │ │ │ └── zone.tab
│ │ │ ├── version.h
│ │ │ ├── Versions.def
│ │ │ ├── wcsmbs
│ │ │ │ ├── bits
│ │ │ │ │ ├── wchar2.h
│ │ │ │ │ └── wchar-ldbl.h
│ │ │ │ ├── btowc.c
│ │ │ │ ├── c16rtomb.c
│ │ │ │ ├── Depend
│ │ │ │ ├── isoc99_fwscanf.c
│ │ │ │ ├── isoc99_swscanf.c
│ │ │ │ ├── isoc99_vfwscanf.c
│ │ │ │ ├── isoc99_vswscanf.c
│ │ │ │ ├── isoc99_vwscanf.c
│ │ │ │ ├── isoc99_wscanf.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mbrlen.c
│ │ │ │ ├── mbrtoc16.c
│ │ │ │ ├── mbrtowc.c
│ │ │ │ ├── mbsinit.c
│ │ │ │ ├── mbsnrtowcs.c
│ │ │ │ ├── mbsrtowcs.c
│ │ │ │ ├── mbsrtowcs_l.c
│ │ │ │ ├── test-wcschr.c
│ │ │ │ ├── test-wcscmp.c
│ │ │ │ ├── test-wcscpy.c
│ │ │ │ ├── test-wcslen.c
│ │ │ │ ├── test-wcsrchr.c
│ │ │ │ ├── test-wmemcmp.c
│ │ │ │ ├── tst-btowc.c
│ │ │ │ ├── tst-c16c32-1.c
│ │ │ │ ├── tst-mbrtowc2.c
│ │ │ │ ├── tst-mbrtowc.c
│ │ │ │ ├── tst-mbsrtowcs.c
│ │ │ │ ├── tst-wchar-h.c
│ │ │ │ ├── tst-wcpncpy.c
│ │ │ │ ├── tst-wcrtomb.c
│ │ │ │ ├── tst-wcsnlen.c
│ │ │ │ ├── tst-wcstof.c
│ │ │ │ ├── uchar.h
│ │ │ │ ├── Versions
│ │ │ │ ├── wchar.h
│ │ │ │ ├── wcpcpy.c
│ │ │ │ ├── wcpncpy.c
│ │ │ │ ├── wcrtomb.c
│ │ │ │ ├── wcsatcliff.c
│ │ │ │ ├── wcscasecmp.c
│ │ │ │ ├── wcscasecmp_l.c
│ │ │ │ ├── wcscat.c
│ │ │ │ ├── wcschr.c
│ │ │ │ ├── wcschrnul.c
│ │ │ │ ├── wcscmp.c
│ │ │ │ ├── wcscoll.c
│ │ │ │ ├── wcscoll_l.c
│ │ │ │ ├── wcscpy.c
│ │ │ │ ├── wcscspn.c
│ │ │ │ ├── wcsdup.c
│ │ │ │ ├── wcslen.c
│ │ │ │ ├── wcsmbsload.c
│ │ │ │ ├── wcsmbsload.h
│ │ │ │ ├── wcsmbs-tst1.c
│ │ │ │ ├── wcsncase.c
│ │ │ │ ├── wcsncase_l.c
│ │ │ │ ├── wcsncat.c
│ │ │ │ ├── wcsncmp.c
│ │ │ │ ├── wcsncpy.c
│ │ │ │ ├── wcsnlen.c
│ │ │ │ ├── wcsnrtombs.c
│ │ │ │ ├── wcspbrk.c
│ │ │ │ ├── wcsrchr.c
│ │ │ │ ├── wcsrtombs.c
│ │ │ │ ├── wcsspn.c
│ │ │ │ ├── wcsstr.c
│ │ │ │ ├── wcstod.c
│ │ │ │ ├── wcstod_l.c
│ │ │ │ ├── wcstof.c
│ │ │ │ ├── wcstof_l.c
│ │ │ │ ├── wcstok.c
│ │ │ │ ├── wcstol.c
│ │ │ │ ├── wcstold.c
│ │ │ │ ├── wcstold_l.c
│ │ │ │ ├── wcstol_l.c
│ │ │ │ ├── wcstoll.c
│ │ │ │ ├── wcstoll_l.c
│ │ │ │ ├── wcstoul.c
│ │ │ │ ├── wcstoul_l.c
│ │ │ │ ├── wcstoull.c
│ │ │ │ ├── wcstoull_l.c
│ │ │ │ ├── wcswidth.c
│ │ │ │ ├── wcsxfrm.c
│ │ │ │ ├── wcsxfrm_l.c
│ │ │ │ ├── wctob.c
│ │ │ │ ├── wcwidth.c
│ │ │ │ ├── wcwidth.h
│ │ │ │ ├── wmemchr.c
│ │ │ │ ├── wmemcmp.c
│ │ │ │ ├── wmemcpy.c
│ │ │ │ ├── wmemmove.c
│ │ │ │ ├── wmempcpy.c
│ │ │ │ └── wmemset.c
│ │ │ ├── wctype
│ │ │ │ ├── bug-wctypeh.c
│ │ │ │ ├── iswctype.c
│ │ │ │ ├── iswctype_l.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── test_wcfuncs.c
│ │ │ │ ├── test_wctype.c
│ │ │ │ ├── towctrans.c
│ │ │ │ ├── towctrans_l.c
│ │ │ │ ├── Versions
│ │ │ │ ├── wcfuncs.c
│ │ │ │ ├── wcfuncs_l.c
│ │ │ │ ├── wchar-lookup.h
│ │ │ │ ├── wctrans.c
│ │ │ │ ├── wctrans_l.c
│ │ │ │ ├── wctype.c
│ │ │ │ ├── wctype.h
│ │ │ │ └── wctype_l.c
│ │ │ └── WUR-REPORT
│ │ ├── ogre_src_v1-8-1
│ │ │ ├── Components
│ │ │ │ ├── Paging
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreGrid2DPageStrategy.h
│ │ │ │ │ │ ├── OgreGrid3DPageStrategy.h
│ │ │ │ │ │ ├── OgrePageConnection.h
│ │ │ │ │ │ ├── OgrePageContentCollectionFactory.h
│ │ │ │ │ │ ├── OgrePageContentCollection.h
│ │ │ │ │ │ ├── OgrePageContentFactory.h
│ │ │ │ │ │ ├── OgrePageContent.h
│ │ │ │ │ │ ├── OgrePagedWorld.h
│ │ │ │ │ │ ├── OgrePagedWorldSection.h
│ │ │ │ │ │ ├── OgrePageFileFormats.h
│ │ │ │ │ │ ├── OgrePage.h
│ │ │ │ │ │ ├── OgrePageManager.h
│ │ │ │ │ │ ├── OgrePageStrategy.h
│ │ │ │ │ │ ├── OgrePaging.h
│ │ │ │ │ │ ├── OgrePagingPrerequisites.h
│ │ │ │ │ │ └── OgreSimplePageContentCollection.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreGrid2DPageStrategy.cpp
│ │ │ │ │ ├── OgreGrid3DPageStrategy.cpp
│ │ │ │ │ ├── OgrePageContentCollection.cpp
│ │ │ │ │ ├── OgrePageContent.cpp
│ │ │ │ │ ├── OgrePage.cpp
│ │ │ │ │ ├── OgrePagedWorld.cpp
│ │ │ │ │ ├── OgrePagedWorldSection.cpp
│ │ │ │ │ ├── OgrePageManager.cpp
│ │ │ │ │ └── OgreSimplePageContentCollection.cpp
│ │ │ │ ├── Property
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreProperty.h
│ │ │ │ │ │ └── OgrePropertyPrerequisites.h
│ │ │ │ │ └── src
│ │ │ │ │ └── OgreProperty.cpp
│ │ │ │ ├── RTShaderSystem
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreRTShaderSystem.h
│ │ │ │ │ │ ├── OgreShaderCGProgramProcessor.h
│ │ │ │ │ │ ├── OgreShaderCGProgramWriter.h
│ │ │ │ │ │ ├── OgreShaderExDualQuaternionSkinning.h
│ │ │ │ │ │ ├── OgreShaderExHardwareSkinning.h
│ │ │ │ │ │ ├── OgreShaderExHardwareSkinningTechnique.h
│ │ │ │ │ │ ├── OgreShaderExIntegratedPSSM3.h
│ │ │ │ │ │ ├── OgreShaderExLayeredBlending.h
│ │ │ │ │ │ ├── OgreShaderExLinearSkinning.h
│ │ │ │ │ │ ├── OgreShaderExNormalMapLighting.h
│ │ │ │ │ │ ├── OgreShaderExPerPixelLighting.h
│ │ │ │ │ │ ├── OgreShaderExTextureAtlasSampler.h
│ │ │ │ │ │ ├── OgreShaderFFPColour.h
│ │ │ │ │ │ ├── OgreShaderFFPFog.h
│ │ │ │ │ │ ├── OgreShaderFFPLighting.h
│ │ │ │ │ │ ├── OgreShaderFFPRenderStateBuilder.h
│ │ │ │ │ │ ├── OgreShaderFFPRenderState.h
│ │ │ │ │ │ ├── OgreShaderFFPTexturing.h
│ │ │ │ │ │ ├── OgreShaderFFPTransform.h
│ │ │ │ │ │ ├── OgreShaderFunctionAtom.h
│ │ │ │ │ │ ├── OgreShaderFunction.h
│ │ │ │ │ │ ├── OgreShaderGenerator.h
│ │ │ │ │ │ ├── OgreShaderGLSLESProgramProcessor.h
│ │ │ │ │ │ ├── OgreShaderGLSLESProgramWriter.h
│ │ │ │ │ │ ├── OgreShaderGLSLProgramProcessor.h
│ │ │ │ │ │ ├── OgreShaderGLSLProgramWriter.h
│ │ │ │ │ │ ├── OgreShaderHLSLProgramProcessor.h
│ │ │ │ │ │ ├── OgreShaderHLSLProgramWriter.h
│ │ │ │ │ │ ├── OgreShaderMaterialSerializerListener.h
│ │ │ │ │ │ ├── OgreShaderParameter.h
│ │ │ │ │ │ ├── OgreShaderPrerequisites.h
│ │ │ │ │ │ ├── OgreShaderProgram.h
│ │ │ │ │ │ ├── OgreShaderProgramManager.h
│ │ │ │ │ │ ├── OgreShaderProgramProcessor.h
│ │ │ │ │ │ ├── OgreShaderProgramSet.h
│ │ │ │ │ │ ├── OgreShaderProgramWriter.h
│ │ │ │ │ │ ├── OgreShaderProgramWriterManager.h
│ │ │ │ │ │ ├── OgreShaderRenderState.h
│ │ │ │ │ │ ├── OgreShaderScriptTranslator.h
│ │ │ │ │ │ └── OgreShaderSubRenderState.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreShaderCGProgramProcessor.cpp
│ │ │ │ │ ├── OgreShaderCGProgramWriter.cpp
│ │ │ │ │ ├── OgreShaderExDualQuaternionSkinning.cpp
│ │ │ │ │ ├── OgreShaderExHardwareSkinning.cpp
│ │ │ │ │ ├── OgreShaderExHardwareSkinningTechnique.cpp
│ │ │ │ │ ├── OgreShaderExIntegratedPSSM3.cpp
│ │ │ │ │ ├── OgreShaderExLayeredBlending.cpp
│ │ │ │ │ ├── OgreShaderExLinearSkinning.cpp
│ │ │ │ │ ├── OgreShaderExNormalMapLighting.cpp
│ │ │ │ │ ├── OgreShaderExPerPixelLighting.cpp
│ │ │ │ │ ├── OgreShaderExTextureAtlasSampler.cpp
│ │ │ │ │ ├── OgreShaderFFPColour.cpp
│ │ │ │ │ ├── OgreShaderFFPFog.cpp
│ │ │ │ │ ├── OgreShaderFFPLighting.cpp
│ │ │ │ │ ├── OgreShaderFFPRenderStateBuilder.cpp
│ │ │ │ │ ├── OgreShaderFFPTexturing.cpp
│ │ │ │ │ ├── OgreShaderFFPTransform.cpp
│ │ │ │ │ ├── OgreShaderFunctionAtom.cpp
│ │ │ │ │ ├── OgreShaderFunction.cpp
│ │ │ │ │ ├── OgreShaderGenerator.cpp
│ │ │ │ │ ├── OgreShaderGLSLESProgramProcessor.cpp
│ │ │ │ │ ├── OgreShaderGLSLESProgramWriter.cpp
│ │ │ │ │ ├── OgreShaderGLSLProgramProcessor.cpp
│ │ │ │ │ ├── OgreShaderGLSLProgramWriter.cpp
│ │ │ │ │ ├── OgreShaderHLSLProgramProcessor.cpp
│ │ │ │ │ ├── OgreShaderHLSLProgramWriter.cpp
│ │ │ │ │ ├── OgreShaderMaterialSerializerListener.cpp
│ │ │ │ │ ├── OgreShaderParameter.cpp
│ │ │ │ │ ├── OgreShaderProgram.cpp
│ │ │ │ │ ├── OgreShaderProgramManager.cpp
│ │ │ │ │ ├── OgreShaderProgramProcessor.cpp
│ │ │ │ │ ├── OgreShaderProgramSet.cpp
│ │ │ │ │ ├── OgreShaderProgramWriter.cpp
│ │ │ │ │ ├── OgreShaderProgramWriterManager.cpp
│ │ │ │ │ ├── OgreShaderRenderState.cpp
│ │ │ │ │ ├── OgreShaderScriptTranslator.cpp
│ │ │ │ │ └── OgreShaderSubRenderState.cpp
│ │ │ │ └── Terrain
│ │ │ │ ├── include
│ │ │ │ │ ├── OgreTerrainGroup.h
│ │ │ │ │ ├── OgreTerrain.h
│ │ │ │ │ ├── OgreTerrainLayerBlendMap.h
│ │ │ │ │ ├── OgreTerrainMaterialGeneratorA.h
│ │ │ │ │ ├── OgreTerrainMaterialGenerator.h
│ │ │ │ │ ├── OgreTerrainPagedWorldSection.h
│ │ │ │ │ ├── OgreTerrainPaging.h
│ │ │ │ │ ├── OgreTerrainPrerequisites.h
│ │ │ │ │ └── OgreTerrainQuadTreeNode.h
│ │ │ │ └── src
│ │ │ │ ├── OgreTerrain.cpp
│ │ │ │ ├── OgreTerrainGroup.cpp
│ │ │ │ ├── OgreTerrainLayerBlendMap.cpp
│ │ │ │ ├── OgreTerrainMaterialGeneratorA.cpp
│ │ │ │ ├── OgreTerrainMaterialGenerator.cpp
│ │ │ │ ├── OgreTerrainPagedWorldSection.cpp
│ │ │ │ ├── OgreTerrainPaging.cpp
│ │ │ │ └── OgreTerrainQuadTreeNode.cpp
│ │ │ ├── OgreMain
│ │ │ │ ├── include
│ │ │ │ │ ├── Android
│ │ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ │ ├── OgreErrorDialogImp.h
│ │ │ │ │ │ └── OgreTimerImp.h
│ │ │ │ │ ├── asm_math.h
│ │ │ │ │ ├── GLX
│ │ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ │ ├── OgreErrorDialogImp.h
│ │ │ │ │ │ └── OgreTimerImp.h
│ │ │ │ │ ├── gtk
│ │ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ │ └── OgreErrorDialogImp.h
│ │ │ │ │ ├── iOS
│ │ │ │ │ │ ├── config.h
│ │ │ │ │ │ ├── macUtils.h
│ │ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ │ ├── OgreErrorDialogImp.h
│ │ │ │ │ │ ├── OgreOSXCocoaTouchView.h
│ │ │ │ │ │ └── OgreTimerImp.h
│ │ │ │ │ ├── NaCl
│ │ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ │ ├── OgreErrorDialogImp.h
│ │ │ │ │ │ └── OgreTimerImp.h
│ │ │ │ │ ├── OgreAlignedAllocator.h
│ │ │ │ │ ├── OgreAnimable.h
│ │ │ │ │ ├── OgreAnimation.h
│ │ │ │ │ ├── OgreAnimationState.h
│ │ │ │ │ ├── OgreAnimationTrack.h
│ │ │ │ │ ├── OgreAny.h
│ │ │ │ │ ├── OgreArchiveFactory.h
│ │ │ │ │ ├── OgreArchive.h
│ │ │ │ │ ├── OgreArchiveManager.h
│ │ │ │ │ ├── OgreAtomicWrappers.h
│ │ │ │ │ ├── OgreAutoParamDataSource.h
│ │ │ │ │ ├── OgreAxisAlignedBox.h
│ │ │ │ │ ├── OgreBillboardChain.h
│ │ │ │ │ ├── OgreBillboard.h
│ │ │ │ │ ├── OgreBillboardParticleRenderer.h
│ │ │ │ │ ├── OgreBillboardSet.h
│ │ │ │ │ ├── OgreBitwise.h
│ │ │ │ │ ├── OgreBlendMode.h
│ │ │ │ │ ├── OgreBone.h
│ │ │ │ │ ├── OgreBorderPanelOverlayElement.h
│ │ │ │ │ ├── OgreCamera.h
│ │ │ │ │ ├── OgreCodec.h
│ │ │ │ │ ├── OgreColourValue.h
│ │ │ │ │ ├── OgreCommon.h
│ │ │ │ │ ├── OgreCompositionPass.h
│ │ │ │ │ ├── OgreCompositionTargetPass.h
│ │ │ │ │ ├── OgreCompositionTechnique.h
│ │ │ │ │ ├── OgreCompositorChain.h
│ │ │ │ │ ├── OgreCompositor.h
│ │ │ │ │ ├── OgreCompositorInstance.h
│ │ │ │ │ ├── OgreCompositorLogic.h
│ │ │ │ │ ├── OgreCompositorManager.h
│ │ │ │ │ ├── OgreConfigDialog.h
│ │ │ │ │ ├── OgreConfigFile.h
│ │ │ │ │ ├── OgreConfig.h
│ │ │ │ │ ├── OgreConfigOptionMap.h
│ │ │ │ │ ├── OgreController.h
│ │ │ │ │ ├── OgreControllerManager.h
│ │ │ │ │ ├── OgreConvexBody.h
│ │ │ │ │ ├── OgreCustomCompositionPass.h
│ │ │ │ │ ├── OgreDataStream.h
│ │ │ │ │ ├── OgreDDSCodec.h
│ │ │ │ │ ├── OgreDefaultHardwareBufferManager.h
│ │ │ │ │ ├── OgreDeflate.h
│ │ │ │ │ ├── OgreDepthBuffer.h
│ │ │ │ │ ├── OgreDistanceLodStrategy.h
│ │ │ │ │ ├── OgreDualQuaternion.h
│ │ │ │ │ ├── OgreDynLib.h
│ │ │ │ │ ├── OgreDynLibManager.h
│ │ │ │ │ ├── OgreEdgeListBuilder.h
│ │ │ │ │ ├── OgreEntity.h
│ │ │ │ │ ├── OgreErrorDialog.h
│ │ │ │ │ ├── OgreException.h
│ │ │ │ │ ├── OgreExternalTextureSource.h
│ │ │ │ │ ├── OgreExternalTextureSourceManager.h
│ │ │ │ │ ├── OgreFactoryObj.h
│ │ │ │ │ ├── OgreFileSystem.h
│ │ │ │ │ ├── OgreFont.h
│ │ │ │ │ ├── OgreFontManager.h
│ │ │ │ │ ├── OgreFrameListener.h
│ │ │ │ │ ├── OgreFreeImageCodec.h
│ │ │ │ │ ├── OgreFrustum.h
│ │ │ │ │ ├── OgreGpuProgram.h
│ │ │ │ │ ├── OgreGpuProgramManager.h
│ │ │ │ │ ├── OgreGpuProgramParams.h
│ │ │ │ │ ├── OgreGpuProgramUsage.h
│ │ │ │ │ ├── Ogre.h
│ │ │ │ │ ├── OgreHardwareBuffer.h
│ │ │ │ │ ├── OgreHardwareBufferManager.h
│ │ │ │ │ ├── OgreHardwareIndexBuffer.h
│ │ │ │ │ ├── OgreHardwareOcclusionQuery.h
│ │ │ │ │ ├── OgreHardwarePixelBuffer.h
│ │ │ │ │ ├── OgreHardwareVertexBuffer.h
│ │ │ │ │ ├── OgreHeaderPrefix.h
│ │ │ │ │ ├── OgreHeaderSuffix.h
│ │ │ │ │ ├── OgreHighLevelGpuProgram.h
│ │ │ │ │ ├── OgreHighLevelGpuProgramManager.h
│ │ │ │ │ ├── OgreImageCodec.h
│ │ │ │ │ ├── OgreImage.h
│ │ │ │ │ ├── OgreInstanceBatch.h
│ │ │ │ │ ├── OgreInstanceBatchHW.h
│ │ │ │ │ ├── OgreInstanceBatchHW_VTF.h
│ │ │ │ │ ├── OgreInstanceBatchShader.h
│ │ │ │ │ ├── OgreInstanceBatchVTF.h
│ │ │ │ │ ├── OgreInstancedEntity.h
│ │ │ │ │ ├── OgreInstancedGeometry.h
│ │ │ │ │ ├── OgreInstanceManager.h
│ │ │ │ │ ├── OgreIteratorRange.h
│ │ │ │ │ ├── OgreIteratorWrapper.h
│ │ │ │ │ ├── OgreIteratorWrappers.h
│ │ │ │ │ ├── OgreKeyFrame.h
│ │ │ │ │ ├── OgreLight.h
│ │ │ │ │ ├── OgreLodListener.h
│ │ │ │ │ ├── OgreLodStrategy.h
│ │ │ │ │ ├── OgreLodStrategyManager.h
│ │ │ │ │ ├── OgreLog.h
│ │ │ │ │ ├── OgreLogManager.h
│ │ │ │ │ ├── OgreManualObject.h
│ │ │ │ │ ├── OgreMaterial.h
│ │ │ │ │ ├── OgreMaterialManager.h
│ │ │ │ │ ├── OgreMaterialSerializer.h
│ │ │ │ │ ├── OgreMath.h
│ │ │ │ │ ├── OgreMatrix3.h
│ │ │ │ │ ├── OgreMatrix4.h
│ │ │ │ │ ├── OgreMemoryAllocatedObject.h
│ │ │ │ │ ├── OgreMemoryAllocatorConfig.h
│ │ │ │ │ ├── OgreMemoryNedAlloc.h
│ │ │ │ │ ├── OgreMemoryNedPooling.h
│ │ │ │ │ ├── OgreMemoryStdAlloc.h
│ │ │ │ │ ├── OgreMemorySTLAllocator.h
│ │ │ │ │ ├── OgreMemoryTracker.h
│ │ │ │ │ ├── OgreMeshFileFormat.h
│ │ │ │ │ ├── OgreMesh.h
│ │ │ │ │ ├── OgreMeshManager.h
│ │ │ │ │ ├── OgreMeshSerializer.h
│ │ │ │ │ ├── OgreMeshSerializerImpl.h
│ │ │ │ │ ├── OgreMovableObject.h
│ │ │ │ │ ├── OgreMovablePlane.h
│ │ │ │ │ ├── OgreNode.h
│ │ │ │ │ ├── OgreNumerics.h
│ │ │ │ │ ├── OgreOptimisedUtil.h
│ │ │ │ │ ├── OgreOverlayContainer.h
│ │ │ │ │ ├── OgreOverlayElementCommands.h
│ │ │ │ │ ├── OgreOverlayElementFactory.h
│ │ │ │ │ ├── OgreOverlayElement.h
│ │ │ │ │ ├── OgreOverlay.h
│ │ │ │ │ ├── OgreOverlayManager.h
│ │ │ │ │ ├── OgrePanelOverlayElement.h
│ │ │ │ │ ├── OgreParticleAffectorFactory.h
│ │ │ │ │ ├── OgreParticleAffector.h
│ │ │ │ │ ├── OgreParticleEmitterCommands.h
│ │ │ │ │ ├── OgreParticleEmitterFactory.h
│ │ │ │ │ ├── OgreParticleEmitter.h
│ │ │ │ │ ├── OgreParticle.h
│ │ │ │ │ ├── OgreParticleIterator.h
│ │ │ │ │ ├── OgreParticleScriptCompiler.h
│ │ │ │ │ ├── OgreParticleSystem.h
│ │ │ │ │ ├── OgreParticleSystemManager.h
│ │ │ │ │ ├── OgreParticleSystemRenderer.h
│ │ │ │ │ ├── OgrePass.h
│ │ │ │ │ ├── OgrePatchMesh.h
│ │ │ │ │ ├── OgrePatchSurface.h
│ │ │ │ │ ├── OgrePixelCountLodStrategy.h
│ │ │ │ │ ├── OgrePixelFormat.h
│ │ │ │ │ ├── OgrePlaneBoundedVolume.h
│ │ │ │ │ ├── OgrePlane.h
│ │ │ │ │ ├── OgrePlatform.h
│ │ │ │ │ ├── OgrePlatformInformation.h
│ │ │ │ │ ├── OgrePlugin.h
│ │ │ │ │ ├── OgrePolygon.h
│ │ │ │ │ ├── OgrePose.h
│ │ │ │ │ ├── OgrePredefinedControllers.h
│ │ │ │ │ ├── OgrePrefabFactory.h
│ │ │ │ │ ├── OgrePrerequisites.h
│ │ │ │ │ ├── OgreProfiler.h
│ │ │ │ │ ├── OgreProgressiveMesh.h
│ │ │ │ │ ├── OgrePVRTCCodec.h
│ │ │ │ │ ├── OgreQuaternion.h
│ │ │ │ │ ├── OgreRadixSort.h
│ │ │ │ │ ├── OgreRay.h
│ │ │ │ │ ├── OgreRectangle2D.h
│ │ │ │ │ ├── OgreRectangle.h
│ │ │ │ │ ├── OgreRenderable.h
│ │ │ │ │ ├── OgreRenderObjectListener.h
│ │ │ │ │ ├── OgreRenderOperation.h
│ │ │ │ │ ├── OgreRenderQueue.h
│ │ │ │ │ ├── OgreRenderQueueInvocation.h
│ │ │ │ │ ├── OgreRenderQueueListener.h
│ │ │ │ │ ├── OgreRenderQueueSortingGrouping.h
│ │ │ │ │ ├── OgreRenderSystemCapabilities.h
│ │ │ │ │ ├── OgreRenderSystemCapabilitiesManager.h
│ │ │ │ │ ├── OgreRenderSystemCapabilitiesSerializer.h
│ │ │ │ │ ├── OgreRenderSystem.h
│ │ │ │ │ ├── OgreRenderTarget.h
│ │ │ │ │ ├── OgreRenderTargetListener.h
│ │ │ │ │ ├── OgreRenderTexture.h
│ │ │ │ │ ├── OgreRenderToVertexBuffer.h
│ │ │ │ │ ├── OgreRenderWindow.h
│ │ │ │ │ ├── OgreResourceBackgroundQueue.h
│ │ │ │ │ ├── OgreResourceGroupManager.h
│ │ │ │ │ ├── OgreResource.h
│ │ │ │ │ ├── OgreResourceManager.h
│ │ │ │ │ ├── OgreRibbonTrail.h
│ │ │ │ │ ├── OgreRoot.h
│ │ │ │ │ ├── OgreRotationalSpline.h
│ │ │ │ │ ├── OgreSceneManagerEnumerator.h
│ │ │ │ │ ├── OgreSceneManager.h
│ │ │ │ │ ├── OgreSceneNode.h
│ │ │ │ │ ├── OgreSceneQuery.h
│ │ │ │ │ ├── OgreScriptCompiler.h
│ │ │ │ │ ├── OgreScriptLexer.h
│ │ │ │ │ ├── OgreScriptLoader.h
│ │ │ │ │ ├── OgreScriptParser.h
│ │ │ │ │ ├── OgreScriptTranslator.h
│ │ │ │ │ ├── OgreSearchOps.h
│ │ │ │ │ ├── OgreSerializer.h
│ │ │ │ │ ├── OgreShadowCameraSetupFocused.h
│ │ │ │ │ ├── OgreShadowCameraSetup.h
│ │ │ │ │ ├── OgreShadowCameraSetupLiSPSM.h
│ │ │ │ │ ├── OgreShadowCameraSetupPlaneOptimal.h
│ │ │ │ │ ├── OgreShadowCameraSetupPSSM.h
│ │ │ │ │ ├── OgreShadowCaster.h
│ │ │ │ │ ├── OgreShadowTextureManager.h
│ │ │ │ │ ├── OgreShadowVolumeExtrudeProgram.h
│ │ │ │ │ ├── OgreSharedPtr.h
│ │ │ │ │ ├── OgreSimpleRenderable.h
│ │ │ │ │ ├── OgreSimpleSpline.h
│ │ │ │ │ ├── OgreSingleton.h
│ │ │ │ │ ├── OgreSkeletonFileFormat.h
│ │ │ │ │ ├── OgreSkeleton.h
│ │ │ │ │ ├── OgreSkeletonInstance.h
│ │ │ │ │ ├── OgreSkeletonManager.h
│ │ │ │ │ ├── OgreSkeletonSerializer.h
│ │ │ │ │ ├── OgreSmallVector.h
│ │ │ │ │ ├── OgreSphere.h
│ │ │ │ │ ├── OgreSpotShadowFadePng.h
│ │ │ │ │ ├── OgreStableHeaders.h
│ │ │ │ │ ├── OgreStaticFaceGroup.h
│ │ │ │ │ ├── OgreStaticGeometry.h
│ │ │ │ │ ├── OgreStdHeaders.h
│ │ │ │ │ ├── OgreStreamSerialiser.h
│ │ │ │ │ ├── OgreStringConverter.h
│ │ │ │ │ ├── OgreString.h
│ │ │ │ │ ├── OgreStringInterface.h
│ │ │ │ │ ├── OgreStringSerialiser.h
│ │ │ │ │ ├── OgreStringVector.h
│ │ │ │ │ ├── OgreSubEntity.h
│ │ │ │ │ ├── OgreSubMesh.h
│ │ │ │ │ ├── OgreTagPoint.h
│ │ │ │ │ ├── OgreTangentSpaceCalc.h
│ │ │ │ │ ├── OgreTechnique.h
│ │ │ │ │ ├── OgreTextAreaOverlayElement.h
│ │ │ │ │ ├── OgreTexture.h
│ │ │ │ │ ├── OgreTextureManager.h
│ │ │ │ │ ├── OgreTextureUnitState.h
│ │ │ │ │ ├── OgreTimer.h
│ │ │ │ │ ├── OgreUnifiedHighLevelGpuProgram.h
│ │ │ │ │ ├── OgreUserObjectBindings.h
│ │ │ │ │ ├── OgreUTFString.h
│ │ │ │ │ ├── OgreVector2.h
│ │ │ │ │ ├── OgreVector3.h
│ │ │ │ │ ├── OgreVector4.h
│ │ │ │ │ ├── OgreVertexBoneAssignment.h
│ │ │ │ │ ├── OgreVertexIndexData.h
│ │ │ │ │ ├── OgreViewport.h
│ │ │ │ │ ├── OgreWindowEventUtilities.h
│ │ │ │ │ ├── OgreWireBoundingBox.h
│ │ │ │ │ ├── OgreWorkQueue.h
│ │ │ │ │ ├── OgreZip.h
│ │ │ │ │ ├── OSX
│ │ │ │ │ │ ├── macUtils.h
│ │ │ │ │ │ ├── nib
│ │ │ │ │ │ │ ├── config.nib
│ │ │ │ │ │ │ │ ├── classes.nib
│ │ │ │ │ │ │ │ ├── info.nib
│ │ │ │ │ │ │ │ ├── keyedobjects.nib
│ │ │ │ │ │ │ │ └── objects.nib
│ │ │ │ │ │ │ └── main.nib
│ │ │ │ │ │ │ ├── classes.nib
│ │ │ │ │ │ │ ├── info.nib
│ │ │ │ │ │ │ └── objects.xib
│ │ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ │ ├── OgreErrorDialogImp.h
│ │ │ │ │ │ ├── ogrelogo.png
│ │ │ │ │ │ ├── Ogre_Prefix.pch
│ │ │ │ │ │ └── OgreTimerImp.h
│ │ │ │ │ ├── Threading
│ │ │ │ │ │ ├── OgreDefaultWorkQueue.h
│ │ │ │ │ │ ├── OgreDefaultWorkQueueStandard.h
│ │ │ │ │ │ ├── OgreDefaultWorkQueueTBB.h
│ │ │ │ │ │ ├── OgreThreadDefinesBoost.h
│ │ │ │ │ │ ├── OgreThreadDefines.h
│ │ │ │ │ │ ├── OgreThreadDefinesNone.h
│ │ │ │ │ │ ├── OgreThreadDefinesPoco.h
│ │ │ │ │ │ ├── OgreThreadDefinesTBB.h
│ │ │ │ │ │ ├── OgreThreadHeadersBoost.h
│ │ │ │ │ │ ├── OgreThreadHeaders.h
│ │ │ │ │ │ ├── OgreThreadHeadersPoco.h
│ │ │ │ │ │ └── OgreThreadHeadersTBB.h
│ │ │ │ │ └── WIN32
│ │ │ │ │ ├── OgreConfigDialogImp.h
│ │ │ │ │ ├── OgreErrorDialogImp.h
│ │ │ │ │ ├── OgreMinGWSupport.h
│ │ │ │ │ └── OgreTimerImp.h
│ │ │ │ └── src
│ │ │ │ ├── Android
│ │ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ │ ├── OgreErrorDialog.cpp
│ │ │ │ │ └── OgreTimer.cpp
│ │ │ │ ├── GLX
│ │ │ │ │ ├── GLX_backdrop.h
│ │ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ │ ├── OgreErrorDialog.cpp
│ │ │ │ │ └── OgreTimer.cpp
│ │ │ │ ├── gtk
│ │ │ │ │ ├── GLX_backdrop.h
│ │ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ │ └── OgreErrorDialog.cpp
│ │ │ │ ├── iOS
│ │ │ │ │ ├── macUtils.mm
│ │ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ │ ├── OgreErrorDialog.cpp
│ │ │ │ │ └── OgreTimer.cpp
│ │ │ │ ├── NaCl
│ │ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ │ ├── OgreErrorDialog.cpp
│ │ │ │ │ └── OgreTimer.cpp
│ │ │ │ ├── nedmalloc
│ │ │ │ │ ├── License.txt
│ │ │ │ │ ├── malloc.c.h
│ │ │ │ │ ├── nedmalloc.c
│ │ │ │ │ ├── nedmalloc.h
│ │ │ │ │ └── Readme.txt
│ │ │ │ ├── OgreAlignedAllocator.cpp
│ │ │ │ ├── OgreAnimable.cpp
│ │ │ │ ├── OgreAnimation.cpp
│ │ │ │ ├── OgreAnimationState.cpp
│ │ │ │ ├── OgreAnimationTrack.cpp
│ │ │ │ ├── OgreArchiveManager.cpp
│ │ │ │ ├── OgreAutoParamDataSource.cpp
│ │ │ │ ├── OgreAxisAlignedBox.cpp
│ │ │ │ ├── OgreBillboardChain.cpp
│ │ │ │ ├── OgreBillboard.cpp
│ │ │ │ ├── OgreBillboardParticleRenderer.cpp
│ │ │ │ ├── OgreBillboardSet.cpp
│ │ │ │ ├── OgreBone.cpp
│ │ │ │ ├── OgreBorderPanelOverlayElement.cpp
│ │ │ │ ├── OgreCamera.cpp
│ │ │ │ ├── OgreCodec.cpp
│ │ │ │ ├── OgreColourValue.cpp
│ │ │ │ ├── OgreCommon.cpp
│ │ │ │ ├── OgreCompositionPass.cpp
│ │ │ │ ├── OgreCompositionTargetPass.cpp
│ │ │ │ ├── OgreCompositionTechnique.cpp
│ │ │ │ ├── OgreCompositorChain.cpp
│ │ │ │ ├── OgreCompositor.cpp
│ │ │ │ ├── OgreCompositorInstance.cpp
│ │ │ │ ├── OgreCompositorManager.cpp
│ │ │ │ ├── OgreConfigFile.cpp
│ │ │ │ ├── OgreControllerManager.cpp
│ │ │ │ ├── OgreConvexBody.cpp
│ │ │ │ ├── OgreDataStream.cpp
│ │ │ │ ├── OgreDDSCodec.cpp
│ │ │ │ ├── OgreDefaultHardwareBufferManager.cpp
│ │ │ │ ├── OgreDefaultSceneQueries.cpp
│ │ │ │ ├── OgreDeflate.cpp
│ │ │ │ ├── OgreDepthBuffer.cpp
│ │ │ │ ├── OgreDistanceLodStrategy.cpp
│ │ │ │ ├── OgreDualQuaternion.cpp
│ │ │ │ ├── OgreDynLib.cpp
│ │ │ │ ├── OgreDynLibManager.cpp
│ │ │ │ ├── OgreEdgeListBuilder.cpp
│ │ │ │ ├── OgreEntity.cpp
│ │ │ │ ├── OgreException.cpp
│ │ │ │ ├── OgreExternalTextureSource.cpp
│ │ │ │ ├── OgreExternalTextureSourceManager.cpp
│ │ │ │ ├── OgreFileSystem.cpp
│ │ │ │ ├── OgreFont.cpp
│ │ │ │ ├── OgreFontManager.cpp
│ │ │ │ ├── OgreFreeImageCodec.cpp
│ │ │ │ ├── OgreFrustum.cpp
│ │ │ │ ├── OgreGpuProgram.cpp
│ │ │ │ ├── OgreGpuProgramManager.cpp
│ │ │ │ ├── OgreGpuProgramParams.cpp
│ │ │ │ ├── OgreGpuProgramUsage.cpp
│ │ │ │ ├── OgreHardwareBufferManager.cpp
│ │ │ │ ├── OgreHardwareIndexBuffer.cpp
│ │ │ │ ├── OgreHardwareOcclusionQuery.cpp
│ │ │ │ ├── OgreHardwarePixelBuffer.cpp
│ │ │ │ ├── OgreHardwareVertexBuffer.cpp
│ │ │ │ ├── OgreHighLevelGpuProgram.cpp
│ │ │ │ ├── OgreHighLevelGpuProgramManager.cpp
│ │ │ │ ├── OgreImage.cpp
│ │ │ │ ├── OgreImageResampler.h
│ │ │ │ ├── OgreInstanceBatch.cpp
│ │ │ │ ├── OgreInstanceBatchHW.cpp
│ │ │ │ ├── OgreInstanceBatchHW_VTF.cpp
│ │ │ │ ├── OgreInstanceBatchShader.cpp
│ │ │ │ ├── OgreInstanceBatchVTF.cpp
│ │ │ │ ├── OgreInstancedEntity.cpp
│ │ │ │ ├── OgreInstancedGeometry.cpp
│ │ │ │ ├── OgreInstanceManager.cpp
│ │ │ │ ├── OgreKeyFrame.cpp
│ │ │ │ ├── OgreLight.cpp
│ │ │ │ ├── OgreLodStrategy.cpp
│ │ │ │ ├── OgreLodStrategyManager.cpp
│ │ │ │ ├── OgreLog.cpp
│ │ │ │ ├── OgreLogManager.cpp
│ │ │ │ ├── ogremain.map
│ │ │ │ ├── OgreManualObject.cpp
│ │ │ │ ├── OgreMaterial.cpp
│ │ │ │ ├── OgreMaterialManager.cpp
│ │ │ │ ├── OgreMaterialSerializer.cpp
│ │ │ │ ├── OgreMath.cpp
│ │ │ │ ├── OgreMatrix3.cpp
│ │ │ │ ├── OgreMatrix4.cpp
│ │ │ │ ├── OgreMemoryAllocatedObject.cpp
│ │ │ │ ├── OgreMemoryNedAlloc.cpp
│ │ │ │ ├── OgreMemoryNedPooling.cpp
│ │ │ │ ├── OgreMemoryTracker.cpp
│ │ │ │ ├── OgreMesh.cpp
│ │ │ │ ├── OgreMeshManager.cpp
│ │ │ │ ├── OgreMeshSerializer.cpp
│ │ │ │ ├── OgreMeshSerializerImpl.cpp
│ │ │ │ ├── OgreMovableObject.cpp
│ │ │ │ ├── OgreMovablePlane.cpp
│ │ │ │ ├── OgreNode.cpp
│ │ │ │ ├── OgreNumerics.cpp
│ │ │ │ ├── OgreOptimisedUtil.cpp
│ │ │ │ ├── OgreOptimisedUtilGeneral.cpp
│ │ │ │ ├── OgreOptimisedUtilSSE.cpp
│ │ │ │ ├── OgreOverlayContainer.cpp
│ │ │ │ ├── OgreOverlay.cpp
│ │ │ │ ├── OgreOverlayElementCommands.cpp
│ │ │ │ ├── OgreOverlayElement.cpp
│ │ │ │ ├── OgreOverlayElementFactory.cpp
│ │ │ │ ├── OgreOverlayManager.cpp
│ │ │ │ ├── OgrePanelOverlayElement.cpp
│ │ │ │ ├── OgreParticle.cpp
│ │ │ │ ├── OgreParticleEmitterCommands.cpp
│ │ │ │ ├── OgreParticleEmitter.cpp
│ │ │ │ ├── OgreParticleIterator.cpp
│ │ │ │ ├── OgreParticleScriptCompiler.cpp
│ │ │ │ ├── OgreParticleSystem.cpp
│ │ │ │ ├── OgreParticleSystemManager.cpp
│ │ │ │ ├── OgrePass.cpp
│ │ │ │ ├── OgrePatchMesh.cpp
│ │ │ │ ├── OgrePatchSurface.cpp
│ │ │ │ ├── OgrePixelConversions.h
│ │ │ │ ├── OgrePixelCountLodStrategy.cpp
│ │ │ │ ├── OgrePixelFormat.cpp
│ │ │ │ ├── OgrePlane.cpp
│ │ │ │ ├── OgrePlatformInformation.cpp
│ │ │ │ ├── OgrePolygon.cpp
│ │ │ │ ├── OgrePose.cpp
│ │ │ │ ├── OgrePrecompiledHeaders.cpp
│ │ │ │ ├── OgrePredefinedControllers.cpp
│ │ │ │ ├── OgrePrefabFactory.cpp
│ │ │ │ ├── OgreProfiler.cpp
│ │ │ │ ├── OgreProgressiveMesh.cpp
│ │ │ │ ├── OgrePVRTCCodec.cpp
│ │ │ │ ├── OgreQuaternion.cpp
│ │ │ │ ├── OgreRectangle2D.cpp
│ │ │ │ ├── OgreRenderQueue.cpp
│ │ │ │ ├── OgreRenderQueueInvocation.cpp
│ │ │ │ ├── OgreRenderQueueSortingGrouping.cpp
│ │ │ │ ├── OgreRenderSystemCapabilities.cpp
│ │ │ │ ├── OgreRenderSystemCapabilitiesManager.cpp
│ │ │ │ ├── OgreRenderSystemCapabilitiesSerializer.cpp
│ │ │ │ ├── OgreRenderSystem.cpp
│ │ │ │ ├── OgreRenderTarget.cpp
│ │ │ │ ├── OgreRenderTexture.cpp
│ │ │ │ ├── OgreRenderToVertexBuffer.cpp
│ │ │ │ ├── OgreRenderWindow.cpp
│ │ │ │ ├── OgreResourceBackgroundQueue.cpp
│ │ │ │ ├── OgreResource.cpp
│ │ │ │ ├── OgreResourceGroupManager.cpp
│ │ │ │ ├── OgreResourceManager.cpp
│ │ │ │ ├── OgreRibbonTrail.cpp
│ │ │ │ ├── OgreRoot.cpp
│ │ │ │ ├── OgreRotationSpline.cpp
│ │ │ │ ├── OgreSceneManager.cpp
│ │ │ │ ├── OgreSceneManagerEnumerator.cpp
│ │ │ │ ├── OgreSceneNode.cpp
│ │ │ │ ├── OgreSceneQuery.cpp
│ │ │ │ ├── OgreScriptCompiler.cpp
│ │ │ │ ├── OgreScriptLexer.cpp
│ │ │ │ ├── OgreScriptParser.cpp
│ │ │ │ ├── OgreScriptTranslator.cpp
│ │ │ │ ├── OgreSearchOps.cpp
│ │ │ │ ├── OgreSerializer.cpp
│ │ │ │ ├── OgreShadowCameraSetup.cpp
│ │ │ │ ├── OgreShadowCameraSetupFocused.cpp
│ │ │ │ ├── OgreShadowCameraSetupLiSPSM.cpp
│ │ │ │ ├── OgreShadowCameraSetupPlaneOptimal.cpp
│ │ │ │ ├── OgreShadowCameraSetupPSSM.cpp
│ │ │ │ ├── OgreShadowCaster.cpp
│ │ │ │ ├── OgreShadowTextureManager.cpp
│ │ │ │ ├── OgreShadowVolumeExtrudeProgram.cpp
│ │ │ │ ├── OgreSIMDHelper.h
│ │ │ │ ├── OgreSimpleRenderable.cpp
│ │ │ │ ├── OgreSimpleSpline.cpp
│ │ │ │ ├── OgreSkeleton.cpp
│ │ │ │ ├── OgreSkeletonInstance.cpp
│ │ │ │ ├── OgreSkeletonManager.cpp
│ │ │ │ ├── OgreSkeletonSerializer.cpp
│ │ │ │ ├── OgreSmallVector.cpp
│ │ │ │ ├── OgreStaticGeometry.cpp
│ │ │ │ ├── OgreStreamSerialiser.cpp
│ │ │ │ ├── OgreStringConverter.cpp
│ │ │ │ ├── OgreString.cpp
│ │ │ │ ├── OgreStringInterface.cpp
│ │ │ │ ├── OgreStringSerialiser.cpp
│ │ │ │ ├── OgreSubEntity.cpp
│ │ │ │ ├── OgreSubMesh.cpp
│ │ │ │ ├── OgreTagPoint.cpp
│ │ │ │ ├── OgreTangentSpaceCalc.cpp
│ │ │ │ ├── OgreTechnique.cpp
│ │ │ │ ├── OgreTextAreaOverlayElement.cpp
│ │ │ │ ├── OgreTexture.cpp
│ │ │ │ ├── OgreTextureManager.cpp
│ │ │ │ ├── OgreTextureUnitState.cpp
│ │ │ │ ├── OgreUnifiedHighLevelGpuProgram.cpp
│ │ │ │ ├── OgreUserObjectBindings.cpp
│ │ │ │ ├── OgreUTFString.cpp
│ │ │ │ ├── OgreVector2.cpp
│ │ │ │ ├── OgreVector3.cpp
│ │ │ │ ├── OgreVector4.cpp
│ │ │ │ ├── OgreVertexIndexData.cpp
│ │ │ │ ├── OgreViewport.cpp
│ │ │ │ ├── OgreWindowEventUtilities.cpp
│ │ │ │ ├── OgreWireBoundingBox.cpp
│ │ │ │ ├── OgreWorkQueue.cpp
│ │ │ │ ├── OgreZip.cpp
│ │ │ │ ├── OSX
│ │ │ │ │ ├── macUtils.cpp
│ │ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ │ ├── OgreConfigDialog.mm
│ │ │ │ │ ├── OgreErrorDialog.mm
│ │ │ │ │ └── OgreTimer.cpp
│ │ │ │ ├── Threading
│ │ │ │ │ ├── OgreDefaultWorkQueueStandard.cpp
│ │ │ │ │ └── OgreDefaultWorkQueueTBB.cpp
│ │ │ │ └── WIN32
│ │ │ │ ├── OgreConfigDialog.cpp
│ │ │ │ ├── OgreErrorDialog.cpp
│ │ │ │ ├── ogre.ico
│ │ │ │ ├── ogrelogo.bmp
│ │ │ │ ├── OgreMinGWSupport.cpp
│ │ │ │ ├── OgreTimer.cpp
│ │ │ │ ├── OgreWin32Resources.rc
│ │ │ │ ├── resource.h
│ │ │ │ └── winres.h
│ │ │ ├── PlugIns
│ │ │ │ ├── BSPSceneManager
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreBspLevel.h
│ │ │ │ │ │ ├── OgreBspNode.h
│ │ │ │ │ │ ├── OgreBspPrerequisites.h
│ │ │ │ │ │ ├── OgreBspResourceManager.h
│ │ │ │ │ │ ├── OgreBspSceneManager.h
│ │ │ │ │ │ ├── OgreBspSceneManagerPlugin.h
│ │ │ │ │ │ ├── OgreBspSceneNode.h
│ │ │ │ │ │ ├── OgreQuake3Level.h
│ │ │ │ │ │ ├── OgreQuake3Shader.h
│ │ │ │ │ │ ├── OgreQuake3ShaderManager.h
│ │ │ │ │ │ └── OgreQuake3Types.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreBspLevel.cpp
│ │ │ │ │ ├── OgreBspNode.cpp
│ │ │ │ │ ├── OgreBspResourceManager.cpp
│ │ │ │ │ ├── OgreBspSceneManager.cpp
│ │ │ │ │ ├── OgreBspSceneManagerDll.cpp
│ │ │ │ │ ├── OgreBspSceneManagerPlugin.cpp
│ │ │ │ │ ├── OgreBspSceneNode.cpp
│ │ │ │ │ ├── OgreQuake3Level.cpp
│ │ │ │ │ ├── OgreQuake3Shader.cpp
│ │ │ │ │ └── OgreQuake3ShaderManager.cpp
│ │ │ │ ├── CgProgramManager
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreCgFxScriptLoader.h
│ │ │ │ │ │ ├── OgreCgPlugin.h
│ │ │ │ │ │ ├── OgreCgPrerequisites.h
│ │ │ │ │ │ ├── OgreCgProgramFactory.h
│ │ │ │ │ │ └── OgreCgProgram.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreCgFxScriptLoader.cpp
│ │ │ │ │ ├── OgreCgPlugin.cpp
│ │ │ │ │ ├── OgreCgProgram.cpp
│ │ │ │ │ ├── OgreCgProgramFactory.cpp
│ │ │ │ │ └── OgreCgProgramManagerDll.cpp
│ │ │ │ ├── EXRCodec
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── OgreEXRCodec.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreEXRCodec.cpp
│ │ │ │ │ ├── OgreEXRCodecDll.cpp
│ │ │ │ │ ├── O_IStream.cpp
│ │ │ │ │ └── O_IStream.h
│ │ │ │ ├── OctreeSceneManager
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreOctreeCamera.h
│ │ │ │ │ │ ├── OgreOctree.h
│ │ │ │ │ │ ├── OgreOctreeNode.h
│ │ │ │ │ │ ├── OgreOctreePlugin.h
│ │ │ │ │ │ ├── OgreOctreePrerequisites.h
│ │ │ │ │ │ ├── OgreOctreeSceneManager.h
│ │ │ │ │ │ └── OgreOctreeSceneQuery.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreOctreeCamera.cpp
│ │ │ │ │ ├── OgreOctree.cpp
│ │ │ │ │ ├── OgreOctreeNode.cpp
│ │ │ │ │ ├── OgreOctreePlugin.cpp
│ │ │ │ │ ├── OgreOctreeSceneManager.cpp
│ │ │ │ │ ├── OgreOctreeSceneManagerDll.cpp
│ │ │ │ │ └── OgreOctreeSceneQuery.cpp
│ │ │ │ ├── OctreeZone
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreOctreeZone.h
│ │ │ │ │ │ ├── OgreOctreeZoneOctree.h
│ │ │ │ │ │ ├── OgreOctreeZonePlugin.h
│ │ │ │ │ │ └── OgreOctreeZonePrerequisites.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreOctreeZone.cpp
│ │ │ │ │ ├── OgreOctreeZoneDll.cpp
│ │ │ │ │ ├── OgreOctreeZoneOctree.cpp
│ │ │ │ │ └── OgreOctreeZonePlugin.cpp
│ │ │ │ ├── ParticleFX
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreAreaEmitter.h
│ │ │ │ │ │ ├── OgreBoxEmitterFactory.h
│ │ │ │ │ │ ├── OgreBoxEmitter.h
│ │ │ │ │ │ ├── OgreColourFaderAffector2.h
│ │ │ │ │ │ ├── OgreColourFaderAffectorFactory2.h
│ │ │ │ │ │ ├── OgreColourFaderAffectorFactory.h
│ │ │ │ │ │ ├── OgreColourFaderAffector.h
│ │ │ │ │ │ ├── OgreColourImageAffectorFactory.h
│ │ │ │ │ │ ├── OgreColourImageAffector.h
│ │ │ │ │ │ ├── OgreColourInterpolatorAffectorFactory.h
│ │ │ │ │ │ ├── OgreColourInterpolatorAffector.h
│ │ │ │ │ │ ├── OgreCylinderEmitterFactory.h
│ │ │ │ │ │ ├── OgreCylinderEmitter.h
│ │ │ │ │ │ ├── OgreDeflectorPlaneAffectorFactory.h
│ │ │ │ │ │ ├── OgreDeflectorPlaneAffector.h
│ │ │ │ │ │ ├── OgreDirectionRandomiserAffectorFactory.h
│ │ │ │ │ │ ├── OgreDirectionRandomiserAffector.h
│ │ │ │ │ │ ├── OgreEllipsoidEmitterFactory.h
│ │ │ │ │ │ ├── OgreEllipsoidEmitter.h
│ │ │ │ │ │ ├── OgreHollowEllipsoidEmitterFactory.h
│ │ │ │ │ │ ├── OgreHollowEllipsoidEmitter.h
│ │ │ │ │ │ ├── OgreLinearForceAffectorFactory.h
│ │ │ │ │ │ ├── OgreLinearForceAffector.h
│ │ │ │ │ │ ├── OgreParticleFXPlugin.h
│ │ │ │ │ │ ├── OgreParticleFXPrerequisites.h
│ │ │ │ │ │ ├── OgrePointEmitterFactory.h
│ │ │ │ │ │ ├── OgrePointEmitter.h
│ │ │ │ │ │ ├── OgreRingEmitterFactory.h
│ │ │ │ │ │ ├── OgreRingEmitter.h
│ │ │ │ │ │ ├── OgreRotationAffectorFactory.h
│ │ │ │ │ │ ├── OgreRotationAffector.h
│ │ │ │ │ │ ├── OgreScaleAffectorFactory.h
│ │ │ │ │ │ └── OgreScaleAffector.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreAreaEmitter.cpp
│ │ │ │ │ ├── OgreBoxEmitter.cpp
│ │ │ │ │ ├── OgreColourFaderAffector2.cpp
│ │ │ │ │ ├── OgreColourFaderAffector.cpp
│ │ │ │ │ ├── OgreColourImageAffector.cpp
│ │ │ │ │ ├── OgreColourInterpolatorAffector.cpp
│ │ │ │ │ ├── OgreCylinderEmitter.cpp
│ │ │ │ │ ├── OgreDeflectorPlaneAffector.cpp
│ │ │ │ │ ├── OgreDirectionRandomiserAffector.cpp
│ │ │ │ │ ├── OgreEllipsoidEmitter.cpp
│ │ │ │ │ ├── OgreHollowEllipsoidEmitter.cpp
│ │ │ │ │ ├── OgreLinearForceAffector.cpp
│ │ │ │ │ ├── OgreParticleFX.cpp
│ │ │ │ │ ├── OgreParticleFXPlugin.cpp
│ │ │ │ │ ├── OgrePointEmitter.cpp
│ │ │ │ │ ├── OgreRingEmitter.cpp
│ │ │ │ │ ├── OgreRotationAffector.cpp
│ │ │ │ │ └── OgreScaleAffector.cpp
│ │ │ │ └── PCZSceneManager
│ │ │ │ ├── include
│ │ │ │ │ ├── OgreAntiPortal.h
│ │ │ │ │ ├── OgreCapsule.h
│ │ │ │ │ ├── OgreDefaultZone.h
│ │ │ │ │ ├── OgrePCPlane.h
│ │ │ │ │ ├── OgrePCZCamera.h
│ │ │ │ │ ├── OgrePCZFrustum.h
│ │ │ │ │ ├── OgrePCZLight.h
│ │ │ │ │ ├── OgrePCZoneFactory.h
│ │ │ │ │ ├── OgrePCZone.h
│ │ │ │ │ ├── OgrePCZPlugin.h
│ │ │ │ │ ├── OgrePCZPrerequisites.h
│ │ │ │ │ ├── OgrePCZSceneManager.h
│ │ │ │ │ ├── OgrePCZSceneNode.h
│ │ │ │ │ ├── OgrePCZSceneQuery.h
│ │ │ │ │ ├── OgrePortalBase.h
│ │ │ │ │ ├── OgrePortal.h
│ │ │ │ │ └── OgreSegment.h
│ │ │ │ └── src
│ │ │ │ ├── OgreAntiPortal.cpp
│ │ │ │ ├── OgreCapsule.cpp
│ │ │ │ ├── OgreDefaultZone.cpp
│ │ │ │ ├── OgrePCPlane.cpp
│ │ │ │ ├── OgrePCZCamera.cpp
│ │ │ │ ├── OgrePCZFrustum.cpp
│ │ │ │ ├── OgrePCZLight.cpp
│ │ │ │ ├── OgrePCZone.cpp
│ │ │ │ ├── OgrePCZoneFactory.cpp
│ │ │ │ ├── OgrePCZPlugin.cpp
│ │ │ │ ├── OgrePCZSceneManager.cpp
│ │ │ │ ├── OgrePCZSceneManagerDll.cpp
│ │ │ │ ├── OgrePCZSceneNode.cpp
│ │ │ │ ├── OgrePCZSceneQuery.cpp
│ │ │ │ ├── OgrePortalBase.cpp
│ │ │ │ ├── OgrePortal.cpp
│ │ │ │ └── OgreSegment.cpp
│ │ │ ├── RenderSystems
│ │ │ │ ├── Direct3D11
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreD3D11DepthBuffer.h
│ │ │ │ │ │ ├── OgreD3D11Device.h
│ │ │ │ │ │ ├── OgreD3D11Driver.h
│ │ │ │ │ │ ├── OgreD3D11DriverList.h
│ │ │ │ │ │ ├── OgreD3D11GpuProgram.h
│ │ │ │ │ │ ├── OgreD3D11GpuProgramManager.h
│ │ │ │ │ │ ├── OgreD3D11HardwareBuffer.h
│ │ │ │ │ │ ├── OgreD3D11HardwareBufferManager.h
│ │ │ │ │ │ ├── OgreD3D11HardwareIndexBuffer.h
│ │ │ │ │ │ ├── OgreD3D11HardwareOcclusionQuery.h
│ │ │ │ │ │ ├── OgreD3D11HardwarePixelBuffer.h
│ │ │ │ │ │ ├── OgreD3D11HardwareVertexBuffer.h
│ │ │ │ │ │ ├── OgreD3D11HLSLProgramFactory.h
│ │ │ │ │ │ ├── OgreD3D11HLSLProgram.h
│ │ │ │ │ │ ├── OgreD3D11Mappings.h
│ │ │ │ │ │ ├── OgreD3D11MultiRenderTarget.h
│ │ │ │ │ │ ├── OgreD3D11Plugin.h
│ │ │ │ │ │ ├── OgreD3D11Prerequisites.h
│ │ │ │ │ │ ├── OgreD3D11RenderSystem.h
│ │ │ │ │ │ ├── OgreD3D11RenderToVertexBuffer.h
│ │ │ │ │ │ ├── OgreD3D11RenderWindow.h
│ │ │ │ │ │ ├── OgreD3D11Texture.h
│ │ │ │ │ │ ├── OgreD3D11TextureManager.h
│ │ │ │ │ │ ├── OgreD3D11VertexDeclaration.h
│ │ │ │ │ │ ├── OgreD3D11VideoMode.h
│ │ │ │ │ │ └── OgreD3D11VideoModeList.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreD3D11DepthBuffer.cpp
│ │ │ │ │ ├── OgreD3D11Device.cpp
│ │ │ │ │ ├── OgreD3D11Driver.cpp
│ │ │ │ │ ├── OgreD3D11DriverList.cpp
│ │ │ │ │ ├── OgreD3D11EngineDll.cpp
│ │ │ │ │ ├── OgreD3D11GpuProgram.cpp
│ │ │ │ │ ├── OgreD3D11GpuProgramManager.cpp
│ │ │ │ │ ├── OgreD3D11HardwareBuffer.cpp
│ │ │ │ │ ├── OgreD3D11HardwareBufferManager.cpp
│ │ │ │ │ ├── OgreD3D11HardwareIndexBuffer.cpp
│ │ │ │ │ ├── OgreD3D11HardwareOcclusionQuery.cpp
│ │ │ │ │ ├── OgreD3D11HardwarePixelBuffer.cpp
│ │ │ │ │ ├── OgreD3D11HardwareVertexBuffer.cpp
│ │ │ │ │ ├── OgreD3D11HLSLProgram.cpp
│ │ │ │ │ ├── OgreD3D11HLSLProgramFactory.cpp
│ │ │ │ │ ├── OgreD3D11Mappings.cpp
│ │ │ │ │ ├── OgreD3D11MultiRenderTarget.cpp
│ │ │ │ │ ├── OgreD3D11Plugin.cpp
│ │ │ │ │ ├── OgreD3D11RenderSystem.cpp
│ │ │ │ │ ├── OgreD3D11RenderToVertexBuffer.cpp
│ │ │ │ │ ├── OgreD3D11RenderWindow.cpp
│ │ │ │ │ ├── OgreD3D11Texture.cpp
│ │ │ │ │ ├── OgreD3D11TextureManager.cpp
│ │ │ │ │ ├── OgreD3D11VertexDeclaration.cpp
│ │ │ │ │ ├── OgreD3D11VideoMode.cpp
│ │ │ │ │ └── OgreD3D11VideoModeList.cpp
│ │ │ │ ├── Direct3D9
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreD3D9DepthBuffer.h
│ │ │ │ │ │ ├── OgreD3D9Device.h
│ │ │ │ │ │ ├── OgreD3D9DeviceManager.h
│ │ │ │ │ │ ├── OgreD3D9Driver.h
│ │ │ │ │ │ ├── OgreD3D9DriverList.h
│ │ │ │ │ │ ├── OgreD3D9GpuProgram.h
│ │ │ │ │ │ ├── OgreD3D9GpuProgramManager.h
│ │ │ │ │ │ ├── OgreD3D9HardwareBufferManager.h
│ │ │ │ │ │ ├── OgreD3D9HardwareIndexBuffer.h
│ │ │ │ │ │ ├── OgreD3D9HardwareOcclusionQuery.h
│ │ │ │ │ │ ├── OgreD3D9HardwarePixelBuffer.h
│ │ │ │ │ │ ├── OgreD3D9HardwareVertexBuffer.h
│ │ │ │ │ │ ├── OgreD3D9HLSLProgramFactory.h
│ │ │ │ │ │ ├── OgreD3D9HLSLProgram.h
│ │ │ │ │ │ ├── OgreD3D9Mappings.h
│ │ │ │ │ │ ├── OgreD3D9MultiRenderTarget.h
│ │ │ │ │ │ ├── OgreD3D9Plugin.h
│ │ │ │ │ │ ├── OgreD3D9Prerequisites.h
│ │ │ │ │ │ ├── OgreD3D9RenderSystem.h
│ │ │ │ │ │ ├── OgreD3D9RenderWindow.h
│ │ │ │ │ │ ├── OgreD3D9Resource.h
│ │ │ │ │ │ ├── OgreD3D9ResourceManager.h
│ │ │ │ │ │ ├── OgreD3D9Texture.h
│ │ │ │ │ │ ├── OgreD3D9TextureManager.h
│ │ │ │ │ │ ├── OgreD3D9VertexDeclaration.h
│ │ │ │ │ │ ├── OgreD3D9VideoMode.h
│ │ │ │ │ │ └── OgreD3D9VideoModeList.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreD3D9DepthBuffer.cpp
│ │ │ │ │ ├── OgreD3D9Device.cpp
│ │ │ │ │ ├── OgreD3D9DeviceManager.cpp
│ │ │ │ │ ├── OgreD3D9Driver.cpp
│ │ │ │ │ ├── OgreD3D9DriverList.cpp
│ │ │ │ │ ├── OgreD3D9EngineDll.cpp
│ │ │ │ │ ├── OgreD3D9GpuProgram.cpp
│ │ │ │ │ ├── OgreD3D9GpuProgramManager.cpp
│ │ │ │ │ ├── OgreD3D9HardwareBufferManager.cpp
│ │ │ │ │ ├── OgreD3D9HardwareIndexBuffer.cpp
│ │ │ │ │ ├── OgreD3D9HardwareOcclusionQuery.cpp
│ │ │ │ │ ├── OgreD3D9HardwarePixelBuffer.cpp
│ │ │ │ │ ├── OgreD3D9HardwareVertexBuffer.cpp
│ │ │ │ │ ├── OgreD3D9HLSLProgram.cpp
│ │ │ │ │ ├── OgreD3D9HLSLProgramFactory.cpp
│ │ │ │ │ ├── OgreD3D9Mappings.cpp
│ │ │ │ │ ├── OgreD3D9MultiRenderTarget.cpp
│ │ │ │ │ ├── OgreD3D9Plugin.cpp
│ │ │ │ │ ├── OgreD3D9RenderSystem.cpp
│ │ │ │ │ ├── OgreD3D9RenderWindow.cpp
│ │ │ │ │ ├── OgreD3D9Resource.cpp
│ │ │ │ │ ├── OgreD3D9ResourceManager.cpp
│ │ │ │ │ ├── OgreD3D9Texture.cpp
│ │ │ │ │ ├── OgreD3D9TextureManager.cpp
│ │ │ │ │ ├── OgreD3D9VertexDeclaration.cpp
│ │ │ │ │ ├── OgreD3D9VideoMode.cpp
│ │ │ │ │ └── OgreD3D9VideoModeList.cpp
│ │ │ │ ├── GL
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── GL
│ │ │ │ │ │ │ ├── glew.h
│ │ │ │ │ │ │ ├── glext.h
│ │ │ │ │ │ │ ├── gl.h
│ │ │ │ │ │ │ ├── glxew.h
│ │ │ │ │ │ │ ├── glxext.h
│ │ │ │ │ │ │ ├── glxtokens.h
│ │ │ │ │ │ │ ├── wglew.h
│ │ │ │ │ │ │ └── wglext.h
│ │ │ │ │ │ ├── GLX
│ │ │ │ │ │ │ ├── OgreGLXContext.h
│ │ │ │ │ │ │ ├── OgreGLXGLSupport.h
│ │ │ │ │ │ │ ├── OgreGLXRenderTexture.h
│ │ │ │ │ │ │ ├── OgreGLXUtils.h
│ │ │ │ │ │ │ └── OgreGLXWindow.h
│ │ │ │ │ │ ├── gtk
│ │ │ │ │ │ │ ├── OgreGTKGLSupport.h
│ │ │ │ │ │ │ └── OgreGTKWindow.h
│ │ │ │ │ │ ├── OgreGLATIFSInit.h
│ │ │ │ │ │ ├── OgreGLContext.h
│ │ │ │ │ │ ├── OgreGLDefaultHardwareBufferManager.h
│ │ │ │ │ │ ├── OgreGLDepthBuffer.h
│ │ │ │ │ │ ├── OgreGLFBOMultiRenderTarget.h
│ │ │ │ │ │ ├── OgreGLFBORenderTexture.h
│ │ │ │ │ │ ├── OgreGLFrameBufferObject.h
│ │ │ │ │ │ ├── OgreGLGpuNvparseProgram.h
│ │ │ │ │ │ ├── OgreGLGpuProgram.h
│ │ │ │ │ │ ├── OgreGLGpuProgramManager.h
│ │ │ │ │ │ ├── OgreGLHardwareBufferManager.h
│ │ │ │ │ │ ├── OgreGLHardwareIndexBuffer.h
│ │ │ │ │ │ ├── OgreGLHardwareOcclusionQuery.h
│ │ │ │ │ │ ├── OgreGLHardwarePixelBuffer.h
│ │ │ │ │ │ ├── OgreGLHardwareVertexBuffer.h
│ │ │ │ │ │ ├── OgreGLPBRenderTexture.h
│ │ │ │ │ │ ├── OgreGLPBuffer.h
│ │ │ │ │ │ ├── OgreGLPixelFormat.h
│ │ │ │ │ │ ├── OgreGLPlugin.h
│ │ │ │ │ │ ├── OgreGLPrerequisites.h
│ │ │ │ │ │ ├── OgreGLRenderSystem.h
│ │ │ │ │ │ ├── OgreGLRenderTexture.h
│ │ │ │ │ │ ├── OgreGLRenderToVertexBuffer.h
│ │ │ │ │ │ ├── OgreGLSupport.h
│ │ │ │ │ │ ├── OgreGLTexture.h
│ │ │ │ │ │ ├── OgreGLTextureManager.h
│ │ │ │ │ │ ├── OgreSDLGLSupport.h
│ │ │ │ │ │ ├── OgreSDLPrerequisites.h
│ │ │ │ │ │ ├── OgreSDLWindow.h
│ │ │ │ │ │ ├── OgreWin32Context.h
│ │ │ │ │ │ ├── OgreWin32GLSupport.h
│ │ │ │ │ │ ├── OgreWin32Prerequisites.h
│ │ │ │ │ │ ├── OgreWin32RenderTexture.h
│ │ │ │ │ │ ├── OgreWin32Window.h
│ │ │ │ │ │ └── OSX
│ │ │ │ │ │ ├── OgreOSXCarbonContext.h
│ │ │ │ │ │ ├── OgreOSXCarbonWindow.h
│ │ │ │ │ │ ├── OgreOSXCGLContext.h
│ │ │ │ │ │ ├── OgreOSXCocoaContext.h
│ │ │ │ │ │ ├── OgreOSXCocoaView.h
│ │ │ │ │ │ ├── OgreOSXCocoaWindowDelegate.h
│ │ │ │ │ │ ├── OgreOSXCocoaWindow.h
│ │ │ │ │ │ ├── OgreOSXContext.h
│ │ │ │ │ │ ├── OgreOSXGLSupport.h
│ │ │ │ │ │ ├── OgreOSXRenderTexture.h
│ │ │ │ │ │ └── OgreOSXWindow.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── atifs
│ │ │ │ │ │ ├── include
│ │ │ │ │ │ │ ├── ATI_FS_GLGpuProgram.h
│ │ │ │ │ │ │ ├── Compiler2Pass.h
│ │ │ │ │ │ │ └── ps_1_4.h
│ │ │ │ │ │ └── src
│ │ │ │ │ │ ├── ATI_FS_GLGpuProgram.cpp
│ │ │ │ │ │ ├── Compiler2Pass.cpp
│ │ │ │ │ │ └── ps_1_4.cpp
│ │ │ │ │ ├── glew.cpp
│ │ │ │ │ ├── GLSL
│ │ │ │ │ │ ├── include
│ │ │ │ │ │ │ ├── OgreGLSLExtSupport.h
│ │ │ │ │ │ │ ├── OgreGLSLGpuProgram.h
│ │ │ │ │ │ │ ├── OgreGLSLLinkProgram.h
│ │ │ │ │ │ │ ├── OgreGLSLLinkProgramManager.h
│ │ │ │ │ │ │ ├── OgreGLSLPreprocessor.h
│ │ │ │ │ │ │ ├── OgreGLSLProgramFactory.h
│ │ │ │ │ │ │ └── OgreGLSLProgram.h
│ │ │ │ │ │ └── src
│ │ │ │ │ │ ├── OgreGLSLExtSupport.cpp
│ │ │ │ │ │ ├── OgreGLSLGpuProgram.cpp
│ │ │ │ │ │ ├── OgreGLSLLinkProgram.cpp
│ │ │ │ │ │ ├── OgreGLSLLinkProgramManager.cpp
│ │ │ │ │ │ ├── OgreGLSLPreprocessor.cpp
│ │ │ │ │ │ ├── OgreGLSLProgram.cpp
│ │ │ │ │ │ └── OgreGLSLProgramFactory.cpp
│ │ │ │ │ ├── GLX
│ │ │ │ │ │ ├── OgreGLUtil.h
│ │ │ │ │ │ ├── OgreGLXContext.cpp
│ │ │ │ │ │ ├── OgreGLXGLSupport.cpp
│ │ │ │ │ │ ├── OgreGLXRenderTexture.cpp
│ │ │ │ │ │ └── OgreGLXWindow.cpp
│ │ │ │ │ ├── gtk
│ │ │ │ │ │ ├── OgreGLUtil.h
│ │ │ │ │ │ ├── OgreGTKGLSupport.cpp
│ │ │ │ │ │ └── OgreGTKWindow.cpp
│ │ │ │ │ ├── nvparse
│ │ │ │ │ │ ├── avp1.0_impl.cpp
│ │ │ │ │ │ ├── macro.h
│ │ │ │ │ │ ├── Makefile.reyacc
│ │ │ │ │ │ ├── nvparse.cpp
│ │ │ │ │ │ ├── nvparse_errors.cpp
│ │ │ │ │ │ ├── nvparse_errors.h
│ │ │ │ │ │ ├── nvparse_externs.h
│ │ │ │ │ │ ├── nvparse.h
│ │ │ │ │ │ ├── ps1.0_grammar.y
│ │ │ │ │ │ ├── _ps1.0_lexer.cpp
│ │ │ │ │ │ ├── _ps1.0_parser.cpp
│ │ │ │ │ │ ├── _ps1.0_parser.h
│ │ │ │ │ │ ├── ps1.0_program.cpp
│ │ │ │ │ │ ├── ps1.0_program.h
│ │ │ │ │ │ ├── ps1.0__test_main.cpp
│ │ │ │ │ │ ├── ps1.0_tokens.l
│ │ │ │ │ │ ├── rc1.0_combiners.cpp
│ │ │ │ │ │ ├── rc1.0_combiners.h
│ │ │ │ │ │ ├── rc1.0_final.cpp
│ │ │ │ │ │ ├── rc1.0_final.h
│ │ │ │ │ │ ├── rc1.0_general.cpp
│ │ │ │ │ │ ├── rc1.0_general.h
│ │ │ │ │ │ ├── rc1.0_grammar.y
│ │ │ │ │ │ ├── _rc1.0_lexer.cpp
│ │ │ │ │ │ ├── _rc1.0_parser.cpp
│ │ │ │ │ │ ├── _rc1.0_parser.h
│ │ │ │ │ │ ├── rc1.0_register.h
│ │ │ │ │ │ ├── rc1.0_tokens.l
│ │ │ │ │ │ ├── ts1.0_grammar.y
│ │ │ │ │ │ ├── ts1.0_inst.cpp
│ │ │ │ │ │ ├── ts1.0_inst.h
│ │ │ │ │ │ ├── ts1.0_inst_list.cpp
│ │ │ │ │ │ ├── ts1.0_inst_list.h
│ │ │ │ │ │ ├── _ts1.0_lexer.cpp
│ │ │ │ │ │ ├── _ts1.0_parser.cpp
│ │ │ │ │ │ ├── _ts1.0_parser.h
│ │ │ │ │ │ ├── ts1.0_tokens.l
│ │ │ │ │ │ ├── vcp1.0_impl.cpp
│ │ │ │ │ │ ├── vp1.0_impl.cpp
│ │ │ │ │ │ ├── vs1.0_grammar.y
│ │ │ │ │ │ ├── vs1.0_inst.cpp
│ │ │ │ │ │ ├── vs1.0_inst.h
│ │ │ │ │ │ ├── vs1.0_inst_list.cpp
│ │ │ │ │ │ ├── vs1.0_inst_list.h
│ │ │ │ │ │ ├── _vs1.0_lexer.cpp
│ │ │ │ │ │ ├── _vs1.0_parser.cpp
│ │ │ │ │ │ ├── _vs1.0_parser.h
│ │ │ │ │ │ ├── vs1.0_tokens.l
│ │ │ │ │ │ ├── vsp1.0_impl.cpp
│ │ │ │ │ │ └── winheaders
│ │ │ │ │ │ └── unistd.h
│ │ │ │ │ ├── OgreGLATIFSInit.cpp
│ │ │ │ │ ├── OgreGLContext.cpp
│ │ │ │ │ ├── OgreGLDefaultHardwareBufferManager.cpp
│ │ │ │ │ ├── OgreGLDepthBuffer.cpp
│ │ │ │ │ ├── OgreGLEngineDll.cpp
│ │ │ │ │ ├── OgreGLFBOMultiRenderTarget.cpp
│ │ │ │ │ ├── OgreGLFBORenderTexture.cpp
│ │ │ │ │ ├── OgreGLFrameBufferObject.cpp
│ │ │ │ │ ├── OgreGLGpuNvparseProgram.cpp
│ │ │ │ │ ├── OgreGLGpuProgram.cpp
│ │ │ │ │ ├── OgreGLGpuProgramManager.cpp
│ │ │ │ │ ├── OgreGLHardwareBufferManager.cpp
│ │ │ │ │ ├── OgreGLHardwareIndexBuffer.cpp
│ │ │ │ │ ├── OgreGLHardwareOcclusionQuery.cpp
│ │ │ │ │ ├── OgreGLHardwarePixelBuffer.cpp
│ │ │ │ │ ├── OgreGLHardwareVertexBuffer.cpp
│ │ │ │ │ ├── OgreGLPBRenderTexture.cpp
│ │ │ │ │ ├── OgreGLPixelFormat.cpp
│ │ │ │ │ ├── OgreGLPlugin.cpp
│ │ │ │ │ ├── OgreGLRenderSystem.cpp
│ │ │ │ │ ├── OgreGLRenderTexture.cpp
│ │ │ │ │ ├── OgreGLRenderToVertexBuffer.cpp
│ │ │ │ │ ├── OgreGLSupport.cpp
│ │ │ │ │ ├── OgreGLTexture.cpp
│ │ │ │ │ ├── OgreGLTextureManager.cpp
│ │ │ │ │ ├── OgreWin32GLSupport.cpp
│ │ │ │ │ ├── OgreWin32RenderTexture.cpp
│ │ │ │ │ ├── OgreWin32Window.cpp
│ │ │ │ │ ├── OSX
│ │ │ │ │ │ ├── OgreGLUtil.h
│ │ │ │ │ │ ├── OgreOSXCarbonContext.cpp
│ │ │ │ │ │ ├── OgreOSXCarbonWindow.cpp
│ │ │ │ │ │ ├── OgreOSXCGLContext.cpp
│ │ │ │ │ │ ├── OgreOSXCocoaContext.mm
│ │ │ │ │ │ ├── OgreOSXCocoaView.mm
│ │ │ │ │ │ ├── OgreOSXCocoaWindowDelegate.mm
│ │ │ │ │ │ ├── OgreOSXCocoaWindow.mm
│ │ │ │ │ │ ├── OgreOSXContext.cpp
│ │ │ │ │ │ ├── OgreOSXGLSupport.mm
│ │ │ │ │ │ ├── OgreOSXRenderTexture.cpp
│ │ │ │ │ │ └── OgreOSXWindow.cpp
│ │ │ │ │ ├── SDL
│ │ │ │ │ │ ├── OgreGLUtil.h
│ │ │ │ │ │ ├── OgreSDLGLSupport.cpp
│ │ │ │ │ │ └── OgreSDLWindow.cpp
│ │ │ │ │ └── win32
│ │ │ │ │ ├── OgreGLUtil.h
│ │ │ │ │ └── OgreWin32Context.cpp
│ │ │ │ ├── GLES
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── EAGL
│ │ │ │ │ │ │ ├── OgreEAGLESContext.h
│ │ │ │ │ │ │ ├── OgreEAGLRenderTexture.h
│ │ │ │ │ │ │ ├── OgreEAGLSupport.h
│ │ │ │ │ │ │ ├── OgreEAGLViewController.h
│ │ │ │ │ │ │ ├── OgreEAGLView.h
│ │ │ │ │ │ │ ├── OgreEAGLWindow.h
│ │ │ │ │ │ │ └── OgreGLESUtil.h
│ │ │ │ │ │ ├── EGL
│ │ │ │ │ │ │ ├── OgreEGLContext.h
│ │ │ │ │ │ │ ├── OgreEGLRenderTexture.h
│ │ │ │ │ │ │ ├── OgreEGLSupport.h
│ │ │ │ │ │ │ ├── OgreEGLWindow.h
│ │ │ │ │ │ │ ├── OgreGLESUtil.h
│ │ │ │ │ │ │ ├── WIN32
│ │ │ │ │ │ │ │ ├── OgreGLESUtil.h
│ │ │ │ │ │ │ │ ├── OgreWin32EGLContext.h
│ │ │ │ │ │ │ │ ├── OgreWin32EGLRenderTexture.h
│ │ │ │ │ │ │ │ ├── OgreWin32EGLSupport.h
│ │ │ │ │ │ │ │ └── OgreWin32EGLWindow.h
│ │ │ │ │ │ │ └── X11
│ │ │ │ │ │ │ ├── OgreGLESUtil.h
│ │ │ │ │ │ │ ├── OgreX11EGLContext.h
│ │ │ │ │ │ │ ├── OgreX11EGLRenderTexture.h
│ │ │ │ │ │ │ ├── OgreX11EGLSupport.h
│ │ │ │ │ │ │ └── OgreX11EGLWindow.h
│ │ │ │ │ │ ├── OgreGLESContext.h
│ │ │ │ │ │ ├── OgreGLESDefaultHardwareBufferManager.h
│ │ │ │ │ │ ├── OgreGLESDepthBuffer.h
│ │ │ │ │ │ ├── OgreGLESFBOMultiRenderTarget.h
│ │ │ │ │ │ ├── OgreGLESFBORenderTexture.h
│ │ │ │ │ │ ├── OgreGLESFrameBufferObject.h
│ │ │ │ │ │ ├── OgreGLESGpuProgramManager.h
│ │ │ │ │ │ ├── OgreGLESHardwareBufferManager.h
│ │ │ │ │ │ ├── OgreGLESHardwareIndexBuffer.h
│ │ │ │ │ │ ├── OgreGLESHardwarePixelBuffer.h
│ │ │ │ │ │ ├── OgreGLESHardwareVertexBuffer.h
│ │ │ │ │ │ ├── OgreGLESPBRenderTexture.h
│ │ │ │ │ │ ├── OgreGLESPBuffer.h
│ │ │ │ │ │ ├── OgreGLESPixelFormat.h
│ │ │ │ │ │ ├── OgreGLESPlugin.h
│ │ │ │ │ │ ├── OgreGLESPrerequisites.h
│ │ │ │ │ │ ├── OgreGLESRenderSystem.h
│ │ │ │ │ │ ├── OgreGLESRenderTexture.h
│ │ │ │ │ │ ├── OgreGLESSupport.h
│ │ │ │ │ │ ├── OgreGLESTexture.h
│ │ │ │ │ │ └── OgreGLESTextureManager.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── EAGL
│ │ │ │ │ │ ├── OgreEAGLESContext.mm
│ │ │ │ │ │ ├── OgreEAGLRenderTexture.mm
│ │ │ │ │ │ ├── OgreEAGLSupport.mm
│ │ │ │ │ │ ├── OgreEAGLViewController.mm
│ │ │ │ │ │ ├── OgreEAGLView.mm
│ │ │ │ │ │ └── OgreEAGLWindow.mm
│ │ │ │ │ ├── EGL
│ │ │ │ │ │ ├── OgreEGLContext.cpp
│ │ │ │ │ │ ├── OgreEGLRenderTexture.cpp
│ │ │ │ │ │ ├── OgreEGLSupport.cpp
│ │ │ │ │ │ ├── OgreEGLWindow.cpp
│ │ │ │ │ │ ├── WIN32
│ │ │ │ │ │ │ ├── OgreWin32EGLContext.cpp
│ │ │ │ │ │ │ ├── OgreWin32EGLRenderTexture.cpp
│ │ │ │ │ │ │ ├── OgreWin32EGLSupport.cpp
│ │ │ │ │ │ │ └── OgreWin32EGLWindow.cpp
│ │ │ │ │ │ └── X11
│ │ │ │ │ │ ├── OgreX11EGLContext.cpp
│ │ │ │ │ │ ├── OgreX11EGLRenderTexture.cpp
│ │ │ │ │ │ ├── OgreX11EGLSupport.cpp
│ │ │ │ │ │ └── OgreX11EGLWindow.cpp
│ │ │ │ │ ├── OgreGLESContext.cpp
│ │ │ │ │ ├── OgreGLESDefaultHardwareBufferManager.cpp
│ │ │ │ │ ├── OgreGLESDepthBuffer.cpp
│ │ │ │ │ ├── OgreGLESEngineDll.cpp
│ │ │ │ │ ├── OgreGLESFBOMultiRenderTarget.cpp
│ │ │ │ │ ├── OgreGLESFBORenderTexture.cpp
│ │ │ │ │ ├── OgreGLESFrameBufferObject.cpp
│ │ │ │ │ ├── OgreGLESGpuProgramManager.cpp
│ │ │ │ │ ├── OgreGLESHardwareBufferManager.cpp
│ │ │ │ │ ├── OgreGLESHardwareIndexBuffer.cpp
│ │ │ │ │ ├── OgreGLESHardwarePixelBuffer.cpp
│ │ │ │ │ ├── OgreGLESHardwareVertexBuffer.cpp
│ │ │ │ │ ├── OgreGLESPBRenderTexture.cpp
│ │ │ │ │ ├── OgreGLESPixelFormat.cpp
│ │ │ │ │ ├── OgreGLESPlugin.cpp
│ │ │ │ │ ├── OgreGLESRenderSystem.cpp
│ │ │ │ │ ├── OgreGLESRenderTexture.cpp
│ │ │ │ │ ├── OgreGLESSupport.cpp
│ │ │ │ │ ├── OgreGLESTexture.cpp
│ │ │ │ │ └── OgreGLESTextureManager.cpp
│ │ │ │ └── GLES2
│ │ │ │ ├── include
│ │ │ │ │ ├── Android
│ │ │ │ │ │ ├── OgreAndroidGLContext.h
│ │ │ │ │ │ ├── OgreAndroidGLSupport.h
│ │ │ │ │ │ ├── OgreAndroidWindow.h
│ │ │ │ │ │ └── OgreGLES2Util.h
│ │ │ │ │ ├── EAGL
│ │ │ │ │ │ ├── OgreEAGL2Support.h
│ │ │ │ │ │ ├── OgreEAGL2ViewController.h
│ │ │ │ │ │ ├── OgreEAGL2View.h
│ │ │ │ │ │ ├── OgreEAGL2Window.h
│ │ │ │ │ │ ├── OgreEAGLES2Context.h
│ │ │ │ │ │ └── OgreGLES2Util.h
│ │ │ │ │ ├── EGL
│ │ │ │ │ │ ├── OgreEGLContext.h
│ │ │ │ │ │ ├── OgreEGLRenderTexture.h
│ │ │ │ │ │ ├── OgreEGLSupport.h
│ │ │ │ │ │ ├── OgreEGLWindow.h
│ │ │ │ │ │ ├── OgreGLES2Util.h
│ │ │ │ │ │ ├── WIN32
│ │ │ │ │ │ │ ├── OgreGLES2Util.h
│ │ │ │ │ │ │ ├── OgreWin32EGLContext.h
│ │ │ │ │ │ │ ├── OgreWin32EGLRenderTexture.h
│ │ │ │ │ │ │ ├── OgreWin32EGLSupport.h
│ │ │ │ │ │ │ └── OgreWin32EGLWindow.h
│ │ │ │ │ │ └── X11
│ │ │ │ │ │ ├── OgreGLES2Util.h
│ │ │ │ │ │ ├── OgreX11EGLContext.h
│ │ │ │ │ │ ├── OgreX11EGLRenderTexture.h
│ │ │ │ │ │ ├── OgreX11EGLSupport.h
│ │ │ │ │ │ └── OgreX11EGLWindow.h
│ │ │ │ │ ├── NaCl
│ │ │ │ │ │ ├── OgreGLES2Util.h
│ │ │ │ │ │ ├── OgreNaClGLContext.h
│ │ │ │ │ │ ├── OgreNaClGLSupport.h
│ │ │ │ │ │ └── OgreNaClWindow.h
│ │ │ │ │ ├── OgreGLES2Context.h
│ │ │ │ │ ├── OgreGLES2DefaultHardwareBufferManager.h
│ │ │ │ │ ├── OgreGLES2DepthBuffer.h
│ │ │ │ │ ├── OgreGLES2FBOMultiRenderTarget.h
│ │ │ │ │ ├── OgreGLES2FBORenderTexture.h
│ │ │ │ │ ├── OgreGLES2FrameBufferObject.h
│ │ │ │ │ ├── OgreGLES2GpuProgram.h
│ │ │ │ │ ├── OgreGLES2GpuProgramManager.h
│ │ │ │ │ ├── OgreGLES2HardwareBufferManager.h
│ │ │ │ │ ├── OgreGLES2HardwareIndexBuffer.h
│ │ │ │ │ ├── OgreGLES2HardwareOcclusionQuery.h
│ │ │ │ │ ├── OgreGLES2HardwarePixelBuffer.h
│ │ │ │ │ ├── OgreGLES2HardwareVertexBuffer.h
│ │ │ │ │ ├── OgreGLES2InternalShaders.h
│ │ │ │ │ ├── OgreGLES2PixelFormat.h
│ │ │ │ │ ├── OgreGLES2Plugin.h
│ │ │ │ │ ├── OgreGLES2Prerequisites.h
│ │ │ │ │ ├── OgreGLES2RenderSystem.h
│ │ │ │ │ ├── OgreGLES2RenderTexture.h
│ │ │ │ │ ├── OgreGLES2Support.h
│ │ │ │ │ ├── OgreGLES2Texture.h
│ │ │ │ │ └── OgreGLES2TextureManager.h
│ │ │ │ └── src
│ │ │ │ ├── Android
│ │ │ │ │ ├── OgreAndroidGLContext.cpp
│ │ │ │ │ ├── OgreAndroidGLSupport.cpp
│ │ │ │ │ └── OgreAndroidWindow.cpp
│ │ │ │ ├── EAGL
│ │ │ │ │ ├── OgreEAGL2Support.mm
│ │ │ │ │ ├── OgreEAGL2ViewController.mm
│ │ │ │ │ ├── OgreEAGL2View.mm
│ │ │ │ │ ├── OgreEAGL2Window.mm
│ │ │ │ │ └── OgreEAGLES2Context.mm
│ │ │ │ ├── EGL
│ │ │ │ │ ├── OgreEGLContext.cpp
│ │ │ │ │ ├── OgreEGLRenderTexture.cpp
│ │ │ │ │ ├── OgreEGLSupport.cpp
│ │ │ │ │ ├── OgreEGLWindow.cpp
│ │ │ │ │ ├── WIN32
│ │ │ │ │ │ ├── OgreWin32EGLContext.cpp
│ │ │ │ │ │ ├── OgreWin32EGLRenderTexture.cpp
│ │ │ │ │ │ ├── OgreWin32EGLSupport.cpp
│ │ │ │ │ │ └── OgreWin32EGLWindow.cpp
│ │ │ │ │ └── X11
│ │ │ │ │ ├── OgreX11EGLContext.cpp
│ │ │ │ │ ├── OgreX11EGLRenderTexture.cpp
│ │ │ │ │ ├── OgreX11EGLSupport.cpp
│ │ │ │ │ └── OgreX11EGLWindow.cpp
│ │ │ │ ├── GLSLES
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── OgreGLSLESCgProgramFactory.h
│ │ │ │ │ │ ├── OgreGLSLESCgProgram.h
│ │ │ │ │ │ ├── OgreGLSLESExtSupport.h
│ │ │ │ │ │ ├── OgreGLSLESGpuProgram.h
│ │ │ │ │ │ ├── OgreGLSLESLinkProgram.h
│ │ │ │ │ │ ├── OgreGLSLESLinkProgramManager.h
│ │ │ │ │ │ ├── OgreGLSLESPreprocessor.h
│ │ │ │ │ │ ├── OgreGLSLESProgramCommon.h
│ │ │ │ │ │ ├── OgreGLSLESProgramFactory.h
│ │ │ │ │ │ ├── OgreGLSLESProgram.h
│ │ │ │ │ │ ├── OgreGLSLESProgramManagerCommon.h
│ │ │ │ │ │ ├── OgreGLSLESProgramPipeline.h
│ │ │ │ │ │ └── OgreGLSLESProgramPipelineManager.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── OgreGLSLESCgProgram.cpp
│ │ │ │ │ ├── OgreGLSLESCgProgramFactory.cpp
│ │ │ │ │ ├── OgreGLSLESExtSupport.cpp
│ │ │ │ │ ├── OgreGLSLESGpuProgram.cpp
│ │ │ │ │ ├── OgreGLSLESLinkProgram.cpp
│ │ │ │ │ ├── OgreGLSLESLinkProgramManager.cpp
│ │ │ │ │ ├── OgreGLSLESPreprocessor.cpp
│ │ │ │ │ ├── OgreGLSLESProgramCommon.cpp
│ │ │ │ │ ├── OgreGLSLESProgram.cpp
│ │ │ │ │ ├── OgreGLSLESProgramFactory.cpp
│ │ │ │ │ ├── OgreGLSLESProgramManagerCommon.cpp
│ │ │ │ │ ├── OgreGLSLESProgramPipeline.cpp
│ │ │ │ │ └── OgreGLSLESProgramPipelineManager.cpp
│ │ │ │ ├── NaCl
│ │ │ │ │ ├── OgreNaClGLContext.cpp
│ │ │ │ │ ├── OgreNaClGLSupport.cpp
│ │ │ │ │ └── OgreNaClWindow.cpp
│ │ │ │ ├── OgreGLES2Context.cpp
│ │ │ │ ├── OgreGLES2DefaultHardwareBufferManager.cpp
│ │ │ │ ├── OgreGLES2DepthBuffer.cpp
│ │ │ │ ├── OgreGLES2EngineDll.cpp
│ │ │ │ ├── OgreGLES2FBOMultiRenderTarget.cpp
│ │ │ │ ├── OgreGLES2FBORenderTexture.cpp
│ │ │ │ ├── OgreGLES2FrameBufferObject.cpp
│ │ │ │ ├── OgreGLES2GpuProgram.cpp
│ │ │ │ ├── OgreGLES2GpuProgramManager.cpp
│ │ │ │ ├── OgreGLES2HardwareBufferManager.cpp
│ │ │ │ ├── OgreGLES2HardwareIndexBuffer.cpp
│ │ │ │ ├── OgreGLES2HardwareOcclusionQuery.cpp
│ │ │ │ ├── OgreGLES2HardwarePixelBuffer.cpp
│ │ │ │ ├── OgreGLES2HardwareVertexBuffer.cpp
│ │ │ │ ├── OgreGLES2PixelFormat.cpp
│ │ │ │ ├── OgreGLES2Plugin.cpp
│ │ │ │ ├── OgreGLES2RenderSystem.cpp
│ │ │ │ ├── OgreGLES2RenderTexture.cpp
│ │ │ │ ├── OgreGLES2Support.cpp
│ │ │ │ ├── OgreGLES2Texture.cpp
│ │ │ │ └── OgreGLES2TextureManager.cpp
│ │ │ └── tags
│ │ ├── opencv-2.4.5
│ │ │ ├── 3rdparty
│ │ │ │ ├── ffmpeg
│ │ │ │ │ └── ffopencv.c
│ │ │ │ ├── include
│ │ │ │ │ ├── dshow
│ │ │ │ │ │ ├── amvideo.h
│ │ │ │ │ │ ├── audevcod.h
│ │ │ │ │ │ ├── bdatypes.h
│ │ │ │ │ │ ├── control.h
│ │ │ │ │ │ ├── ddraw.h
│ │ │ │ │ │ ├── dshow.h
│ │ │ │ │ │ ├── dsound.h
│ │ │ │ │ │ ├── dvdmedia.h
│ │ │ │ │ │ ├── errors.h
│ │ │ │ │ │ ├── evcode.h
│ │ │ │ │ │ ├── ksuuids.h
│ │ │ │ │ │ ├── _mingw_dxhelper.h
│ │ │ │ │ │ ├── _mingw_unicode.h
│ │ │ │ │ │ ├── strmif.h
│ │ │ │ │ │ └── uuids.h
│ │ │ │ │ ├── ffmpeg_
│ │ │ │ │ │ ├── libavcodec
│ │ │ │ │ │ │ ├── avcodec.h
│ │ │ │ │ │ │ ├── avfft.h
│ │ │ │ │ │ │ ├── dxva2.h
│ │ │ │ │ │ │ ├── opt.h
│ │ │ │ │ │ │ ├── vaapi.h
│ │ │ │ │ │ │ ├── vda.h
│ │ │ │ │ │ │ ├── vdpau.h
│ │ │ │ │ │ │ ├── version.h
│ │ │ │ │ │ │ └── xvmc.h
│ │ │ │ │ │ ├── libavdevice
│ │ │ │ │ │ │ └── avdevice.h
│ │ │ │ │ │ ├── libavformat
│ │ │ │ │ │ │ ├── avformat.h
│ │ │ │ │ │ │ ├── avio.h
│ │ │ │ │ │ │ └── version.h
│ │ │ │ │ │ ├── libavutil
│ │ │ │ │ │ │ ├── adler32.h
│ │ │ │ │ │ │ ├── aes.h
│ │ │ │ │ │ │ ├── attributes.h
│ │ │ │ │ │ │ ├── audioconvert.h
│ │ │ │ │ │ │ ├── avassert.h
│ │ │ │ │ │ │ ├── avconfig.h
│ │ │ │ │ │ │ ├── avstring.h
│ │ │ │ │ │ │ ├── avutil.h
│ │ │ │ │ │ │ ├── base64.h
│ │ │ │ │ │ │ ├── bswap.h
│ │ │ │ │ │ │ ├── common.h
│ │ │ │ │ │ │ ├── cpu.h
│ │ │ │ │ │ │ ├── crc.h
│ │ │ │ │ │ │ ├── dict.h
│ │ │ │ │ │ │ ├── error.h
│ │ │ │ │ │ │ ├── eval.h
│ │ │ │ │ │ │ ├── fifo.h
│ │ │ │ │ │ │ ├── file.h
│ │ │ │ │ │ │ ├── imgutils.h
│ │ │ │ │ │ │ ├── intfloat.h
│ │ │ │ │ │ │ ├── intfloat_readwrite.h
│ │ │ │ │ │ │ ├── intreadwrite.h
│ │ │ │ │ │ │ ├── lfg.h
│ │ │ │ │ │ │ ├── log.h
│ │ │ │ │ │ │ ├── lzo.h
│ │ │ │ │ │ │ ├── mathematics.h
│ │ │ │ │ │ │ ├── md5.h
│ │ │ │ │ │ │ ├── mem.h
│ │ │ │ │ │ │ ├── opt.h
│ │ │ │ │ │ │ ├── parseutils.h
│ │ │ │ │ │ │ ├── pixdesc.h
│ │ │ │ │ │ │ ├── pixfmt.h
│ │ │ │ │ │ │ ├── random_seed.h
│ │ │ │ │ │ │ ├── rational.h
│ │ │ │ │ │ │ ├── samplefmt.h
│ │ │ │ │ │ │ ├── sha1.h
│ │ │ │ │ │ │ └── sha.h
│ │ │ │ │ │ └── libswscale
│ │ │ │ │ │ └── swscale.h
│ │ │ │ │ ├── msc_inttypes.h
│ │ │ │ │ ├── msc_stdint.h
│ │ │ │ │ └── MultiMon.h
│ │ │ │ ├── libjasper
│ │ │ │ │ ├── jas_cm.c
│ │ │ │ │ ├── jas_debug.c
│ │ │ │ │ ├── jas_getopt.c
│ │ │ │ │ ├── jas_icc.c
│ │ │ │ │ ├── jas_iccdata.c
│ │ │ │ │ ├── jas_image.c
│ │ │ │ │ ├── jas_init.c
│ │ │ │ │ ├── jas_malloc.c
│ │ │ │ │ ├── jasper
│ │ │ │ │ │ ├── jas_cm.h
│ │ │ │ │ │ ├── jas_config2.h
│ │ │ │ │ │ ├── jas_config.h
│ │ │ │ │ │ ├── jas_config.h.in
│ │ │ │ │ │ ├── jas_debug.h
│ │ │ │ │ │ ├── jas_fix.h
│ │ │ │ │ │ ├── jas_getopt.h
│ │ │ │ │ │ ├── jas_icc.h
│ │ │ │ │ │ ├── jas_image.h
│ │ │ │ │ │ ├── jas_init.h
│ │ │ │ │ │ ├── jas_malloc.h
│ │ │ │ │ │ ├── jas_math.h
│ │ │ │ │ │ ├── jasper.h
│ │ │ │ │ │ ├── jas_seq.h
│ │ │ │ │ │ ├── jas_stream.h
│ │ │ │ │ │ ├── jas_string.h
│ │ │ │ │ │ ├── jas_tmr.h
│ │ │ │ │ │ ├── jas_tvp.h
│ │ │ │ │ │ ├── jas_types.h
│ │ │ │ │ │ └── jas_version.h
│ │ │ │ │ ├── jas_seq.c
│ │ │ │ │ ├── jas_stream.c
│ │ │ │ │ ├── jas_string.c
│ │ │ │ │ ├── jas_tmr.c
│ │ │ │ │ ├── jas_tvp.c
│ │ │ │ │ ├── jas_version.c
│ │ │ │ │ ├── jp2_cod.c
│ │ │ │ │ ├── jp2_cod.h
│ │ │ │ │ ├── jp2_dec.c
│ │ │ │ │ ├── jp2_dec.h
│ │ │ │ │ ├── jp2_enc.c
│ │ │ │ │ ├── jpc_bs.c
│ │ │ │ │ ├── jpc_bs.h
│ │ │ │ │ ├── jpc_cod.h
│ │ │ │ │ ├── jpc_cs.c
│ │ │ │ │ ├── jpc_cs.h
│ │ │ │ │ ├── jpc_dec.c
│ │ │ │ │ ├── jpc_dec.h
│ │ │ │ │ ├── jpc_enc.c
│ │ │ │ │ ├── jpc_enc.h
│ │ │ │ │ ├── jpc_fix.h
│ │ │ │ │ ├── jpc_flt.h
│ │ │ │ │ ├── jpc_math.c
│ │ │ │ │ ├── jpc_math.h
│ │ │ │ │ ├── jpc_mct.c
│ │ │ │ │ ├── jpc_mct.h
│ │ │ │ │ ├── jpc_mqcod.c
│ │ │ │ │ ├── jpc_mqcod.h
│ │ │ │ │ ├── jpc_mqdec.c
│ │ │ │ │ ├── jpc_mqdec.h
│ │ │ │ │ ├── jpc_mqenc.c
│ │ │ │ │ ├── jpc_mqenc.h
│ │ │ │ │ ├── jpc_qmfb.c
│ │ │ │ │ ├── jpc_qmfb.h
│ │ │ │ │ ├── jpc_t1cod.c
│ │ │ │ │ ├── jpc_t1cod.h
│ │ │ │ │ ├── jpc_t1dec.c
│ │ │ │ │ ├── jpc_t1dec.h
│ │ │ │ │ ├── jpc_t1enc.c
│ │ │ │ │ ├── jpc_t1enc.h
│ │ │ │ │ ├── jpc_t2cod.c
│ │ │ │ │ ├── jpc_t2cod.h
│ │ │ │ │ ├── jpc_t2dec.c
│ │ │ │ │ ├── jpc_t2dec.h
│ │ │ │ │ ├── jpc_t2enc.c
│ │ │ │ │ ├── jpc_t2enc.h
│ │ │ │ │ ├── jpc_tagtree.c
│ │ │ │ │ ├── jpc_tagtree.h
│ │ │ │ │ ├── jpc_tsfb.c
│ │ │ │ │ ├── jpc_tsfb.h
│ │ │ │ │ ├── jpc_util.c
│ │ │ │ │ └── jpc_util.h
│ │ │ │ ├── libjpeg
│ │ │ │ │ ├── jcapimin.c
│ │ │ │ │ ├── jcapistd.c
│ │ │ │ │ ├── jccoefct.c
│ │ │ │ │ ├── jccolor.c
│ │ │ │ │ ├── jcdctmgr.c
│ │ │ │ │ ├── jchuff.c
│ │ │ │ │ ├── jchuff.h
│ │ │ │ │ ├── jcinit.c
│ │ │ │ │ ├── jcmainct.c
│ │ │ │ │ ├── jcmarker.c
│ │ │ │ │ ├── jcmaster.c
│ │ │ │ │ ├── jcomapi.c
│ │ │ │ │ ├── jconfig.h
│ │ │ │ │ ├── jcparam.c
│ │ │ │ │ ├── jcphuff.c
│ │ │ │ │ ├── jcprepct.c
│ │ │ │ │ ├── jcsample.c
│ │ │ │ │ ├── jctrans.c
│ │ │ │ │ ├── jdapimin.c
│ │ │ │ │ ├── jdapistd.c
│ │ │ │ │ ├── jdatadst.c
│ │ │ │ │ ├── jdatasrc.c
│ │ │ │ │ ├── jdcoefct.c
│ │ │ │ │ ├── jdcolor.c
│ │ │ │ │ ├── jdct.h
│ │ │ │ │ ├── jddctmgr.c
│ │ │ │ │ ├── jdhuff.c
│ │ │ │ │ ├── jdhuff.h
│ │ │ │ │ ├── jdinput.c
│ │ │ │ │ ├── jdmainct.c
│ │ │ │ │ ├── jdmarker.c
│ │ │ │ │ ├── jdmaster.c
│ │ │ │ │ ├── jdmerge.c
│ │ │ │ │ ├── jdphuff.c
│ │ │ │ │ ├── jdpostct.c
│ │ │ │ │ ├── jdsample.c
│ │ │ │ │ ├── jdtrans.c
│ │ │ │ │ ├── jerror.c
│ │ │ │ │ ├── jerror.h
│ │ │ │ │ ├── jfdctflt.c
│ │ │ │ │ ├── jfdctfst.c
│ │ │ │ │ ├── jfdctint.c
│ │ │ │ │ ├── jidctflt.c
│ │ │ │ │ ├── jidctfst.c
│ │ │ │ │ ├── jidctint.c
│ │ │ │ │ ├── jidctred.c
│ │ │ │ │ ├── jinclude.h
│ │ │ │ │ ├── jmemansi.c
│ │ │ │ │ ├── jmemmgr.c
│ │ │ │ │ ├── jmemsys.h
│ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ ├── jpegint.h
│ │ │ │ │ ├── jpeglib.h
│ │ │ │ │ ├── jquant1.c
│ │ │ │ │ ├── jquant2.c
│ │ │ │ │ ├── jutils.c
│ │ │ │ │ ├── jversion.h
│ │ │ │ │ ├── transupp.c
│ │ │ │ │ └── transupp.h
│ │ │ │ ├── libpng
│ │ │ │ │ ├── arm
│ │ │ │ │ │ └── filter_neon.S
│ │ │ │ │ ├── png.c
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ ├── pngdebug.h
│ │ │ │ │ ├── pngerror.c
│ │ │ │ │ ├── pngget.c
│ │ │ │ │ ├── png.h
│ │ │ │ │ ├── pnginfo.h
│ │ │ │ │ ├── pnglibconf.h
│ │ │ │ │ ├── pngmem.c
│ │ │ │ │ ├── pngpread.c
│ │ │ │ │ ├── pngpriv.h
│ │ │ │ │ ├── pngread.c
│ │ │ │ │ ├── pngrio.c
│ │ │ │ │ ├── pngrtran.c
│ │ │ │ │ ├── pngrutil.c
│ │ │ │ │ ├── pngset.c
│ │ │ │ │ ├── pngstruct.h
│ │ │ │ │ ├── pngtrans.c
│ │ │ │ │ ├── pngwio.c
│ │ │ │ │ ├── pngwrite.c
│ │ │ │ │ ├── pngwtran.c
│ │ │ │ │ └── pngwutil.c
│ │ │ │ ├── libtiff
│ │ │ │ │ ├── t4.h
│ │ │ │ │ ├── tif_aux.c
│ │ │ │ │ ├── tif_close.c
│ │ │ │ │ ├── tif_codec.c
│ │ │ │ │ ├── tif_color.c
│ │ │ │ │ ├── tif_compress.c
│ │ │ │ │ ├── tif_config.h.cmakein
│ │ │ │ │ ├── tif_dir.c
│ │ │ │ │ ├── tif_dir.h
│ │ │ │ │ ├── tif_dirinfo.c
│ │ │ │ │ ├── tif_dirread.c
│ │ │ │ │ ├── tif_dirwrite.c
│ │ │ │ │ ├── tif_dumpmode.c
│ │ │ │ │ ├── tif_error.c
│ │ │ │ │ ├── tif_extension.c
│ │ │ │ │ ├── tif_fax3.c
│ │ │ │ │ ├── tif_fax3.h
│ │ │ │ │ ├── tif_fax3sm.c
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ ├── tiffio.hxx
│ │ │ │ │ ├── tiffiop.h
│ │ │ │ │ ├── tif_flush.c
│ │ │ │ │ ├── tiffvers.h
│ │ │ │ │ ├── tif_getimage.c
│ │ │ │ │ ├── tif_jbig.c
│ │ │ │ │ ├── tif_jpeg_12.c
│ │ │ │ │ ├── tif_jpeg.c
│ │ │ │ │ ├── tif_luv.c
│ │ │ │ │ ├── tif_lzma.c
│ │ │ │ │ ├── tif_lzw.c
│ │ │ │ │ ├── tif_next.c
│ │ │ │ │ ├── tif_ojpeg.c
│ │ │ │ │ ├── tif_open.c
│ │ │ │ │ ├── tif_packbits.c
│ │ │ │ │ ├── tif_pixarlog.c
│ │ │ │ │ ├── tif_predict.c
│ │ │ │ │ ├── tif_predict.h
│ │ │ │ │ ├── tif_print.c
│ │ │ │ │ ├── tif_read.c
│ │ │ │ │ ├── tif_stream.cxx
│ │ │ │ │ ├── tif_strip.c
│ │ │ │ │ ├── tif_swab.c
│ │ │ │ │ ├── tif_thunder.c
│ │ │ │ │ ├── tif_tile.c
│ │ │ │ │ ├── tif_unix.c
│ │ │ │ │ ├── tif_version.c
│ │ │ │ │ ├── tif_warning.c
│ │ │ │ │ ├── tif_win32.c
│ │ │ │ │ ├── tif_write.c
│ │ │ │ │ ├── tif_zip.c
│ │ │ │ │ └── uvcode.h
│ │ │ │ ├── openexr
│ │ │ │ │ ├── Half
│ │ │ │ │ │ ├── eLut.cpp
│ │ │ │ │ │ ├── eLut.h
│ │ │ │ │ │ ├── half.cpp
│ │ │ │ │ │ ├── halfFunction.h
│ │ │ │ │ │ ├── half.h
│ │ │ │ │ │ ├── halfLimits.h
│ │ │ │ │ │ ├── toFloat.cpp
│ │ │ │ │ │ └── toFloat.h
│ │ │ │ │ ├── Iex
│ │ │ │ │ │ ├── IexBaseExc.cpp
│ │ │ │ │ │ ├── IexBaseExc.h
│ │ │ │ │ │ ├── IexErrnoExc.h
│ │ │ │ │ │ ├── Iex.h
│ │ │ │ │ │ ├── IexMacros.h
│ │ │ │ │ │ ├── IexMathExc.h
│ │ │ │ │ │ ├── IexThrowErrnoExc.cpp
│ │ │ │ │ │ └── IexThrowErrnoExc.h
│ │ │ │ │ ├── IlmImf
│ │ │ │ │ │ ├── b44ExpLogTable.cpp
│ │ │ │ │ │ ├── b44ExpLogTable.h
│ │ │ │ │ │ ├── ImfAcesFile.cpp
│ │ │ │ │ │ ├── ImfAcesFile.h
│ │ │ │ │ │ ├── ImfArray.h
│ │ │ │ │ │ ├── ImfAttribute.cpp
│ │ │ │ │ │ ├── ImfAttribute.h
│ │ │ │ │ │ ├── ImfAutoArray.h
│ │ │ │ │ │ ├── ImfB44Compressor.cpp
│ │ │ │ │ │ ├── ImfB44Compressor.h
│ │ │ │ │ │ ├── ImfBoxAttribute.cpp
│ │ │ │ │ │ ├── ImfBoxAttribute.h
│ │ │ │ │ │ ├── ImfChannelListAttribute.cpp
│ │ │ │ │ │ ├── ImfChannelListAttribute.h
│ │ │ │ │ │ ├── ImfChannelList.cpp
│ │ │ │ │ │ ├── ImfChannelList.h
│ │ │ │ │ │ ├── ImfCheckedArithmetic.h
│ │ │ │ │ │ ├── ImfChromaticitiesAttribute.cpp
│ │ │ │ │ │ ├── ImfChromaticitiesAttribute.h
│ │ │ │ │ │ ├── ImfChromaticities.cpp
│ │ │ │ │ │ ├── ImfChromaticities.h
│ │ │ │ │ │ ├── ImfCompressionAttribute.cpp
│ │ │ │ │ │ ├── ImfCompressionAttribute.h
│ │ │ │ │ │ ├── ImfCompression.h
│ │ │ │ │ │ ├── ImfCompressor.cpp
│ │ │ │ │ │ ├── ImfCompressor.h
│ │ │ │ │ │ ├── ImfConvert.cpp
│ │ │ │ │ │ ├── ImfConvert.h
│ │ │ │ │ │ ├── ImfCRgbaFile.cpp
│ │ │ │ │ │ ├── ImfCRgbaFile.h
│ │ │ │ │ │ ├── ImfDoubleAttribute.cpp
│ │ │ │ │ │ ├── ImfDoubleAttribute.h
│ │ │ │ │ │ ├── ImfEnvmapAttribute.cpp
│ │ │ │ │ │ ├── ImfEnvmapAttribute.h
│ │ │ │ │ │ ├── ImfEnvmap.cpp
│ │ │ │ │ │ ├── ImfEnvmap.h
│ │ │ │ │ │ ├── ImfFloatAttribute.cpp
│ │ │ │ │ │ ├── ImfFloatAttribute.h
│ │ │ │ │ │ ├── ImfFrameBuffer.cpp
│ │ │ │ │ │ ├── ImfFrameBuffer.h
│ │ │ │ │ │ ├── ImfFramesPerSecond.cpp
│ │ │ │ │ │ ├── ImfFramesPerSecond.h
│ │ │ │ │ │ ├── ImfHeader.cpp
│ │ │ │ │ │ ├── ImfHeader.h
│ │ │ │ │ │ ├── ImfHuf.cpp
│ │ │ │ │ │ ├── ImfHuf.h
│ │ │ │ │ │ ├── ImfInputFile.cpp
│ │ │ │ │ │ ├── ImfInputFile.h
│ │ │ │ │ │ ├── ImfInt64.h
│ │ │ │ │ │ ├── ImfIntAttribute.cpp
│ │ │ │ │ │ ├── ImfIntAttribute.h
│ │ │ │ │ │ ├── ImfIO.cpp
│ │ │ │ │ │ ├── ImfIO.h
│ │ │ │ │ │ ├── ImfKeyCodeAttribute.cpp
│ │ │ │ │ │ ├── ImfKeyCodeAttribute.h
│ │ │ │ │ │ ├── ImfKeyCode.cpp
│ │ │ │ │ │ ├── ImfKeyCode.h
│ │ │ │ │ │ ├── ImfLineOrderAttribute.cpp
│ │ │ │ │ │ ├── ImfLineOrderAttribute.h
│ │ │ │ │ │ ├── ImfLineOrder.h
│ │ │ │ │ │ ├── ImfLut.cpp
│ │ │ │ │ │ ├── ImfLut.h
│ │ │ │ │ │ ├── ImfMatrixAttribute.cpp
│ │ │ │ │ │ ├── ImfMatrixAttribute.h
│ │ │ │ │ │ ├── ImfMisc.cpp
│ │ │ │ │ │ ├── ImfMisc.h
│ │ │ │ │ │ ├── ImfMultiView.cpp
│ │ │ │ │ │ ├── ImfMultiView.h
│ │ │ │ │ │ ├── ImfName.h
│ │ │ │ │ │ ├── ImfOpaqueAttribute.cpp
│ │ │ │ │ │ ├── ImfOpaqueAttribute.h
│ │ │ │ │ │ ├── ImfOutputFile.cpp
│ │ │ │ │ │ ├── ImfOutputFile.h
│ │ │ │ │ │ ├── ImfPixelType.h
│ │ │ │ │ │ ├── ImfPizCompressor.cpp
│ │ │ │ │ │ ├── ImfPizCompressor.h
│ │ │ │ │ │ ├── ImfPreviewImageAttribute.cpp
│ │ │ │ │ │ ├── ImfPreviewImageAttribute.h
│ │ │ │ │ │ ├── ImfPreviewImage.cpp
│ │ │ │ │ │ ├── ImfPreviewImage.h
│ │ │ │ │ │ ├── ImfPxr24Compressor.cpp
│ │ │ │ │ │ ├── ImfPxr24Compressor.h
│ │ │ │ │ │ ├── ImfRationalAttribute.cpp
│ │ │ │ │ │ ├── ImfRationalAttribute.h
│ │ │ │ │ │ ├── ImfRational.cpp
│ │ │ │ │ │ ├── ImfRational.h
│ │ │ │ │ │ ├── ImfRgbaFile.cpp
│ │ │ │ │ │ ├── ImfRgbaFile.h
│ │ │ │ │ │ ├── ImfRgba.h
│ │ │ │ │ │ ├── ImfRgbaYca.cpp
│ │ │ │ │ │ ├── ImfRgbaYca.h
│ │ │ │ │ │ ├── ImfRleCompressor.cpp
│ │ │ │ │ │ ├── ImfRleCompressor.h
│ │ │ │ │ │ ├── ImfScanLineInputFile.cpp
│ │ │ │ │ │ ├── ImfScanLineInputFile.h
│ │ │ │ │ │ ├── ImfStandardAttributes.cpp
│ │ │ │ │ │ ├── ImfStandardAttributes.h
│ │ │ │ │ │ ├── ImfStdIO.cpp
│ │ │ │ │ │ ├── ImfStdIO.h
│ │ │ │ │ │ ├── ImfStringAttribute.cpp
│ │ │ │ │ │ ├── ImfStringAttribute.h
│ │ │ │ │ │ ├── ImfStringVectorAttribute.cpp
│ │ │ │ │ │ ├── ImfStringVectorAttribute.h
│ │ │ │ │ │ ├── ImfTestFile.cpp
│ │ │ │ │ │ ├── ImfTestFile.h
│ │ │ │ │ │ ├── ImfThreading.cpp
│ │ │ │ │ │ ├── ImfThreading.h
│ │ │ │ │ │ ├── ImfTileDescriptionAttribute.cpp
│ │ │ │ │ │ ├── ImfTileDescriptionAttribute.h
│ │ │ │ │ │ ├── ImfTileDescription.h
│ │ │ │ │ │ ├── ImfTiledInputFile.cpp
│ │ │ │ │ │ ├── ImfTiledInputFile.h
│ │ │ │ │ │ ├── ImfTiledMisc.cpp
│ │ │ │ │ │ ├── ImfTiledMisc.h
│ │ │ │ │ │ ├── ImfTiledOutputFile.cpp
│ │ │ │ │ │ ├── ImfTiledOutputFile.h
│ │ │ │ │ │ ├── ImfTiledRgbaFile.cpp
│ │ │ │ │ │ ├── ImfTiledRgbaFile.h
│ │ │ │ │ │ ├── ImfTileOffsets.cpp
│ │ │ │ │ │ ├── ImfTileOffsets.h
│ │ │ │ │ │ ├── ImfTimeCodeAttribute.cpp
│ │ │ │ │ │ ├── ImfTimeCodeAttribute.h
│ │ │ │ │ │ ├── ImfTimeCode.cpp
│ │ │ │ │ │ ├── ImfTimeCode.h
│ │ │ │ │ │ ├── ImfVecAttribute.cpp
│ │ │ │ │ │ ├── ImfVecAttribute.h
│ │ │ │ │ │ ├── ImfVersion.cpp
│ │ │ │ │ │ ├── ImfVersion.h
│ │ │ │ │ │ ├── ImfWav.cpp
│ │ │ │ │ │ ├── ImfWav.h
│ │ │ │ │ │ ├── ImfXdr.h
│ │ │ │ │ │ ├── ImfZipCompressor.cpp
│ │ │ │ │ │ └── ImfZipCompressor.h
│ │ │ │ │ ├── IlmThread
│ │ │ │ │ │ ├── IlmThread.cpp
│ │ │ │ │ │ ├── IlmThread.h
│ │ │ │ │ │ ├── IlmThreadMutex.cpp
│ │ │ │ │ │ ├── IlmThreadMutex.h
│ │ │ │ │ │ ├── IlmThreadMutexPosix.cpp
│ │ │ │ │ │ ├── IlmThreadMutexWin32.cpp
│ │ │ │ │ │ ├── IlmThreadPool.cpp
│ │ │ │ │ │ ├── IlmThreadPool.h
│ │ │ │ │ │ ├── IlmThreadPosix.cpp
│ │ │ │ │ │ ├── IlmThreadSemaphore.cpp
│ │ │ │ │ │ ├── IlmThreadSemaphore.h
│ │ │ │ │ │ ├── IlmThreadSemaphorePosixCompat.cpp
│ │ │ │ │ │ ├── IlmThreadSemaphorePosix.cpp
│ │ │ │ │ │ ├── IlmThreadSemaphoreWin32.cpp
│ │ │ │ │ │ └── IlmThreadWin32.cpp
│ │ │ │ │ └── Imath
│ │ │ │ │ ├── ImathBoxAlgo.h
│ │ │ │ │ ├── ImathBox.h
│ │ │ │ │ ├── ImathColorAlgo.cpp
│ │ │ │ │ ├── ImathColorAlgo.h
│ │ │ │ │ ├── ImathColor.h
│ │ │ │ │ ├── ImathEuler.h
│ │ │ │ │ ├── ImathExc.h
│ │ │ │ │ ├── ImathFrame.h
│ │ │ │ │ ├── ImathFrustum.h
│ │ │ │ │ ├── ImathFrustumTest.h
│ │ │ │ │ ├── ImathFun.cpp
│ │ │ │ │ ├── ImathFun.h
│ │ │ │ │ ├── ImathGL.h
│ │ │ │ │ ├── ImathGLU.h
│ │ │ │ │ ├── ImathHalfLimits.h
│ │ │ │ │ ├── ImathInt64.h
│ │ │ │ │ ├── ImathInterval.h
│ │ │ │ │ ├── ImathLimits.h
│ │ │ │ │ ├── ImathLineAlgo.h
│ │ │ │ │ ├── ImathLine.h
│ │ │ │ │ ├── ImathMath.h
│ │ │ │ │ ├── ImathMatrixAlgo.cpp
│ │ │ │ │ ├── ImathMatrixAlgo.h
│ │ │ │ │ ├── ImathMatrix.h
│ │ │ │ │ ├── ImathPlane.h
│ │ │ │ │ ├── ImathPlatform.h
│ │ │ │ │ ├── ImathQuat.h
│ │ │ │ │ ├── ImathRandom.cpp
│ │ │ │ │ ├── ImathRandom.h
│ │ │ │ │ ├── ImathRoots.h
│ │ │ │ │ ├── ImathShear.h
│ │ │ │ │ ├── ImathSphere.h
│ │ │ │ │ ├── ImathVecAlgo.h
│ │ │ │ │ ├── ImathVec.cpp
│ │ │ │ │ └── ImathVec.h
│ │ │ │ ├── readme.txt
│ │ │ │ ├── tbb
│ │ │ │ │ ├── android_additional.h
│ │ │ │ │ └── arm_linux_stub.cpp
│ │ │ │ └── zlib
│ │ │ │ ├── adler32.c
│ │ │ │ ├── compress.c
│ │ │ │ ├── crc32.c
│ │ │ │ ├── crc32.h
│ │ │ │ ├── deflate.c
│ │ │ │ ├── deflate.h
│ │ │ │ ├── gzclose.c
│ │ │ │ ├── gzguts.h
│ │ │ │ ├── gzlib.c
│ │ │ │ ├── gzread.c
│ │ │ │ ├── gzwrite.c
│ │ │ │ ├── infback.c
│ │ │ │ ├── inffast.c
│ │ │ │ ├── inffast.h
│ │ │ │ ├── inffixed.h
│ │ │ │ ├── inflate.c
│ │ │ │ ├── inflate.h
│ │ │ │ ├── inftrees.c
│ │ │ │ ├── inftrees.h
│ │ │ │ ├── trees.c
│ │ │ │ ├── trees.h
│ │ │ │ ├── uncompr.c
│ │ │ │ ├── zlib.h
│ │ │ │ ├── zutil.c
│ │ │ │ └── zutil.h
│ │ │ ├── apps
│ │ │ │ ├── haartraining
│ │ │ │ │ ├── createsamples.cpp
│ │ │ │ │ ├── cvboost.cpp
│ │ │ │ │ ├── cvclassifier.h
│ │ │ │ │ ├── cvcommon.cpp
│ │ │ │ │ ├── _cvcommon.h
│ │ │ │ │ ├── cvhaarclassifier.cpp
│ │ │ │ │ ├── cvhaartraining.cpp
│ │ │ │ │ ├── _cvhaartraining.h
│ │ │ │ │ ├── cvhaartraining.h
│ │ │ │ │ ├── cvsamples.cpp
│ │ │ │ │ ├── haartraining.cpp
│ │ │ │ │ └── performance.cpp
│ │ │ │ └── traincascade
│ │ │ │ ├── boost.cpp
│ │ │ │ ├── boost.h
│ │ │ │ ├── cascadeclassifier.cpp
│ │ │ │ ├── cascadeclassifier.h
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── features.cpp
│ │ │ │ ├── haarfeatures.cpp
│ │ │ │ ├── haarfeatures.h
│ │ │ │ ├── HOGfeatures.cpp
│ │ │ │ ├── HOGfeatures.h
│ │ │ │ ├── imagestorage.cpp
│ │ │ │ ├── imagestorage.h
│ │ │ │ ├── lbpfeatures.cpp
│ │ │ │ ├── lbpfeatures.h
│ │ │ │ ├── traincascade.cpp
│ │ │ │ └── traincascade_features.h
│ │ │ ├── include
│ │ │ │ ├── opencv
│ │ │ │ │ ├── cvaux.h
│ │ │ │ │ ├── cvaux.hpp
│ │ │ │ │ ├── cv.h
│ │ │ │ │ ├── cv.hpp
│ │ │ │ │ ├── cvwimage.h
│ │ │ │ │ ├── cxcore.h
│ │ │ │ │ ├── cxcore.hpp
│ │ │ │ │ ├── cxeigen.hpp
│ │ │ │ │ ├── cxmisc.h
│ │ │ │ │ ├── highgui.h
│ │ │ │ │ └── ml.h
│ │ │ │ └── opencv2
│ │ │ │ └── opencv.hpp
│ │ │ ├── modules
│ │ │ │ ├── androidcamera
│ │ │ │ │ ├── camera_wrapper
│ │ │ │ │ │ ├── camera_wrapper.cpp
│ │ │ │ │ │ └── camera_wrapper.h
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── camera_activity.hpp
│ │ │ │ │ │ └── camera_properties.h
│ │ │ │ │ └── src
│ │ │ │ │ └── camera_activity.cpp
│ │ │ │ ├── calib3d
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── calib3d
│ │ │ │ │ │ └── calib3d.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── calibinit.cpp
│ │ │ │ │ ├── calibration.cpp
│ │ │ │ │ ├── checkchessboard.cpp
│ │ │ │ │ ├── circlesgrid.cpp
│ │ │ │ │ ├── circlesgrid.hpp
│ │ │ │ │ ├── epnp.cpp
│ │ │ │ │ ├── epnp.h
│ │ │ │ │ ├── fundam.cpp
│ │ │ │ │ ├── modelest.cpp
│ │ │ │ │ ├── _modelest.h
│ │ │ │ │ ├── p3p.cpp
│ │ │ │ │ ├── p3p.h
│ │ │ │ │ ├── polynom_solver.cpp
│ │ │ │ │ ├── polynom_solver.h
│ │ │ │ │ ├── posit.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── quadsubpix.cpp
│ │ │ │ │ ├── solvepnp.cpp
│ │ │ │ │ ├── stereobm.cpp
│ │ │ │ │ ├── stereosgbm.cpp
│ │ │ │ │ └── triangulate.cpp
│ │ │ │ ├── contrib
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── contrib
│ │ │ │ │ │ ├── contrib.hpp
│ │ │ │ │ │ ├── detection_based_tracker.hpp
│ │ │ │ │ │ ├── hybridtracker.hpp
│ │ │ │ │ │ ├── openfabmap.hpp
│ │ │ │ │ │ └── retina.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── adaptiveskindetector.cpp
│ │ │ │ │ ├── ba.cpp
│ │ │ │ │ ├── basicretinafilter.cpp
│ │ │ │ │ ├── basicretinafilter.hpp
│ │ │ │ │ ├── bowmsctrainer.cpp
│ │ │ │ │ ├── chamfermatching.cpp
│ │ │ │ │ ├── chowliutree.cpp
│ │ │ │ │ ├── colormap.cpp
│ │ │ │ │ ├── colortracker.cpp
│ │ │ │ │ ├── contrib_init.cpp
│ │ │ │ │ ├── detection_based_tracker.cpp
│ │ │ │ │ ├── facerec.cpp
│ │ │ │ │ ├── featuretracker.cpp
│ │ │ │ │ ├── fuzzymeanshifttracker.cpp
│ │ │ │ │ ├── gencolors.cpp
│ │ │ │ │ ├── hybridtracker.cpp
│ │ │ │ │ ├── imagelogpolprojection.cpp
│ │ │ │ │ ├── imagelogpolprojection.hpp
│ │ │ │ │ ├── inputoutput.cpp
│ │ │ │ │ ├── lda.cpp
│ │ │ │ │ ├── logpolar_bsm.cpp
│ │ │ │ │ ├── magnoretinafilter.cpp
│ │ │ │ │ ├── magnoretinafilter.hpp
│ │ │ │ │ ├── octree.cpp
│ │ │ │ │ ├── openfabmap.cpp
│ │ │ │ │ ├── parvoretinafilter.cpp
│ │ │ │ │ ├── parvoretinafilter.hpp
│ │ │ │ │ ├── polyfit.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── retinacolor.cpp
│ │ │ │ │ ├── retinacolor.hpp
│ │ │ │ │ ├── retina.cpp
│ │ │ │ │ ├── retinafilter.cpp
│ │ │ │ │ ├── retinafilter.hpp
│ │ │ │ │ ├── rgbdodometry.cpp
│ │ │ │ │ ├── selfsimilarity.cpp
│ │ │ │ │ ├── spinimages.cpp
│ │ │ │ │ ├── stereovar.cpp
│ │ │ │ │ └── templatebuffer.hpp
│ │ │ │ ├── core
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── core
│ │ │ │ │ │ ├── core_c.h
│ │ │ │ │ │ ├── core.hpp
│ │ │ │ │ │ ├── cuda_devptrs.hpp
│ │ │ │ │ │ ├── devmem2d.hpp
│ │ │ │ │ │ ├── eigen.hpp
│ │ │ │ │ │ ├── gpumat.hpp
│ │ │ │ │ │ ├── internal.hpp
│ │ │ │ │ │ ├── mat.hpp
│ │ │ │ │ │ ├── opengl_interop_deprecated.hpp
│ │ │ │ │ │ ├── opengl_interop.hpp
│ │ │ │ │ │ ├── operations.hpp
│ │ │ │ │ │ ├── types_c.h
│ │ │ │ │ │ ├── version.hpp
│ │ │ │ │ │ └── wimage.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── algorithm.cpp
│ │ │ │ │ ├── alloc.cpp
│ │ │ │ │ ├── arithm.cpp
│ │ │ │ │ ├── array.cpp
│ │ │ │ │ ├── cmdparser.cpp
│ │ │ │ │ ├── convert.cpp
│ │ │ │ │ ├── copy.cpp
│ │ │ │ │ ├── datastructs.cpp
│ │ │ │ │ ├── drawing.cpp
│ │ │ │ │ ├── dxt.cpp
│ │ │ │ │ ├── gl_core_3_1.cpp
│ │ │ │ │ ├── gl_core_3_1.hpp
│ │ │ │ │ ├── gpumat.cpp
│ │ │ │ │ ├── lapack.cpp
│ │ │ │ │ ├── mathfuncs.cpp
│ │ │ │ │ ├── matmul.cpp
│ │ │ │ │ ├── matop.cpp
│ │ │ │ │ ├── matrix.cpp
│ │ │ │ │ ├── opengl_interop.cpp
│ │ │ │ │ ├── opengl_interop_deprecated.cpp
│ │ │ │ │ ├── out.cpp
│ │ │ │ │ ├── parallel.cpp
│ │ │ │ │ ├── persistence.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── rand.cpp
│ │ │ │ │ ├── stat.cpp
│ │ │ │ │ ├── system.cpp
│ │ │ │ │ └── tables.cpp
│ │ │ │ ├── features2d
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── features2d
│ │ │ │ │ │ └── features2d.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── bagofwords.cpp
│ │ │ │ │ ├── blobdetector.cpp
│ │ │ │ │ ├── brief.cpp
│ │ │ │ │ ├── brisk.cpp
│ │ │ │ │ ├── descriptors.cpp
│ │ │ │ │ ├── detectors.cpp
│ │ │ │ │ ├── draw.cpp
│ │ │ │ │ ├── dynamic.cpp
│ │ │ │ │ ├── evaluation.cpp
│ │ │ │ │ ├── fast.cpp
│ │ │ │ │ ├── fast_score.cpp
│ │ │ │ │ ├── fast_score.hpp
│ │ │ │ │ ├── features2d_init.cpp
│ │ │ │ │ ├── freak.cpp
│ │ │ │ │ ├── generated_16.i
│ │ │ │ │ ├── generated_32.i
│ │ │ │ │ ├── generated_64.i
│ │ │ │ │ ├── keypoint.cpp
│ │ │ │ │ ├── matchers.cpp
│ │ │ │ │ ├── mser.cpp
│ │ │ │ │ ├── orb.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ └── stardetector.cpp
│ │ │ │ ├── flann
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── flann
│ │ │ │ │ │ ├── all_indices.h
│ │ │ │ │ │ ├── allocator.h
│ │ │ │ │ │ ├── any.h
│ │ │ │ │ │ ├── autotuned_index.h
│ │ │ │ │ │ ├── composite_index.h
│ │ │ │ │ │ ├── config.h
│ │ │ │ │ │ ├── defines.h
│ │ │ │ │ │ ├── dist.h
│ │ │ │ │ │ ├── dummy.h
│ │ │ │ │ │ ├── dynamic_bitset.h
│ │ │ │ │ │ ├── flann_base.hpp
│ │ │ │ │ │ ├── flann.hpp
│ │ │ │ │ │ ├── general.h
│ │ │ │ │ │ ├── ground_truth.h
│ │ │ │ │ │ ├── hdf5.h
│ │ │ │ │ │ ├── heap.h
│ │ │ │ │ │ ├── hierarchical_clustering_index.h
│ │ │ │ │ │ ├── index_testing.h
│ │ │ │ │ │ ├── kdtree_index.h
│ │ │ │ │ │ ├── kdtree_single_index.h
│ │ │ │ │ │ ├── kmeans_index.h
│ │ │ │ │ │ ├── linear_index.h
│ │ │ │ │ │ ├── logger.h
│ │ │ │ │ │ ├── lsh_index.h
│ │ │ │ │ │ ├── lsh_table.h
│ │ │ │ │ │ ├── matrix.h
│ │ │ │ │ │ ├── miniflann.hpp
│ │ │ │ │ │ ├── nn_index.h
│ │ │ │ │ │ ├── object_factory.h
│ │ │ │ │ │ ├── params.h
│ │ │ │ │ │ ├── random.h
│ │ │ │ │ │ ├── result_set.h
│ │ │ │ │ │ ├── sampling.h
│ │ │ │ │ │ ├── saving.h
│ │ │ │ │ │ ├── simplex_downhill.h
│ │ │ │ │ │ └── timer.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── flann.cpp
│ │ │ │ │ ├── miniflann.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ └── precomp.hpp
│ │ │ │ ├── gpu
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── gpu
│ │ │ │ │ │ ├── device
│ │ │ │ │ │ │ ├── block.hpp
│ │ │ │ │ │ │ ├── border_interpolate.hpp
│ │ │ │ │ │ │ ├── color.hpp
│ │ │ │ │ │ │ ├── common.hpp
│ │ │ │ │ │ │ ├── datamov_utils.hpp
│ │ │ │ │ │ │ ├── detail
│ │ │ │ │ │ │ │ ├── color_detail.hpp
│ │ │ │ │ │ │ │ ├── reduce.hpp
│ │ │ │ │ │ │ │ ├── reduce_key_val.hpp
│ │ │ │ │ │ │ │ ├── transform_detail.hpp
│ │ │ │ │ │ │ │ ├── type_traits_detail.hpp
│ │ │ │ │ │ │ │ └── vec_distance_detail.hpp
│ │ │ │ │ │ │ ├── dynamic_smem.hpp
│ │ │ │ │ │ │ ├── emulation.hpp
│ │ │ │ │ │ │ ├── filters.hpp
│ │ │ │ │ │ │ ├── funcattrib.hpp
│ │ │ │ │ │ │ ├── functional.hpp
│ │ │ │ │ │ │ ├── limits.hpp
│ │ │ │ │ │ │ ├── reduce.hpp
│ │ │ │ │ │ │ ├── saturate_cast.hpp
│ │ │ │ │ │ │ ├── scan.hpp
│ │ │ │ │ │ │ ├── simd_functions.hpp
│ │ │ │ │ │ │ ├── static_check.hpp
│ │ │ │ │ │ │ ├── transform.hpp
│ │ │ │ │ │ │ ├── type_traits.hpp
│ │ │ │ │ │ │ ├── utility.hpp
│ │ │ │ │ │ │ ├── vec_distance.hpp
│ │ │ │ │ │ │ ├── vec_math.hpp
│ │ │ │ │ │ │ ├── vec_traits.hpp
│ │ │ │ │ │ │ ├── warp.hpp
│ │ │ │ │ │ │ ├── warp_reduce.hpp
│ │ │ │ │ │ │ └── warp_shuffle.hpp
│ │ │ │ │ │ ├── devmem2d.hpp
│ │ │ │ │ │ ├── gpu.hpp
│ │ │ │ │ │ ├── gpumat.hpp
│ │ │ │ │ │ └── stream_accessor.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── arithm.cpp
│ │ │ │ │ ├── bgfg_gmg.cpp
│ │ │ │ │ ├── bgfg_mog.cpp
│ │ │ │ │ ├── bilateral_filter.cpp
│ │ │ │ │ ├── blend.cpp
│ │ │ │ │ ├── brute_force_matcher.cpp
│ │ │ │ │ ├── calib3d.cpp
│ │ │ │ │ ├── cascadeclassifier.cpp
│ │ │ │ │ ├── color.cpp
│ │ │ │ │ ├── cuda
│ │ │ │ │ │ ├── bf_knnmatch.cu
│ │ │ │ │ │ ├── bf_match.cu
│ │ │ │ │ │ ├── bf_radius_match.cu
│ │ │ │ │ │ ├── bgfg_gmg.cu
│ │ │ │ │ │ ├── bgfg_mog.cu
│ │ │ │ │ │ ├── bilateral_filter.cu
│ │ │ │ │ │ ├── blend.cu
│ │ │ │ │ │ ├── calib3d.cu
│ │ │ │ │ │ ├── canny.cu
│ │ │ │ │ │ ├── ccomponetns.cu
│ │ │ │ │ │ ├── clahe.cu
│ │ │ │ │ │ ├── color.cu
│ │ │ │ │ │ ├── column_filter.0.cu
│ │ │ │ │ │ ├── column_filter.10.cu
│ │ │ │ │ │ ├── column_filter.11.cu
│ │ │ │ │ │ ├── column_filter.12.cu
│ │ │ │ │ │ ├── column_filter.13.cu
│ │ │ │ │ │ ├── column_filter.14.cu
│ │ │ │ │ │ ├── column_filter.1.cu
│ │ │ │ │ │ ├── column_filter.2.cu
│ │ │ │ │ │ ├── column_filter.3.cu
│ │ │ │ │ │ ├── column_filter.4.cu
│ │ │ │ │ │ ├── column_filter.5.cu
│ │ │ │ │ │ ├── column_filter.6.cu
│ │ │ │ │ │ ├── column_filter.7.cu
│ │ │ │ │ │ ├── column_filter.8.cu
│ │ │ │ │ │ ├── column_filter.9.cu
│ │ │ │ │ │ ├── column_filter.h
│ │ │ │ │ │ ├── copy_make_border.cu
│ │ │ │ │ │ ├── debayer.cu
│ │ │ │ │ │ ├── disp_bilateral_filter.cu
│ │ │ │ │ │ ├── element_operations.cu
│ │ │ │ │ │ ├── fast.cu
│ │ │ │ │ │ ├── fgd_bgfg_common.hpp
│ │ │ │ │ │ ├── fgd_bgfg.cu
│ │ │ │ │ │ ├── gftt.cu
│ │ │ │ │ │ ├── global_motion.cu
│ │ │ │ │ │ ├── hist.cu
│ │ │ │ │ │ ├── hog.cu
│ │ │ │ │ │ ├── hough.cu
│ │ │ │ │ │ ├── imgproc.cu
│ │ │ │ │ │ ├── integral_image.cu
│ │ │ │ │ │ ├── internal_shared.hpp
│ │ │ │ │ │ ├── lbp.cu
│ │ │ │ │ │ ├── lbp.hpp
│ │ │ │ │ │ ├── match_template.cu
│ │ │ │ │ │ ├── mathfunc.cu
│ │ │ │ │ │ ├── matrix_reductions.cu
│ │ │ │ │ │ ├── nlm.cu
│ │ │ │ │ │ ├── NV12ToARGB.cu
│ │ │ │ │ │ ├── optflowbm.cu
│ │ │ │ │ │ ├── optical_flow.cu
│ │ │ │ │ │ ├── optical_flow_farneback.cu
│ │ │ │ │ │ ├── orb.cu
│ │ │ │ │ │ ├── pyr_down.cu
│ │ │ │ │ │ ├── pyrlk.cu
│ │ │ │ │ │ ├── pyr_up.cu
│ │ │ │ │ │ ├── remap.cu
│ │ │ │ │ │ ├── resize.cu
│ │ │ │ │ │ ├── rgb_to_yv12.cu
│ │ │ │ │ │ ├── row_filter.0.cu
│ │ │ │ │ │ ├── row_filter.10.cu
│ │ │ │ │ │ ├── row_filter.11.cu
│ │ │ │ │ │ ├── row_filter.12.cu
│ │ │ │ │ │ ├── row_filter.13.cu
│ │ │ │ │ │ ├── row_filter.14.cu
│ │ │ │ │ │ ├── row_filter.1.cu
│ │ │ │ │ │ ├── row_filter.2.cu
│ │ │ │ │ │ ├── row_filter.3.cu
│ │ │ │ │ │ ├── row_filter.4.cu
│ │ │ │ │ │ ├── row_filter.5.cu
│ │ │ │ │ │ ├── row_filter.6.cu
│ │ │ │ │ │ ├── row_filter.7.cu
│ │ │ │ │ │ ├── row_filter.8.cu
│ │ │ │ │ │ ├── row_filter.9.cu
│ │ │ │ │ │ ├── row_filter.h
│ │ │ │ │ │ ├── safe_call.hpp
│ │ │ │ │ │ ├── split_merge.cu
│ │ │ │ │ │ ├── stereobm.cu
│ │ │ │ │ │ ├── stereobp.cu
│ │ │ │ │ │ ├── stereocsbp.cu
│ │ │ │ │ │ ├── texture_binder.hpp
│ │ │ │ │ │ ├── tvl1flow.cu
│ │ │ │ │ │ └── warp.cu
│ │ │ │ │ ├── cudastream.cpp
│ │ │ │ │ ├── cu_safe_call.cpp
│ │ │ │ │ ├── cu_safe_call.h
│ │ │ │ │ ├── cuvid_video_source.cpp
│ │ │ │ │ ├── cuvid_video_source.h
│ │ │ │ │ ├── cvt_color_internal.h
│ │ │ │ │ ├── denoising.cpp
│ │ │ │ │ ├── element_operations.cpp
│ │ │ │ │ ├── error.cpp
│ │ │ │ │ ├── fast.cpp
│ │ │ │ │ ├── ffmpeg_video_source.cpp
│ │ │ │ │ ├── ffmpeg_video_source.h
│ │ │ │ │ ├── fgd_bgfg.cpp
│ │ │ │ │ ├── filtering.cpp
│ │ │ │ │ ├── frame_queue.cpp
│ │ │ │ │ ├── frame_queue.h
│ │ │ │ │ ├── gftt.cpp
│ │ │ │ │ ├── global_motion.cpp
│ │ │ │ │ ├── graphcuts.cpp
│ │ │ │ │ ├── hog.cpp
│ │ │ │ │ ├── hough.cpp
│ │ │ │ │ ├── imgproc.cpp
│ │ │ │ │ ├── match_template.cpp
│ │ │ │ │ ├── matrix_operations.cpp
│ │ │ │ │ ├── matrix_reductions.cpp
│ │ │ │ │ ├── mssegmentation.cpp
│ │ │ │ │ ├── nvidia
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── NCVAlg.hpp
│ │ │ │ │ │ │ ├── NCVColorConversion.hpp
│ │ │ │ │ │ │ ├── NCV.cu
│ │ │ │ │ │ │ ├── NCV.hpp
│ │ │ │ │ │ │ ├── NCVPixelOperations.hpp
│ │ │ │ │ │ │ ├── NCVPyramid.cu
│ │ │ │ │ │ │ ├── NCVPyramid.hpp
│ │ │ │ │ │ │ └── NCVRuntimeTemplates.hpp
│ │ │ │ │ │ ├── NCVBroxOpticalFlow.cu
│ │ │ │ │ │ ├── NCVBroxOpticalFlow.hpp
│ │ │ │ │ │ ├── NCVHaarObjectDetection.cu
│ │ │ │ │ │ ├── NCVHaarObjectDetection.hpp
│ │ │ │ │ │ └── NPP_staging
│ │ │ │ │ │ ├── NPP_staging.cu
│ │ │ │ │ │ └── NPP_staging.hpp
│ │ │ │ │ ├── optflowbm.cpp
│ │ │ │ │ ├── optical_flow.cpp
│ │ │ │ │ ├── optical_flow_farneback.cpp
│ │ │ │ │ ├── orb.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── pyramids.cpp
│ │ │ │ │ ├── pyrlk.cpp
│ │ │ │ │ ├── remap.cpp
│ │ │ │ │ ├── resize.cpp
│ │ │ │ │ ├── speckle_filtering.cpp
│ │ │ │ │ ├── split_merge.cpp
│ │ │ │ │ ├── stereobm.cpp
│ │ │ │ │ ├── stereobp.cpp
│ │ │ │ │ ├── stereocsbp.cpp
│ │ │ │ │ ├── thread_wrappers.cpp
│ │ │ │ │ ├── thread_wrappers.h
│ │ │ │ │ ├── tvl1flow.cpp
│ │ │ │ │ ├── video_decoder.cpp
│ │ │ │ │ ├── video_decoder.h
│ │ │ │ │ ├── video_parser.cpp
│ │ │ │ │ ├── video_parser.h
│ │ │ │ │ ├── video_reader.cpp
│ │ │ │ │ ├── video_writer.cpp
│ │ │ │ │ └── warp.cpp
│ │ │ │ ├── highgui
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── highgui
│ │ │ │ │ │ ├── cap_ios.h
│ │ │ │ │ │ ├── highgui_c.h
│ │ │ │ │ │ └── highgui.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── bitstrm.cpp
│ │ │ │ │ ├── bitstrm.hpp
│ │ │ │ │ ├── cap_android.cpp
│ │ │ │ │ ├── cap_avfoundation.mm
│ │ │ │ │ ├── cap_cmu.cpp
│ │ │ │ │ ├── cap.cpp
│ │ │ │ │ ├── cap_dc1394.cpp
│ │ │ │ │ ├── cap_dc1394_v2.cpp
│ │ │ │ │ ├── cap_dshow.cpp
│ │ │ │ │ ├── cap_ffmpeg_api.hpp
│ │ │ │ │ ├── cap_ffmpeg.cpp
│ │ │ │ │ ├── cap_ffmpeg_impl.hpp
│ │ │ │ │ ├── cap_giganetix.cpp
│ │ │ │ │ ├── cap_gstreamer.cpp
│ │ │ │ │ ├── cap_images.cpp
│ │ │ │ │ ├── cap_ios_abstract_camera.mm
│ │ │ │ │ ├── cap_ios_photo_camera.mm
│ │ │ │ │ ├── cap_ios_video_camera.mm
│ │ │ │ │ ├── cap_libv4l.cpp
│ │ │ │ │ ├── cap_mil.cpp
│ │ │ │ │ ├── cap_msmf.cpp
│ │ │ │ │ ├── cap_openni.cpp
│ │ │ │ │ ├── cap_pvapi.cpp
│ │ │ │ │ ├── cap_qt.cpp
│ │ │ │ │ ├── cap_qtkit.mm
│ │ │ │ │ ├── cap_tyzx.cpp
│ │ │ │ │ ├── cap_unicap.cpp
│ │ │ │ │ ├── cap_v4l.cpp
│ │ │ │ │ ├── cap_vfw.cpp
│ │ │ │ │ ├── cap_ximea.cpp
│ │ │ │ │ ├── cap_xine.cpp
│ │ │ │ │ ├── ffmpeg_codecs.hpp
│ │ │ │ │ ├── grfmt_base.cpp
│ │ │ │ │ ├── grfmt_base.hpp
│ │ │ │ │ ├── grfmt_bmp.cpp
│ │ │ │ │ ├── grfmt_bmp.hpp
│ │ │ │ │ ├── grfmt_exr.cpp
│ │ │ │ │ ├── grfmt_exr.hpp
│ │ │ │ │ ├── grfmt_imageio.cpp
│ │ │ │ │ ├── grfmt_imageio.hpp
│ │ │ │ │ ├── grfmt_jpeg2000.cpp
│ │ │ │ │ ├── grfmt_jpeg2000.hpp
│ │ │ │ │ ├── grfmt_jpeg.cpp
│ │ │ │ │ ├── grfmt_jpeg.hpp
│ │ │ │ │ ├── grfmt_png.cpp
│ │ │ │ │ ├── grfmt_png.hpp
│ │ │ │ │ ├── grfmt_pxm.cpp
│ │ │ │ │ ├── grfmt_pxm.hpp
│ │ │ │ │ ├── grfmts.hpp
│ │ │ │ │ ├── grfmt_sunras.cpp
│ │ │ │ │ ├── grfmt_sunras.hpp
│ │ │ │ │ ├── grfmt_tiff.cpp
│ │ │ │ │ ├── grfmt_tiff.hpp
│ │ │ │ │ ├── loadsave.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── utils.cpp
│ │ │ │ │ ├── utils.hpp
│ │ │ │ │ ├── window_carbon.cpp
│ │ │ │ │ ├── window_cocoa.mm
│ │ │ │ │ ├── window.cpp
│ │ │ │ │ ├── window_gtk.cpp
│ │ │ │ │ ├── window_QT.cpp
│ │ │ │ │ ├── window_QT.h
│ │ │ │ │ ├── window_QT.qrc
│ │ │ │ │ └── window_w32.cpp
│ │ │ │ ├── imgproc
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── imgproc
│ │ │ │ │ │ ├── imgproc_c.h
│ │ │ │ │ │ ├── imgproc.hpp
│ │ │ │ │ │ └── types_c.h
│ │ │ │ │ └── src
│ │ │ │ │ ├── accum.cpp
│ │ │ │ │ ├── approx.cpp
│ │ │ │ │ ├── canny.cpp
│ │ │ │ │ ├── color.cpp
│ │ │ │ │ ├── contours.cpp
│ │ │ │ │ ├── convhull.cpp
│ │ │ │ │ ├── corner.cpp
│ │ │ │ │ ├── cornersubpix.cpp
│ │ │ │ │ ├── deriv.cpp
│ │ │ │ │ ├── distransform.cpp
│ │ │ │ │ ├── emd.cpp
│ │ │ │ │ ├── featureselect.cpp
│ │ │ │ │ ├── filter.cpp
│ │ │ │ │ ├── floodfill.cpp
│ │ │ │ │ ├── gabor.cpp
│ │ │ │ │ ├── gcgraph.hpp
│ │ │ │ │ ├── generalized_hough.cpp
│ │ │ │ │ ├── geometry.cpp
│ │ │ │ │ ├── _geom.h
│ │ │ │ │ ├── grabcut.cpp
│ │ │ │ │ ├── histogram.cpp
│ │ │ │ │ ├── hough.cpp
│ │ │ │ │ ├── imgwarp.cpp
│ │ │ │ │ ├── linefit.cpp
│ │ │ │ │ ├── _list.h
│ │ │ │ │ ├── matchcontours.cpp
│ │ │ │ │ ├── moments.cpp
│ │ │ │ │ ├── morph.cpp
│ │ │ │ │ ├── phasecorr.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── pyramids.cpp
│ │ │ │ │ ├── rotcalipers.cpp
│ │ │ │ │ ├── samplers.cpp
│ │ │ │ │ ├── segmentation.cpp
│ │ │ │ │ ├── shapedescr.cpp
│ │ │ │ │ ├── smooth.cpp
│ │ │ │ │ ├── subdivision2d.cpp
│ │ │ │ │ ├── sumpixels.cpp
│ │ │ │ │ ├── tables.cpp
│ │ │ │ │ ├── templmatch.cpp
│ │ │ │ │ ├── thresh.cpp
│ │ │ │ │ ├── undistort.cpp
│ │ │ │ │ └── utils.cpp
│ │ │ │ ├── legacy
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── legacy
│ │ │ │ │ │ ├── blobtrack.hpp
│ │ │ │ │ │ ├── compat.hpp
│ │ │ │ │ │ ├── legacy.hpp
│ │ │ │ │ │ └── streams.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── 3dtracker.cpp
│ │ │ │ │ ├── auxutils.cpp
│ │ │ │ │ ├── bgfg_acmmm2003.cpp
│ │ │ │ │ ├── bgfg_codebook.cpp
│ │ │ │ │ ├── bgfg_common.cpp
│ │ │ │ │ ├── bgfg_estimation.cpp
│ │ │ │ │ ├── bgfg_gaussmix.cpp
│ │ │ │ │ ├── blobtrackanalysis.cpp
│ │ │ │ │ ├── blobtrackanalysishist.cpp
│ │ │ │ │ ├── blobtrackanalysisior.cpp
│ │ │ │ │ ├── blobtrackanalysistrackdist.cpp
│ │ │ │ │ ├── blobtrack.cpp
│ │ │ │ │ ├── blobtrackgen1.cpp
│ │ │ │ │ ├── blobtrackgenyml.cpp
│ │ │ │ │ ├── blobtrackingauto.cpp
│ │ │ │ │ ├── blobtrackingcc.cpp
│ │ │ │ │ ├── blobtrackingccwithcr.cpp
│ │ │ │ │ ├── blobtrackinglist.cpp
│ │ │ │ │ ├── blobtrackingmsfg.cpp
│ │ │ │ │ ├── blobtrackingmsfgs.cpp
│ │ │ │ │ ├── blobtrackpostprockalman.cpp
│ │ │ │ │ ├── blobtrackpostproclinear.cpp
│ │ │ │ │ ├── blobtrackpostproclist.cpp
│ │ │ │ │ ├── calcimagehomography.cpp
│ │ │ │ │ ├── calibfilter.cpp
│ │ │ │ │ ├── calonder.cpp
│ │ │ │ │ ├── camshift.cpp
│ │ │ │ │ ├── clique.cpp
│ │ │ │ │ ├── compat.cpp
│ │ │ │ │ ├── condens.cpp
│ │ │ │ │ ├── contourtree.cpp
│ │ │ │ │ ├── correspond.cpp
│ │ │ │ │ ├── corrimages.cpp
│ │ │ │ │ ├── createhandmask.cpp
│ │ │ │ │ ├── decomppoly.cpp
│ │ │ │ │ ├── dominants.cpp
│ │ │ │ │ ├── dpstereo.cpp
│ │ │ │ │ ├── eigenobjects.cpp
│ │ │ │ │ ├── em.cpp
│ │ │ │ │ ├── enmin.cpp
│ │ │ │ │ ├── enteringblobdetection.cpp
│ │ │ │ │ ├── enteringblobdetectionreal.cpp
│ │ │ │ │ ├── epilines.cpp
│ │ │ │ │ ├── extendededges.cpp
│ │ │ │ │ ├── face.cpp
│ │ │ │ │ ├── facedetection.cpp
│ │ │ │ │ ├── _facedetection.h
│ │ │ │ │ ├── facedetection.h
│ │ │ │ │ ├── face.h
│ │ │ │ │ ├── facetemplate.cpp
│ │ │ │ │ ├── facetemplate.h
│ │ │ │ │ ├── features2d.cpp
│ │ │ │ │ ├── featuretree.cpp
│ │ │ │ │ ├── _featuretree.h
│ │ │ │ │ ├── findface.cpp
│ │ │ │ │ ├── findhandregion.cpp
│ │ │ │ │ ├── hmm1d.cpp
│ │ │ │ │ ├── hmm.cpp
│ │ │ │ │ ├── hmmobs.cpp
│ │ │ │ │ ├── image.cpp
│ │ │ │ │ ├── kdtree.cpp
│ │ │ │ │ ├── _kdtree.hpp
│ │ │ │ │ ├── lcm.cpp
│ │ │ │ │ ├── lee.cpp
│ │ │ │ │ ├── levmar.cpp
│ │ │ │ │ ├── levmarprojbandle.cpp
│ │ │ │ │ ├── levmartrif.cpp
│ │ │ │ │ ├── lines.cpp
│ │ │ │ │ ├── lmeds.cpp
│ │ │ │ │ ├── lsh.cpp
│ │ │ │ │ ├── _matrix.h
│ │ │ │ │ ├── morphcontours.cpp
│ │ │ │ │ ├── morphing.cpp
│ │ │ │ │ ├── oneway.cpp
│ │ │ │ │ ├── optflowbm.cpp
│ │ │ │ │ ├── optflowhs.cpp
│ │ │ │ │ ├── optflowlk.cpp
│ │ │ │ │ ├── pgh.cpp
│ │ │ │ │ ├── planardetect.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── prewarp.cpp
│ │ │ │ │ ├── pyrsegmentation.cpp
│ │ │ │ │ ├── scanlines.cpp
│ │ │ │ │ ├── segment.cpp
│ │ │ │ │ ├── snakes.cpp
│ │ │ │ │ ├── spilltree.cpp
│ │ │ │ │ ├── stereogc.cpp
│ │ │ │ │ ├── subdiv2.cpp
│ │ │ │ │ ├── testseq.cpp
│ │ │ │ │ ├── texture.cpp
│ │ │ │ │ ├── trifocal.cpp
│ │ │ │ │ ├── vecfacetracking.cpp
│ │ │ │ │ ├── _vectrack.h
│ │ │ │ │ ├── video.cpp
│ │ │ │ │ └── _vm.h
│ │ │ │ ├── ml
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── ml
│ │ │ │ │ │ └── ml.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── ann_mlp.cpp
│ │ │ │ │ ├── boost.cpp
│ │ │ │ │ ├── cnn.cpp
│ │ │ │ │ ├── data.cpp
│ │ │ │ │ ├── em.cpp
│ │ │ │ │ ├── ertrees.cpp
│ │ │ │ │ ├── estimate.cpp
│ │ │ │ │ ├── gbt.cpp
│ │ │ │ │ ├── inner_functions.cpp
│ │ │ │ │ ├── knearest.cpp
│ │ │ │ │ ├── ml_init.cpp
│ │ │ │ │ ├── nbayes.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── rtrees.cpp
│ │ │ │ │ ├── svm.cpp
│ │ │ │ │ ├── testset.cpp
│ │ │ │ │ └── tree.cpp
│ │ │ │ ├── nonfree
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── nonfree
│ │ │ │ │ │ ├── features2d.hpp
│ │ │ │ │ │ ├── gpu.hpp
│ │ │ │ │ │ ├── nonfree.hpp
│ │ │ │ │ │ └── ocl.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── cuda
│ │ │ │ │ │ ├── surf.cu
│ │ │ │ │ │ └── vibe.cu
│ │ │ │ │ ├── nonfree_init.cpp
│ │ │ │ │ ├── opencl
│ │ │ │ │ │ └── surf.cl
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── sift.cpp
│ │ │ │ │ ├── surf.cpp
│ │ │ │ │ ├── surf_gpu.cpp
│ │ │ │ │ ├── surf.ocl.cpp
│ │ │ │ │ └── vibe_gpu.cpp
│ │ │ │ ├── objdetect
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── objdetect
│ │ │ │ │ │ └── objdetect.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── cascadedetect.cpp
│ │ │ │ │ ├── cascadedetect.hpp
│ │ │ │ │ ├── datamatrix.cpp
│ │ │ │ │ ├── distancetransform.cpp
│ │ │ │ │ ├── featurepyramid.cpp
│ │ │ │ │ ├── fft.cpp
│ │ │ │ │ ├── haar.cpp
│ │ │ │ │ ├── hog.cpp
│ │ │ │ │ ├── latentsvm.cpp
│ │ │ │ │ ├── latentsvmdetector.cpp
│ │ │ │ │ ├── _latentsvm.h
│ │ │ │ │ ├── linemod.cpp
│ │ │ │ │ ├── _lsvm_distancetransform.h
│ │ │ │ │ ├── _lsvm_error.h
│ │ │ │ │ ├── _lsvm_fft.h
│ │ │ │ │ ├── _lsvm_matching.h
│ │ │ │ │ ├── lsvmparser.cpp
│ │ │ │ │ ├── _lsvmparser.h
│ │ │ │ │ ├── _lsvm_resizeimg.h
│ │ │ │ │ ├── _lsvm_routine.h
│ │ │ │ │ ├── lsvmtbbversion.cpp
│ │ │ │ │ ├── _lsvm_tbbversion.h
│ │ │ │ │ ├── _lsvm_types.h
│ │ │ │ │ ├── matching.cpp
│ │ │ │ │ ├── normal_lut.i
│ │ │ │ │ ├── objdetect_init.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── resizeimg.cpp
│ │ │ │ │ └── routine.cpp
│ │ │ │ ├── ocl
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── ocl
│ │ │ │ │ │ ├── matrix_operations.hpp
│ │ │ │ │ │ ├── ocl.hpp
│ │ │ │ │ │ └── private
│ │ │ │ │ │ └── util.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── arithm.cpp
│ │ │ │ │ ├── binarycaching.hpp
│ │ │ │ │ ├── blend.cpp
│ │ │ │ │ ├── brute_force_matcher.cpp
│ │ │ │ │ ├── build_warps.cpp
│ │ │ │ │ ├── canny.cpp
│ │ │ │ │ ├── color.cpp
│ │ │ │ │ ├── columnsum.cpp
│ │ │ │ │ ├── error.cpp
│ │ │ │ │ ├── fft.cpp
│ │ │ │ │ ├── filtering.cpp
│ │ │ │ │ ├── gemm.cpp
│ │ │ │ │ ├── haar.cpp
│ │ │ │ │ ├── hog.cpp
│ │ │ │ │ ├── imgproc.cpp
│ │ │ │ │ ├── initialization.cpp
│ │ │ │ │ ├── interpolate_frames.cpp
│ │ │ │ │ ├── match_template.cpp
│ │ │ │ │ ├── matrix_operations.cpp
│ │ │ │ │ ├── mcwutil.cpp
│ │ │ │ │ ├── moments.cpp
│ │ │ │ │ ├── mssegmentation.cpp
│ │ │ │ │ ├── opencl
│ │ │ │ │ │ ├── arithm_2_mat.cl
│ │ │ │ │ │ ├── arithm_absdiff.cl
│ │ │ │ │ │ ├── arithm_add.cl
│ │ │ │ │ │ ├── arithm_add_scalar.cl
│ │ │ │ │ │ ├── arithm_add_scalar_mask.cl
│ │ │ │ │ │ ├── arithm_addWeighted.cl
│ │ │ │ │ │ ├── arithm_bitwise_and.cl
│ │ │ │ │ │ ├── arithm_bitwise_and_mask.cl
│ │ │ │ │ │ ├── arithm_bitwise_and_scalar.cl
│ │ │ │ │ │ ├── arithm_bitwise_and_scalar_mask.cl
│ │ │ │ │ │ ├── arithm_bitwise_not.cl
│ │ │ │ │ │ ├── arithm_bitwise_or.cl
│ │ │ │ │ │ ├── arithm_bitwise_or_mask.cl
│ │ │ │ │ │ ├── arithm_bitwise_or_scalar.cl
│ │ │ │ │ │ ├── arithm_bitwise_or_scalar_mask.cl
│ │ │ │ │ │ ├── arithm_bitwise_xor.cl
│ │ │ │ │ │ ├── arithm_bitwise_xor_mask.cl
│ │ │ │ │ │ ├── arithm_bitwise_xor_scalar.cl
│ │ │ │ │ │ ├── arithm_bitwise_xor_scalar_mask.cl
│ │ │ │ │ │ ├── arithm_cartToPolar.cl
│ │ │ │ │ │ ├── arithm_compare_eq.cl
│ │ │ │ │ │ ├── arithm_compare_ne.cl
│ │ │ │ │ │ ├── arithm_div.cl
│ │ │ │ │ │ ├── arithm_exp.cl
│ │ │ │ │ │ ├── arithm_flip.cl
│ │ │ │ │ │ ├── arithm_flip_rc.cl
│ │ │ │ │ │ ├── arithm_log.cl
│ │ │ │ │ │ ├── arithm_LUT.cl
│ │ │ │ │ │ ├── arithm_magnitude.cl
│ │ │ │ │ │ ├── arithm_magnitudeSqr.cl
│ │ │ │ │ │ ├── arithm_minMax.cl
│ │ │ │ │ │ ├── arithm_minMaxLoc.cl
│ │ │ │ │ │ ├── arithm_minMaxLoc_mask.cl
│ │ │ │ │ │ ├── arithm_minMax_mask.cl
│ │ │ │ │ │ ├── arithm_mul.cl
│ │ │ │ │ │ ├── arithm_nonzero.cl
│ │ │ │ │ │ ├── arithm_phase.cl
│ │ │ │ │ │ ├── arithm_polarToCart.cl
│ │ │ │ │ │ ├── arithm_pow.cl
│ │ │ │ │ │ ├── arithm_sub.cl
│ │ │ │ │ │ ├── arithm_sub_scalar.cl
│ │ │ │ │ │ ├── arithm_sub_scalar_mask.cl
│ │ │ │ │ │ ├── arithm_sum_3.cl
│ │ │ │ │ │ ├── arithm_sum.cl
│ │ │ │ │ │ ├── arithm_transpose.cl
│ │ │ │ │ │ ├── blend_linear.cl
│ │ │ │ │ │ ├── brute_force_match.cl
│ │ │ │ │ │ ├── build_warps.cl
│ │ │ │ │ │ ├── convertC3C4.cl
│ │ │ │ │ │ ├── cvt_color.cl
│ │ │ │ │ │ ├── filtering_boxFilter.cl
│ │ │ │ │ │ ├── filtering_laplacian.cl
│ │ │ │ │ │ ├── filtering_morph.cl
│ │ │ │ │ │ ├── filter_sep_col.cl
│ │ │ │ │ │ ├── filter_sep_row.cl
│ │ │ │ │ │ ├── haarobjectdetect.cl
│ │ │ │ │ │ ├── haarobjectdetect_scaled2.cl
│ │ │ │ │ │ ├── imgproc_bilateral.cl
│ │ │ │ │ │ ├── imgproc_calcHarris.cl
│ │ │ │ │ │ ├── imgproc_calcMinEigenVal.cl
│ │ │ │ │ │ ├── imgproc_canny.cl
│ │ │ │ │ │ ├── imgproc_columnsum.cl
│ │ │ │ │ │ ├── imgproc_convolve.cl
│ │ │ │ │ │ ├── imgproc_copymakeboder.cl
│ │ │ │ │ │ ├── imgproc_histogram.cl
│ │ │ │ │ │ ├── imgproc_integral.cl
│ │ │ │ │ │ ├── imgproc_integral_sum.cl
│ │ │ │ │ │ ├── imgproc_median.cl
│ │ │ │ │ │ ├── imgproc_remap.cl
│ │ │ │ │ │ ├── imgproc_resize.cl
│ │ │ │ │ │ ├── imgproc_threshold.cl
│ │ │ │ │ │ ├── imgproc_warpAffine.cl
│ │ │ │ │ │ ├── imgproc_warpPerspective.cl
│ │ │ │ │ │ ├── interpolate_frames.cl
│ │ │ │ │ │ ├── match_template.cl
│ │ │ │ │ │ ├── meanShift.cl
│ │ │ │ │ │ ├── merge_mat.cl
│ │ │ │ │ │ ├── moments.cl
│ │ │ │ │ │ ├── objdetect_hog.cl
│ │ │ │ │ │ ├── operator_convertTo.cl
│ │ │ │ │ │ ├── operator_copyToM.cl
│ │ │ │ │ │ ├── operator_setTo.cl
│ │ │ │ │ │ ├── operator_setToM.cl
│ │ │ │ │ │ ├── pyr_down.cl
│ │ │ │ │ │ ├── pyrlk.cl
│ │ │ │ │ │ ├── pyrlk_no_image.cl
│ │ │ │ │ │ ├── pyr_up.cl
│ │ │ │ │ │ ├── split_mat.cl
│ │ │ │ │ │ ├── stereobm.cl
│ │ │ │ │ │ └── stereobp.cl
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── pyrdown.cpp
│ │ │ │ │ ├── pyrlk.cpp
│ │ │ │ │ ├── pyrup.cpp
│ │ │ │ │ ├── safe_call.hpp
│ │ │ │ │ ├── split_merge.cpp
│ │ │ │ │ ├── stereobm.cpp
│ │ │ │ │ └── stereobp.cpp
│ │ │ │ ├── photo
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── photo
│ │ │ │ │ │ ├── photo_c.h
│ │ │ │ │ │ └── photo.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── arrays.hpp
│ │ │ │ │ ├── denoising.cpp
│ │ │ │ │ ├── fast_nlmeans_denoising_invoker_commons.hpp
│ │ │ │ │ ├── fast_nlmeans_denoising_invoker.hpp
│ │ │ │ │ ├── fast_nlmeans_multi_denoising_invoker.hpp
│ │ │ │ │ ├── inpaint.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ └── precomp.hpp
│ │ │ │ ├── stitching
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── stitching
│ │ │ │ │ │ ├── detail
│ │ │ │ │ │ │ ├── autocalib.hpp
│ │ │ │ │ │ │ ├── blenders.hpp
│ │ │ │ │ │ │ ├── camera.hpp
│ │ │ │ │ │ │ ├── exposure_compensate.hpp
│ │ │ │ │ │ │ ├── matchers.hpp
│ │ │ │ │ │ │ ├── motion_estimators.hpp
│ │ │ │ │ │ │ ├── seam_finders.hpp
│ │ │ │ │ │ │ ├── util.hpp
│ │ │ │ │ │ │ ├── util_inl.hpp
│ │ │ │ │ │ │ ├── warpers.hpp
│ │ │ │ │ │ │ └── warpers_inl.hpp
│ │ │ │ │ │ ├── stitcher.hpp
│ │ │ │ │ │ └── warpers.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── autocalib.cpp
│ │ │ │ │ ├── blenders.cpp
│ │ │ │ │ ├── camera.cpp
│ │ │ │ │ ├── exposure_compensate.cpp
│ │ │ │ │ ├── matchers.cpp
│ │ │ │ │ ├── motion_estimators.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── seam_finders.cpp
│ │ │ │ │ ├── stitcher.cpp
│ │ │ │ │ ├── util.cpp
│ │ │ │ │ └── warpers.cpp
│ │ │ │ ├── superres
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── superres
│ │ │ │ │ │ ├── optical_flow.hpp
│ │ │ │ │ │ └── superres.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── btv_l1.cpp
│ │ │ │ │ ├── btv_l1_gpu.cpp
│ │ │ │ │ ├── cuda
│ │ │ │ │ │ └── btv_l1_gpu.cu
│ │ │ │ │ ├── frame_source.cpp
│ │ │ │ │ ├── input_array_utility.cpp
│ │ │ │ │ ├── input_array_utility.hpp
│ │ │ │ │ ├── optical_flow.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── ring_buffer.hpp
│ │ │ │ │ └── super_resolution.cpp
│ │ │ │ ├── ts
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── ts
│ │ │ │ │ │ ├── gpu_perf.hpp
│ │ │ │ │ │ ├── gpu_test.hpp
│ │ │ │ │ │ ├── ts_gtest.h
│ │ │ │ │ │ ├── ts.hpp
│ │ │ │ │ │ └── ts_perf.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── gpu_perf.cpp
│ │ │ │ │ ├── gpu_test.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── ts_arrtest.cpp
│ │ │ │ │ ├── ts.cpp
│ │ │ │ │ ├── ts_func.cpp
│ │ │ │ │ ├── ts_gtest.cpp
│ │ │ │ │ └── ts_perf.cpp
│ │ │ │ ├── video
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── video
│ │ │ │ │ │ ├── background_segm.hpp
│ │ │ │ │ │ ├── tracking.hpp
│ │ │ │ │ │ └── video.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── bgfg_gaussmix2.cpp
│ │ │ │ │ ├── bgfg_gaussmix.cpp
│ │ │ │ │ ├── bgfg_gmg.cpp
│ │ │ │ │ ├── camshift.cpp
│ │ │ │ │ ├── kalman.cpp
│ │ │ │ │ ├── lkpyramid.cpp
│ │ │ │ │ ├── lkpyramid.hpp
│ │ │ │ │ ├── motempl.cpp
│ │ │ │ │ ├── optflowgf.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ ├── simpleflow.cpp
│ │ │ │ │ ├── simpleflow.hpp
│ │ │ │ │ ├── tvl1flow.cpp
│ │ │ │ │ └── video_init.cpp
│ │ │ │ ├── videostab
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── opencv2
│ │ │ │ │ │ └── videostab
│ │ │ │ │ │ ├── deblurring.hpp
│ │ │ │ │ │ ├── fast_marching.hpp
│ │ │ │ │ │ ├── fast_marching_inl.hpp
│ │ │ │ │ │ ├── frame_source.hpp
│ │ │ │ │ │ ├── global_motion.hpp
│ │ │ │ │ │ ├── inpainting.hpp
│ │ │ │ │ │ ├── log.hpp
│ │ │ │ │ │ ├── motion_stabilizing.hpp
│ │ │ │ │ │ ├── optical_flow.hpp
│ │ │ │ │ │ ├── stabilizer.hpp
│ │ │ │ │ │ └── videostab.hpp
│ │ │ │ │ └── src
│ │ │ │ │ ├── deblurring.cpp
│ │ │ │ │ ├── fast_marching.cpp
│ │ │ │ │ ├── frame_source.cpp
│ │ │ │ │ ├── global_motion.cpp
│ │ │ │ │ ├── inpainting.cpp
│ │ │ │ │ ├── log.cpp
│ │ │ │ │ ├── motion_stabilizing.cpp
│ │ │ │ │ ├── optical_flow.cpp
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.hpp
│ │ │ │ │ └── stabilizer.cpp
│ │ │ │ └── world
│ │ │ │ ├── include
│ │ │ │ │ └── opencv2
│ │ │ │ │ └── world
│ │ │ │ │ └── world.hpp
│ │ │ │ └── src
│ │ │ │ ├── precomp.cpp
│ │ │ │ ├── precomp.hpp
│ │ │ │ └── world_init.cpp
│ │ │ └── tags
│ │ ├── opengl
│ │ │ ├── freeglut_ext.h
│ │ │ ├── freeglut.h
│ │ │ ├── freeglut_std.h
│ │ │ ├── glew.h
│ │ │ ├── glext.h
│ │ │ ├── gl.h
│ │ │ ├── gl_mangle.h
│ │ │ ├── glu.h
│ │ │ ├── glu_mangle.h
│ │ │ ├── glut.h
│ │ │ ├── glxew.h
│ │ │ ├── glxext.h
│ │ │ ├── glx.h
│ │ │ ├── glx_mangle.h
│ │ │ ├── internal
│ │ │ │ └── dri_interface.h
│ │ │ ├── tags
│ │ │ └── wglew.h
│ │ └── stdcpp_for_ctags
│ │ ├── algobase.h
│ │ ├── algo.h
│ │ ├── algorithm
│ │ ├── alloc.h
│ │ ├── bitset
│ │ ├── bvector.h
│ │ ├── char_traits.h
│ │ ├── concept_checks.h
│ │ ├── container_concepts.h
│ │ ├── defalloc.h
│ │ ├── deque
│ │ ├── deque.h
│ │ ├── functional
│ │ ├── function.h
│ │ ├── hash_map
│ │ ├── hash_map.h
│ │ ├── hash_set
│ │ ├── hash_set.h
│ │ ├── hashtable.h
│ │ ├── heap.h
│ │ ├── iterator
│ │ ├── iterator.h
│ │ ├── limits
│ │ ├── list
│ │ ├── list.h
│ │ ├── map
│ │ ├── map.h
│ │ ├── memory
│ │ ├── multimap.h
│ │ ├── multiset.h
│ │ ├── numeric
│ │ ├── pair.h
│ │ ├── pthread_alloc
│ │ ├── pthread_alloc.h
│ │ ├── queue
│ │ ├── rope
│ │ ├── rope.h
│ │ ├── ropeimpl.h
│ │ ├── sequence_concepts.h
│ │ ├── set
│ │ ├── set.h
│ │ ├── slist
│ │ ├── slist.h
│ │ ├── stack
│ │ ├── stack.h
│ │ ├── stdexcept
│ │ ├── stl_algobase.h
│ │ ├── stl_algo.h
│ │ ├── stl_alloc.h
│ │ ├── stl_bvector.h
│ │ ├── stl_config.h
│ │ ├── stl_construct.h
│ │ ├── stl_ctraits_fns.h
│ │ ├── stl_deque.h
│ │ ├── stl_exception.h
│ │ ├── stl_function.h
│ │ ├── stl_hash_fun.h
│ │ ├── stl_hash_map.h
│ │ ├── stl_hash_set.h
│ │ ├── stl_hashtable.h
│ │ ├── stl_heap.h
│ │ ├── stl_iterator_base.h
│ │ ├── stl_iterator.h
│ │ ├── stl_list.h
│ │ ├── stl_map.h
│ │ ├── stl_multimap.h
│ │ ├── stl_multiset.h
│ │ ├── stl_numeric.h
│ │ ├── stl_pair.h
│ │ ├── stl_queue.h
│ │ ├── stl_range_errors.h
│ │ ├── stl_raw_storage_iter.h
│ │ ├── stl_relops.h
│ │ ├── stl_rope.h
│ │ ├── stl_set.h
│ │ ├── stl_slist.h
│ │ ├── stl_stack.h
│ │ ├── stl_string_fwd.h
│ │ ├── stl_tempbuf.h
│ │ ├── stl_threads.h
│ │ ├── stl_tree.h
│ │ ├── stl_uninitialized.h
│ │ ├── stl_vector.h
│ │ ├── string
│ │ ├── tags
│ │ ├── tempbuf.h
│ │ ├── tree.h
│ │ ├── type_traits.h
│ │ ├── utility
│ │ ├── valarray
│ │ ├── vector
│ │ └── vector.h
│ ├── syntax
│ │ ├── snippet.vim
│ │ └── template.vim
│ └── view
│ ├── ~=+[File List]=
│ ├── ~=+-MiniBufExplorer-=
│ ├── ~=+scoresystem=+include=+scoresystem.h=
│ ├── ~=+scoresystem=+src=+main.c=
│ ├── ~=+scoresystem=+src=+scoresystem.c=
│ ├── ~=+scoresystem=+src=+systemUI.c=
│ ├── =+usr=+share=+vim=+vim72=+doc=+eval.txt=
│ └── =+usr=+share=+vim=+vim72=+doc=+fold.txt=
├── vimrc
└── 使用说明.txt
717 directories, 14160 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论